@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 !important;
}

.title {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 35px;
  position: relative;
  text-transform: uppercase;
  max-width: 630px;
}
.title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 120px;
  height: 6px;
  background-color: #ff7834;
}
/* 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;
  position: relative;
text-align : start;
}

.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: 200px;
  /* width: 100%; */
  background-image: url(../images/banner/aboutBanner.png);
  background-position: bottom;
  background-size: contain;
  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: 600;
  color: #ff4b26;
  line-height: 1.5;
}
/* Active state styling for navigation items */
.nav-item {
  cursor: pointer;
  padding: 10px 15px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-item:hover {
  color: #ff6b00;
}

.nav-item.active {
  color: #ff6b00;
  font-weight: bold;
}
.section-wrapper {
  height: fit-content;
}
/* .nav-item.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ff6b00;
} */

.tabs-nav .active {
  /* background-color: #ff6b00; */
  /* padding: 0 30px; */
  padding-top: 15px;
  color: #ff6b00 !important;
}

.tabs-nav .active::after {
  display: none;
}

/* Make arrow buttons clickable */
.arrow {
  cursor: pointer;
}

.content-text img {
  height: 60px;
}

.tab-content {
  height: fit-content;
}
.content-with-image {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /* max-width: 100%; */
  /* max-width: 1087px; */
  gap: 60px;
  margin: 0 auto;
  padding-right: 60px;
  /* margin-right: 300px; */
}
/* .tab-content{
  padding:50px 0px!important;
} */

.content-image {
  position: relative;
  width: 500px;
  height: 300px;
}
.content-with-image .icon img {
  height: 60%;
  width: 60%;
}

.content-with-image .icon {
  position: absolute;
  top: 15%;
  left: -47px;
  border-radius: 100%;
  z-index: 20;
  height: 110px;
  width: 110px;
  display: flex;
  border: 2px solid white;
  justify-content: center;
  align-items: center;
  background-color: #f5f5f5;
}
.content-with-image .content-image .machine-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}
.content-text p {
  max-width: 50%;
  /* background-color: red; */
}

.working-photo {
  height: 400px;
  /* height: 326px; */
  width: 100%;
  overflow: hidden;
  max-width: 550px;
  margin-right: 60px;
}
.working-photo img {
  height: 100%;
  width: 100%;
  overflow: hidden;
  object-fit: contain;
}

/* ----------------- 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: 20vw;
}
.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;
}
/* Responsive styles */
@media screen and (max-width: 1200px) {
  .footer {
    padding: 0px 50px 60px 30px;
  }

  .footer-above {
    padding: 25px 30px;
  }

  .footer-content {
    gap: 40px;
  }
}

@media screen and (max-width: 992px) {
  .hero {
    height: 18vh !important;
  }
  .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;
  }

  .content-with-image {
    margin-right: 0;
    height: fit-content;
    margin: 0;
    flex-direction: column;
  }
  .content-with-image .icon {
    top: 20%;
  }
  .content-image img .icon img {
    margin-top: 100px !important;
  }
  .content-image {
    position: relative;
    width: 340px;
    height: 300px;
    margin: 0;
  }
  .content-text {
    margin-left: 10px;
    grid-area: 20px;
  }
  .content-text img {
    width: fit-content;
  }

  .content-image .machine-image img {
    margin-top: -100px;
  }

  .tab-content {
    margin: 30px 0px;
  }
  .tab-content .content-with-image {
    flex-direction: column;
  }
  .content-with-image {
    padding-right: 0px;
  }
  .content-with-image .content-image {
    margin-right: 0%;
  }
  /* .container {
    padding: 0 !important;
  } */
  .content-text p {
    width: 100%;
    height: fit-content;
    /* background-color: red; */
  }

  .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;
  }
}

/* ------------- about section  ------------------ */

.about-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
  margin: 0 auto;
  width: 100%;
  padding: 50px 0px;
  margin-top: 50px;
  margin-bottom: 50px;
}
.about-sectionOne {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 0 auto;
  padding: 50px 0px;
  margin-top: 50px;
  margin-bottom: 50px;
}

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

.about-title {
  font-size: 2.2rem;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
}
.about-content .title {
  text-transform: uppercase !important;
}
.about-text {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 10px;
  font-weight: 500;
  color: #555;
  max-width: 600px;
}

.about-video {
  position: relative;
  width: 40%; /* Adjust as needed */
  height: 268px; /* Adjust as needed */
  border-radius: 10px;
  max-width: 478px;
  overflow: hidden;
}

.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;
}

