/* ---------------------------------- */
/* 1. Global Variables & Base Styling */
/* ---------------------------------- */
:root {
  --b-primary: #3E4095;
  --b-secondary: #e8e6f1;
  --b-accent: #fcd34d;
  --b-hero-text: #fcfcfc;
  --max-width: 1350px;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* same height as your navbar */
}
body {
  /* Note: Changed font family back to 'Inter' for consistency with link, 
               but you can use 'Poppins' if you prefer and link the font. */
  font-family: "Poppins", sans-serif;
  background-color: var(--b-secondary);
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.back-to-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: white;
  color: #3E4095;
  border: 3px solid #3E4095;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: 0.3s ease-in-out;
}
.back-to-top img {
  width: 15px;
}
/* .back-to-top:hover {
  background: #2e2e8a;
  transform: translateY(-3px);
} */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Responsive padding for container */
@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ---------------------------------- */
/* 2. Header/Navigation Bar */
/* ---------------------------------- */
.header {
  background-color: white;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-content {
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-container img {
  height: 55px;
}

/* Desktop NAV visible */
.nav {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: #2e2e8a;
  font-weight: 500;
  text-decoration: none;
}

.nav-link:hover {
  opacity: 0.8;
}

/* Hamburger (hidden on desktop) */
.hamburger {
  font-size: 30px;
  cursor: pointer;
  display: none;
}

/* MOBILE & TABLET */
@media (max-width: 768px) {
  .header {
    position: sticky;
  }

  .nav {
    position: absolute;
    top: 6rem;
    right: 0;
    background: white;
    width: 100%;
    flex-direction: column;
    padding: 1rem 0;
    gap: 1rem;
    display: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  }

  .nav a {
    margin: 0px 20px;
  }

  .nav.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }
}

/* ---------------------------------- */
/* 3. Hero Section - FIXED FOR PNG BG AND WAVE */
/* ---------------------------------- */
/* ---------------------------------- */
/* 1. Hero Section */
/* ---------------------------------- */
.hero-section {
  background-image: url("../images/bg-rect-main.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  color: white;
  padding: 3rem 0;
}

/* Container should not push image left */
.hero-section .container {
  padding-right: 0 !important;
  margin-right: 0 !important;
}

/* ---------------------------------- */
/* 2. Grid Layout */
/* ---------------------------------- */
.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* Desktop layout */
@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1.3fr 1fr;
    gap: 3rem;
  }

  .hero-section {
    padding: 4rem 0 7rem 0;
  }
}

/* ---------------------------------- */
/* 3. Text Area */
/* ---------------------------------- */
.hero-text-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.label-sparkle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid #ffffff65;
  background-color: rgba(255, 255, 255, 0.12);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  width: fit-content;
}

.label-sparkle span {
  color: yellow;
}

.label-sparkle p {
  font-size: 12px;
  margin: 0px;
}

.main-heading {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
}

/* Tablet */
@media (min-width: 640px) {
  .main-heading {
    font-size: 2.7rem;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  .main-heading {
    font-size: 2rem;
  }
}

.description-paragraph {
  font-size: 16px;
  color: rgba(252, 252, 252, 0.9);
  max-width: 40rem;
  margin: 0;
}

/* ---------------------------------- */
/* 4. Buttons */
/* ---------------------------------- */
.button-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1rem;
  cursor: pointer;
}

