@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Song+Myung&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  overflow-x: hidden;
  font-family: "Poppins", serif;
}

::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.container {
  max-width: 1400px;
  padding: 20px;
  overflow-x: hidden;
}
.title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 35px;
  text-transform: uppercase;
}
/* Navigation Styles */
.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0%);
  width: 90%;
  height: 90px;
  border-radius: 20px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.logo img {
  height: 80px;
}
.navbar-content {
  display: flex;
  align-items: center;
  gap: 5px;
}

.buttons-container {
  position: absolute;
  right: 10%;
  top: 10%;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center; /* Center align if needed */
  margin-top: 20px;
}

.buttons-container {
  display: flex;
  gap: 15px; /* Spacing between buttons */
  align-items: center;
  margin-top: 20px;
}

.nav-links {
  display: flex;
  gap: 40px;
  border-right: 2px solid rgba(0, 0, 0, 0.534);
  padding-right: 20px;
  text-align: center !important;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-links a.active {
  color: #ff4b26;
}

.nav-links a:hover {
  color: #ff4b26;
}

.call-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s;
}

.call-button:hover {
  transform: scale(1.05);
}

.call-button img {
  height: 20px;
}
.search-button {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 25px;
  cursor: pointer;
  transition: transform 0.3s;
}

.search-button:hover {
  transform: scale(1.05);
}

.search-button img {
  height: 20px;
}

.call-button span {
  font-weight: 500;
}

/* Mobile menu button (hidden by default) */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Media queries for responsiveness */
@media screen and (max-width: 1024px) {
  .navbar {
    padding: 0 30px;
  }

  .nav-links {
    gap: 20px;
  }
}

@media screen and (max-width: 900px) {
  .navbar {
    height: auto;
    min-height: 80px;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .navbar-content {
    position: fixed;
    top: 0;
    left: -100%;
    width: 250px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    gap: 30px;
    padding: 100px 20px 30px;
    transition: left 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .navbar-content.active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    border-right: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.534);
    padding-right: 0;
    padding-bottom: 20px;
    width: 100%;
    gap: 20px;
    align-items: center;
  }

  .call-button,
  .search-button {
    margin-top: 10px;
  }

  /* Hamburger to X animation */
  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  /* Adjust dropdown for mobile */
  .dropdown {
    position: static;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 20px;
    margin-top: 10px;
    width: 100%;
  }

  .dropdown:hover .dropdown-menu,
  .dropdown.active .dropdown-menu {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .navbar {
    top: 10px;
    padding: 0 20px;
    height: 70px;
  }

  .logo img {
    height: 60px;
  }
}

@media screen and (max-width: 400px) {
  .navbar {
    width: 95%;
  }
}

/* New CSS for dropdown */
.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: "▼";
  font-size: 10px;
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s, color 0.3s;
text-align : start;
}

.dropdown-menu a:hover {
  background: #f9f9f9;
  color: #ff4b26;
}
/* Hero Section Styles */
.banner-wrapper {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}
.dropdown {
  position: relative;
}

.dropdown > a::after {
  content: "▼";
  font-size: 10px;
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s, color 0.3s;
  position: relative;
}

.dropdown-menu a:hover {
  background: #f9f9f9;
  color: #ff4b26;
}

/* New styles for nested dropdown */
.sub-dropdown {
  position: relative;
}

.sub-dropdown > a::after {
  content: "►";
  font-size: 10px;
  margin-left: 5px;
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.sub-dropdown-menu {
  position: absolute;
  top: 0;
  left: 100%;
  background: #fff;
  min-width: 200px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.sub-dropdown:hover .sub-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

/* Mobile adjustments for nested dropdown */
@media screen and (max-width: 900px) {
  .sub-dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 0 0 0 20px;
    margin-top: 10px;
    width: 100%;
  }

  .sub-dropdown:hover .sub-dropdown-menu,
  .sub-dropdown.active .sub-dropdown-menu {
    display: block;
  }

  .sub-dropdown > a::after {
    right: 0;
  }
}
/* Hero Section Styles */
.hero {
  position: relative;
  height: 25vw;
  width: 100%;
  background-image: url(../images/banner/aboutBanner.png);
  background-position: top left;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: start;
  background-color: #e9e9e7;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3.3rem;
  color: #222;
  font-weight: 200;
  font-family: "Song Myung", serif;
  line-height: 1.2;
  margin-bottom: 20px;
  font-style: normal;
  font-weight: bold;
}

.hero-content p {
  font-size: 22px;
  font-weight: 500;
  color: #ff4b26;
  line-height: 1.5;
}

.about {
  margin: 0 auto;
  padding: 50px 20px;
  margin-top: 50px;
}

/* ------------- about section  ------------------ */
.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin: 0 auto;
  padding: 50px 20px;
  margin-top: 50px;
}

