/* ==========================================================================
   Consolidated Front Page CSS - Zuari Envien Bioenergy
   ========================================================================== */

/* 1. GLOBAL RESET & TYPOGRAPHY
   -------------------------------------------------------------------------- */
/* * {
  box-sizing: border-box;
}

body,
button,
input,
select,
textarea,
a {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif !important;
  margin: 0;
  padding: 0;
  color: #333;
  text-decoration: none;
}

p {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6,
.page-title {
  font-family: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande",
    "Lucida Sans", Arial, sans-serif;
  font-weight: 700;
}

.zuari-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
} */

/* 2. HEADER & NAVIGATION
   -------------------------------------------------------------------------- */
/* .zuari-site-header {
  background: #ffffff;
  padding: 12px 0;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #f0f0f0;
}

.zuari-logo img {
  height: 45px;
  width: auto;
  display: block;
}

.zuari-nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

.zuari-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 35px;
}

.zuari-menu-list li a {
  color: #1a2b56;
  font-weight: 500;
  font-size: 16px;
  transition: 0.3s;
}

.zuari-menu-list li a:hover,
.zuari-menu-list li.current-menu-item > a {
  color: #43a047;
}

.zuari-menu-list li.menu-item-has-children > a::after {
  content: " \2304";
  font-size: 14px;
  margin-left: 5px;
}

.zuari-header-actions {
  display: flex;
  gap: 15px;
} */

/* 3. BUTTON UI SYSTEM
   -------------------------------------------------------------------------- */
.btn,
.hero-btn,
.collab-btn,
.tech-cta-btn,
.contact-submit-btn,
.supplier-btn,
.zuari-btn-fill,
.zuari-btn-outline {
  display: inline-flex !important;
  width: fit-content !important;
  align-self: flex-start;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  height: 48px;
  border: none;
  cursor: pointer;
}

/* Primary Green Style */
.primary-btn,
.hero-btn-green,
.collab-btn,
.tech-cta-btn,
.contact-submit-btn,
.zuari-btn-fill {
  background-color: #34a853 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 0px #34a853 !important;
}

.primary-btn:hover,
.hero-btn-green:hover {
  background-color: #34a853 !important;
}

/* Secondary Outline Style */
.secondary-btn,
.hero-btn-white,
.zuari-btn-outline {
  background-color: #ffffff !important;
  color: #34a853 !important;
  border: 1.5px solid #1a2b56 !important;
  box-shadow: 0 4px 0px #d1d5db !important;
}

.btn:active,
.hero-btn:active {
  transform: translateY(4px) !important;
  box-shadow: none !important;
}

/* 4. HERO SECTION
   -------------------------------------------------------------------------- */
.hero-section {
  position: relative;
  height: 90vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  background-image: url("../images/Hero.png");
  background-size: cover;
  background-position: center;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  );
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  padding: 15px;
  /* max-width: 900px; */
}

.hero-title {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 18px;
  margin-bottom: 36px;
  opacity: 0.95;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}
/* COLLABORATION VIDEO SECTION */
.collab-video-section {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center; /* Centers the inner wrapper vertically */
  overflow: hidden;
  background-color: #000;
}

.collab-inner-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 80%; /* Takes up most of the height to allow spacing */
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 80px;
}

.collab-text-box {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* PUSHES TITLE UP AND ROW DOWN */
  height: 100%; /* Important: uses the full height of the wrapper */
}

.collab-display-title {
  font-size: 68px;
  line-height: 1.1;
  font-weight: 700;
  color: #ffffff;
  margin-top: 48px; /* Adjust this to move the title even higher */
  letter-spacing: -2px;
}

/* THE BOTTOM ROW */
.collab-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  width: 100%;
  position: relative;
  z-index: 2;
  padding-bottom: 20px;
}

.collab-description {
  font-size: 18px;
  margin: 0;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}

/* BUTTONS */
.collab-button-group {
  margin: 0;
  display: flex;
  gap: 16px;
}

.collab-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}

/* .collab-btn-green {
  background-color: #34a853;
  color: #ffffff;
}
.collab-btn-white {
  background-color: #ffffff;
  color: #34a853;
} */

