* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* Navbar */

/* Top Header Bar */
.header_top__container {
  background-color: #f8f9fa;
  padding: 8px 16px;
  font-size: 14px;
  color: #102C5B;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
}

.header_top__contact {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.header_top__contact a {
  color: #102C5B;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
}

.header_top__contact .email {
  display: inline-flex; /* Default display for email */
}

.header_top__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header_top__social a {
  color: #102C5B;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.header_top__social a:hover {
  color: red;
  transform: scale(1.1);
}

.header_top__language {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 5px;
  font-size: 12px;
  background: #fff;
  border: 1px solid #ddd;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header_top__language:hover {
  background: #e9ecef;
  border-color: red;
}

.header_top__language-select {
  display: none;
  position: absolute;
  top: 32px;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 5px;
  z-index: 1000;
  min-width: 140px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.header_top__language--active .header_top__language-select {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.header_top__language-select option {
  padding: 10px 15px;
  color: #102C5B;
  font-size: 13px;
  background: #fff;
  cursor: pointer;
}

.header_top__language-select option:hover {
  background: #f8f9fa;
}

/* Main Navigation Bar */
.header_main__container {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: relative;
  top: 0;
  z-index: 999;
  padding: 12px 16px;
}

.header_main__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.header_main__logo img {
  height: 50px;
  transition: transform 0.3s ease;
}

.header_main__logo:hover img {
  transform: scale(1.05);
}

.header_main__menu {
  display: flex;
  list-style: none;
  gap: 20px;
  align-items: center;
}

.header_main__menu-item {
  position: relative;
}

.header_main__menu-link {
  color: #102C5B;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 12px;
  position: relative;
  transition: color 0.3s ease;
}

.header_main__menu-link:hover {
  color: red;
}

.header_main__menu-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: red;
  transition: width 0.3s ease;
}

.header_main__menu-link:hover::after {
  width: 100%;
}

.header_main__menu-item--dropdown:hover .header_main__dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.header_main__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 280px;
  z-index: 1000;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 12px 0;
}

.header_main__dropdown-title {
  display: block;
  padding: 12px 24px;
  color: #102C5B;
  font-size: 15px;
  font-weight: 600;
  background: #f8f9fa;
  cursor: default;
  border-bottom: 1px solid #ddd;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.header_main__dropdown-item {
  display: block;
  padding: 12px 24px;
  color: #102C5B;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.3s ease;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.header_main__dropdown-item:hover {
  background: #f8f9fa;
}

.header_main__dropdown-submenu {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  width: 280px;
  border-radius: 5px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  padding: 12px 0;
}

.header_main__dropdown-item--submenu:hover .header_main__dropdown-submenu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.header_main__catalog {
  background: red;
  color: #fff !important;
  padding: 8px 16px !important;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.header_main__catalog:hover {
  background: red;
}

.header_main__hamburger {
  display: none;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

.header_main__hamburger span {
  width: 24px;
  height: 3px;
  background: #102C5B;
  margin: 4px 0;
  display: block;
  transition: all 0.3s ease;
}

.header_main__hamburger--active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
  background: #FF0000;
}

.header_main__hamburger--active span:nth-child(2) {
  opacity: 0;
}

.header_main__hamburger--active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
  background: #FF0000;
}

/* Mobile Menu */
.header_main__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100%;
  background: #f0f0f0;
  padding: 20px;
  opacity: 0;
  transform: translateX(20px);
  transition: right 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  z-index: 998;
}

.header_main__mobile-menu--active {
  right: 0;
  opacity: 1;
  transform: translateX(0);
}

.header_main__mobile-close {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: relative;
  margin-left: auto;
}

.header_main__mobile-close::before,
.header_main__mobile-close::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 3px;
  background: #102C5B;
  transition: all 0.3s ease;
}

.header_main__mobile-close::before {
  transform: rotate(45deg);
}

.header_main__mobile-close::after {
  transform: rotate(-45deg);
}

.header_main__mobile-close:hover::before {
  transform: rotate(135deg);
  background: #FF0000;
}

.header_main__mobile-close:hover::after {
  transform: rotate(-135deg);
  background: #FF0000;
}

.header_main__mobile-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header_main__mobile-item {
  margin-bottom: 10px;
}

.header_main__mobile-link {
  color: #102C5B;
  text-decoration: none;
  font-size: 16px;
  display: block;
  padding: 10px;
  transition: color 0.3s ease;
}

.header_main__mobile-link:hover {
  color: #FF0000;
}

.header_main__mobile-link--dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.header_main__mobile-dropdown {
  display: none;
  padding-left: 20px;
}

.header_main__mobile-dropdown--active {
  display: block;
}

.header_main__mobile-dropdown-title {
  padding: 10px 20px;
  color: #102C5B;
  font-size: 14px;
  font-weight: 600;
  background: #e5e5e5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header_main__mobile-dropdown-title::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  color: #102C5B;
}