.about-content {
  max-width: 60%;
}

.about-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
}

.about-text {
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 10px;
  text-align: justify;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-video {
  position: relative;
  width: 40%; /* Adjust as needed */
  height: 280px; /* Adjust as needed */
  border-radius: 10px;
  overflow: hidden;
  background-color: red;
  margin-top: 55px;
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
}

.play-button img {
  height: 32px;
  color: #ff7834;
}

.text-about {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: justify;
  font-weight: 500;
}

.certified-section {
  margin: 0 auto;
  padding: 50px 20px;
  margin-top: 50px;
}
.certificate-wrapper {
  display: flex;
  justify-content: center;
  gap: 100px;
  margin-top: 30px;
}
.certification-logos {
  display: flex;
  align-items: center;
  gap: 60px;
  width: 100%;
  justify-content: center;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  background-color: white;
}
.certification-logos img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.tuv-logo {
  width: 80px;
  height: auto;
}

.ce-logo {
  width: 100px;
  height: auto;
}

.veritas-logo {
  width: 80px;
  height: auto;
}

/* ------------ different section css -------------- */

.header-text {
  padding: 20px;
  background-color: white;
  border-bottom: 1px solid #e0e0e0;
}

.section-wrapper {
  margin: 0 auto;
}

/* Tabs navigation */
.tabs-nav {
  display: flex;
  overflow-x: auto;
  justify-content: space-between;
  background-color: white;
  border-bottom: 1px solid #e0e0e0;
  padding: 0 0px;
}

.tab-item {
  padding: 15px 0;
  margin-right: 20px;
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  color: #000;
  font-weight: 500;
  font-size: 20px;
  font-weight: 500;
}

.tab-item.active {
  color: #000;
  font-size: 22px;
  font-weight: 500;
}

.tab-item.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #f7941d;
}

/* Tab content */
.tab-content {
  padding: 50px 0px;
  display: none;
  background-color: white;
}

.tab-content.active {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.tab-content h2 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
}

.tab-content p {
  font-size: 24px;
  line-height: 1.6;
  margin-bottom: 10px;
  text-align: justify;
  font-weight: 500;
  max-width: 900px;
}

/* Content with image layout */
.content-with-image {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: red; */
  width: 89%;
}

.content-text p {
  flex: 1;
  padding-right: 20px;
  font-size: 16px;
  line-height: 1.4;
  max-width: 500px;
  margin-left: 0vw;
  /*margin-left: 6.5vw;*/
}

.content-image {
  width: 120px;
  height: 120px;
  background-color: #ebebeb;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 25px;
  margin-right: 40pxab;
}

.content-image img {
  width: 100%;
  height: auto;
}

/* ----------- process ------------ */
.process {
  margin: 0 auto;
}

.process-container {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  margin-top: 100px !important;
}

/* Desktop layout */
.desktop-layout {
  display: block;
}

.mobile-layout {
  display: none;
}

.process-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 150px;
}

.step-circle {
  position: relative;
  width: 100px;
  height: 100px;
  background-color: #e0e0e0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.step-number {
  position: absolute;
  font-weight: bold;
  font-size: 14px;
  top: -20px;
  right: -20px;
  background-color: #ffffff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-icon {
  width: 50px;
  height: 50px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 auto;
}

.step-text {
  text-align: center;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.4;
}

.step-connector {
  flex: 1;
  height: 2px;
  background-color: #ff7834;
  margin-top: 45px;
}

.vertical-connector {
  width: 2px;
  height: 50px;
  background-color: #ff7834;
  margin: 0 auto;
}

/* Mobile layout */
.mobile-steps {
  margin-top: 20px;
}

.mobile-step {
  position: relative;
  padding: 15px;
  margin-bottom: 30px;
  border-radius: 8px;
  background-color: #f8f8f8;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.mobile-step-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.mobile-step-number {
  width: 35px;
  height: 35px;
  background-color: #e0e0e0;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  margin-right: 15px;
}