@media (min-width: 640px) {
  .button-group {
    flex-direction: row;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 500;
  border-radius: 30px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.btn-primary {
  background-color: #ffffff;
  color: var(--b-primary);
}

/* .btn-primary:hover {
  background-color: #312b57;
} */

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: #ffffff18;
  color: white;
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

.btn svg {
  width: 1.2rem;
  height: 1.2rem;
}

/* ---------------------------------- */
/* 5. Right Image Area */
/* ---------------------------------- */
.hero-image-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  padding: 0;
}

.hero-image {
  width: 100%;
  max-width: 550px;
  height: auto;
  margin: 0;
  padding: 0;
}

/* Tablet: restrict image width */
@media (min-width: 768px) {
  .hero-image {
    max-width: 600px;
  }
}

/* Desktop */
@media (min-width: 1280px) {
  .hero-image {
    max-width: 680px;
  }
}

/* ------------------------------- */
/* About Us Section */
/* ------------------------------- */
.about-section {
  padding: 4rem 0;
  /* background: white; */
}

.about-content {
  display: grid;
  padding-left: 0;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Image */
.about-image-container img {
  width: 100%;
  height: auto;
  /* border-radius: 20px; */
  object-fit: cover;
}

/* Title */
.about-title {
  font-size: 32px;
  font-weight: 700;
  color: #3E4095;
  margin-bottom: 1rem;
  position: relative;
}

/* underline like your Figma */
.about-title::after {
  content: "";
  width: 80px;
  height: 3px;
  background: #3E4095;
  display: block;
  margin-top: 6px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 2rem;
}

/* Button */
.about-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: #3E4095;
  color: white;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.about-btn:hover {
  background: #292459;
}

/* ------------------------------- */
/* Responsive (Reversed Order) */
/* ------------------------------- */
@media (max-width: 900px) {
  .about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  /* Reverse the order: text first, image second */
  .about-image-container {
    order: 2;
  }

  .about-text {
    padding: 10px 40px;
  }

  .about-title::after {
    margin-left: auto;
    margin-right: auto;
  }

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

/* ---------------------------------- */
/*  Feature Section  */
/* ---------------------------------- */
.features-section {
  width: 100%;
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Feature Cards */
.feature-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 14px;
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

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

/* Icon Container */
.feature-icon {
  width: 70px;
  height: 70px;
  background: #e9e7f7;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  margin-bottom: 20px;
}

.feature-icon img {
  width: 38px;
  height: auto;
}

/* Titles */
.feature-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: #3E4095;
  margin-bottom: 10px;
}

/* Paragraph */
.feature-card p {
  color: #333;
  font-size: 15px;
  line-height: 1.6;
  max-width: 90%;
}

@media (max-width: 1200px) {
  .features-section {
    max-width: 100%;
    gap: 24px;
  }
}

/* keep safe 2-column at 1024 and below */
@media (max-width: 1024px) {
  .features-section {
    grid-template-columns: repeat(2, 1fr) !important;
    width: auto;
    gap: 22px;
  }

  .feature-card {
    padding: 28px 20px;
  }
}

/* tablets */
@media (max-width: 768px) {
  .features-section {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .feature-card {
    padding: 22px 16px;
  }

  .feature-icon {
    width: 60px;
    height: 60px;
  }
}

/* mobile - single column, remove any min-width forcing overflow */
@media (max-width: 600px) {
  .features-section {
    grid-template-columns: 1fr !important;
    gap: 16px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .feature-card {
    padding: 18px 14px;
    align-items: center;
    text-align: center;
  }

  .feature-card p {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* final safety: if something still overflows, don't show horizontal scroll */
@media (max-width: 480px) {
  body,
  html {
    overflow-x: hidden;
  }
}

/* Mission & Vision Section */
.mission-vision-section {
  padding: 60px 0;
}

.mv-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #3E4095;
  margin-bottom: 40px;
  position: relative;
}

.mv-title::after {
  content: "";
  width: 120px;
  height: 3px;
  background: #3E4095;
  display: block;
  margin: 10px auto 0;
}

.mv-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.mv-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px;
  box-shadow: 0px 8px 18px rgba(0, 0, 0, 0.08);
}

.mv-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.mv-card-header img {
  width: 40px;
}

.mv-card h3 {
  font-size: 20px;
  color: #3E4095;
  margin: 0;
}

.mv-card p {
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}

.mv-highlight {
  font-weight: 600;
  margin-top: 15px;
  color: #000;
}

.mv-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mv-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
}

.mv-list li img {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  /* aligns icon with text */
}

/* Responsive */
@media (max-width: 900px) {
  .mv-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Products Section */
.products-section {
  padding: 60px 0;
}

.products-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #3c366b;
  margin-bottom: 40px;
  position: relative;
}

.products-title::after {
  content: "";
  width: 110px;
  height: 3px;
  background: #3E4095;
  display: block;
  margin: 10px auto 0;
}

.products-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* Product Card */
.product-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.12);
  border-top: 6px solid #3E4095;
}

.product-icon-box {
  width: 60px;
  height: 60px;
  background: #3E4095;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.product-icon-box img {
  width: 32px;
}

.product-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #3E4095;
  margin-bottom: 14px;
}

.product-card p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 22px;
}