/* Move the title down so it's not under the fixed header on load */
/* .collab-display-title {
  margin-top: 100px;
} */

/* VIDEO & OVERLAY */
.video-background-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.collab-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collab-video-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
  z-index: 2;
}

/* 5. ABOUT US SECTION
   -------------------------------------------------------------------------- */
/* .about-section {
  padding: 80px;
  background: #fff;
} */
/* .about-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
} */

/* .about-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
  align-items: start;
}

.about-badge {
  color: #10b981;
  font-weight: 600;
  margin-top: 0;
  letter-spacing: 1px;
  text-transform: uppercase;

} */
/* 
.about-title {
  font-size: 24px;
  font-weight: 300;
  margin-bottom: 24px;
}

.about-actions-footer {
  display: flex;
  gap: 16px;
  margin-top: 28px;
} */

/* SECTION */
.about-section {
  padding: 120px 0;
  background-color: #ffffff;
}

.about-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* LAYOUT */
.about-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 80px;
  align-items: flex-start;
}

/* LEFT */
.about-left {
  padding-top: 6px;
}

.about-badge {
  display: inline-block;
  padding: 22px 14px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #34a853;
  /* background-color: #e6f4f1; */
  /* border-radius: 999px; */
}

/* RIGHT CONTENT */
.about-right {
  max-width: 900px;
}

.about-title {
  font-size: 24px;
  line-height: 1.55;
  font-weight: 300;
  color: #111827;
  margin-bottom: 24px;
}

/* BUTTONS */
.about-actions-footer {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

/* 6. COLLABORATION (SPLIT FIGMA) SECTION
   -------------------------------------------------------------------------- */
.collaboration-section {
  width: 100%;
  overflow: hidden;
  background: #fff;
}
.collab-split-wrapper {
  display: flex;
  align-items: stretch;
  width: 100%;
  min-height: 600px;
}
.collab-left-content {
  flex: 1;
  background-color: #1a3063;
  padding: 100px 15px 100px 80px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.collab-title {
  font-size: 42px;
  margin-bottom: 24px;
  line-height: 120%;
  letter-spacing: -1%;
}
.collab-desc {
  font-size: 16px;
  color: #cbd5e1;
  margin-bottom: 32px;
  max-width: 480px;
}
.collab-right-visual {
  flex: 1;
}
.collab-right-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- RESPONSIVE FIX FOR COLLABORATION SECTION --- */
@media (max-width: 768px) {
  .collab-split-wrapper {
    flex-direction: column; /* Stacks text on top of map */
    min-height: auto;
  }

  .collab-left-content {
    padding: 60px 30px; /* Reduces padding for mobile */
    text-align: center;
    align-items: center; /* Centers the button and title */
  }

  .collab-title {
    font-size: 32px; /* Scales down title for mobile */
  }

  .collab-right-visual {
    width: 100%;
    display: flex;
    justify-content: center; /* Centers the SVG horizontally */
    align-items: center;
    padding: 40px 20px;
    background-color: #f8fafc; /* Matches Figma light background */
  }

  .map-svg-wrapper {
    width: 100%;
    max-width: 500px; /* Prevents map from becoming too large */
    margin: 0 auto; /* Extra insurance for centering */
  }

  .map-svg-wrapper svg {
    width: 100%;
    height: auto;
    display: block;
  }
}

/* 7. COMMITMENT GRID
   -------------------------------------------------------------------------- */
.commitment-section {
  padding: 60px 0 100px;
  background-color: white;
  display: block;
}
.commitment-pill {
  background: #e6fffa;
  color: #34a853;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;

  /* Centering Logic */
  display: block; /* Ensures it behaves as a block element */
  margin-left: auto; /* Pushes from the left */
  margin-right: auto; /* Pushes from the right */
  margin-bottom: 60px; /* Keeps your existing bottom spacing */
  width: fit-content; /* Prevents the background from stretching full width */

  text-align: center;
  position: relative;
}
.commitment-layout {
  align-items: center;
}
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.commit-card {
  position: relative;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
}
.commit-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: 0.5s;
}
.commit-card:hover .commit-bg {
  transform: scale(1.1);
}
.commit-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  text-align: center;
}
.commit-overlay h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