.mobile-step-title {
  font-weight: bold;
  font-size: 16px;
}

.mobile-step-content {
  display: flex;
  align-items: center;
}

.mobile-step-icon {
  width: 60px;
  height: 60px;
  background-color: #e0e0e0;
  border-radius: 50%;
  margin-right: 15px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-step-icon-img {
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.mobile-step-description {
  font-size: 14px;
  line-height: 1.4;
}

.mobile-progress-bar {
  position: absolute;
  left: 32px;
  top: 65px;
  bottom: -30px;
  width: 3px;
  background-color: #e0e0e0;
  z-index: 0;
}

.mobile-step:last-child .mobile-progress-bar {
  display: none;
}

/* Icon placeholders */
.icon-understanding {
  background-image: url("../images/steps/step1.png");
}
.icon-design {
  background-image: url("../images/steps/step2.png");
}
.icon-testing {
  background-image: url("../images/steps/step3.png");
}
.icon-manufacturing {
  background-image: url("../images/steps/step4.png");
}
.icon-trial {
  background-image: url("../images/steps/step8.png");
}
.icon-quality {
  background-image: url("../images/steps/step6.png");
}
.icon-installation {
  background-image: url("../images/steps/step6.png");
}
.icon-support {
  background-image: url("../images/steps/step5.png");
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .process-container {
    max-width: 900px;
  }

  .process-step {
    width: 120px;
  }

  .step-circle {
    width: 90px;
    height: 90px;
  }

  .step-icon {
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 900px) {
  .tabs-nav {
    justify-content: start;
  }
  .tab-content.active {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .content-text p {
    margin-left: 0px;
  }
  .about-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    flex-direction: column;
    margin: 0 auto;
    padding: 50px 20px;
    margin-top: 50px;
  }

  .section-wrapper {
    margin-top: 0 !important;
  }

  .certified-section {
    margin: 0 auto;
  }

  .certificate-wrapper {
    margin-top: -50px;
    height: 124px;
    overflow-y: hidden;
  }

  .about-content {
    max-width: 100%;
  }
  .about-video {
    margin-top: 0px;
    width: 100%;
  }
  .process-container {
    max-width: 700px;
  }

  .process-step {
    width: 100px;
  }

  .step-circle {
    width: 80px;
    height: 80px;
  }

  .step-icon {
    width: 40px;
    height: 40px;
  }

  .step-text {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .desktop-layout {
    display: none;
  }

  .mobile-layout {
    display: block;
  }

  h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .factory-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 45px!important;
  }
  .factory-section {
    margin-bottom: 50px!important;
}
  .section-wrapper {
    margin: 50px 0px 0px 0px !important;
  }
  .tab-content.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  .content-with-image {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    /* background-color: red; */
  }
  h1 {
    font-size: 20px;
  }

  .mobile-step {
    padding: 12px;
  }

  .mobile-step-title {
    font-size: 14px;
  }

  .mobile-step-icon {
    width: 50px;
    height: 50px;
  }

  .mobile-step-icon-img {
    width: 25px;
    height: 25px;
  }

  .mobile-step-description {
    font-size: 13px;
  }

  .mobile-progress-bar {
    height: 30px!important;
    left: 29px;
    top: 120px!important;
    background-color: #ff7834;
  }
  .process{
    margin-top: 0px!important;
  }
}
/* Icon placeholders - you would replace these with your actual icon images */
.icon-understanding {
  background-image: url("../images/steps/step1.png");
}
.icon-design {
  background-image: url("../images/steps/step2.png");
}
.icon-testing {
  background-image: url("../images/steps/step3.png");
}
.icon-manufacturing {
  background-image: url("../images/steps/step4.png");
}
.icon-trial {
  background-image: url("../images/steps/step8.png");
}
.icon-quality {
  background-image: url("../images/steps/step6.png");
}
.icon-installation {
  background-image: url("../images/steps/step6.png");
}
.icon-support {
  background-image: url("../images/steps/step5.png");
}

/* ---------------------- image model ------------------------------------------ */
.image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
}

.image-modal.active {
  display: block;
}

.modal-content {
  position: relative;
  margin: 6% auto;
  /* background: #fff; */
  text-align: center;
  width: 50%;
  /* padding: 20px 40px; */
  /* overflow: hidden; */
  height: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px;
}
.modal-caption {
  font-size: 20px;
  font-weight: 500;
  display: none;
}

.modal-image {
  width: 100%;
  height: 500px;
  border-radius: 20px;
}

.modal-close {
  position: absolute;
  top: 0px;
  right: -60px;
  padding: 20px;
  height: 20px;
  width: 20px;
  display: flex;
  justify-content: center;
  border-radius: 10px;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.747);
  border: none;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
}
.button-container {
  position: absolute;
  width: 120%;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 20px;
}

.button-container button {
  padding: 10px 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.747);
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  border: none;
}