/* list with PNG icons */
.product-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.product-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding-bottom: 10px;
  font-size: 15px;
  color: #444;
}

.product-list li img {
  width: 18px;
  margin-top: 3px;
}
.product-logo {
  width: 60px;
  height: 60px;
  /* background: #3c366b; */
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 20px; */
}
.box-product {
  display: flex;
  gap: 20px;
  align-items: center;
}
/* Responsive */
@media (max-width: 900px) {
  .products-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Tabs */
.product-tabs-section {
  padding: 20px 40px;
  /* reduced from 70px */
}

.tabs-header {
  display: flex;
  gap: 50px;
  justify-content: center;
  margin-bottom: 35px;
}

.tab-link {
  background: none;
  border: none;
  font-size: 22px;
  font-weight: 600;
  padding-bottom: 6px;
  cursor: pointer;
  color: #3b3b3b;
  border-bottom: 3px solid transparent;
}

.tab-link.active {
  border-color: #3E4095;
  color: #3E4095;
}

/* Grid */
.products-grid-main {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 300px));
  justify-content: center;
  gap: 70px;
}

.product-card-main {
  width: 100%;
  max-width: 300px !important;
  min-width: 260px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  padding: 20px;
  cursor: pointer;
}

.product-card-main .product-img {
  width: 100%;
  height: 170px;
  border-radius: 15px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-card-main .product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Badge */
.product-badge {
  display: inline-block;
  margin-top: 15px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

/* Text */
.product-card-main .product-title {
  margin: 12px 0 2px;
  font-size: 18px;
  font-weight: 700;
  color: #3E4095;
}

.product-card-main .product-sub {
  font-size: 14px;
  color: #6b6b6b;
  margin-bottom: 6px;
}

.product-card-main .product-desc {
  font-size: 14px;
  color: #5a5a5a;
  margin-bottom: auto;
}

/* Link */
.product-card-main .product-link {
  font-size: 12px;
  margin-top: 18px;
  font-weight: 600;
  color: #3E4095;
  text-decoration: none;
}

/* Tabs content toggle */
.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* -------------------------------
   RESPONSIVENESS
-------------------------------- */

/* 1024px (Small Laptop / iPad Landscape) */
@media (max-width: 1024px) {
  .products-grid-main {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    gap: 50px;
  }

  .product-card-main {
    max-width: 220px !important;
  }

  .tab-link {
    font-size: 20px;
  }
}

/* Tablet (992px and below) */
@media (max-width: 992px) {
  .products-grid-main {
    grid-template-columns: repeat(2, minmax(230px, 1fr));
    gap: 40px;
  }

  .tabs-header {
    gap: 25px;
  }

  .tab-link {
    font-size: 20px;
  }

  .product-card-main {
    max-width: 320px !important;
  }
}

/* Mobile (768px and below) */
@media (max-width: 768px) {
  .product-tabs-section {
    padding: 20px 15px;
  }

  .tabs-header {
    gap: 20px;
    flex-wrap: wrap;
  }

  .tab-link {
    font-size: 18px;
    padding-bottom: 4px;
  }

  .products-grid-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .product-card-main {
    padding: 18px;
  }

  .product-card-main .product-img {
    height: 150px;
  }

  .product-card-main .product-title {
    font-size: 16px;
  }
}

/* Small Mobile (480px and below) */
@media (max-width: 480px) {
  .products-grid-main {
    grid-template-columns: 1fr;
    gap: 20px;
    justify-items: center;
  }

  .tabs-header {
    gap: 15px;
    justify-content: center;
  }

  .tab-link {
    font-size: 16px;
  }

  .product-card-main {
    max-width: 300px !important;
  }

  .product-card-main .product-img {
    height: 140px;
  }

  .product-card-main .product-title {
    font-size: 15px;
  }
}

.services-section {
  text-align: center;
  padding: 60px 20px;
}

.services-title {
  font-size: 32px;
  font-weight: 700;
  color: #3E4095;
  margin-bottom: 10px;
}
.services-title::after {
  content: "";
  width: 110px;
  height: 3px;
  background: #3E4095;
  display: block;
  margin: 10px auto 0;
}
.services-subtitle {
  max-width: 700px;
  margin: 0 auto 50px;
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

.service-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 55px;
  height: 55px;
  /* margin-bottom: 15px; */
}

.service-card h3 {
  font-size: 18px;
  color: #3E4095;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  font-size: 14px;
  color: #444;
  line-height: 1.6;
}

.compliance-section {
  background: #3E4095;
  padding: 70px 20px;
  color: #fff;
}

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

.compliance-heading {
  text-align: center;
  margin-bottom: 40px;
}

.comp-icon {
  width: 55px;
  margin-top: 10px;
}

.compliance-heading h2 {
  font-size: 32px;
  font-weight: 700;
  margin: 10px 0;
}

.compliance-heading p {
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

.compliance-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Card styling */
.comp-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Icon + Title horizontal alignment */
.comp-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.comp-title img {
  width: 22px;
  height: 22px;
}

.comp-card h3 {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.comp-card p {
  font-size: 14px;
  line-height: 1.6;
  color: #e2e2e2;
  margin-left: 33px;
}

/* Inspection Box */
.inspection-box {
  background: rgba(255, 255, 255, 0.08);
  text-align: center;
  padding: 35px 20px;
  border-radius: 12px;
  margin-top: 45px;
}

.inspection-box h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.inspection-box p {
  font-size: 15px;
  max-width: 600px;
  margin: auto;
  line-height: 1.6;
}

.cta-btn {
  margin-top: 20px;
  padding: 12px 26px;
  background: #fff;
  color: #3E4095;
  border-radius: 8px;
  border: none;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #d9d9d9;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .compliance-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .compliance-heading h2 {
    font-size: 26px;
  }

  .comp-card {
    padding: 20px;
  }
}

/* Contact Section */
.contact-section {
  padding: 70px 20px;
  background: #faf9ff;
}

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

/* Heading */
.contact-heading {
  text-align: center;
  margin-bottom: 40px;
}

.contact-heading h2 {
  font-size: 32px;
  color: #3E4095;
  font-weight: 700;
}

.contact-heading p {
  max-width: 700px;
  margin: 10px auto 0;
  font-size: 16px;
  color: #555;
}

/* Layout: two columns */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

/* LEFT INFO BOX */
.contact-info {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.contact-info h3 {
  margin-bottom: 10px;
  color: #3E4095;
  font-size: 20px;
}

.info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 18px 0;
}

.info-item img {
  width: 32px;
  height: 32px;
}

.info-item h4 {
  margin: 0;
  font-size: 15px;
  color: #3E4095;
}

.info-item p {
  margin: 2px 0 0;
  font-size: 14px;
  color: #666;
}
.info-item a {
  margin: 2px 0 0;
  font-size: 14px;
  color: #666;
  text-decoration: none;

}

.business-hours {
  margin-top: 25px;
  background: #f1effb;
  padding: 15px 20px;
  border-radius: 10px;
}

.business-hours h4 {
  margin: 0 0 6px;
  color: #3E4095;
}

.contact-section {
  padding: 60px 0;
}

.contact-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
  /* Fix uneven column alignment */
  padding: 0 20px;
}

.contact-left,
.contact-right {
  flex: 1;
}

/* Left card styling */
.contact-left {
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin: 20px 0;
}

.info-item img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.business-hours {
  background: #f3f2ff;
  padding: 18px 20px;
  border-radius: 8px;
  margin-top: 20px;
}

/* Contact Form Right Box */
/* Outer card */
.contact-right {
  background: #f7f6ff;
  /* light lavender background */
  padding: 25px 35px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.22);
  max-width: 500px;
  /* PERFECT width like your screenshot */
  width: 100%;
  margin: 0 auto;
  /* center it */
}

/* Title */
.contact-right h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #2d2d2d;
}