.header_main__mobile-submenu {
  display: none;
  padding-left: 20px;
}

.header_main__mobile-submenu--active {
  display: block;
}

/* Media Queries */
@media (max-width: 1000px) { /* Covers iPad Mini, iPad Air, Surface Pro 7, Asus Zenbook */
  .header_top__container {
    padding: 8px 12px;
  }

  .header_top__contact {
    gap: 6px;
    font-size: 11px;
  }

  .header_top__social {
    gap: 8px;
  }

  .header_top__social a {
    font-size: 13px;
  }

  .header_top__language {
    padding: 3px 6px;
    font-size: 11px;
  }

  .header_main__menu {
    display: none;
  }

  .header_main__hamburger {
    display: block;
  }

  .header_main__mobile-menu {
    display: block;
  }
}

@media (max-width: 767px) { /* Mobile view adjustments */
  .header_top__contact .email {
    display: none; /* Hide email ID in mobile view */
  }
}


/*Hero section*/



    .home_hero {
      position: relative;
      width: 100%;
      height:80vh;
      overflow: hidden;
    }

    .home_hero__slider {
      width: 300%;
      height: 100%;
      display: flex;
      transition: transform 0.8s ease-in-out;
    }

    .home_hero__slide {
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .home_hero__slide:nth-child(1) {
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../image/Home/1ee9f83e50b41efe829fae33ac2152b.jpg');
    }

    .home_hero__slide:nth-child(2) {
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../image/product(1)/Stainless steel round tube polishing machine/未标题-1-01.jpg');
    }

    .home_hero__slide:nth-child(3) {
      background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../image/product(1)/Stainless steel square tube polishing machine/未标题-1-01.jpg');
    }

    .home_hero__content {
      text-align: center;
      color: #fff;
      max-width: 700px;
      padding: 0 20px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.8s ease, transform 0.8s ease;
    }

    .home_hero__slide--active .home_hero__content {
      opacity: 1;
      transform: translateY(0);
    }

    .home_hero__heading {
      font-size: 2rem;
      font-weight: 700;
      margin-bottom: 1rem;
      line-height: 1.2;
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.3);
      -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.2);
    }

    .home_hero__subheading {
      font-size: 1.25rem;
      font-weight: 300;
      margin-bottom: 2rem;
      line-height: 1.5;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
      -webkit-text-stroke: 0.2px rgba(0, 0, 0, 0.1);
    }

    .home_hero__button {
      display: inline-block;
      padding: 14px 28px;
      background: #FF0000;
      color: #fff;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 600;
      border-radius: 8px;
      border: 2px solid #FF0000;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
    }

    .home_hero__button::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
      transition: left 0.4s ease;
    }

    .home_hero__button:hover::before {
      left: 100%;
    }

    .home_hero__button:hover {
      background: #cc0000;
      border-color: #cc0000;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    }

    .home_hero__button:active {
      transform: translateY(0);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    }

    @media (max-width: 768px) {
      .home_hero__heading {
        font-size: 2.5rem;
      }

      .home_hero__subheading {
        font-size: 1rem;
      }

      .home_hero__button {
        padding: 12px 24px;
        font-size: 0.9rem;
      }
    }

    @media (max-width: 480px) {
      .home_hero__heading {
        font-size: 1.8rem;
      }

      .home_hero__subheading {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
      }

      .home_hero__button {
        padding: 10px 20px;
        font-size: 0.8rem;
      }
    }


    /*Preview ABout */

.previewabout {
  display: flex;
  flex-wrap: wrap;
  padding: 50px;
  align-items: flex-start;
  gap: 40px;
}

.about-image-container {
  flex: 1 1 45%;
  position: relative;
    clip-path: polygon(0 0, 85% 0, 100% 20%, 100% 100%, 0% 100%, 0 0);
  overflow: hidden;
}

.about-image-container img {
  width: 95%;
  height: auto;
  display: block;
}

.about-stats {
  background-color: #201d3e;
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 30px 20px;
  position: relative;
  bottom: 0;
  left: 10px;
  width: 100%;
  margin-top: -40px;
}

.stat-box {
  text-align: center;
  flex: 1;
  border-right: 1px solid rgba(255,255,255,0.3);
}

.stat-box:last-child {
  border-right: none;
}

.stat-box h2 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
}