@media (max-width: 768px) {
  .modal-content {
    margin: 15% auto;
    width: 70%;
    height: fit-content;
  }
  .button-container {
    width: 135%;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
  }
  .modal-close {
    position: absolute;
    top: 0px;
    right: -50px;
  }
}

/* ---------------------- members----------- */

.team-section {
  background-color: #f6f5f5; /* Light grey background */
  text-align: left;
  padding: 40px 0px;
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
}

/* Title Styling */
.team-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}

/* Container for Team Members */
.team-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.slider-container {
  position: relative;
  max-width: 50%;
  /*margin: 0 auto;*/
  display: flex;
  justify-content: start;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease;
}

/* Using your existing team CSS */
.team-container {
  display: flex;
  flex-wrap: nowrap; /* Changed to nowrap for slider */
  gap: 20px;
  justify-content: flex-start; /* Changed from center for slider */
}

/* Individual Team Member Styling */
.team-member {
  background: white;
  padding: 20px;
  flex: 0 0 auto; /* Added for slider */
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 12px;
  width: 220px;
  max-width: 250px;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Image Container */
.team-image {
  margin-top: 40px;
  width: 100%;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 8px;
}

/* Placeholder Image */
.team-image img {
  width: 140px;
  height: 140px;
}

/* Name Styling */
.team-member h3 {
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}

/* Role Styling */
.team-member p {
  font-size: 14px;
  color: #666;
}

/* Navigation buttons */
.team-content .navigation {
  margin-top: 12px;
  /* transform: translateY(-50%); */
  display: flex;
  flex-direction: row !important;
  gap: 10px;
  z-index: 10;
}

.nav-btn {
  /* transform: translateY(-50%); */
  border: none;
  width: 50px;
  height: 50px;
  font-size: 20px;
  padding-bottom: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  font-size: 28px;
  border-radius: 100%;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-btn.prev {
  background-color: white;
  color: #ff7834;
}
.nav-btn.prev:hover {
  background-color: #ff7834;
  color: white;
}
.nav-btn.next {
  background-color: #ff7834;
  color: white;
}

.nav-btn.next:hover {
  background-color: white;
  color: #ff7834;
}

/* Responsive Design */
/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .team-section {
    padding: 30px 40px;
  }
  .team-title {
    font-size: 28px;
  }
  .team-container {
    gap: 15px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .team-section {
    padding: 20px 20px;
  }
  .team-title {
    font-size: 24px;
  }
  .team-container {
    width: 100%;
    align-items: center;
  }
  .team-member {
    width: 90%; /* Full width for better fit */
  }
}
/* -----------  factory ----------- */
.factory-section {
  text-align: left;
  padding: 50px 20px;
  margin: 0 auto;
}

/* Title Styling */
.factory-title {
  font-size: 32px;
  font-weight: bold;
  text-decoration: underline;
  color: #000;
  margin-bottom: 20px;
}

/* Container for Factory Items */
.factory-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  justify-content: center;
}

/* Individual Factory Item */
.factory-item {
  background: white;
  text-align: center;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Image Styling */
.factory-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Caption Styling */
.factory-item p {
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
  background: #fff;
  border-top: 2px solid #ddd;
}

/* Responsive Design */

/* Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
  .factory-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .factory-section {
    padding: 30px 40px;
    margin-top: 33px;;
  }

  .factory-title {
    font-size: 28px;
  }
}

/* Mobile Devices (max-width: 768px) */
@media (max-width: 768px) {
  .factory-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
  }

  .factory-section {
    padding: 20px 20px;
  }

  .factory-title {
    font-size: 24px;
    text-align: center;
  }

  .factory-item p {
    font-size: 14px;
  }
}
/* ----------------- footer -------------  */

.footer {
  background-color: #404040;
  padding: 0px 80px 30px 50px !important;
  color: #fff;
  font-family: Arial, sans-serif;
  min-height: 300px;
}

.footer-above {
  padding: 30px 50px;
  background-color: #333333;
}

.links-2 {
  border-bottom: 2px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 36px;
  max-width: 1100px;
  margin: 0 auto;
  margin-top: 20px;
  padding-left: 21vw;
}
.links-2 a {
  padding-bottom: 20px;
  color: #fff;
  font-family: Arial, sans-serif;
  text-decoration: none;
  transition: color 0.3s ease;
}
.links-2 a:hover {
  color: #ffffff64;
}

.Copyright {
  margin-top: 30px;
  text-align: center;
  color: white;
  font-size: 16px;
}

.Copyright p {
  color: white !important;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  max-width: 1100px !important;
  margin: 0 auto;
}
.left-section {
  margin-top: 30px;
}

.logo {
  width: 200px;
  height: 80px;
}

.contact-info {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: 970px;
  margin: 0 auto;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  color: #fff;
  font-size: 15px;
  line-height: 1.4;
}

.contact-item .icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid #eeeeee;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.08);
}