/* 8. IMPACT STATS SECTION
   -------------------------------------------------------------------------- */
.impact-section {
  position: relative;
  padding: 100px 0;
  color: #fff;
  text-align: center;
  background-image: url("../images/impact-bg3.png");
  background-size: cover;
}
.impact-section > * {
  position: relative;
  z-index: 2;
}
.impact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.35); */
  z-index: 1;
}
/* .impact-heading {
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 70px;
  opacity: 0;
  transform: translateY(-30px);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
} */
/* .impact-heading {
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 70px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 1);
  opacity: 0;
  transform: translateY(-30px);
  transition: all 0.9s ease;
  text-shadow: none;
} */

.impact-heading {
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 0;
  color: #fff;
  margin-bottom: 70px;
  position: relative;
  display: inline-block;
  font-family: popins, sans-serif;

  /* Animation Initial State */
  opacity: 0;
  transform: translateY(-50px); /* Start 50px above */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 2;
}
.impact-item {
  opacity: 0;
  display: flex;
  text-align: center;
  flex-direction: column;
  align-items: center;
  transform: translateY(30px);
  transition: all 0.9s ease;
}
.impact-heading.slide-down,
.impact-item.slide-down {
  /* opacity: 1;
  transform: translateY(0); */
  opacity: 1 !important;
  transform: translateY(0) !important;
}
.stat-number {
  font-size: 48px;
  font-weight: 100;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
}
.stat-number::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -20px;
  width: 100%;
  height: 1px;
  background: #fff;
}

.stat-separator {
  width: fit-content;
  height: 1px;
  min-width: 40px;
  background: transparent;
  margin: 12px auto 18px;
}

.stat-label {
  font-size: 13px;
  /* text-transform: uppercase; */
  letter-spacing: 0.8px;
}

/* ===============================
   PRODUCTS SECTION
================================= */

.products-section {
  background: #f4f3ea;
  padding: 100px 0;
}

/* HEADER */
.products-header {
  text-align: center;
  margin-bottom: 60px;
}

.products-header h2 {
  font-size: 52px;
  /* font-size: 36px; */
  color: #003580;
  margin: 0%;
}

.products-header p {
  font-size: 16px;
  color: #545454;
}

/* GRID DESKTOP */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.product-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 280px;
  transition: 0.3s;
}

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

/* TEXT SIDE - PERFECT ALIGNMENT FIX */
.product-content {
  flex: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Alignment starts from the top */
}

.product-content h3 {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #1a2b56;

  /* THE FIX: Standardize the title box height */
  display: flex;
  /* align-items: center; Vertically centers text within the fixed box */
  min-height: 60px; /* Adjust this based on your longest title */
  width: 100%;
}

.product-content p {
  font-size: 15px;
  line-height: 1.6;
  color: #555;
  margin-top: 0; /* Ensures no extra gap above paragraph */
}

/* IMAGE SIDE */
/* .product-image {
  width: 100%;
  min-width: 220px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
} */

/* IMAGE SIDE CONTAINER */
.product-image {
  width: 100%;
  height: 350px; /* Set a fixed height that fits your design */
  background-color: #f9f9f9; /* Optional: light background to show the area */
  /* display: flex;
  align-items: center;
  justify-content: center; */
  overflow: hidden;
  border-radius: 8px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  display: block;
  /* padding: 20px;  */
}

/* ===============================
   TABLET VIEW (SCROLL CARDS)
================================= */

@media (max-width: 1200px) {
  .products-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .products-grid::-webkit-scrollbar {
    display: none;
  }

  .product-card {
    flex: 0 0 80%;
    scroll-snap-align: start;
  }
}

/* ===============================
   MOBILE VIEW (STACKED CARD)
================================= */

@media (max-width: 768px) {
  .product-card {
    flex-direction: column;
  }

  .product-image {
    width: 100%;
    /* height: 240px; */
  }

  .products-header h2 {
    font-size: 32px;
  }

  .product-card {
    flex: 0 0 88%;
  }

  .product-content {
    padding: 24px;
  }
}