.stat-box p {
  margin: 5px 0 0;
  font-size: 14px;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h4 {
  font-weight: 400;
  margin: 0;
  color: #333;
}

.about-text h2 {
  font-size: 28px;
  font-weight: 700;
  margin-top: 10px;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  margin-bottom: 15px;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.check-icon {
  margin-right: 10px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .previewabout {
    flex-direction: column;
    padding: 20px;
  }

  .about-stats {
    position: relative;
    margin-top: -20px;
  }

  .stat-box h2 {
    font-size: 24px;
  }

  .about-text h2 {
    font-size: 22px;
  }
}



/*Product Range */
.product-section {
  max-width: 1200px;
  margin: auto;
  padding: 60px 20px;
  text-align: center;
}

.product-section h2 {
  font-size: 2.2rem;
  margin-bottom: 50px;
  font-weight: 700;
  color: #201d3e;
}

.product-block {
  margin-bottom: 60px;
  padding: 30px 20px;
  border-radius: 12px;
  background-color: #f2f2f2;
  transition: all 0.3s ease;
}

.product-block:hover {
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  transform: translateY(-3px);
}

.product-text {
  margin-bottom: 25px;
  padding: 0 20px;
}

.product-title {
  font-weight: 700;
  font-size: 1.3rem;
  color: #003366;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.product-desc {
  font-size: 1rem;
  color: #555;
  max-width: 700px;
  margin: auto;
}

.product-image img {
  width: 80%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
  transition: transform 0.3s ease;
}

.product-image img:hover {
  transform: scale(1.03);
}

@media (max-width: 768px) {
  .product-section h2 {
    font-size: 1.6rem;
  }

  .product-title {
    font-size: 1.1rem;
  }

  .product-desc {
    font-size: 0.95rem;
    padding: 0 10px;
  }

  .product-block {
    padding: 20px 10px;
  }

  .product-image img {
    width: 90%;
  }
}

/* Section Heading */
.subheading {
  text-align: center;
  color: #777;
  margin-bottom: 40px;
  font-size: 1.2rem;
  padding: 0 15px;
}

/* Main Container */
.main-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  align-items: stretch; /* key to equal height */
  padding: 0 15px;
}

/* Left Image Section */
.big-left {
  flex: 1;
  min-width: 280px;
  max-width: 500px;
  width: 100%;
  display: flex;
  align-items: stretch; /* ensures left image grows with right */
}

.big-left .item {
  flex: 1;
  height: auto;
  display: flex;
  flex-direction: column;
}

.big-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  flex-grow: 1;
}

/* Right Grid Section */
.right-block {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  min-width: 280px;
  width: 100%;
}

/* Common Card Style */
.item {
  background: #fff;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.item:hover {
  transform: translateY(-5px);
}

.item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0% 80%, 0 0);
}

/* Text below images */
.caption {
  padding: 15px;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

/* Tablet & Below */
@media (max-width: 900px) {
  .main-container {
    flex-direction: column;
  }

  .right-block {
    grid-template-columns: 1fr;
  }

  .item img {
    height: auto;
    max-height: 300px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0% 80%, 0 0);
  }

  .big-left {
    max-width: 100%;
  }
}

/* Small Devices (Phones) */
@media (max-width: 500px) {
  .subheading {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .item {
    border-radius: 8px;
  }

  .caption {
    font-size: 0.9rem;
    padding: 12px;
  }

  .item img {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15% 100%, 0% 80%, 0 0);
  }
}
/*Footer*/



.network-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: white; /* Light background for better readability */
}

.title {
    font-size: 2rem; /* 24px to 2rem for scalability */
    font-weight: bold;
    color: #102C5B; /* Updated to your requested color */
    margin-bottom: 1rem; /* Adjusted for spacing */
}

.description {
    font-size: 1rem; /* Adjusted for readability */
    color: #555;
    margin-bottom: 2rem;
    text-align: center;
    line-height: 1.6;
    width: 50%;
}

.image-container {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain; /* Ensures the image scales properly without distortion */
}

.map {
    display: grid;
    grid-template-columns: repeat(50, 1fr);
    gap: 2px;
    justify-content: center;
    margin: 0 auto;
    width: 90%;
    max-width: 600px;
}

.map div {
    width: 10px;
    height: 10px;
    background-color: #ccc;
}

.map .highlight {
    background-color: rgb(18,83,159); /* Updated to match the title color */
}

@media (max-width: 768px) {
    .map {
        grid-template-columns: repeat(25, 1fr); /* Adjust for smaller screens */
    }

    .map div {
        width: 8px;
        height: 8px;
    }

    .description {
        font-size: 1rem;
        color: #555;
        margin-bottom: 2rem;
        text-align: center;
        line-height: 1.6;
        width: 90%; /* Slightly narrower for better mobile readability */
    }

    .image-container {
        width: 95%; /* Slightly wider to utilize more screen space */
        max-width: 500px;
    }
}