.get-direction {
  display: inline-block;
  background: #333;
  color: #fff;
  text-decoration: none;
  border: 1.5px solid #eeeeee;
  padding: 12px 25px;
  border-radius: 30px;
  margin-top: 25px;
  font-size: 15px;
  transition: all 0.3s ease;
}

.get-direction:hover {
  background: #fff;
  color: #333;
}

.navigation {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.navigation a {
  display: block;
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
  font-size: 15px;
  transition: color 0.3s ease;
}

.navigation a:hover {
  color: #ccc;
}

.products {
  margin-top: 50px;
  width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.products a {
  display: flex;
  color: #fff;
  text-decoration: none;
  /* margin-bottom: 10px; */
  font-size: 15px;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.footer-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.products a:hover {
  color: #ccc;
}
@media screen and (max-width: 992px) {
  .footer-content {
    flex-wrap: wrap;
  }

  .footer-left {
    flex-basis: 100%;
    margin-bottom: 30px;
  }

  .navigation,
  .products {
    flex-basis: 40%;
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 0px 30px 50px 20px;
  }

  .footer-above {
    padding: 20px;
  }

  .contact-info {
    flex-direction: column;
    gap: 25px;
  }

  .logo {
    width: 180px;
    height: 72px;
    margin-bottom: 20px;
  }

  .navigation,
  .products {
    flex-basis: 45%;
  }

  .navigation a,
  .products a {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 576px) {
  .footer {
    padding: 0px 20px 40px 15px !important;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }

  .navigation,
  .products {
    flex-basis: 100%;
    margin-top: 0;
  }

  .social-icons {
    flex-wrap: wrap;
  }

  .get-direction {
    padding: 10px 20px;
    font-size: 14px;
  }
}

@media screen and (max-width: 400px) {
  .footer-above {
    padding: 15px;
  }

  .social-icon {
    width: 35px;
    height: 35px;
  }

  .contact-item {
    font-size: 14px;
  }
}
@media screen and (max-width: 900px) {
  .slider-container {
    position: relative;
    max-width: 100% !important;
    margin: 0 auto;
    overflow: hidden;
  }
  .team-section {
    background-color: #f6f5f5; /* Light grey background */
    text-align: left;
    padding: 40px 10px;
    display: flex;
    flex-wrap: wrap !important;
    gap: 15px;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 999px) {
  .links-2 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    padding-left: 0px !important;
  }
}
@media (min-width: 1000px) and (max-width: 1199px) {
  .links-2 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    padding-left: 21.5vw;
  }
}

@media (min-width: 1200px) and (max-width: 1350px) {
  .links-2 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 36px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    padding-left: 25.5vw;
  }
}
@media (min-width: 1351px) and (max-width: 1460px) {
  .links-2 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 36px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    padding-left: 22.5vw;
  }
}
@media (max-width: 500px) {
  .links-2 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    padding-left: 0vw;
  }
}
@media (min-width: 1700px) {
  .links-2 {
    border-bottom: 2px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    margin-top: 20px;
    padding-left: 0px;
  }
}