/* 10. TECHNOLOGY SLIDER
   -------------------------------------------------------------------------- */

/* ========================
   Technology Section Styling
   ======================== */

.technology-section {
  background-color: #ffffff;
  padding: 100px 0;
  color: #333;
}

/* Force layout to column for header -> slider -> cta */
.tech-layout-fix {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Header Typography */
.tech-header {
  text-align: center;
  margin-bottom: 60px;
}

.tech-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #002b5c; /* Navy Blue from brand */
  line-height: 1.2;
  margin-bottom: 20px;
}

.tech-header p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/* Slider Container Layout */
.tech-slider-container {
  display: flex;
  align-items: center; /* Vertically center buttons with card */
  justify-content: center;
  gap: 30px; /* Space between buttons and card */
  width: 100%;
  max-width: 1400px;
  margin-bottom: 50px;
}

/* Navigation Buttons */
.tech-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid #34a853; /* Green Border */
  color: #34a853;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.tech-nav-btn:hover {
  background-color: #34a853;
  color: #fff;
}

/* The Main Card */
.tech-card {
  flex-grow: 1;
  border: 1px solid #e2e8f0; /* Light border */
  border-radius: 12px;
  padding: 40px;
  background: #fff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

/* Card Internal Layout */
.tech-card-top {
  margin-bottom: 30px;
}

.tech-number {
  display: block;
  color: #34a853; /* Green */
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* Flex row for Title --- Line --- Desc */
.tech-info-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.tech-card-title {
  font-size: 24px;
  font-weight: 300 !important;
  color: #1a202c;
  margin: 0;
  white-space: nowrap; /* Prevents title wrapping too early */
}

.tech-divider-line {
  flex-grow: 0.9;
  height: 1px;
  background-color: #e2e8f0;
}

.tech-card-desc {
  font-size: 16px;
  color: #003580;
  font-weight: 500;
  margin: 0;
  max-width: 500px;
  text-align: right;
}

/* Image Wrapper */
.tech-card-image {
  width: 100%;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
}

.tech-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Bottom CTA Button */
.tech-cta-wrapper {
  text-align: center;
}

.tech-cta-btn {
  background-color: #34a853;
  color: #fff;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s ease;
}
.tech-cta-btn:hover {
  background-color: #34a853;
}

/* Responsive Styling */
@media (max-width: 992px) {
  .tech-info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .tech-divider-line {
    display: none; /* Hide line on tablet/mobile */
  }

  .tech-card-desc {
    text-align: left;
    max-width: 100%;
  }

  .tech-card-title {
    white-space: normal;
  }
}
@media (max-width: 768px) {
  .tech-slider-container {
    display: flex;
    flex-direction: row; /* Change to row to allow side-by-side buttons */
    flex-wrap: wrap; /* Allows the card to take one row and buttons the next */
    justify-content: center;
    align-items: center;
    gap: 15px;
  }

  /* Force the card to take up 100% width so it stays on its own row */
  .tech-card {
    order: 1;
    width: 100%;
    flex: 0 0 100%;
    padding: 20px;
  }

  /* Position buttons side-by-side below the card */
  .tech-nav-btn.prev-btn {
    order: 2;
    margin: 0;
  }

  .tech-nav-btn.next-btn {
    order: 3;
    margin: 0;
  }

  /* Adjustments for card content on mobile */
  .tech-card-image {
    height: 250px;
  }

  .tech-header h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .tech-header br {
    display: none; /* Prevents awkward breaks on small screens */
  }
}

/* ========================
   Tech Slider Animation
   ======================== */

.tech-card.fade-anim {
  animation: fadeInSlide 0.5s ease-out;
}

@keyframes fadeInSlide {
  from {
    opacity: 0.6;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 11. KEY HIGHLIGHTS
   -------------------------------------------------------------------------- */
.highlights-section {
  background: #f4f3ea;
  padding: 50px 0;
}
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  padding-bottom: 50px;
}
.highlight-card {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  transition: 0.3s;
}
.highlight-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 15px;
}
.highlight-header h3 {
  margin: 0;
  font-size: 22px;
  color: #1a2b56;
}
.highlight-icon img {
  width: 32px;
  height: auto;
  display: block;
}
.highlights-title {
  text-align: center;
  /* color: #003580; */
  font-size: 28px;
  margin-bottom: 50px;
}
.highlight-icon {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin-bottom: 20px; */
}
.icon-blue-bg {
  background: #e0f2fe;
}

@media (max-width: 768px) {
  .highlights-grid {
    grid-template-columns: 1fr;
  }

  .highlight-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
  }

  .highlight-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    margin: 0;
  }

  .highlight-header h3 {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
  }

  .highlight-card p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
  }

  .highlight-card {
    padding: 24px;
  }
}