@media (max-width: 480px) {
    .map {
        grid-template-columns: repeat(15, 1fr); /* Further reduce grid items on very small screens */
    }

    .map div {
        width: 6px;
        height: 6px;
    }

    .title {
        font-size: 1.5rem; /* Smaller title for very small screens */
    }

    .description {
        font-size: 0.9rem; /* Slightly smaller for better fit */
        width: 100%; /* Full width for very small screens */
    }

    .image-container {
        width: 100%; /* Full width for very small screens */
        max-width: 400px;
    }

    .image-container img {
        max-height: 300px; /* Limit height to prevent oversized images */
    }
}


/*Global Footer*/



/* Footer */
.global_footer {
  background-color: #201d3e;
  color: #fff;
  padding: 40px 20px 20px; /* Increased bottom padding */
  font-family: 'Poppins', sans-serif;
}

.global_footer__container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px; /* Added consistent gap */
}

.global_footer__column {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.global_footer__logo {
  width: 150px;
  margin-bottom: 12px; /* Increased for better spacing */
}

.global_footer__description {
  font-size: 0.95rem;
  line-height: 1.6; /* Improved readability */
  color: #D9D9D9;
  margin-bottom: 16px; /* Increased spacing */
}

.global_footer__heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 12px; /* Increased for better separation */
}

.global_footer__socials {
  display: flex;
  gap: 12px; /* Slightly increased gap */
  margin-top: 12px; /* Better spacing */
}

.global_footer__socials a {
  font-size: 1.2rem;
  color: #fff;
  transition: color 0.3s ease;
}

.global_footer__socials a:hover {
  color: #F07F00;
}

.global_footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.global_footer__links li {
  margin-bottom: 8px; /* Increased for better spacing */
}

.global_footer__links a {
  color: #D9D9D9;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.global_footer__links a:hover {
  color: #F07F00;
}

.global_footer__contact p {
  margin: 8px 0; /* Added vertical spacing */
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px; /* Increased gap for icons */
  color: #D9D9D9;
}

.global_footer__contact i {
  color: white;
  min-width: 18px;
}

.global_footer__contact a {
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
}

.global_footer__contact a:hover {
  color: white;
}

.global_footer__bottom-line {
  border-top: 1px solid red;
  text-align: center;
  padding: 16px 0; /* Improved padding */
  margin-top: 24px; /* Increased separation */
  font-size: 0.85rem;
  color: #ccc;
}

/* Mobile Optimized */
@media (max-width: 768px) {
  .global_footer {
    padding: 32px 16px; /* Adjusted padding for mobile */
  }

  .global_footer__container {
    flex-direction: column;
    gap: 24px; /* Consistent spacing between columns */
    align-items: stretch; /* Better alignment */
  }

  .global_footer__column {
    flex: 1 1 auto;
    margin-bottom: 0; /* Remove extra margin */
  }

  .global_footer__logo {
    width: 120px; /* Slightly smaller logo on mobile */
    margin-bottom: 10px;
  }

  .global_footer__description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 14px;
  }

  .global_footer__heading {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .global_footer__socials {
    gap: 10px;
    margin-top: 10px;
  }

  .global_footer__contact p {
    font-size: 0.9rem;
    margin: 6px 0;
    gap: 6px;
  }

  .global_footer__links li {
    margin-bottom: 6px;
  }

  .global_footer__links a {
    font-size: 0.9rem;
  }

  .global_footer__bottom-line {
    font-size: 0.8rem;
    margin-top: 20px;
    padding: 12px 0;
  }
}
/*Hero section about us */



/* About us page  Hero Section */
  .about_hero__container {
    position: relative;
    height: 400px;
    background: linear-gradient(
        rgba(16, 44, 91, 0.6), /* #102C5B with opacity */
        rgba(16, 44, 91, 0.6)
    );
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

/* Image styles */
.about_hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Parallax effect */
.about_hero__container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(16, 44, 91, 0.6),
        rgba(16, 44, 91, 0.6)
    );
    transform: translateZ(-1px) scale(1.1);
    z-index: -1;
}

.about_hero__content {
    max-width: 1200px;
    padding: 0 20px;
    animation: fadeIn 1s ease-out forwards;
    position: relative;
    z-index: 1;
}

.about_hero__title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb styles */
.about_hero__breadcrumb {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    animation: fadeIn 1.2s ease-out forwards;
}

.about_hero__breadcrumb-link {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.about_hero__breadcrumb-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.about_hero__breadcrumb-separator {
    color: #fff;
    opacity: 0.6;
}

/* Fade-in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .about_hero__container {
        height: 300px;
    }

    .about_hero__title {
        font-size: 2rem;
    }

    .about_hero__breadcrumb {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .about_hero__container {
        height: 250px;
    }

    .about_hero__title {
        font-size: 1.5rem;
    }

    .about_hero__breadcrumb {
        font-size: 0.8rem;
    }
}


/*About us */
.about-section {
  padding: 60px 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
}

.about-container {
  max-width: 1300px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
}

/* Left Image */
.about-image {
  flex: 1 1 50%;
  padding-left: 20px;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-top-right-radius: 30px;
  border-bottom-right-radius: 30px;
  border-right: 5px solid #201d3e;
  border-top: 5px solid #201d3e;
}

/* Right Content */
.about-text {
  flex: 1 1 45%;
  padding: 0 10px;
  text-align: left;
  box-sizing: border-box;
}

.about-text h4 {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  margin-bottom: 10px;
  color: #201d3e;
}

.about-text h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #201d3e;
  line-height: 1.4;
}

