 
 html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
 /* Top Bar */
    .top-bar {
      background: #0b1c6c;
      padding: 6px 0;
      font-size: 14px;
      border-bottom: 1px solid #e5e5e5;
    }
    .container { width: 90%; margin: 0 auto; }
    .top-bar .contact-info { display: flex; align-items: center; flex-wrap: wrap; }
    .top-bar .contact-item { margin-right: 25px; display: flex; align-items: center; font-weight: 500; color: #fff; }
        .top-bar .contact-item a{ color: #fff; }
    .top-bar .contact-item i {
      background: #0a4e96; color: #fff; border-radius: 50%; width: 26px; height: 26px;
      display: flex; align-items: center; justify-content: center; margin-right: 8px; font-size: 13px;
    }
    .social-icons a { margin-left: 12px;
    font-size: 16px;
    background: #fff;
    border-radius: 40px;
    padding: 5px 11px;
    height: 35px;
    width: 35px;}
    .social-icons .facebook { color: #1877f2; }
    .social-icons .instagram { color: #e4405f; }
    .social-icons .linkedin { color: #0a66c2; }
    .social-icons .youtube { color: #ff0000; }


/* Header */
.header {
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;  /* no sticky */
  z-index: 1000;
}

    .header-content { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; }
    .logo img { max-height: 55px; }

    /* Desktop Nav */
    .nav-desktop .nav-menu { display: flex; gap: 25px; }
    .nav-desktop .nav-link { text-decoration: none; color: #333; font-weight: 500; }
    .nav-desktop .nav-link:hover { color: #0a4e96; }
/* Mega Menu parent li */

/* Mega menu box */
.mega-menu {
  position: absolute;
  top: 100%; /* bilkul niche attach ho jaye */
  left: 0;
  right: 0;
  background: #fff;
  padding: 25px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);

  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999; /* overlap kare */
}

/* Hover me show */
.mega-menu-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
}
    .mega-menu-content { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-around; }
    .mega-menu-column h4 { font-size: 16px; font-weight: 700; margin-bottom: 12px; color: #0a4e96; }
    .mega-menu-column ul { padding: 0; }
    .mega-menu-column li { margin-bottom: 8px; }
    .mega-menu-column a { text-decoration: none; color: #333; }
    .mega-menu-column a:hover { color: #ff9800; }
    .mega-menu-item:hover .mega-menu { display: block; }

    /* Mobile Toggle */
    .mobile-menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
    .mobile-menu-toggle span { display: block; width: 28px; height: 3px; background: #333; border-radius: 2px; transition: all 0.3s ease; }
    .mobile-menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    .mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
    .mobile-menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

    /* Mobile Nav */
    .nav-mobile { display: none; background: #fff; padding: 20px; position: absolute; top: 100%; left: 0; width: 100%; box-shadow: 0 6px 15px rgba(0,0,0,0.15); }
    .nav-mobile.active { display: block; }
    .mobile-nav-menu li { margin-bottom: 12px; }
    .mobile-nav-menu a { text-decoration: none; color: #333; font-weight: 500; }
    .mobile-dropdown-menu { display: none; padding-left: 15px; margin-top: 8px; }
    .mobile-dropdown.open .mobile-dropdown-menu { display: block; }
    .mobile-dropdown-toggle { display: flex; justify-content: space-between; align-items: center; }

    /* Responsive */
    @media(max-width: 991px) {
      .nav-desktop { display: none; }
      .mobile-menu-toggle { display: flex; }
    }





/* Banner Section */
.inner-banner {
  background: linear-gradient(135deg, #f9f9f9, #eef3f7); /* light soft bg */
  padding: 80px 0;
  text-align: center;
  border-bottom: 1px solid #e5e5e5;
}
.inner-banner .banner-content {
  max-width: 700px;
  margin: 0 auto;
}
.inner-banner h1 {
  font-size: 42px;
  font-weight: 700;
  color: #0a4e96;
  margin-bottom: 10px;
}
.inner-banner p {
  font-size: 18px;
  color: #333;
  margin: 0;
}



.growmax-modern {
  font-family: "Poppins", sans-serif;
  position: relative;
}

.timeline-step {
  position: relative;
  padding-left: 90px;
  margin-bottom: 70px;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: 48px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, #0a4e96, #ff9800);
  border-radius: 2px;
}

.icon-circle {
  position: absolute;
  left: 10px;
  top: 0;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a4e96, #ff9800);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  z-index: 2;
}

.timeline-step .content {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.timeline-step .content:hover {
  transform: translateY(-5px);
}

.timeline-step h2 {
  font-size: 24px;
  font-weight: 700;
  color: #0a4e96;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.timeline-step p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 15px;
}


.footer {
  background: linear-gradient(135deg, #0a0a0a, #1e1e1e);
  color: #ccc;
  padding: 60px 0 20px;
  font-family: "Poppins", sans-serif;
}
.footer .footer-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
}
.footer .footer-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: #ff9800;
  margin-top: 6px;
  border-radius: 2px;
}
.footer .footer-links li {
  margin-bottom: 10px; list-style: none;
}
.footer .footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer-links a:hover {
  color: #ff9800;
}
.footer .two-column {
  columns: 2; /* auto split into 2 columns */
}

.footer .footer-contact li {
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer .footer-contact i {
  color: #ff9800;
  margin-top: 4px;
}
.footer-contact a{color:#fff;}
/* Bottom */
.footer-bottom {
  border-top: 1px solid #333;
  padding: 15px 0;
  margin-top: 30px;
  font-size: 14px;
  color: #fff;
}
.footer-bottom a {
  color: #ff9800;
  text-decoration: none;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.footer-bottom p{color:#fff;}

section { padding: 0px 0; }
    .section-light { background:#f9f9f9; }
    .section-white { background:#fff; }
    h1,h2,h3 { font-weight:700; color:#0a4e96; margin-bottom:25px; }
    p { margin-bottom:20px; }
    .cta-btn {
      display:inline-block;padding:12px 28px;background:#992e26 !important;color:#fff;
      border-radius:30px;text-decoration:none;font-weight:600;transition:0.3s;
      margin-top:20px;
    }
    .cta-btn:hover { background:#e68900; transform:translateY(-3px); }
    .image-shape { display: flex; justify-content: center; overflow:hidden; margin:auto; max-width:100%; }
    .image-shape img { width:85%; transition:0.4s; box-shadow:0 8px 25px rgba(0,0,0,0.15); border-radius:20px; }
    .image-shape:hover img { transform:scale(1.05); }
    .icon-list li { margin-bottom:12px; font-size:16px; }
    .icon-list i { color:#ff9800; margin-right:10px; }


  .section-title {
    font-weight: 700;
    color: #0a4e96;
  }
  .title-underline {
    width: 80px;
    height: 3px;
    background: #ff9800;
    margin: 10px auto 0;
    border-radius: 2px;
  }
  .contact-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  }
  .contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  }
  .contact-card h5 {
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
  }
  .contact-card p {
    margin: 0;
    font-size: 16px;
    color: #333;
  }


  /* ===========================
   Responsive Design
=========================== */
/* Fix top-bar on mobile */
@media(max-width: 768px) {
  .top-bar .container {
    flex-direction: column; /* row se column */
    align-items: flex-start;
  }

  .top-bar .contact-info {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 8px;
    gap: 6px;
  }

  .social-icons {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 5px;
    flex-wrap: wrap;
  }

  .social-icons a {
    margin: 0 !important;
    width: 32px;
    height: 32px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

/* Prevent horizontal scroll issue */
body {
  overflow-x: hidden;
}

/* Tablet (max 991px) */
@media(max-width: 991px) {
  /* Topbar */
  .top-bar .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .top-bar .contact-info {
    margin-bottom: 8px;
  }

  /* Header */
  .header-content {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .logo img {
    max-height: 45px;
  }

  .nav-desktop {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .nav-mobile {
    width: 100%;
  }

  /* Banner */
  .inner-banner h1 {
    font-size: 32px;
  }
  .inner-banner p {
    font-size: 16px;
  }

  /* Timeline */
  .timeline-step {
    padding-left: 0;
    margin-left: 0;
  }
  .timeline-step::before {
    display: none;
  }
  .icon-circle {
    position: relative;
    margin-bottom: 20px;
    left: 0;
  }
  .timeline-step .content {
    padding: 20px;
  }
  .timeline-step h2 {
    font-size: 20px;
  }
  .timeline-step p {
    font-size: 16px;
  }

  /* Contact cards */
  .contact-card {
    margin-bottom: 20px;
  }

  /* Footer */
  .footer .footer-widget {
    margin-bottom: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}

/* Mobile (max 576px) */
@media(max-width: 576px) {
  /* Top Bar */
  .top-bar .contact-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  .social-icons {
    margin-top: 10px;
  }

  /* Banner */
  .inner-banner {
    padding: 50px 0;
  }
  .inner-banner h1 {
    font-size: 26px;
  }
  .inner-banner p {
    font-size: 14px;
  }

  /* Timeline */
  .icon-circle {
    width: 60px;
    height: 60px;
    font-size: 24px;
  }
  .timeline-step h2 {
    font-size: 18px;
  }
  .timeline-step p {
    font-size: 14px;
  }

  /* Buttons */
  .cta-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* Footer */
  .footer {
    padding: 40px 0 15px;
  }
  .footer .footer-title {
    font-size: 16px;
  }
  .footer .footer-links a {
    font-size: 14px;
  }
  .footer .footer-contact li {
    font-size: 14px;
  }
}






/* Alternate row background with proper priority */
.table-2 tr:nth-child(odd) td {
  background-color: #f9fcff !important;  /* Light Blue */
}

.table-2 tr:nth-child(even) td {
  background-color: #ffffff !important;  /* White */
}

/* Table style */
.table-2 {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  border-radius: 6px;
  overflow: hidden;
  font-size: 16px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

/* Table cells */
.table-2 td {
  padding: 12px 16px;
  border-bottom: 1px solid #eaeaea;
}

/* First column highlight */
.table-2 td:first-child {
  font-weight: 600;
  color: #0a4e96;
}



.makhana-section {
  font-family: "Poppins", sans-serif;
  background: #fff;
}

.main-title {
  font-size: 32px;
  font-weight: 700;
  color: #0a4e96;
  margin-bottom: 15px;
  position: relative;
}

.main-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: #ff9800;
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0a4e96;
  position: relative;
}

.section-block {
  margin-bottom: 40px;
}

.styled-list {
  padding-left: 20px;
  list-style: none;
}

.styled-list li {
  font-size: 16px;
  margin-bottom: 8px;
  color: #333;
}

.steps .step {
  margin-bottom: 15px;
  padding-left: 50px;
  position: relative;
  font-size: 16px;
  color: #333;
}

.steps .step-number {
  position: absolute;
  left: 0;
  top: 0;
  background: #0a4e96;
  color: #fff;
  font-weight: bold;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.why-card.alt {
  background: #f5faff;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.why-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0a4e96;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 16px;
  color: #333;
}
.makhana-box {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  font-family: "Poppins", sans-serif;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: #0a4e96;
  margin-top: 30px;
  margin-bottom: 20px;
  position: relative;
}


.feature-item, .benefit-item {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 15px;
  font-size: 16px;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}
.feature-item:hover, .benefit-item:hover {
  transform: translateY(-3px);
  background: #eef3f9;
}

.process-list .step {
  background: #f9f9f9;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 50px;
  font-size: 16px;
  color: #333;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.process-list .badge {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #0a4e96;
  color: #fff;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose-box {
  background: #fff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  font-family: "Poppins", sans-serif;
}

.choose-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  height: 100%;
}
.choose-card:hover {
  transform: translateY(-5px);
  background: #eef5fb;
}
.choose-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #0a4e96;
  margin-bottom: 12px;
}
.choose-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}



.product-table tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}
.product-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}
.card {
  border-radius: 12px;
}
.info-box {
  border-left: 5px solid #0a4e96;
}








.product-table tbody tr:nth-child(odd) {
  background-color: #f9f9f9;
}
.product-table tbody tr:nth-child(even) {
  background-color: #ffffff;
}
.card {
  border-radius: 12px;
}
.info-box {
  border-left: 5px solid #0a4e96;
}













.privacy-section h2 {
  color: #0a4e96;
  font-weight: 600;
}

.privacy-section h4 {
  color: #333;
  font-size: 1.2rem;
  margin-top: 20px;
  font-weight: 600;
}

.privacy-section p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

.card {
  border-radius: 12px;
  background: #fff;
}






.under-construction {
  min-height: 80vh;

  text-align: center;
  padding: 50px 20px;
}

.under-construction h1 {
  color: #0a4e96;
  font-size: 2rem;
  margin-bottom: 15px;
}

.under-construction p {
  font-size: 1.1rem;
  color: #666;
}



.section-box {
  background: #fff;
}

.product-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: #0a4e96;
}

.table-striped tbody tr:nth-child(odd) {
  background-color: #f9fbff;
}

.table td {
  padding: 10px 15px;
  vertical-align: middle;
}






.section-heading {
    border-left: 5px solid #007bff;
    padding-left: 10px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #333;
  }

  .styled-list li {
    margin-bottom: 8px;
    font-size: 16px;
  }
  .styled-steps li {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .content-box {
    transition: all 0.3s ease-in-out;
  }
  .content-box:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  }









  






  .soya-section {
  background: #f9fafc;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
}

.section-heading {
  border-left: 5px solid #007bff;
  padding-left: 10px;
  font-weight: bold;
  margin-bottom: 20px;
}

.content-box {
  background: #fff;
  padding: 25px;
  margin-bottom: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.product-box {
  background: #fff;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 40px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.product-box img {
  max-height: 350px;
  object-fit: cover;
}

.price {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 10px;
}

.custom-table td {
  padding: 10px;
  vertical-align: middle;
}

.custom-table tr:nth-child(even) td {
  background: #f8f9fa;
}

.styled-list {
  list-style: none;
  padding-left: 0;
}

.styled-list li {
  margin-bottom: 10px;
  font-size: 16px;
}

.styled-steps {
  list-style: decimal;
  margin-left: 20px;
  font-size: 16px;
}

.btn-primary {
  background: #007bff;
  border: none;
  border-radius: 30px;
  padding: 10px 25px;
  font-weight: 500;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #0056b3;
  transform: translateY(-2px);
}







.testimonials {
  background: linear-gradient(135deg, #fdfdfd, #f7f9fc);
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #222;

}

.testimonial-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  position: relative;
  transition: 0.4s ease;
  min-height: 270px;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

.quote-icon {
  font-size: 2.5rem;
  color: #007bff;
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 25px;
}

.feedback {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.8;
  margin-top: 25px;  /* gap after icon */
  margin-bottom: 20px; /* spacing bottom */
}

.author-box {
  display: flex;
  align-items: center;
  border-top: 1px solid #eee;
  padding-top: 15px;
}

.author-img {
  font-size: 2.5rem;
  color: #007bff;
  margin-right: 12px;
}

.author {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #222;
}

.designation {
 
  color: #777;
}







.product-details {
  background: #f9fafc;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

.section-title .highlight {
  color: #007bff;
}

.intro {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

.sub-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin: 25px 0 15px;
  color: #333;
}

.feature-list, .benefit-list {
  list-style: none;
  padding: 0;
}

.feature-list li, .benefit-list li {
  font-size: 1rem;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  line-height: 1.6;
}

.feature-list li i, .benefit-list li i {
  margin-right: 10px;
  font-size: 1.1rem;
}

.product-img img {
  transition: transform 0.3s ease;
}

.product-img img:hover {
  transform: scale(1.05);
}











/* Input & textarea styling */
.form-control {
  border-radius: 8px;
  padding: 12px;
  border: 1px solid #ddd;
  font-size: 16px;
  color: #333;  /* Normal input text color */
  background: #fff;
}

/* Placeholder styling */
.form-control::placeholder {
  color: #888;   /* Light gray for placeholder */
  opacity: 1;    /* Ensure it's visible */
  font-size: 14px;
}

/* Focus effect */
.form-control:focus {
  border-color: #007bff;
  box-shadow: none;
}
.form-control::placeholder {
  color: #333 !important;   /* Thoda dark */
  opacity: 1 !important;
}



.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-item img {
  width: 100%;

  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(10, 78, 150, 0.8);
  color: #fff;
  padding: 8px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease-in-out;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}


    

.video-box {
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: center;
}

.video-box:hover {
  transform: translateY(-5px);
}

.video-title {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #0a4e96;
}














/**********home page hero section*******/
.hero-slider {
  position: relative;
  background: linear-gradient(135deg, #fdfbfb, #eef3ff); /* light gradient */
  overflow: hidden;
  padding: 90px 0;
}

/* Decorative moving shapes */
.hero-slider::before,
.hero-slider::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  animation: float 8s ease-in-out infinite alternate;
}
.hero-slider::before {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ccc 0%, transparent 70%);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}
.hero-slider::after {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #ccc 0%, transparent 70%);
  bottom: -120px;
  right: -120px;
  animation-delay: 3s;
}

/* Floating animation */
@keyframes float {
  from { transform: translateY(0px) scale(1); opacity: 0.7; }
  to { transform: translateY(-30px) scale(1.05); opacity: 0.9; }
}
.slide {
  display: none;
  animation: fadeIn 1s ease forwards;
}
.slide.active { display: block; }

.hero-text h1 {
  font-size: 2.7rem;
  font-weight: 700;
  color: #a2231d; /* Heading Color */
}
.hero-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #333;
  margin: 20px 0 30px;
  max-width: 520px;
}
.hero-buttons .btn {
  margin-right: 15px;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-primary {
  background: #a2231d;
  color: #fff;
}
.btn-primary:hover { background: #821814; }
.btn-secondary {
  background: #ff6600;
  color: #fff;
}
.btn-secondary:hover { background: #e25500; }

/* Image Styling */
.image-box {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: transform 0.5s ease;
}
.image-box img {
  width: 100%;
  border-radius: 20px;
  transition: transform 0.5s ease;
}
.image-box:hover img {
  transform: scale(1.05);
}

/* Navigation Arrows */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #0f2f90;
  border: none;
  color: #fff;
  font-size: 22px;
  padding: 7px 14px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
  transition: 0.3s;
}
.slider-nav:hover { background: rgba(0,0,0,0.7); }
.prev { left: 20px; }
.next { right: 20px; }

/* Dots */
.slider-dots {
  text-align: center;
  margin-top: 20px;
}
.slider-dots .dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background: #bbb;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}
.slider-dots .dot.active {
  background: #a2231d;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0; transform: translateY(20px);}
  to {opacity: 1; transform: translateY(0);}
}





.company-intro {
  padding: 80px 0;
  background: linear-gradient(135deg, #fdfbfb, #f6f9fc);
}

.intro-flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.intro-content { flex: 1; }
.intro-visual { flex: 1; position: relative; }

.intro-badge {
  display: inline-flex;
  align-items: center;
  background: #a2231d;
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  margin-bottom: 20px;
  font-size: 14px;
}

.intro-badge i { margin-right: 6px; }

.intro-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  font-weight: 700;
  color: #333;
}

.highlight { color: #a2231d; }

/* Features list with FA icons */
.features-list {
  list-style: none;
  padding: 0;
  margin: 25px 0;
}
.features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 16px;
  color: #333;
}
.features-list i {
  color: #fac012;
  font-size: 16px;
  margin-right: 10px;
}

.intro-buttons .btn-primary,
.intro-buttons .btn-secondary {
  display: inline-block;
  margin-right: 10px;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}
.btn-primary {
  background: #a2231d;
  color: #fff;
}
.btn-secondary {
  background: #f0f0f0;
  color: #222;
}

.intro-image {
  text-align: center;
  margin-bottom: 60px;
}
.intro-image img {
  width: 90%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* Counters */
.stats-overlay {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}

.stat-card {
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.stat-card i {
  font-size: 28px;
  margin-bottom: 10px;
  color: #a2231d;
}
.stat-card h3 {
  margin: 0;
  font-size: 2rem;
  font-weight: 700;
  color: #222;
}
.stat-card p { margin: 5px 0 0; color: #666; }

.light-1 { background: #fff7f7; }
.light-2 { background: #f7fff9; }
.light-3 { background: #f9f7ff; }
.light-4 { background: #f7fbff; }

/* Responsive */
@media (max-width: 992px) {
  .intro-flex { flex-direction: column; }
  .stats-overlay { position: relative; transform: none; left: auto; bottom: auto; margin-top: 20px; }
}










.products-carousel {
  background: #e8e8e8;
}

.section-title h2 {
  font-size: 2.3rem;
  font-weight: 700;
  color: #a2231d;
}

.section-title p {
  color: #333;
  max-width:600px;
  margin: auto;
}

.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.products-scroll {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  flex: 1;
}

.product-card {
  flex: 0 0 calc(25% - 20px); /* 4 per row */
  background: #fff;
  border-radius: 12px;

  text-align: center;
  transition: transform 0.3s ease;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.product-card h4 {
  padding: 12px;
  font-size: 17px;
  font-weight: 500;
  color: #333;
}

.product-card:hover {
  transform: translateY(-6px);
}

/* Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #a2231d;
  color: #fff;
  border: none;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: 50%;
  font-size: 18px;
  z-index: 2;
  transition: background 0.3s;
}

.carousel-btn:hover {
  background: #7a1814;
}

.carousel-btn.prev {
  left: -20px;
}

.carousel-btn.next {
  right: -20px;
}









.about-growmax {
  background: linear-gradient(135deg, #fdfdfd, #f7f7f7);
}

.about-growmax-h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #a2231d;
}

.about-text p {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
}

.about-list {
  margin: 15px 0;
  padding-left: 0;
  list-style: none;
}

.about-list li {
  font-size: 16px;
  color: #333;
  margin-bottom: 8px;
}

.about-list i {
  color: #fac012;
  margin-right: 8px;
}

.btn-primary-2 {
  background: #a2231d;
  color: #fff;
  border: none;
  padding: 10px 22px;
  font-size: 16px;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn-primary-2:hover {
  background: #7e1a16;
}

.btn-primary-2 a {
  color: #fff;
  text-decoration: none;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.video-wrapper img {
  width: 100%;
}
/* .video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
} */







.our-team-premium {
  background: linear-gradient(135deg, #ab382e, #0e2e8f);
  padding: 90px 20px;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Decorative golden glow */
.our-team-premium::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #f3cf05 0%, transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
}
.our-team-premium::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #f3cf05 0%, transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
}

.team-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 18px;
  padding: 50px 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  max-width: 900px;
  margin: auto;
  text-align: center;
  transition: 0.3s ease;
}
.team-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.2);
}

.team-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0e2e8f;
  margin-bottom: 20px;
  position: relative;
}
.team-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: #f3cf05;
  margin: 12px auto 0;
  border-radius: 2px;
}

.team-box p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 18px;
}





.advantage-text {
  padding: 60px 20px;
  background: #f9f9f9;
}

.advantage-text h2 {

  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #222;
}

.advantage-text h2 span {
  color: #a2231d;
}

.intro-text-box p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

.intro-text-box .highlight {
  color: #a2231d;
  font-weight: 600;
}

.quote-box {
  background: #fff;
  border-left: 5px solid #a2231d;
  padding: 20px;
  margin: 25px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  position: relative;
}

.quote-box i {
  font-size: 20px;
  color: #a2231d;
  position: absolute;
  top: -10px;
  left: 10px;
  background: #fff;
  padding: 5px;
}

.adv-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.adv-card {
  background: #fff;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #eee;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.adv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.adv-card i {
  font-size: 32px;
  color: #a2231d;
  margin-bottom: 15px;
}

.adv-card h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.adv-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}


.btn-learn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background: #a2231d;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-learn:hover {
  background: #7c1916;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}


.abt-growmax {
  padding: 70px 0;
  background: linear-gradient(135deg, #f9fafc, #fff);
}

.row-2 {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

.about-content {
  flex: 1;
  min-width: 350px;
}

.about-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #a2231d;
}

.about-content h2 span {
  color: #222;
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.feature-card i {
  font-size: 28px;
  color: #a2231d;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.about-img {
  flex: 1;
  min-width: 320px;
}

.about-img img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}
 









.testimonial-section {
  background: linear-gradient(135deg, #fdfbfb, #ebedee);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #a2231d;
}

.section-title span {
  color: #222;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-top: 10px;
}

.testimonial-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  text-align: left;
  position: relative;
  margin: 15px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}

.quote-icon {
  font-size: 24px;
  color: #a2231d;
  margin-bottom: 15px;
}

.testimonial-card p {
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.testimonial-card h4 {
  margin-top: 15px;
  font-size: 16px;
  color: #333;
  font-weight: 600;
  text-align: right;
}



.testimonial-box {
  background: linear-gradient(135deg, #fff5f5, #f9f9ff);
  padding: 70px 0;
}
.testimonial-heading {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #a2231d;
  margin-bottom: 40px;
}

/* Slider */
.t-slider {
  position: relative;

  margin: auto;
  overflow: hidden;
}
.t-track {
  display: flex;
  transition: transform 0.6s ease;
}
.t-slide {
  min-width: 100%;
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Card */
.t-card {
  flex: 1;
  background: #fff;
  padding: 25px;
  border-radius: 14px;
border:1px solid #efefef;
  transition: 0.3s ease;
  min-height: 160px;
}
.t-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.t-card p {
  font-size: 1rem;
  color: #333;
  font-style: italic;
  margin-bottom: 12px;
  line-height: 1.6;
}
.t-stars {
  color: #ff9800;
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.t-card h5 {
  font-size: 1rem;
  font-weight: 600;
  color: #a2231d;
  text-align: right;
  margin: 0;
}

/* Controls Bottom Center */
.t-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}
.t-btn {
  background: #a2231d;
  color: #fff;
  border: none;
  padding: 4px 14px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  transition: background 0.3s;
}
.t-btn:hover {
  background: #7c1916;
}

/* Responsive */
@media(max-width:768px){
  .t-slide { flex-direction: column; }
  .t-card { margin: 10px 0; }
}






.quality-section {
  background: linear-gradient(135deg, #ab382e, #0e2e8f);
  padding: 90px 20px;
  font-family: "Poppins", sans-serif;
  position: relative;
  overflow: hidden;
}

/* Decorative golden overlay */
.quality-section::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #f3cf05 0%, transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
}
.quality-section::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #f3cf05 0%, transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
}

.quality-box {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 50px 40px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  max-width: 900px;
  margin: auto;
  text-align: center;
  transition: 0.3s ease;
}
.quality-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.2);
}

.quality-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0e2e8f;
  margin-bottom: 20px;
  position: relative;
}
.quality-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: #f3cf05;
  margin: 12px auto 0;
  border-radius: 2px;
}

.quality-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 18px;
}







.products-video {
  background: linear-gradient(135deg, #fdfbfb, #f7f9fc, #eef3ff);
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

/* Heading */
.video-title {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  color: #0e2e8f;
  margin-bottom: 50px;
  position: relative;
}
.video-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 4px;
  background: #f3cf05;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Grid */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
}

/* Video Card */
.product-vid-card {
  background: transparent;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  text-align: center;
  transition: 0.3s ease;
}
.product-vid-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

/* Video frame styling */
.video-frame {
  position: relative;
  overflow: hidden;
  /* padding-top: 56.25%; */
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.12);
  margin-bottom: 12px;
}
.video-frame iframe {
  position: absolute;
  top:0; left:0;
  width: 100%; height: 100%;
  border: none;
  border-radius: 10px;
}

.product-vid-card p {
  font-size: 1rem;
  font-weight: 600;
  color: #333;
  margin: 0;
}



.cta-light {
  background: linear-gradient(135deg, #fdfbfb, #f7f9fc, #eef3ff);
  padding: 80px 20px;
  font-family: "Poppins", sans-serif;
}

.cta-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.cta-content {
  flex: 1;
  min-width: 320px;
}

.cta-badge {
  display: inline-block;
  background: #f3cf05;
  color: #333;
  padding: 6px 16px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0e2e8f;
  margin-bottom: 15px;
}
.cta-title .highlight {
  color: #ab382e;
}
.cta-description {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #333;
}

.cta-actions .btn-call {
  background: #ab382e;
  color: #fff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}
.cta-actions .btn-call:hover {
  background: #7c1916;
  transform: translateY(-3px);
}

/* Features */
.support-features {
  margin-top: 30px;
}
.support-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}
.support-feature i {
  font-size: 22px;
  color: #f3cf05;
}
.feature-title {
  font-weight: 600;
  font-size: 1rem;
}


/* Form */
.cta-form {
  flex: 1;
  min-width: 320px;
}
.growmax-form {
  background: #fff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}
.growmax-form h3 {
  color: #0e2e8f;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.growmax-form input,
.growmax-form textarea {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
}
.btn-submit {
  background: #ab382e;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  width: 100%;
}
.btn-submit:hover {
  background: #821d23;
}


/* Hero Slider Responsive Fix */
@media(max-width: 768px) {
  .hero-slider .row {
    flex-direction: column-reverse; /* text niche, image upar */
    text-align: center; /* text center aligned on mobile */
  }

  .hero-text {
    margin-top: 20px;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }
  
  .hero-text p {
    font-size: 1rem;
  }

  .hero-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero-image .image-box {
    margin-bottom: 20px;
  }
}


/* Tablet (2 per row) */
@media (max-width: 991px) {
  .product-card {
    flex: 0 0 calc(50% - 15px); /* 2 cards per row */
  }

  .product-card img {
    height: 200px;
  }
}

/* Mobile (1 per row) */
@media (max-width: 576px) {
  .products-scroll {
    gap: 15px;
  }

  .product-card {
    flex: 0 0 100%; /* full width */
  }

  .product-card img {
    height: 180px;
  }

  /* Arrows position fix */
  .carousel-btn.prev {
    left: 10px;
  }
  .carousel-btn.next {
    right: 10px;
  }

  .intro-buttons{display: none;}
}












 .popup-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: none; /* hidden by default */
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    /* Popup box */
    .popup-box {
      position: relative;
      background: #fff;
      border-radius: 10px;
      overflow: hidden;
      max-width: 450px;
      width: 90%;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      animation: popupFade 0.4s ease;
    }

    /* Image inside popup */
    .popup-box img {
      width: 100%;
      height: auto;
      display: block;
    }

    /* Close button */
    .close-btn {
      position: absolute;
      top: 10px;
      right: 15px;
      color: white;
      background: rgba(0,0,0,0.5);
      border: none;
      font-size: 22px;
      cursor: pointer;
      border-radius: 50%;
      width: 32px;
      height: 32px;
      text-align: center;
      line-height: 32px;
    }

    @keyframes popupFade {
      from {opacity: 0; transform: scale(0.8);}
      to {opacity: 1; transform: scale(1);}
    }







    .machine-gallery-area{
background:#f9f9f9;
}

.machine-gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
}

.machine-gallery-card{
background:#fff;
border-radius:8px;
overflow:hidden;
box-shadow:0 6px 18px rgba(0,0,0,0.08);
transition:0.4s;
}

.machine-gallery-card img{
width:100%;

object-fit:cover;
display:block;
}

.machine-gallery-text{
padding:14px;

font-weight:500;
text-align:center;
color:#333;
line-height:1.4;
}

.machine-gallery-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 25px rgba(0,0,0,0.15);
}

/* Tablet */

@media(max-width:992px){

.machine-gallery-grid{
grid-template-columns:repeat(2,1fr);
}

}


.makhana-img img{
width:100%;
border-radius:8px;
box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

/* Mobile */

@media(max-width:576px){

.machine-gallery-grid{
grid-template-columns:1fr;
}

.machine-gallery-card img{
height:auto;
}

}








.product-section {
  width: 100%;
  padding: 80px 0;
  background: #f8f9fb;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.product-grid {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.product-image img {
  width: 100%;
  border-radius: 12px;
}

.product-image {
  flex: 1;
  min-width: 300px;
}

.product-content {
  flex: 1;
  min-width: 300px;
}

.product-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #0d2b5c;
}

.product-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

.product-content ul {
  margin: 20px 0;
  padding-left: 7px;
}

.product-content ul li {
  margin-bottom: 8px;
}

.btn-primary {
  display: inline-block;
  padding: 12px 25px;
  background: #ff6b00;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #e65c00;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
}

.feature-list li::before {
  content: "➤";
  position: absolute;
  left: 0;
  color: #ff6b00;
  font-weight: bold;
}