/* --- 1. Main Container --- */
.contact-section {
  /* background-color: #f1f9f5; */
  background: linear-gradient(180deg, #f9fdfb 0%, #e6f7ed 100%);
  padding: 100px 0;
}

.contact-layout {
  display: flex;
  justify-content: space-between;
  align-items: center; /* Vertically centers info and form card on desktop */
  gap: 80px;
}

/* --- 2. Left Column (Info) --- */
.contact-info-col {
  flex: 1;
  max-width: 500px;
}

.contact-heading {
  font-size: 56px; /* Bold, large heading for desktop */
  color: #003580; /* Brand Navy */
  line-height: 1.1;
  margin-bottom: 25px;
  font-weight: 700;
}

.contact-sub {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

.contact-divider {
  height: 1px;
  background-color: #d1dbe5;
  margin: 25px 0;
}

.contact-block h3 {
  font-size: 22px;
  color: #003580;
  margin-bottom: 12px;
  font-weight: 700;
}

.contact-block p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.supplier-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  /* background-color: transparent; */
  background-color: #fff;
  border: 1px solid #34a853; /* Green border */
  color: #34a853;
  border-radius: 8px;
  font-weight: 600;
  margin-top: 20px;
  transition: 0.3s;
}

.supplier-btn:hover {
  background: #34a853;
  color: #fff;
}

.arrow-icon {
  margin-left: 8px;
  font-size: 18px;
  display: inline-block;
}

/* --- 3. Right Column (Form Card) --- */
.contact-form-col {
  flex: 1.2;
  max-width: 600px;
}

.contact-card {
  background: #ffffff;
  padding: 60px; /* Spacious padding for premium desktop feel */
  border-radius: 24px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
}

.form-group {
  margin-bottom: 28px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background-color: #fff;
  font-size: 15px;
  transition: border-color 0.3s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #34a853;
}

/* Custom Select Arrow */
.select-wrapper {
  position: relative;
}
.select-wrapper::after {
  content: "▼";
  font-size: 12px;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #999;
}
select {
  -webkit-appearance: none;
  appearance: none;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 35px;
}

.form-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #34a853;
  cursor: pointer;
}

.contact-submit-btn {
  width: 100% !important;
  background-color: #34a853;
  color: #ffffff;
  padding: 18px;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  display: flex !important;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.contact-submit-btn:hover {
  background-color: #388e3c;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(67, 160, 71, 0.2);
}

/* --- 4. Responsive Queries --- */

/* Tablet & Smaller Desktop */
@media (max-width: 1200px) {
  .contact-heading {
    font-size: 42px;
  }
  .contact-layout {
    gap: 40px;
  }
  .contact-card {
    padding: 40px;
  }
}

/* Mobile Screens */
@media (max-width: 1024px) {
  .contact-layout {
    flex-direction: column; /* Stacks items vertically */
    align-items: flex-start;
  }

  .contact-info-col,
  .contact-form-col {
    max-width: 100%;
    width: 100%;
  }

  .contact-heading {
    font-size: 36px;
    text-align: left;
  }

  .contact-card {
    padding: 30px 20px;
  }
}
/* 13. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background: #162035;
  color: #fff;
  padding: 80px 0 30px;
  border-top: 5px solid #34a853;
}
.footer-widgets-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-menu li {
  margin-bottom: 12px;
}
.footer-menu a {
  color: #fff;
  opacity: 0.8;
}
.footer-menu a:hover {
  opacity: 1;
  color: #34a853;
}

/* 14. MOBILE & TABLET RESPONSIVE
   -------------------------------------------------------------------------- */

/* Mobile Navigation Toggle Appearance */
.zuari-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}
.zuari-mobile-toggle span {
  width: 25px;
  height: 2px;
  background: #1a2b56;
  transition: 0.3s;
}