.about-text p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #555;
}

.contact-button {
  background-color: #201d3e;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
}

.contact-button:hover {
  background-color: #181634;
}

/* ✅ Responsive Fix */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    padding: 30px 15px;
  }

  .about-container {
    flex-direction: column;
    gap: 20px;
  }

  .about-image,
  .about-text {
    flex: 1 1 100%;
    padding: 0;
  }

  .about-image {
    padding-left: 0;
  }

  .about-text {
    margin-top: 20px;
    text-align: left;
  }

  .about-text h2 {
    font-size: 24px;
  }

  .contact-button {
    justify-content: flex-start;
  }
}


    /* Divider Section */
 .bmhs-divider-container {
      display: flex;
      justify-content: space-around;
      align-items: center;
      background-color:  #201d3e;
      padding: 20px;
      color: white;
      width: 100%;
      margin: 0;
      animation: bmhs-fade-in 1s ease-in-out;
    }

    .bmhs-stat-block {
      text-align: center;
    }

    .bmhs-stat-number {
      font-size: 2.5em;
      font-weight: bold;
      color: white;
    }

    .bmhs-stat-label {
      font-size: 1em;
      text-transform: uppercase;
      margin-top: 5px;
      color: white;
    }

    .bmhs-divider-button {
      background-color: white;
      color: #0052cc;
      border: none;
      padding: 10px 20px;
      font-size: 1.1em;
      font-weight: bold;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .bmhs-divider-button:hover {
      background-color: #4d8cff;
      color: white;
      transform: scale(1.05);
    }

    @keyframes bmhs-fade-in {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 768px) {
      .bmhs-divider-container {
        flex-direction: column;
        gap: 20px;
        padding: 15px;
      }

      .bmhs-stat-block {
        margin-bottom: 10px;
      }

      .bmhs-stat-number {
        font-size: 2em;
      }

      .bmhs-stat-label {
        font-size: 0.9em;
      }

      .bmhs-divider-button {
        font-size: 1em;
        padding: 8px 16px;
      }
    }

    @media (max-width: 480px) {
      .bmhs-stat-number {
        font-size: 1.5em;
      }

      .bmhs-stat-label {
        font-size: 0.8em;
      }

      .bmhs-divider-button {
        font-size: 0.9em;
        padding: 6px 12px;
      }
    }



/* Hero Section */
.chero-section {
  width: 100%;
  position: relative;
}
.chero-section img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  display: block;
}