/* Labels */
.contact-right label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #2c2c2c;
}

.contact-right input,
.contact-right textarea,
.contact-right select {
  width: 100%;
  min-height: 30px;   /* Standard input height */
  height: 40px;
  background: #ffffff;
  font-family: "Poppins";
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #dedede;
  font-size: 15px;
  outline: none;
  margin-bottom: 12px;
  transition: 0.2s ease;
  box-sizing: border-box;
}
/* Make select match input styling */
.contact-right select {
    width: 100%;
    min-height: 30px;   /* Standard input height */
    height: 40px;
    background: #ffffff;
    padding: 10px 16px;
    border-radius: 10px;
    border: 1px solid #dedede;
    font-family: "Poppins";
    font-size: 14px;
    color: #555;
    appearance: none;            /* Removes default arrow */
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    margin-bottom: 12px;
    box-sizing: border-box;
    background-position: right 14px center;
    background-repeat: no-repeat;
    background-size: 12px;
}

/* Larger clean arrow */
.contact-right select {
    background-image: url("data:image/svg+xml;utf8,<svg fill='gray' height='24' width='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5'/></svg>");
    background-position: right 16px center;  
    background-repeat: no-repeat;
    background-size: 20px; /* Bigger arrow */
}

/* Focus effect same as input */
.contact-right select:focus {
    border-color: #3E4095;
    box-shadow: 0 0 0 3px rgba(62, 45, 180, 0.15);
}