/* Desktop Breakpoint */
@media (max-width: 1200px) {
  /* .zuari-nav, */
  /* .zuari-header-actions {
    display: none;
  } */
  .zuari-mobile-toggle {
    display: flex;
  }
  .zuari-container {
    padding: 0 20px;
  }

  /* Nav Toggle Class (Activated via scroll.js) */
  .nav-open .zuari-nav {
    display: block !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  .nav-open .zuari-menu-list {
    flex-direction: column;
    gap: 15px;
  }

  /* Layout Stacks */

  .collab-split-wrapper,
  .contact-layout {
    flex-direction: column;
    grid-template-columns: 1fr;
  }
  .collab-right-visual {
    height: 350px;
  }
  .commitment-grid,
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Phone Breakpoint */
@media (max-width: 768px) {
  .hero-section {
    align-items: end;
    min-height: 700px;
  }
  .hero-title {
    text-align: left;
    font-size: 36px;
    font-weight: lighter;
    margin-bottom: 12px;
  }

  .collab-btn {
    width: 100% !important;
    font-size: 12px;
    margin: 0 auto;
    max-width: fit-content;
  }

  .collab-bottom-row {
    /* display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;*/
    display: block;
    /* background-color: aquamarine; */
    position: relative;
    /* z-index: 3; */
    /* width: 100%; */
    /* height: 80%; */
    /* max-width: 1440px; */
    /* margin: 0 auto; */
    /* padding: 0 15px; */
  }

  .collab-inner-wrapper {
    /* position: relative; */
    /* z-index: 3; */
    /* width: 100%;
    height: 80%; */
    /* margin: 0 auto; */
    padding: 15px;
    position: relative;
    /* background-color: tomato; */
    align-items: end;
    height: fit-content;
    align-self: flex-end;
    /* z-index: 2; */
    /* padding: 15px; */
  }

  .collab-text-box {
    display: block;
    position: relative;
    /* background-color: #555; */
    height: fit-content;
    /* flex-direction: none; */
    /* justify-content: space-between; */
    /* height: 100%; */
  }

  .collab-display-title {
    text-align: left;
    font-size: 36px;
    font-weight: lighter;
    margin-bottom: 12px;
  }

  .hero-subtitle {
    text-align: left;
    font-size: 16px;
    margin-bottom: 24px;
  }

  .collab-description {
    text-align: left;
    font-size: 16px;
    margin-bottom: 24px;
    /* background-color: #34a853; */
  }

  /* .hero-title {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 36px;
    opacity: 0.95;
  } */

  .hero-actions {
    margin-bottom: 28px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100% !important;

    font-size: 12px;
    margin: 0 auto;
  }

  .hero-btn {
    width: 100% !important;
    max-width: 400px;
    font-size: 12px;
    margin: 0 auto;
  }

  /* about section */
  .about-section {
    padding: 15px;
    line-height: 150%;
    letter-spacing: -1%;
  }

  .about-container {
    padding: 0px;
    margin-bottom: 30px;
  }
  .about-actions-footer {
    margin-bottom: 28px;
    flex-direction: column;
  }

  .about-badge {
    /* text-align: center; */
    justify-self: center;
    margin: 0 auto;
    display: block;
    margin-top: 30px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    /* text-align: center; */
    gap: 20px;
    /* align-items: start; */
  }

  .collab-left-content {
    padding: 100px 15px 100px 15px;
  }

  .commitment-section {
    display: block;
  }

  .commitment-grid {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .commitment-grid::-webkit-scrollbar {
    display: none;
  }

  .commit-card {
    min-width: 80%;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .impact-grid,
  .commitment-grid,
  .highlights-grid,
  .footer-widgets-grid {
    grid-template-columns: 1fr;
  }
  /* .tech-slider-container {
    flex-direction: column;
  } */
  /* .tech-card-image {
    height: 250px;
  } */
  .stat-number {
    font-size: 36px;
  }
}