/* Active state styling for navigation items */
.nav-item {
  cursor: pointer;
  padding: 10px 15px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-item:hover {
  color: #ff6b00;
}

.nav-item.active {
  color: #ff6b00;
  font-weight: bold;
}

/* .nav-item.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ff6b00;
} */

/* Make arrow buttons clickable */
.arrow {
  cursor: pointer;
}

/* Animation styles */
.about-section {
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.slide-out {
  opacity: 0;
  transform: translateX(-30px);
}

.slide-in {
  opacity: 1;
  transform: translateX(0);
  animation: slideIn 0.5s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Video container styles */
.about-video {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.video-thumbnail {
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ------------- navigation --------------- */

.navigation-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  border-top: 2px solid #ff6b00;
  border-bottom: 2px solid #ff6b00;
  position: relative;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  overflow: hidden; /* Prevents unwanted scrolling */
}

.nav-items {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
  position: relative;
  max-width: 1200px;
  white-space: nowrap;
  padding: 10px 0px;
  /* background-color: red; */
  overflow: scroll;
  gap: 70px;
}

.nav-item {
  padding: 0px 0px;
  color: #000;
  font-weight: bold;
  font-size: 1.4rem;
  width: fit-content;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.arrow {
  position: absolute !important;
  top: 50%;
  display: none;
  transform: translateY(-50%);
  width: 34px !important;
  height: 34px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #ffffff;
  background-color: #ff7834;
  padding: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
.arrows {
  position: absolute;
  width: 100%;
  margin-top: -35px;
}

.arrow-left {
  left: 5% !important;
}

.arrow-right {
  right: 5% !important;
}

@media (max-width: 768px) {
  .nav-item {
    padding: 0 0px;
    font-size: 16px;
  }
  .nav-items {
    padding: 0 40px;
    height: 40px;
  }
  .design-slide-item {
    height: 451px;
  }
  .navigation-container {
    padding: 5px 0 !important;
  }
  .arrow {
    width: 20px;
    height: 20px;
  }

  .arrows {
    position: absolute;
    width: 100%;
    margin-top: 30px;
  }

  .arrow-left {
    left: 10px;
  }

  .arrow-right {
    right: 10px;
  }
  .machine-content {
    flex-direction: column;
  }
  .about-content {
    max-width: 100%;
    width: 100%;
  }
  .about-text {
    max-width: 100%;
  }
  .about-video {
    width: 100%;
  }
}

.features-section {
  text-align: left;
  padding: 40px 60px;
  background-color: #fff;
}

/* Title */
.features-title {
  font-size: 24px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 20px;
}

/* Grid Container */
.features-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  justify-content: center;
}

/* Feature Card */
.feature-card {
  background: white;
  border-radius: 8px;
  padding: 20px;
  text-align: left;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

/* Feature Icon */
.feature-icon {
  font-size: 32px;
  margin-bottom: 10px;
}

/* Heading */
.feature-card h3 {
  font-size: 18px;
  font-weight: bold;
  color: #000;
  margin-bottom: 10px;
}

/* Number */
.feature-card .number {
  color: #ff6600;
  font-weight: bold;
}

/* Paragraph */
.feature-card p {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

/* See More Link */
.feature-card a {
  text-decoration: none;
  color: #ff6600;
  font-weight: bold;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .features-section {
    padding: 20px;
  }

  .features-container {
    grid-template-columns: 1fr;
  }

  .features-title {
    font-size: 22px;
    text-align: center;
  }
}

.key-features {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  background-color: #c4c4c4;
}

.feature-card-two {
  width: 100%;
  max-width: 400px;
  background-color: rgb(255, 255, 255);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  max-width: 320px;
}

.icon-container {
  display: inline-block;
  background-color: #f0f0f0;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.icon {
  width: 40px;
  height: 40px;
  display: block;
}

.feature-title {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: bold;
  color: #ff5722;
}

.feature-description {
  font-size: 18px;
  color: #000;
  line-height: 1.4;
  margin-bottom: 15px;
}

.see-more {
  display: block;
  font-size: 16px;
  color: #000;
  text-decoration: none;
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  padding: 40px 0px;
  background: #fff;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}

/* Slider */
.slider {
  display: flex;
  gap: 50px;
  overflow: hidden;
  scroll-behavior: smooth;
  width: 100%;
  justify-content: center;
}

/* Slide Item */
.slide {
  text-align: center;
  min-width: 20%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Image */
.slide img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

/* Text */
.slide p {
  font-size: 14px;
  font-weight: bold;
  color: black;
  text-transform: uppercase;
  margin-top: 10px;
}

/* Navigation Buttons */
.prev-btn,
.next-btn {
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  color: gray;
  transition: 0.3s;
}

.prev-btn:hover,
.next-btn:hover {
  color: black;
}

/* Positioning Navigation Arrows */

/* Responsive Adjustments */
@media (max-width: 768px) {
  .slider {
    flex-wrap: nowrap;
    gap: 20px;
  }
  .slide {
    min-width: 100%;
  }
  .about-section {
    flex-wrap: wrap;
  }
}
@media (max-width: 885px) {
  .about-sectionOne {
    flex-wrap: wrap;
  }
}
@media (max-width: 1145px) {
  .navigation-container {
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    border-top: 1px solid #d94c17;
    border-bottom: 1px solid #d94c17;
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: start;
    height: 70px;
    overflow-x: scroll;
  }
}

@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;
  }
  .content-image {
    position: relative;
    width: 290px;
    height: 290px;
    margin: 0;
  }
}
@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;
  }
}

@media (min-width:1290px) and (max-width:2000px){
  .content-image {
    position: relative;
    min-width: 500px;
    min-height: 300px;
    max-width: 500px;
    max-height: 400px;
    width: 100%;
    height: 100%;
  }
}