/* Certificate Section */
.certificate-section {
  max-width: 1200px;
  margin: -100px auto 0px;
  padding: 0 0px;
  position: relative;
  z-index: 2;
  background: lightgray;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.certificate-heading {
  background-color: #201d3e;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
  border-radius: 16px 16px 0 0;
  width: 100%;
}
.certificate-heading h2 {
  font-size: 32px;
  margin-bottom: 10px;
}
.certificate-heading p {
  font-size: 14px;
  color: #ccc;
}

/* Slider Layout */
.slider-wrapper {
  position: relative;
  padding: 30px 40px;
  background: #f8f8f8;
}
.slider-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.slider-container::-webkit-scrollbar {
  display: none;
}

/* Cards */
.certificate-card {
  flex: 0 0 220px;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
.certificate-card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}
.certificate-card img {
  width: 100%;
  display: block;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: white;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  z-index: 5;
}
.arrow:hover {
  background-color: #201d3e;
}
.arrow-left {
  left: 10px;
}
.arrow-right {
  right: 10px;
}

/* Counter */
.slide-counter {
  text-align: center;
  margin-top: 15px;
  font-weight: 600;
  font-size: 14px;
  color: #444;
}

/* Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
}
.modal-content {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  display: block;
  border-radius: 12px;
}
.close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 36px;
  color: red;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .chero-section img {
    max-height: 250px;
  }

  .certificate-heading h2 {
    font-size: 24px;
  }

  .slider-wrapper {
    padding: 20px;
  }

  .certificate-card {
    flex: 0 0 80%;
  }

  .arrow {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }

  .arrow-left {
    left: 5px;
  }

  .arrow-right {
    right: 5px;
  }

  .certificate-section {
    margin: -60px 10px 30px;
  }
}
/*Our History*/
 
    .history_heading {
      text-align: center;
      padding: 40px 20px 20px;
    }

    .history_heading h1 {
      font-size: 2.8em;
      margin-bottom: 10px;
      color: #0d1a26;
    }

    .history_heading p {
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.1em;
      color: #555;
    }

    .image-full-width {
      width: 100%;
      margin: 0;
      padding: 0;
    }

    .image-full-width img {
      width: 100%;
      height: auto;
      display: block;
      pointer-events: none;
      user-select: none;
      -webkit-user-drag: none;
      -webkit-touch-callout: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
    }

    @media screen and (max-width: 600px) {
      .history_heading h1 {
        font-size: 2em;
      }
    }

    
  .partner-title {
      font-size: 2.5rem;
      margin: 30px 0 10px;
      color: #19162e;
    }

    .partner-subtitle {
      color: #666;
      margin-bottom: 40px;
    }

    .partner-hex-grid {
      display: flex;
      flex-direction: column;
      gap: 10px;
      align-items: center;
      padding: 0 10px 50px;
    }

    .partner-row {
      display: flex;
      gap: 10px;
      justify-content: center;
    }

    .partner-row:nth-child(even) {
      margin-left: 75px;
    }

    .partner-hex {
      width: 120px;
      aspect-ratio: 1 / 0.866;
      background: white;
      border: 2px solid #ccc;
      clip-path: polygon(
        25% 5.77%,
        75% 5.77%,
        100% 50%,
        75% 94.23%,
        25% 94.23%,
        0% 50%
      );
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.3s;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

    .partner-hex:hover {
      transform: scale(1.05);
    }

    .partner-hex img {
      max-width: 75%;
      max-height: 75%;
      object-fit: contain;
    }

    @media (max-width: 768px) {
      .partner-hex {
        width: 90px;
      }

      .partner-row:nth-child(even) {
        margin-left: 45px;
      }
    }

    @media (max-width: 480px) {
      .partner-hex {
        width: 70px;
      }

      .partner-row:nth-child(even) {
        margin-left: 30px;
      }
    }

/*Partent */

.partner-section {
  text-align: center;
  padding: 60px 20px;
  background: #f8f8f8;
}

.partner-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1a1a3c;
}

.partner-section p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.hex-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px; /* Space between rows */
  flex-wrap: wrap;
}

.hex-row.offset {
  margin-left: 60px;
}

/* Hex base shape */
.hex {
  width: 120px;
  aspect-ratio: 1 / 1;
  background: white;
  clip-path: polygon(
    25% 6.7%, 75% 6.7%,
    100% 50%, 75% 93.3%,
    25% 93.3%, 0% 50%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

/* Only 30% of hexagons show a border */
.hex:nth-child(3n) {
  border: 2px solid #2d3e50; /* You can change color */
}

/* Hover effect */
.hex:hover {
  transform: scale(1.05);
}

/* Image inside */
.hex img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hex {
    width: 80px;
  }

  .hex-row.offset {
    margin-left: 30px;
  }

  .hex-row {
    margin-bottom: 20px;
  }
}



/* Section */
.factory-tour {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.factory-tour-text {
  margin-bottom: 2rem;
  padding: 0 1rem;
}

.factory-title {
  font-size: 2.5rem;
  color: #1b1c3b;
  font-weight: 700;
}

.factory-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 1rem auto 0;
  line-height: 1.6;
}

/* Image Grid */
.factory-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 0 1rem;
  margin-bottom: 30px;
}