/* Focus */
.contact-right input:focus,
.contact-right textarea:focus {
  border-color: #3E4095;
  box-shadow: 0 0 0 3px rgba(62, 45, 180, 0.15);
}

.two-inputs {
  display: flex;
  gap: 18px;
  width: 100%;
}
.two-inputs > div {
  flex: 1;
}

textarea {
  resize: none;
  font-family: "Poppins";
  margin-bottom: 0px!important;
  height: 76px!important;
}

/* Send button */
.send-btn {
  width: 100%;
  background: #3E4095;
  padding: 15px;
  font-size: 17px;
  border-radius: 12px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  margin-top: 10px;
  transition: 0.2s ease;
}

.send-btn:hover {
  background: #2a1e8b;
}

/* Icon size */
.send-btn i {
  font-size: 18px;
}

/* Mobile stack */
@media (max-width: 900px) {
  .two-inputs {
    flex-direction: column;
  }

  .contact-container {
    flex-direction: column;
  }

  .contact-right {
    max-width: 300px;
    justify-items: flex-start;
  }
}

.footer {
  background: linear-gradient(180deg, #3E4095, #2e2370);
  color: #ffffff;
  padding: 60px 20px 30px;
}

.footer-container {
  max-width: 1350px;
  margin: auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-col h3,
.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 600;
}

/* Align PNG icons and text */
.footer-col p {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Control the icon size */
.footer-col p img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  margin-top: 3px; /* slight lift to match baseline */
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #dcdcdc;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  margin-top: 40px;
  font-size: 13px;
  line-height: 1.6;
}
.footer-item a {
    color: #fff;
    text-decoration: none;
}


/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  /* .footer-col {
    align-items: center;
    text-align: center;
  } */
  .footer-col p {
    justify-content: center;
  }
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal.active {
  display: flex;
}

.modal-title {
  color: #3E4095;
}

.modal-content {
  background: #fff;
  width: 420px;
  padding: 25px;
  border-radius: 10px;
  position: relative;
  text-align: center;
}

.modal-content img {
  width: 150px;
}

.big-modal {
  width: 1000px;
  height: 600px;
  overflow-x: auto;
}
.big-modal p {
  text-align: left;
}

.close-modal {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}
.modal-info {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-bottom: 20px;
}

.modal-img img {
    width: 180px;
    height: auto;
}

.modal-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1024px){
  .big-modal {
    width: 800px;
    height: 500px;
    overflow-x: auto;
  }

}
@media (max-width: 600px) {
    .modal-info {
        flex-direction: column;
        text-align: center;
    }

    .modal-img img {
        width: 150px;
        margin: 0 auto;
    }

    .modal-text {
        text-align: left;
    }
    .main-heading {
      font-size: 24px;
    }
    .description-paragraph {
      font-size: 14px;
    }
    .two-inputs  {
      gap: 0px;
    }
}

