/* Color & Font Setup */
:root {
  --teal-gradient: linear-gradient(90deg, #107b6f 0%, #16a085 100%);
  --dark-teal: #0e796d;
  --text-dark: #2c3e50;
  --text-grey: #636e72;
  --teal: #008080;
  --dark: #004d4d;
  --light: #e0f2f2;
  --orange: #f39c12;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Montserrat", sans-serif;
  color: var(--text-dark);
  background: #fff;
}
section {
  padding: 70px 8%;
}

/* Header & Gradient Line */
header {
  background: white;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 8%;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo img {
  width: 100%;
  max-width: 80px;
}
.logo-box {
  background: var(--teal-gradient);
  color: white;
  padding: 5px 8px;
  border-radius: 6px;
  font-size: 18px;
}
.logo-name {
  font-size: 22px;
  color: var(--dark-teal);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}
.nav-links a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  font-size: 14px;
}
.btn-contact-nav {
  background: var(--teal-gradient);
  color: white !important;
  padding: 10px 20px;
  border-radius: 6px;
}
.header-bottom-line {
  height: 5px;
  background: var(--teal-gradient);
  width: 100%;
}
.menu-icon {
  display: none;
  font-size: 24px;
  color: var(--dark-teal);
  cursor: pointer;
}

/* Hero Section with exact BG style */
.hero {
  min-height: 85vh;
  background: url("../images/bgimage.png");
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  padding: 60px 8%;
}
.hero-text-area h1 {
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: 700;
  color: #34495e;
}
.hero-text-area h1 span {
  color: var(--dark-teal);
}
.hero-text-area p {
  font-size: 18px;
  color: var(--text-grey);
  max-width: 550px;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* Buttons Style */
.hero-btns {
  display: flex;
  gap: 20px;
  margin-bottom: 45px;
}
.btn-main-gradient {
  background: var(--teal-gradient);
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-white-outline {
  border: 1px solid #dfe6e9;
  background: linear-gradient(90deg, #107b6f 0%, #16a085 100%);
  color: #fff;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 300px;
  justify-content: center;
}

/* Trust Info Section */
.trust-info {
  display: flex;
  align-items: center;
  gap: 12px;
}
.trust-icon-box {
  color: var(--dark-teal);
  font-size: 32px;
}
.trust-label {
  font-size: 18px;
  color: var(--text-grey);
}
.bold-num {
  font-weight: 700;
  color: #2d3436;
  font-size: 22px;
}
.vertical-line {
  color: #ddd;
  margin: 0 10px;
}

/* Products Grid */

.products-section {
  background: linear-gradient(135deg, #e0f2f2 0%, #ffffff 50%, #d1e8e8 100%);
  padding: 60px 20px;
  min-height: 100vh;
}


.products-section .section-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 60px;
  position: relative;
  font-weight: 800;
  text-transform: uppercase;
}


.products-section .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.products-section .card {
  background: white;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #008080;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* 6 ke baad wale products ko hide karne ke liye */
.card.hidden-product {
  display: none;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--teal);
}
.cat-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 0.7rem;
  background: var(--orange);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: bold;
  text-transform: uppercase;
}
.card h3 {
  color: var(--teal);
  margin: 0 0 5px;
  text-transform: uppercase;
  font-size: 1.4rem;
  border-bottom: 2px solid var(--light);
  display: inline-block;
}
.comp {
  font-size: 0.85rem;
  color: #d35400;
  font-weight: 600;
  margin: 10px 0;
  min-height: 40px;
  line-height: 1.4;
}
.benefits {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 15px;
  flex-grow: 1;
}
.benefits ul {
  padding-left: 18px;
  margin: 5px 0;
}
.benefits li {
  margin-bottom: 4px;
}
.tag {
  background: var(--light);
  color: var(--dark);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: bold;
  align-self: flex-start;
}
.footer-card {
  margin-top: 15px;
  font-size: 0.7rem;
  color: #999;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #eee;
  padding-top: 10px;
}
.who-badge {
  color: var(--teal);
  font-weight: bold;
  border: 1px solid var(--teal);
  padding: 1px 4px;
  border-radius: 3px;
}

/* VIEW MORE BUTTON STYLE */
.btn-box {
  text-align: center;
  margin-top: 40px;
}
.view-more-btn {
  background: var(--teal);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(0, 128, 128, 0.3);
  transition: 0.3s;
}
.view-more-btn:hover {
  background: var(--dark);
  transform: scale(1.05);
}

/* About Section Styles */
.about-section {
  background: url("../images/sectionbg.png");
  font-family: "Montserrat", sans-serif;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Text Content Styling */
.about-text {
  flex: 1.2;
}

.about-text h2 {
  font-size: 36px;
  color: #2d3436;
  margin-bottom: 25px;
  font-weight: 700;
}

.about-text h2 span {
  color: #0e796d; /* Dark Teal */
}

.about-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #2d3436;
  margin-bottom: 20px;
}

/* Button Styles */
.about-btns {
  display: flex;
  gap: 20px;
  margin-top: 35px;
}

.btn-green-solid {
  background: #00897b; /* Solid Teal Color */
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 137, 123, 0.2);
}

.btn-white-shadow {
  background: linear-gradient(90deg, #107b6f 0%, #16a085 100%);
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid #f0f0f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Image Wrapper */
.about-image {
  flex: 1;
}

.image-wrapper img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Background & Section Spacing */
.compliance-section {
  background: url("../images/sectionbg.png"); /* Same soft theme as image_174143.jpg */
  text-align: center;
  font-family: "Montserrat", sans-serif;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.compliance-header h2 {
  color: #2d3436;
  font-size: 30px;
  margin-bottom: 10px;
}

.compliance-header p {
  color: #636e72;
  margin-bottom: 40px;
}

/* Card Design */
.compliance-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 30px;
}

.comp-card {
  background: white;
  padding: 30px 20px;
  border-radius: 12px;
  flex: 1;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #eef2f3;
}

.comp-icon {
  height: 70px;
  margin-bottom: 15px;
}

.comp-card h3 {
  font-size: 18px;
  color: #2d3436;
  margin-bottom: 10px;
}

.comp-card p {
  font-size: 14px;
  color: #636e72;
}

.mca-note {
  font-size: 13px;
  color: #888;
  margin-bottom: 40px;
}

/* Table Design */
.details-table-box {
  max-width: 900px;
  margin: 0 auto;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.details-table-box h3 {
  padding: 20px;
  background: #fff;
  color: #2d3436;
  font-size: 20px;
  border-bottom: 1px solid #eee;
}

.compliance-table {
  width: 100%;
  border-collapse: collapse;
}

.compliance-table td {
  padding: 15px 25px;
  text-align: left;
  border-bottom: 1px solid #f1f2f6;
  font-size: 15px;
  color: #444;
}

.compliance-table tr td:first-child {
  background: #daeaef;
  font-weight: 500;
  width: 35%;
  color: #636e72;
}

.contact-note {
  margin-top: 30px;
  font-size: 13px;
  color: #888;
}

.comp-icon img {
  width: 100%;
  max-width: 65px;
}

/* Background setup with waves */
.disclaimer-section {
  background: url("../images/sectionbg.png");
  background-size: cover;
  display: flex;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  /* background-position: center; */
  background-repeat: no-repeat;
}

/* Disclaimer Card Styling */
.disclaimer-card {
  background: rgba(255, 255, 255, 0.95);
  max-width: 850px;
  width: 100%;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-left: 5px solid #ffcc00; /* Yellow highlight on left */
  position: relative;
}

/* Header with Icon */
.disclaimer-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.warning-icon {
  font-size: 32px;
  color: #333; /* Dark icon color */
}

.disclaimer-header h3 {
  font-size: 26px;
  color: #2d3436;
  font-weight: 700;
}

/* Body Text */
.disclaimer-body p {
  font-size: 16px;
  line-height: 1.8;
  color: #2d3436;
  margin-bottom: 15px;
}

.disclaimer-body p:last-child {
  margin-bottom: 0;
}

/* Footer Container Styling */
.footer-bottom {
  text-align: center;
  background: #2c4a63; /* Dark blue background from image_ba2155.png */
  padding: 20px 0;
  width: 100%;
  margin-top: 20px;
}

/* Copyright Text Styling */
.footer-bottom p {
  color: #ffffff;
  font-size: 15px;
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0.5px;
  margin: 0;
  opacity: 0.9;
}

/* Bold Company Name */
.footer-bottom p strong {
  font-weight: 700;
}

/* --- Desktop pe Bottom Nav Chupao --- */
.mobile-bottom-nav {
  display: none;
}

/* Quality Section Container */
.quality-compliance {
  /* Same soft background waves theme */
  background: url("../images/sectionbg.png");
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Titles Style */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}
h2 span,
.main-title span {
  color: #0e796d;
}
.main-title {
  font-size: 38px;
  color: #2c3e50; /* Dark Teal Color */
  font-weight: 700;
  margin-bottom: 10px;
}

.sub-title {
  font-size: 18px;
  color: #636e72;
  letter-spacing: 0.5px;
}

/* Flexbox Layout for List & Image */
.quality-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.quality-features {
  flex: 1;
}

.quality-features ul {
  list-style: none;
}

/* List Item Style with Icons */
.quality-features li {
  display: flex;
  /* align-items: center; */
  margin-bottom: 25px;
  font-size: 16px;
  color: #444;
  line-height: 1.5;
  /* font-weight: 500; */
  transition: transform 0.3s ease;
}

.quality-features li:hover {
  transform: translateX(10px);
}

.check-icon {
  color: #16a085; /* Exact Green Checkmark Color */
  font-size: 26px;
  margin-right: 20px;
}

/* Image Box Styling */
.quality-image-box {
  flex: 1.2;
}

.quality-image-box img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(16, 160, 133, 0.1);
}

/* MOBILE RESPONSIVE */

@media (max-width: 768px) {
  .header-inner {
    justify-content: center;
  }
  .nav-links {
    display: none;
  }
  .menu-icon {
    display: block;
  }
  .hero {
    text-align: center;
    justify-content: center;
    padding: 40px 8%;
    min-height: 70vh;
  }
  .hero-text-area h1 {
    font-size: 35px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .trust-info {
    justify-content: center;
  }
  .p-card {
    margin-bottom: 20px;
  }
  .btn-white-outline {
    max-width: 100%;
  }
  .footer-bottom {
    margin-bottom: 60px;
  }
  /* Header se menu hatane ke liye */
  .nav-links,
  .menu-icon,
  .mobile-toggle {
    display: none !important;
  }

  /* Floating Bottom Navigation Bar */
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    justify-content: space-around;
    align-items: center;
    z-index: 9999;
    border-top: 1px solid #eee;
  }

  .nav-item {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #888; /* Grey color for inactive */
    font-size: 12px;
    gap: 5px;
  }

  .nav-item i {
    font-size: 20px;
  }

  /* Active Item Color (Teal Gradient Jaisa) */
  .nav-item.active {
    color: #107b6f;
    font-weight: 600;
  }

  /* Hero section ko thoda upar shift karne ke liye padding */
  .hero {
    padding-bottom: 100px;
    text-align: center;
  }

  /* Mobile pe Hero Buttons ko ek ke niche ek karna */
  .hero-btns {
    flex-direction: column;
    gap: 15px;
  }
  .compliance-cards {
    flex-direction: column;
  }

  .compliance-table td {
    padding: 12px;
    font-size: 13px;
  }

  .details-table-box {
    margin-bottom: 30px; /* Mobile bottom nav space */
  }
  .quality-compliance {
    text-align: center;
  }

  .quality-content-wrapper {
    flex-direction: column;
  }

  .main-title {
    font-size: 28px;
  }

  .quality-features li {
    font-size: 16px;
    justify-content: flex-start;
    text-align: left;
  }

  /* Mobile pe image hide karne ke liye (agar aapko scroll kam chahiye) */

  .quality-features {
    width: 100%;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-text h2 {
    font-size: 28px;
  }

  .about-btns {
    flex-direction: column;
    align-items: center;
  }

  .btn-green-solid,
  .btn-white-shadow {
    width: 100%;
    max-width: 300px;
  }

  /* Mobile pe image ko chhota aur center karna */
  .about-image {
    order: -1; /* Image text ke upar dikhegi */
    width: 100%;
  }
  .disclaimer-card {
    padding: 25px;
    text-align: center;
  }

  .disclaimer-header {
    flex-direction: column;
    gap: 10px;
  }

  .disclaimer-body p {
    font-size: 14px;
  }
  .main-footer {
    /* Mobile Bottom Navigation ke liye extra padding */
    padding-bottom: 80px;
  }

  .footer-bottom p {
    font-size: 13px;
    padding: 0 15px;
  }
}