.factory-item {
  flex: 1 1 22%; /* About 4 per row */
  max-width: 270px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.factory-item img {
  width: 100%;
  height: 200px;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.factory-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.factory-item:hover img {
  transform: scale(1.05);
}

/* Responsive Rules */
@media (max-width: 992px) {
  .factory-item {
    flex: 1 1 45%; /* 2 per row */
  }
}

@media (max-width: 600px) {
  .factory-item {
    flex: 1 1 100%; /* 1 per row */
  }

  .factory-title {
    font-size: 1.8rem;
  }

  .factory-subtitle {
    font-size: 1rem;
    padding: 0 1rem;
  }
}







    /*Machine image*/

     .machine-section {
    text-align: center;
    padding: 40px 20px;
  }

  .machine-title {
    font-size: 2.5rem;
    color: #2b2b2b;
    margin-bottom: 20px;
    font-weight: bold;
  }

  .machine-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    border-radius: 10px;
  }

  @media (max-width: 768px) {
    .machine-title {
      font-size: 1.8rem;
    }

    .machine-section {
      padding: 30px 15px;
    }
  }


  /*techincal teble */

  .technical-table-section {
    padding: 50px 20px;
    background-color: #f4f4f4;
    font-family: 'Segoe UI', sans-serif;
  }

  .technical-heading {
    text-align: center;
    font-size: 2.5rem;
    color: #201d3e;
    margin-bottom: 30px;
  }

  .technical-table-container {
    overflow-x: auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }

  .technical-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
  }

  .technical-table thead {
    background-color: #201d3e;
    color: #fff;
  }

  .technical-table th,
  .technical-table td {
    padding: 15px 20px;
    text-align: center;
    font-size: 1rem;
    border: 1px solid #ddd;
  }

  .technical-table tbody tr:nth-child(odd) {
    background-color: #ffffff;
  }

  .technical-table tbody tr:nth-child(even) {
    background-color: #f0f0f0;
  }

  .technical-table tbody tr:hover {
    background-color: #e0e0e0;
  }

  @media (max-width: 768px) {
    .technical-heading {
      font-size: 1.8rem;
    }

    .technical-table th,
    .technical-table td {
      padding: 12px 10px;
      font-size: 0.95rem;
    }
  }


  /*Product Gallary*/

   .process-gallery-section {
    padding: 50px 20px;
    background-color: #f9f9f9;
    font-family: 'Segoe UI', sans-serif;
  }

  .gallery-title {
    text-align: center;
    font-size: 2.5rem;
    color: #201d3e;
    margin-bottom: 40px;
  }

  .process-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
  }

  .process-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 2px solid #201d3e;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .process-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  @media (max-width: 600px) {
    .gallery-title {
      font-size: 1.8rem;
    }
  }


  .custom-contact {
    background-color: #1e2656; /* matches screenshot */
    padding: 60px 20px;
    text-align: center;
    color: white;
    font-family: 'Segoe UI', sans-serif;
  }

  .custom-contact h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }

  .custom-contact-form {
    max-width: 500px;
    margin: 0 auto;
    display: grid;
    gap: 15px;
  }

  .custom-contact-form input,
  .custom-contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    outline: none;
  }

  .custom-contact-form textarea {
    resize: vertical;
  }

  .custom-contact-form button {
    background-color: #e87d27;
    color: #fff;
    border: none;
    padding: 12px;
    font-size: 1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }

  .custom-contact-form button:hover {
    background-color: #d1691e;
  }

  @media (max-width: 600px) {
    .custom-contact h3 {
      font-size: 1.25rem;
    }
  }


  /*Product*/


   .product-showcase-section {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
  }

  .product-title {
    font-size: 2rem;
    color: #201d3e;
    margin-bottom: 40px;
    font-weight: bold;
  }

  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
  }

  .product-card {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 20px;
    transition: transform 0.3s ease;
       text-decoration: none;
  }

  .product-card:hover {
    transform: translateY(-5px);
  }

  .product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
  }

  .product-card p {
    font-weight: 600;
    color: #201d3e;
    font-size: 1rem;
    margin: 0;
  }

  @media (max-width: 480px) {
    .product-title {
      font-size: 1.5rem;
    }

    .product-card p {
      font-size: 0.95rem;
    }
  } 


  /*Machine*/

   .machine-wrapper {
    background-color: white;
    padding: 25px;
    border-radius: 16px;
    max-width: 1000px;
    width: 100%;
    margin-top: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  }

  .machine-title {
    text-align: center;
    color: #1c2e58;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }

  .main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: contain;
    border: 2px solid #d0d0d0;
  }

  .thumbnail-slider {
    display: flex;
    align-items: center;
    margin-top: 20px;
    position: relative;
  }

  .slider-btn {
    background-color: #1c2e58;
    color: white;
    border: none;
    font-size: 24px;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }

  .slider-btn:hover {
    background-color: #32457a;
  }

  .thumbnails {
    overflow-x: auto;
    white-space: nowrap;
    flex: 1;
    margin: 0 10px;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE */
  }

  .thumbnails::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }

.thumbnail {
  display: inline-block;
  width: 200px; /* Increased from 150px */
  margin-right: 16px;
  border: 2px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  vertical-align: top;
}

.thumbnail img {
  width: 100%;
  height: 120px; /* Increased from 90px */
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 6px;
}

  .thumbnail:hover img {
    transform: scale(1.05);
  }

  .thumbnail.active {
    border-color: #1c2e58;
  }

.thumb-caption {
  font-size: 14px;
  color: #333;
  margin-top: 8px;
  text-align: center;
  white-space: normal;
  line-height: 1.3;
  max-width: 200px;
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .thumbnail {
    width: 140px;
  }

  .thumbnail img {
    height: 90px;
  }

  .thumb-caption {
    font-size: 12px;
    max-width: 140px;
  }
}