@media (max-width: 480px) {
  .modal-content {
    width: 300px;
    padding: 18px;
    border-radius: 10px;
  }

  .close-modal {
    font-size: 24px;
    right: 12px;
    top: 10px;
  }

  .modal-content h2 {
    font-size: 20px;
  }

  .modal-content p {
    font-size: 14px;
  }
}

.table-container {
  width: 100%;
  overflow-x: auto; /* Enables horizontal scroll on small screens */
}

.feeding-table {
  border-collapse: collapse;
  width: 100%;
  min-width: 850px; /* Keeps structure readable */
}

.feeding-table th,
.feeding-table td {
  border: 1px solid #000;
  padding: 8px 10px;
  text-align: center;
  font-size: 12px;
  white-space: nowrap; /* Prevents awkward text wrapping */
}

.middle-head {
  font-weight: 600;
}

/* Extra note text */
.table-extra {
  margin-top: 10px;
  font-size: 14px;
}

/* ---------- RESPONSIVE BEHAVIOR ---------- */
@media (max-width: 900px) {
  .feeding-table th,
  .feeding-table td {
    font-size: 11px;
    padding: 6px 8px;
  }
}

/* On very small screens (mobile) */
@media (max-width: 600px) {
  .table-container {
    overflow-x: scroll; /* Force scroll if needed */
  }

  .feeding-table {
    min-width: 700px; /* Fit more naturally on mobile */
  }

  .feeding-table th,
  .feeding-table td {
    font-size: 10px;
    padding: 6px;
  }
  .big-modal p {
    font-size: 12px;
  }
  .contact-right {
    max-width: 267px!important;
  }
  .about-section {
    padding: 1rem 0;
  }
  .hero-section {
    padding: 1rem 0;
  }
  .button-group {
    margin-right: 20px;
  }
  .about-title {
    margin-top: 0px;
  }
  .products-section {
    padding: 10px 0;
  }
  .header-content {
    height: 5rem;
  }
}

/* Super small phones */
@media (max-width: 400px) {
  .feeding-table th,
  .feeding-table td {
    font-size: 9px;
    padding: 5px;
  }
}

.montage-content p {
  text-align: left;
}

.montage-content .list {
  text-align: left;
}

/* PDF Section */
.pdf-section {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 15px 10px;
  margin-bottom: 20px;
}

/* PDF Button */
.pdf-btn {
  display: inline-block;
  padding: 12px 24px;
  background: #3E4095;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: 0.3s ease;
  text-align: center;
  max-width: 100%;
}

/* Hover Effect */
.pdf-btn:hover {
  background: #2e2e8a;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .pdf-btn {
    width: 100%;
    font-size: 15px;
    padding: 14px;
  }
}

.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  left: 4px !important;
}
.grecaptcha-badge:hover {
  width: 256px !important;
}

/* .grecaptcha-badge {
    right: auto !important;
    left: 4px !important; 
    bottom: 20px !important;
    width: 70px !important; 
    overflow: hidden !important; 
    transform: none !important;
    -webkit-transform: none !important;
    transition: all 0.3s ease-in-out !important;
}

.grecaptcha-badge:hover {
    width: 256px !important; 
    transform: none !important;
    -webkit-transform: none !important;
} */


/* .grecaptcha-badge {
    visibility: hidden !important;
        width: 256px;
    height: 60px;
    display: block;
    transition: left 0.3s;
    position: fixed;
    bottom: 14px;
    left: -186px;
    box-shadow: gray 0px 0px 5px;
    border-radius: 2px;
    overflow: hidden;
} */

/* Hide default badge */
/* .grecaptcha-badge {
    display: none !important;
} */