@media (max-width: 480px) {
  .thumbnail {
    width: 100px;
  }

  .thumbnail img {
    height: 70px;
  }

  .thumb-caption {
    font-size: 11px;
    max-width: 100px;
  }
}
  .center-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
  }


  /*technical*/


   .spec-wrapper {
    max-width: 1100px;
    margin: auto;
    padding: 30px 15px;
    font-family: 'Segoe UI', sans-serif;
  }

  .spec-title {
    text-align: center;
    color: #1c2e58;
    font-size: 28px;
    margin-bottom: 30px;
  }

  .section-heading {
    font-size: 18px;
    font-weight: bold;
    color: #1c2e58;
    margin: 25px 0 10px;
  }

  .table-responsive {
    overflow-x: auto;
  }

  .spec-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
  }

  .spec-table thead th {
    background-color: #1c2e58;
    color: #fff;
    font-weight: 600;
    padding: 10px;
    text-align: center;
    font-size: 14px;
  }

  .spec-table td {
    text-align: center;
    padding: 10px;
    font-size: 14px;
    color: #333;
  }

  .spec-table tr.alt {
    background-color: #f1f1f1;
  }

  @media (max-width: 768px) {
    .spec-title {
      font-size: 22px;
    }

    .section-heading {
      font-size: 16px;
    }

    .spec-table thead th,
    .spec-table td {
      font-size: 12px;
      padding: 8px;
    }
  }

  @media (max-width: 480px) {
    .spec-title {
      font-size: 20px;
    }

    .section-heading {
      font-size: 15px;
    }
  }



  .features-wrapper {
    max-width: 1100px;
    margin: auto;
    padding: 40px 15px;
    font-family: 'Segoe UI', sans-serif;
  }

  .features-title {
    text-align: center;
    color: #1c2e58;
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 30px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }

  .feature-card {
    background-color: #fff;
    border: 2px solid #dcdcdc;
    border-radius: 12px;
    text-align: center;
    padding: 16px;
    transition: box-shadow 0.3s ease;
    height: 100%;
  }

  .feature-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .feature-card img {
    width: 100%;
    max-width: 220px;
    margin-bottom: 12px;
    height: auto;
    border-radius: 6px;
    object-fit: contain;
  }

  .feature-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
  }

  /* Responsive */
  @media (max-width: 992px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 576px) {
    .features-grid {
      grid-template-columns: 1fr;
    }

    .feature-card p {
      font-size: 13px;
    }
  }


  /*Contact*/
.contactpage-hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 40px 20px;
  background-color: #fff;
}

.contactpage-form,
.contactpage-details {
  flex: 1 1 400px;
  max-width: 500px;
  margin: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 10px;
  padding: 30px;
}

.contactpage-form h2 {
  color: #201d3e;
  font-size: 26px;
  margin-bottom: 10px;
}

.contactpage-form p {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}

.contactpage-form input,
.contactpage-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.contactpage-form button {
  background-color: #201d3e;
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contactpage-form button:hover {
  background-color: #16132d;
}

.contactpage-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contactpage-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  margin-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f3f3f3;
  border-radius: 50%;
}

.contactpage-icon svg {
  width: 24px;
  height: 24px;
  fill: #201d3e !important;
}

.contactpage-text h4 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #201d3e;
}

.contactpage-text p,
.contactpage-text a {
  font-size: 14px;
  color: #555;
  text-decoration: none;
}

.contactpage-text a:hover {
  color: #201d3e;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .contactpage-hero {
    flex-direction: column;
    align-items: center;
  }

  .contactpage-form,
  .contactpage-details {
    margin: 15px;
    max-width: 100%;
  }
}

.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}

.floating-whatsapp img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}

@media (max-width: 480px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp img {
    width: 24px;
    height: 24px;
  }
}



  /* Scroll to Top Button */
    .scrollToTopBtn {
      position: fixed;
      bottom: 30px;
      right: 30px;
      background-color: #e60000;
      color: #fff;
      border: none;
      outline: none;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      opacity: 0;
      visibility: hidden;
      z-index: 999;
    }

    .scrollToTopBtn.show {
      opacity: 1;
      visibility: visible;
    }

    .scrollToTopBtn:hover {
      background-color: #cc0000;
      transform: translateY(-5px);
    }

     .page-loader-body {
      margin: 0;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #111;
      font-family: 'Poppins', sans-serif;
    }

    .loader-container {
      position: relative;
      width: 100px;
      height: 100px;
    }

    .loader-ring {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      border: 6px solid transparent;
      border-top: 6px solid #ff4d4d;
      border-right: 6px solid #ff1a1a;
      animation: spin 1.2s linear infinite;
      background: linear-gradient(45deg, transparent, #e60000);
      box-shadow: 0 0 20px rgba(255, 0, 0, 0.3);
    }

    .loader-center {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 20px;
      height: 20px;
      background: #ff1a1a;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      animation: pulse 1.2s ease-in-out infinite;
      box-shadow: 0 0 12px rgba(255, 0, 0, 0.6);
    }

    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }

    @keyframes pulse {
      0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
      }
      50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.6;
      }
    }