@charset "UTF-8";

/* ---------------------------------------
   Additri Agrotech – Your partner in Sustibale Farming 
----------------------------------------*/
/* debugg
* {
  outline: 1px solid rgba(255,0,0,0.2);
} */


/* Fonts */
:root {
  --default-font: "Lato", system-ui, -apple-system, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Montserrat", sans-serif;
  --nav-font: "Montserrat", sans-serif;
}

/* ---------------------------------------
   Global Colors
----------------------------------------*/
:root { 
  --background-color: #ffffff;      /* Global background */
  --default-color: #333333;         /* Body text */
  --heading-color: #1d4d2c;         /* Deep brand green */
  --accent-color: #2e7d44;          /* Primary brand green */
  --highlight-color: #febf0f ;      /* Soft golden yellow for accents */
  --surface-color: #ffffff;         /* Card / section background */
  --contrast-color: #ffffff;        /* Text over green backgrounds */
}

/* ---------------------------------------
   Navigation Colors
----------------------------------------*/
:root {
  --nav-color: #1d4d2c;                         /* Default nav links */
  --nav-hover-color: var(--highlight-color);    /* Yellow hover accent */
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #1d4d2c;
  --nav-dropdown-hover-color: var(--accent-color);
}

/* ---------------------------------------
   Section Background Presets
----------------------------------------*/
.light-background {
  --background-color: #f9faf9;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #1d4d2c;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #2a5a3a;
  --contrast-color: #ffffff;
}


/* Safe Area Fix for Standalone PWA */
html, body {
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* ---------------------------------------
   Global Behavior
----------------------------------------*/
:root {
  scroll-behavior: smooth;
}

/* ---------------------------------------
   Base Styling
----------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.7;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--highlight-color); /* Subtle yellow on hover */
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: -0.3px;
}

/* ---------------------------------------
   Global Buttons
----------------------------------------*/

/* Primary Button (Core Green) */
.btn-primary {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: var(--heading-color); /* Darker green hover */
  color: #ffffff;
  box-shadow: 0 0 8px color-mix(in srgb, var(--highlight-color), transparent 70%);
}

/* Secondary Button (Outlined Green, Yellow Hover) */
.btn-secondary {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 10px 24px;
  transition: 0.3s ease;
}

.btn-secondary:hover {
  background-color: var(--highlight-color);
  color: #1d4d2c; /* Text switches to green */
  border-color: var(--highlight-color);
}

/* Tertiary Button (Soft Neutral) */
.btn-tertiary {
  background-color: #f9faf9;
  color: var(--heading-color);
  border: 1px solid #e0e0e0;
  font-family: var(--heading-font);
  font-weight: 500;
  border-radius: 8px;
  padding: 10px 24px;
  transition: 0.3s ease;
}

.btn-tertiary:hover {
  background-color: var(--accent-color);
  color: #ffffff;
}

/* Success Button (Natural Confirmation Green) */
.btn-success {
  background-color: #3ca55c;
  color: #ffffff;
  font-family: var(--heading-font);
  font-weight: 600;
  border: none;
  border-radius: 8px;
  padding: 10px 24px;
  transition: 0.3s ease;
}

.btn-success:hover {
  background-color: #1d4d2c;
}

/* Ghost Button (Minimal, Yellow Hover Accent) */
.btn-ghost {
  background-color: transparent;
  color: var(--accent-color);
  border: none;
  font-family: var(--heading-font);
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 20px;
  transition: 0.3s ease;
}

.btn-ghost:hover {
  color: var(--highlight-color);
}

/* Disabled Button */
.btn:disabled, .btn-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  background-color: #ccc;
  color: #666;
  border: none;
}

/* ---------------------------------------
   Footer & Small Text
----------------------------------------*/
/* footer, small, p.small {
  font-family: var(--default-font);
  font-weight: 300;
  font-size: 0.9rem;
  color: #555;
} */



/* ===============================
   PHP Email Form Messages 
=============================== */

.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
  display: none;
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 24px;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  animation: fadeInMessage 0.4s ease-in-out;
}

/* --- Loading --- */
.php-email-form .loading {
  background: var(--surface-color);
  color: var(--accent-color);
  text-align: center;
  position: relative;
  font-weight: 500;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  margin: 0 10px -5px 0;
  border: 3px solid var(--accent-color);
  border-top-color: transparent;
  animation: php-email-form-loading 1s linear infinite;
  vertical-align: middle;
}

/* --- Success --- */
.php-email-form .sent-message {
  background: #e7f7ef;
  color: #1c6b3a;
  border: 1px solid color-mix(in srgb, #1c6b3a, transparent 75%);
  text-align: center;
}

/* --- Error --- */
.php-email-form .error-message {
  background: #ffeaea;
  color: #b6242b;
  border: 1px solid color-mix(in srgb, #b6242b, transparent 75%);
  text-align: left;
}

/* --- Animation for messages --- */
@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeInMessage {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Responsive fine-tune --- */
@media (max-width: 576px) {
  .php-email-form .loading,
  .php-email-form .error-message,
  .php-email-form .sent-message {
    font-size: 0.9rem;
    padding: 12px 15px;
  }
}


/* ---------------------------------------
   Additri – Top Contact Bar (Desktop Only)
---------------------------------------- */
.topbar {
  background-color: var(--surface-color);
  border-bottom: 1px solid #e6e6e6;
  font-family: var(--default-font);
  font-size: 14px;
  color: var(--heading-color);
}

.topbar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6px 18px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  gap: 16px;
}


/* -------------------------
   LEFT CONTACT (DESKTOP)
-------------------------- */
.topbar-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: bold;
}

.contact-item img {
  width: 16px;
  height: 16px;
}

.contact-item a {
  color: var(--heading-color);
  text-decoration: none;
}
.contact-item a:hover {
  color: var(--accent-color);
}


/* --------------------------------
   DESKTOP MENU (RIGHT SIDE)
--------------------------------- */

.topbar-right {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.menu-link {
  color: var(--heading-color);
  text-decoration: none;
  font-weight: 600;
  transition: color .25s ease;
}

.menu-link:hover {
  color: var(--accent-color);
}

.divider {
  color: rgba(0,0,0,0.4);
}


/* -------------------------
   Social Icons (Desktop)
-------------------------- */
.topbar-social {
  display: flex;
  align-items: center;
  gap: 14px;      /* <-- Added perfect even spacing */
}

.topbar-social a img {
  width: 18px;
  height: 18px;
  transition: opacity .25s;
}

.topbar-social a:hover img {
  opacity: 0.7;
}



/* --------------------------------------
   MOBILE MINI CENTERED MENU (TEXT ONLY)
-------------------------------------- */

.topbar-mobile-menu {
  display: none;
}

@media (max-width: 991px) {

  .topbar {
    padding: 8px 0;
  }

  /* Hide desktop parts */
  .topbar-left,
  .topbar-right {
    display: none !important;
  }

  /* Show mobile menu */
  .topbar-mobile-menu {
    display: flex;
    gap: 10px;
    justify-content: center;
    width: 100%;
    font-size: 14px;
    font-weight: 600;
  }

  .mini-link {
    color: var(--heading-color);
    text-decoration: none;
  }

  .mini-link.active,
  .menu-link.active {
    color: var(--accent-color);
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 2px;
  }
}


/* ==============================
   NEW BADGE (BLINK EFFECT)
============================== */

.new-badge-wrapper {
  position: relative;
}

/* Better positioned NEW badge */
.new-badge {
  position: absolute;
  top: -14px !important;      
  right: -10px;
  padding: 2px 6px;
  background: #ff5722;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  animation: badgeBlink 1.7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes badgeBlink {
  0% { opacity: .3; transform: scale(.92); }
  50% { opacity: 1; transform: scale(1); }
  100% { opacity: .3; transform: scale(.92); }
}

/* ---------------------------------------
   Additri – Utility Bar
---------------------------------------- */
.utility-bar {
  background-color: var(--background-color);
  border-bottom: 1px solid #e6e6e6;
}

.utility-bar .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 18px;
}

.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.utility-bar .logo img {
  height: 64px;
  width: auto;
  max-width: 180px;
  display: block;
  object-fit: contain;
}

@media (max-width: 991px) {
  .utility-bar .logo img {
    height: 48px;
    max-width: 160px;
  }
}

@media (max-width: 576px) {
  .utility-bar .logo img {
    height: 42px;
    max-width: 140px;
  }
}

/* ---------------------------------------
   Search Box
---------------------------------------- */
.search-box {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
  max-width: 480px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background: #fff;
  padding: 4px;
  position: relative; /* IMPORTANT for dropdown alignment */
}

.search-box input {
  flex: 1;
  border: 0;
  outline: none;
  font-size: 15px;
  padding: 8px 10px;
  color: var(--default-color);
  font-family: inherit;
  background: transparent;
}

.search-box button {
  border: 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
  cursor: pointer;
}

.search-box button:hover {
  background: var(--heading-color);
}




/* ---------------------------------------
   Search Dropdown (Fuse.js Results)
---------------------------------------- */
.search-results {
  position: absolute;
  top: calc(100% + 4px); /* Smooth spacing */
  left: 0;
  width: 100%; /* MATCH SEARCH BAR WIDTH */
  
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);

  max-height: 260px;
  overflow-y: auto;
  z-index: 9999;

  padding: 6px 0;
  display: none; /* Hidden until typing */
}

.search-results.active {
  display: block;
}

.search-results .result-item {
  display: block;
  padding: 12px 14px;
  font-size: 14px;
  color: #1d4d2c;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.2s ease;
}

.search-results .result-item:last-child {
  border-bottom: none;
}

.search-results .result-item:hover {
  background: #f3faf5;
  color: #2e7d44;
}

/* ---------------------------------------
   Utility Actions
---------------------------------------- */
.utility-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.mobile-toggle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------------------------------------
   Responsive Behaviour
---------------------------------------- */
@media (max-width: 991px) {
  .search-box,
  .btn-primary {
    display: none !important;
  }
  .mobile-toggle {
    display: inline-block;
  }
}


/* ============================================================
   ADDITRI AGROTECH – DESKTOP NAVIGATION & MEGA MENU
   ============================================================ */

/* Base nav wrapper */
.main-nav {
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1000;
}

.main-nav .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  justify-content: flex-start;
}

/* ------------------------------
   Navigation list
------------------------------ */
.nav-list {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-list > li {
  position: relative;
}

/* Menu link */
.nav-list a,
.nav-list .megatoggle {
  font-family: var(--heading-font, "Montserrat", sans-serif);
  font-weight: 800;
  font-size: 15px;
  color: var(--heading-color, #1d4d2c);
  text-decoration: none;
  padding: 14px 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
  transition: color .25s ease;
}

.nav-list a:hover,
.nav-list .megatoggle:hover,
.nav-list a.active {
  color: var(--accent-color, #2e7d44);
}

/* Underline animation */
.nav-list a::after,
.nav-list .megatoggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  height: 2px;
  width: 0;
  background: var(--highlight-color, #f4b400);
  transition: width .35s ease;
}
.nav-list a:hover::after,
.nav-list .megatoggle:hover::after,
.nav-list a.active::after {
  width: 100%;
}

/* Chevron rotation */
.nav-list .megatoggle i {
  font-size: 12px;
  transition: transform .3s ease;
}
.has-mega:hover .megatoggle i {
  transform: rotate(180deg);
}

/* ------------------------------
   Mega-menu panel (container)
------------------------------ */
.mega-panel {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
}

.has-mega {
  position: relative;
}

/* Default state: hidden */
.has-mega .mega-panel {
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

/* When open via JS (hover intent adds .mega-open) */
.has-mega.mega-open .mega-panel {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}


/* Width presets */
.mega-panel.wide { width: 820px; }
.mega-panel.medium { width: 700px; }

/* ------------------------------
   Left-side tab list
------------------------------ */
.mega-left {
  width: 220px;
  border-right: 1px solid #e8e8e8;
  padding-right: 14px;
}
.mega-tabs {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mega-tabs .tab {
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  font-family: var(--heading-font, "Montserrat", sans-serif);
  font-size: 14px;
  color: var(--default-color, #333);
  background: transparent;
  border: 0;
  border-left: 3px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all .25s ease;
}
.mega-tabs .tab:hover {
  background: #f7fbf8;
  color: var(--accent-color, #2e7d44);
}
.mega-tabs .tab.active {
  background: #f2faf5;
  color: var(--accent-color, #2e7d44);
  border-left-color: var(--accent-color, #2e7d44);
  font-weight: 600;
}

/* ------------------------------
   Right-side content area
------------------------------ */
.mega-right {
  flex: 1;
  display: flex;
  align-items: flex-start;
}
.tab-panel {
  width: 100%;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity .6s ease;
}
.tab-panel.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

/* .tab-panel img {
old code full width Mega menu Image 
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
} */

.tab-panel img {
  width: 140px;          
  height: 140px;         
  object-fit: cover;     
  border-radius: 10px;  
  margin-bottom: 12px;
  display: block;
}

.tab-panel h5 {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--heading-color, #1d4d2c);
  margin: 0 0 6px;
}
.tab-panel p {
  font-size: 13.5px;
  color: #555;
  margin: 0 0 10px;
  line-height: 1.5;
}
.cta-link {
  color: var(--accent-color, #2e7d44);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color .25s ease;
}
.cta-link:hover {
  color: var(--highlight-color, #f4b400);
}


/* SIMPLE DROPDOWN STYLING aboutus and services*/
.has-dropdown {
  position: relative;
}

.has-dropdown > a i {
  font-size: 12px;
  transition: transform .3s ease;
}

.has-dropdown:hover > a i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  background: #fff;
  padding: 10px 0;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  min-width: 220px;
  z-index: 2000;
}

.has-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--heading-color);
  text-decoration: none;
  transition: all .25s ease;
  font-family: var(--heading-font);
}

.dropdown-menu li a:hover {
  background: #f7fbf8;
  color: var(--accent-color);
}

/* Attach badge to the menu item */
.new-badge-wrapper {
  position: relative;
}

/* NEW badge top-right */
.new-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  padding: 2px 6px;
  background: #ff5722;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  border-radius: 4px;
  animation: fadeBlink 1.8s ease-in-out infinite;
  pointer-events: none;
}

/* Fade animation */
@keyframes fadeBlink {
  0% { opacity: 0.2; transform: scale(0.92); }
  50% { opacity: 1; transform: scale(1); }
  100% { opacity: 0.2; transform: scale(0.92); }
}

/* ------------------------------
   Responsive hide on smaller
------------------------------ */
@media (max-width: 1199px) {
  .main-nav { display: none; }
}



/* ============================================================
   ADDITRI AGROTECH – MOBILE DRAWER 
============================================================ */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: -100%;
  /* width: 80%; */
  width: 100%;  
  max-width: 380px;
  height: 100vh;
  background: #fff;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
  /* z-index: 2000; */
  z-index: 20000000 !important; 
  transition: left 0.35s ease-in-out;
  display: flex;
  flex-direction: column;
  overscroll-behavior: contain;
}
.mobile-drawer.open { left: 0; }
body.drawer-open { overflow: hidden; }

/* Header */
.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid #eee;
}
.drawer-logo img { height: 80px; width: auto; }
.drawer-close {
  border: none;
  background: transparent;
  cursor: pointer;
  width: 36px;
  height: 36px;
  transition: transform 0.2s ease;
}
.drawer-close:hover { transform: rotate(90deg); }
.drawer-close img { width: 24px; height: 24px; }


/* Scroll content */
.drawer-scroll {
  flex: 1;
  overflow-y: auto;
  padding-bottom: 130px; /* room for social bar */
  scroll-behavior: smooth;
}



/* Search */
.drawer-search {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
}
.drawer-search input {
  flex: 1;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 15px;
  color: #333;
}
.drawer-search button {
  background: #2e7d44;
  border: none;
  border-radius: 6px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.drawer-search button:hover { background: #1d4d2c; }
.drawer-search button i { color: #fff; font-size: 18px; }

/* ==========================================================
   MOBILE SEARCH DROPDOWN — SAME DESIGN AS DESKTOP
========================================================== */

.drawer-search {
  position: relative;
}

.drawer-search .mobile-results {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  width: 100%;

  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);

  max-height: 260px;
  overflow-y: auto;
  z-index: 9999;

  padding: 6px 0;
  display: none; /* hidden until activated */
}

.drawer-search .mobile-results.active {
  display: block;
}

.drawer-search .mobile-results .result-item {
  display: block;
  padding: 12px 14px;
  font-size: 14px;
  color: #1d4d2c;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
  transition: background 0.2s ease;
}

.drawer-search .mobile-results .result-item:last-child {
  border-bottom: none;
}

.drawer-search .mobile-results .result-item:hover {
  background: #f3faf5;
  color: #2e7d44;
}


/* Navigation */
.drawer-nav ul {
  list-style: none;
  margin: 0;
  padding: 12px 16px;
}
.drawer-nav li { margin-bottom: 8px; }
.drawer-nav a,
.drawer-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #1d4d2c;
  text-decoration: none;
  padding: 10px 4px;
  width: 100%;
  background: none;
  border: none;
  font-family: "Montserrat", sans-serif;
  cursor: pointer;
  transition: color 0.2s ease;
}
.drawer-nav a:hover,
.drawer-toggle:hover { color: #2e7d44; }
.drawer-toggle i { font-size: 14px; transition: transform 0.3s ease; }
.drawer-toggle.active i { transform: rotate(180deg); }

/* Submenus */
.drawer-sub {
  display: none;
  opacity: 0;
  transform: translateY(-4px);
}

.drawer-sub.open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.25s ease, transform 0.25s ease;
}



.drawer-sub li {
  position: relative;
  padding-left: 14px;
}
.drawer-sub li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 9px;
  color: #2e7d44;
  font-size: 12px;
}
.drawer-sub a {
  font-size: 14px;
  color: #444;
  font-weight: 500;
  padding: 6px 0;
  display: block;
}

/* Smooth submenu open animation */
@keyframes slideDown {
  0% { opacity: 0; transform: translateY(-4px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Drawer CTA */
.drawer-cta {
  padding: 16px;
  border-top: 1px solid #eee;
  background: #fff;
}
.drawer-cta .drawer-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background-color: #2e7d44;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 3px 8px rgba(46, 125, 68, 0.25);
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.drawer-cta .drawer-btn:hover {
  background-color: #1d4d2c;
  transform: translateY(-1px);
}

/* Social bar */
.drawer-social {
  position: fixed;
  bottom: 0;
  left: 0;
  /* width: 80%; */
  width: 100%;  
  max-width: 380px;
  background: #fff;
  border-top: 1px solid #eee;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: center;
  gap: 18px;
  padding: 10px 0;
  z-index: 2050;
}
.drawer-social img {
  width: 26px;
  height: 26px;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.drawer-social img:hover { opacity: 1; }
body:not(.drawer-open) .drawer-social { display: none; }

/* Overlay */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(29, 77, 44, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1990;
}
.drawer-overlay.visible {
  opacity: 1;
  visibility: visible;
}


/* FIX: Ensure mobile menu dropdown always stays above CTA buttons */
.mobile-nav,
.mobile-menu {
  z-index: 999999 !important;
}





/* market Prizes Iframe  */

.mandi-frame-wrapper {
  padding: 10px 0 20px;
}

.mandi-iframe {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  border: 1px solid #e6e6e6;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.mandi-source {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-top: 10px;
  text-align: right;
}

.mandi-source a {
  color: var(--accent-color);
  font-weight: 600;
}

.mandi-source a:hover {
  color: var(--highlight-color);
}


/* ===== Mobile Responsive for Mandi Frame ===== */

@media (max-width: 768px) {

  .mandi-iframe {
    height: 380px; /* Fits mobile screens better */
    border-radius: 10px;
  }

  .mandi-source {
    text-align: center;
    font-size: 13px;
    margin-top: 12px;
  }

  .mandi-source a {
    font-size: 13.5px;
  }
}

@media (max-width: 480px) {

  .mandi-iframe {
    height: 320px; /* Small phone height */
    border-radius: 8px;
  }

  .mandi-source {
    font-size: 12.5px;
  }

  .mandi-source a {
    font-size: 12.5px;
  }
}

/* ===============================
   ADDITRI AGROTECH 
   =============================== */

/* ==== Footer Full Width + Glow Edge ==== */
footer.footer {
  width: 100vw;
  position: relative;
  margin-left: calc(-50vw + 50%);
  background-color: var(--surface-color);
  color: var(--default-color);
  font-family: var(--default-font);
  border-radius: 12px 12px 0 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  padding: 40px 0 0;
  overflow: visible !important; /* ensure content is visible */
}

/* Soft top glow to separate footer from body */
footer.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 22px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
  z-index: 1; /* glow behind everything */
}

/* Wrapper inside full-width footer */
.footer-wrapper {
  position: relative;
  z-index: 3;
  padding: 40px 20px 0;
  margin: 0 auto;
  max-width: 1280px;
}

/* ---------- Main Grid ---------- */
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.3fr repeat(4, 1fr);
    gap: 40px;
  }
}

/* ---------- Headings ---------- */
.footer-col h4 {
  position: relative;
  font-family: var(--heading-font);
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 18px;
  padding-bottom: 6px;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

/* ---------- About ---------- */
.footer-about .logo-img {
  max-width: 180px;
  height: auto;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-weight: 800;
}

/* ---------- Footer Social Icons (Final PNG Version) ---------- */
.footer-social {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 14px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: transparent; /* Keep icons clean */
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: all 0.3s ease;
}

.footer-social a img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Hover animation – subtle lift and highlight border */
.footer-social a:hover {
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.footer-social a:hover img {
  transform: scale(1.1);
  opacity: 0.9;
}


/* ---------- Links ---------- */
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-col ul a {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  text-decoration: none;
  font-weight: 800;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover underline from center with yellow, darker text */
.footer-col ul a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--highlight-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.footer-col ul a:hover {
  color: var(--heading-color);
  font-weight: 900;
}

.footer-col ul a:hover::after {
  width: 100%;
}

/* ---------- Contact ---------- */
.footer-contact address {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 18px;
  font-family: 800;
}

.footer-contact a {
  color: var(--accent-color);
  transition: 0.25s ease;
  font-weight: 800;
}

.footer-contact a:hover {
  color: var(--highlight-color);
}

/* ---------- Callback Form ---------- */
.callback-form {
  margin-top: 18px;
}

.callback-title {
  font-size: 1rem;
  font-family: var(--heading-font);
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 8px;
}

/* Form always visible and responsive */
#whatsappForm {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  width: 100% !important;
  gap: 10px;
  padding-bottom: 8px;
  position: relative;
  z-index: 5; /* above glow */
}

#whatsappForm input {
  width: 100% !important;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  background-color: #fff;
  font-size: 0.95rem;
  transition: border-color 0.2s ease;
}

#whatsappForm input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.15rem color-mix(in srgb, var(--accent-color), transparent 80%);
}

#whatsappForm .btn-primary {
  width: 100% !important;
  display: block !important;
  min-height: 44px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  background-color: var(--accent-color);
  border: none;
  border-radius: 6px;
}

#whatsappForm .btn-primary:hover {
  background-color: var(--heading-color);
  color: var(--contrast-color);
}

/* ---------- Dividers ---------- */
.footer-divider {
  width: 100%;
  height: 1px;
  background-color: color-mix(in srgb, var(--default-color), transparent 90%);
  margin: 30px 0;
}

/* ---------- Credits ---------- */
.footer-credits {
  text-align: center;
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  padding: 20px 0;
  font-weight: 800;
}

.footer-credits a {
  color: var(--accent-color);
  transition: 0.3s ease;
}

.footer-credits a:hover {
  color: var(--highlight-color);
}

.footer-extra-links {
  margin-top: 8px;
}

.footer-extra-links a {
  margin: 0 10px;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
  font-size: 1rem;
  font-weight: 800;
  position: relative;
  transition: all 0.3s ease;
}

/* Same hover underline-from-center for extra links */
.footer-extra-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--highlight-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.footer-extra-links a:hover {
  color: var(--heading-color);
}

.footer-extra-links a:hover::after {
  width: 100%;
}

/* ---------- SEO Section ---------- */
.footer-seo {
  padding: 40px 0 60px;
}

.footer-seo .seo-title {
  text-align: center;
  font-family: var(--heading-font);
  font-weight: 900;
  color: var(--heading-color);
  margin-bottom: 28px;
}

.footer-seo .seo-category {
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer-seo .seo-category h5 {
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.footer-seo .seo-links-inline {
  font-weight: 800;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

.footer-seo .seo-links-inline a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

/* Underline from center + color transition */
.footer-seo .seo-links-inline a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--highlight-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.footer-seo .seo-links-inline a:hover {
  color: var(--heading-color);
}

.footer-seo .seo-links-inline a:hover::after {
  width: 100%;
}



/* ---------- Responsive ---------- */
@media (max-width: 767.98px) {
  .footer-grid {
    gap: 28px;
  }

  .footer-contact {
    overflow: visible !important;
  }

  #whatsappForm {
    margin-top: 10px;
  }

  #whatsappForm input,
  #whatsappForm .btn-primary {
    width: 100% !important;
    display: block !important;
  }

  .footer-extra-links {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }
}


/* --------------------------------------------------------------
   # Additri – Logo Preloader
-------------------------------------------------------------- */

#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000000 !important; /* higher than sticky CTA + bottom bar */
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Logo */
.preloader-logo {
  width: 120px; /* adjust as needed */
  height: auto;
  opacity: 0;
  animation: logoFadeScale 1.6s ease forwards;
}

/* Keyframes */
@keyframes logoFadeScale {
  0% {
    opacity: 0;
    transform: scale(0.75);
  }
  55% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive */
@media (max-width: 480px) {
  .preloader-logo {
    width: 90px;
  }
}


/* Hide scroll-top during preloader */
#preloader ~ .scroll-progress-wrapper,
body.preloader-active .scroll-progress-wrapper {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}


/* Hide scroll-to-top when mobile menu is active */
body.mobile-menu-open .scroll-progress-wrapper {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}


/* ---------------------------------------------
   Scroll Top with Circular Progress Indicator
---------------------------------------------- */
.scroll-progress-wrapper {
  position: fixed;
  right: 15px;
  bottom: 65px; /*Increased  for avoiding over lap in PDF page with Stikcy bar */
  z-index: 99999;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none; /* allows clicks only on button */
}

.scroll-progress-wrapper svg {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-90deg); /* makes progress start from top */
}

.scroll-progress circle {
  fill: none;
  stroke-width: 4px;
  cx: 30;
  cy: 30;
  r: 26;
  stroke-linecap: round;
}

.scroll-progress .bg {
  stroke: #ddd;
  opacity: 0.4;
}

.scroll-progress .indicator {
  stroke: var(--accent-color);
  stroke-dasharray: 165;
  stroke-dashoffset: 165;
  transition: stroke-dashoffset 0.2s linear;
}

/* Keep your existing button styling but add one rule */
.scroll-progress-wrapper .scroll-top {
  pointer-events: auto; /* make button clickable again */
}

.scroll-progress-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scroll-progress-wrapper {
  transition: opacity 0.3s ease, transform 0.3s ease;
}




/*--------------------------------------------------------------
# Page Title – Visible Image with White Text
--------------------------------------------------------------*/
.page-title {
  color: var(--contrast-color);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 150px 0 100px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.4) 100%
  ); /* Subtle dark overlay for readability */
  z-index: 1;
}

.page-title .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.page-title h1 {
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.page-title .page-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 auto;
  max-width: 700px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Breadcrumb Section (Separate Below Header)
--------------------------------------------------------------*/
.breadcrumbs-section {
  background-color: var(--background-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 14px 0;
  text-align: center;
}

.breadcrumbs-section ol {
  display: inline-flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 15px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.breadcrumbs-section ol li + li {
  padding-left: 10px;
}

.breadcrumbs-section ol li + li::before {
  content: "/";
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.breadcrumbs-section ol li a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs-section ol li a:hover {
  color: var(--highlight-color);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .page-title {
    padding: 120px 0 80px;
  }

  .page-title h1 {
    font-size: 34px;
  }

  .page-title .page-subtitle {
    font-size: 1rem;
  }
}


/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

/*--------------------------------------------------------------
# Section Titles – Dual Tone + Continuous Underline Animation
--------------------------------------------------------------*/

.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

/* --- Heading --- */
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  display: inline-block;
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* --- Dual-tone colors --- */
.section-title h2 span {
  color: var(--accent-color); /* green */
}

.section-title h2 .highlight {
  color: var(--highlight-color); /* yellow */
}

/* --- Base gray line --- */
.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  background: color-mix(in srgb, var(--default-color), transparent 60%);
  left: 50%;
  transform: translateX(-50%);
  bottom: 1px;
}

/* --- Animated underline (continuous movement) --- */
.section-title h2::after {
  will-change: transform;
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    var(--highlight-color),
    var(--accent-color)
  );
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 0;
  border-radius: 2px;
  animation: underlineWave 3.5s ease-in-out infinite;
}

/* --- Continuous motion animation --- */
@keyframes underlineWave {
  0% {
    transform: translateX(-40px);
    opacity: 0.8;
  }
  50% {
    transform: translateX(40px);
    opacity: 1;
  }
  100% {
    transform: translateX(-40px);
    opacity: 0.8;
  }
}

/* --- Subtitle --- */
.section-title p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-size: 1.05rem;
  max-width: 640px;
  margin-inline: auto;
}

/* --- Responsive --- */
@media (max-width: 767.98px) {
  .section-title h2 {
    font-size: 26px;
  }
}


/* ===============================
   ADDITRI HERO – FINAL ENHANCED
   =============================== */

/* ---------- HERO BASE ---------- */
.additri-hero {
  position: relative;
  background: linear-gradient(
    to right,
    color-mix(in srgb, var(--accent-color), transparent 94%),
    var(--surface-color)
  );
  margin-top: 0 !important;
  padding: 180px 0 120px;
  overflow: hidden;
}

/* ---------- HERO TEXT CONTENT ---------- */
.additri-hero-content .additri-hero-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--accent-color), var(--background-color) 20%);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeSlideUp 0.9s ease forwards 0.2s;
}

.additri-hero-content .additri-hero-title {
  font-family: var(--heading-font);
  font-weight: 700;
  color: color-mix(in srgb, var(--heading-color), var(--background-color) 15%);
  font-size: 2.6rem;
  line-height: 1.3;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeSlideUp 1s ease forwards 0.4s;
}

.additri-hero-content .additri-hero-title span {
  color: var(--accent-color);
}

.additri-hero-content .additri-hero-subtext {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 480px;
  margin: 0 auto 25px auto;
  opacity: 0;
  transform: translateY(15px);
  animation: fadeSlideUp 1s ease forwards 0.6s;
}

/* ---------- HERO BUTTONS ---------- */
.additri-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeSlideUp 1s ease forwards 0.8s;
}

@media (min-width: 992px) {
  .additri-hero-buttons {
    justify-content: flex-start;
  }
}

.additri-hero-buttons .btn {
  border-radius: 8px;
  padding: 10px 28px;
  font-weight: 600;
  font-family: var(--heading-font);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.additri-hero-buttons .btn-primary {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.additri-hero-buttons .btn-primary:hover {
  background-color: var(--heading-color);
  color: var(--contrast-color);
  box-shadow: 0 0 10px color-mix(in srgb, var(--highlight-color), transparent 70%);
}

.additri-hero-buttons .btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.additri-hero-buttons .btn-secondary:hover {
  background-color: var(--highlight-color);
  border-color: var(--highlight-color);
  color: var(--heading-color);
}

/* ---------- HERO IMAGE ---------- */
.additri-hero-image {
  position: relative;
  opacity: 0;
  transform: scale(0.96);
  animation: fadeZoomIn 1s ease forwards 0.8s;
}

.additri-hero-img {
  max-width: 100%;
  width: 440px;
  border-radius: 12px;
  transition: transform 0.4s ease;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
}

.additri-hero-img:hover {
  transform: scale(1.03);
}

/* ---------- SWIPER PAGINATION ---------- */
.additriHeroSwiper .additri-hero-pagination {
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  text-align: center;
  z-index: 5;
}

.additriHeroSwiper .swiper-pagination-bullet {
  background-color: var(--accent-color);
  opacity: 0.4;
  width: 10px;
  height: 10px;
  transition: 0.3s;
}

.additriHeroSwiper .swiper-pagination-bullet-active {
  opacity: 1;
  width: 24px;
  border-radius: 6px;
}

/* ---------- ANIMATIONS ---------- */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeZoomIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ---------- MOBILE RESPONSIVE ---------- */
@media (max-width: 991.98px) {
  .additri-hero {
    text-align: center;
    padding: 90px 0 100px;
  }

  .additri-hero-content .additri-hero-title {
    font-size: 2rem;
  }

  .additri-hero-img {
    width: 320px;
  }

  .additri-hero-buttons {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
    position: relative;
    z-index: 10;
  }

  .additri-hero-buttons .btn {
    width: 85%;
    max-width: 280px;
    display: block;
    margin: 0 auto;
  }

  .additriHeroSwiper .additri-hero-pagination {
    position: relative;
    bottom: auto;
    margin-top: 18px;
  }

  .additriHeroSwiper .swiper-slide {
    overflow: visible;
  }

  .additri-hero .container,
  .additri-hero .row {
    margin-top: 0;
    padding-top: 0;
  }
}

/* ---------- BUTTON VISIBILITY SAFEGUARD ---------- */
@media (max-width: 991.98px) {
  .additriHeroSwiper .swiper-slide {
    overflow: visible !important;
  }

  .additri-hero-content {
    overflow: visible !important;
    position: relative;
    z-index: 9;
  }

  .additri-hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    margin-top: 16px !important;
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    transform: none !important;
  }

  .additri-hero-buttons .btn {
    width: 85%;
    max-width: 280px;
    display: block !important;
    margin: 0 auto !important;
  }
}

/* ===============================
   ADDITRI HERO SUBTEXT – BLOG QUOTE
   =============================== */
body:not(.additri-hero) .additri-hero-subtext {
  font-family: var(--heading-font);
  font-weight: 500;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  background: linear-gradient(
    to right,
    color-mix(in srgb, var(--accent-color), transparent 96%),
    color-mix(in srgb, var(--accent-color), transparent 92%)
  );
  border-left: 4px solid var(--accent-color);
  border-radius: 8px;
  padding: 18px 36px 18px 20px;
  margin: 24px 0;
  max-width: 75%;
  text-align: left;
  position: relative;
}

body:not(.additri-hero) .additri-hero-subtext::after {
  content: "❝";
  font-size: 2rem;
  color: color-mix(in srgb, var(--accent-color), transparent 30%);
  position: absolute;
  right: 16px;
  top: 6px;
  opacity: 0.4;
}

.additri-hero-subtext strong {
  color: var(--accent-color);
  font-weight: 600;
}

@media (max-width: 767.98px) {
  body:not(.additri-hero) .additri-hero-subtext {
    font-size: 0.95rem;
    max-width: 100%;
    padding: 14px 22px 14px 16px;
    border-left: 3px solid var(--accent-color);
  }
}

/* ================================
Image First + Spacing + Padding
================================ */

@media (max-width: 767.98px) {

  /* 1) Image should come first */
  .additri-hero .row {
    display: flex;
    flex-direction: column-reverse;
  }

  /* 2) Add spacing below image */
  .additri-hero-image {
    margin-bottom: 24px !important;
  }

  /* 3) Fix big top empty space */
  .additri-hero {
    padding-top: 80px !important;   
    padding-bottom: 80px;
  }
}


/*--------------------------------------------------------------
# Our Brands - Ticker Carousel
--------------------------------------------------------------*/
.additri-brands {
  padding: 60px 0;
  background-color: var(--surface-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

/* Ensure alignment inside swiper */
.brand-swiper .swiper-wrapper {
  align-items: center;
}

/* Card Container */
.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 18px 22px;
  height: 120px;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  overflow: hidden;
}

/* Logo Image Control */
.brand-card img {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(30%);
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover Interaction */
.brand-card:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

/* Center logos when the count is small */
.brand-swiper .swiper-wrapper {
  justify-content: center !important;
}

/*--------------------------------------------------------------
# Responsiveness
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .brand-card {
    height: 100px;
    padding: 16px;
  }
  .brand-card img {
    max-width: 120px;
    max-height: 50px;
  }
}

@media (max-width: 768px) {
  .brand-card {
    height: 90px;
    padding: 14px;
  }
  .brand-card img {
    max-width: 100px;
    max-height: 45px;
  }
}

@media (max-width: 480px) {
  .brand-card {
    height: 80px;
    padding: 10px;
  }
  .brand-card img {
    max-width: 85px;
    max-height: 35px;
  }
}



/* ===========================================
   ADDITRI ABOUT US 
=========================================== */
.about {
  padding: 90px 0;
  background: var(--surface-color);
}

/* ---------- Image ---------- */
.about-image-wrapper {
  position: relative;
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  max-width: 340px;
}

.about-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.about-image {
  width: 100%;
  max-width: 420px; /* adjust size */
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  transition: transform 0.4s ease;
  margin: 0 auto; /* center image */
}


.about-image-wrapper:hover .about-image {
  transform: scale(1.03);
}

/* ---------- Content ---------- */
.about-content {
  padding-left: 10px;
}

.about-heading {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 16px;
  font-family: var(--heading-font);
}

.about-intro {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ---------- Quote ---------- */
.about-quote {
  position: relative;
  background: color-mix(in srgb, var(--accent-color), transparent 94%);
  border-left: 4px solid var(--accent-color);
  border-radius: 8px;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  padding: 18px 24px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.about-quote::before {
  content: "❝";
  font-size: 2rem;
  color: var(--accent-color);
  position: absolute;
  left: 10px;
  top: 6px;
  opacity: 0.5;
}

/* ---------- Buttons ---------- */
.about-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.about-buttons .btn {
  border-radius: 8px;
  padding: 10px 26px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: var(--heading-font);
}

.about-buttons .btn-primary {
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
}

.about-buttons .btn-primary:hover {
  background-color: var(--heading-color);
  color: var(--contrast-color);
  box-shadow: 0 0 12px rgba(0, 128, 0, 0.25);
}

.about-buttons .btn-outline {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.about-buttons .btn-outline:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .about {
    text-align: center;
    padding: 70px 0;
  }

  .about-content {
    padding-left: 0;
  }

  .about-buttons {
    justify-content: center;
  }

  .about-image-wrapper {
    max-width: 260px;
    margin-bottom: 28px;
  }
}

@media (max-width: 992px) {
  .about-buttons .btn {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
  }
}


/*--------------------------------------------------------------
# Clients Section -Logo Ticker
--------------------------------------------------------------*/

.clients {
  padding: 60px 0;
}

/* Ensure swiper wrapper aligns items vertically */
.client-swiper .swiper-wrapper {
  align-items: center;
}

/* Slide (Card Container) */
.client-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-color);
  border-radius: 16px;
  padding: 18px 22px;
  height: 110px;
  width: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: 0.3s ease;
  overflow: hidden; /* ✅ prevents overflow */
}

/* Logo Image Control */
.client-card img {
  max-width: 140px;   /* ✅ controls width */
  max-height: 60px;   /* ✅ controls height */
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover Effect */
.client-card:hover img {
  transform: scale(1.05);
}

/* Optional: subtle premium grayscale (remove if not needed) */
.client-card img {
  filter: grayscale(30%);
}
.client-card:hover img {
  filter: grayscale(0%);
}

/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/
@media (max-width: 992px) {
  .client-card {
    height: 100px;
    padding: 16px;
  }
  .client-card img {
    max-width: 120px;
    max-height: 50px;
  }
}

@media (max-width: 768px) {
  .client-card {
    height: 90px;
    padding: 14px;
  }
  .client-card img {
    max-width: 100px;
    max-height: 45px;
  }
}

@media (max-width: 480px) {
  .client-card {
    height: 80px;
    padding: 10px;
  }
  .client-card img {
    max-width: 85px;
    max-height: 35px;
  }
}



/* ===========================================
   ADDITRI COLLECTIONS –
=========================================== */

.scrollable-tabs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 0 8px 10px;
  margin-bottom: 36px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.scrollable-tabs::-webkit-scrollbar {
  display: none;
}

/* 🌿 Tab Pills */
.collections-tabs .tab-header li {
  flex: 0 0 auto;
  min-width: 130px;
  padding: 10px 16px;
  text-align: center;
  border: 1.8px solid color-mix(in srgb, var(--accent-color), transparent 65%);
  border-radius: 30px;
  background: #fff;
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/*  Leaf / Tick icon before text */
.collections-tabs .tab-header li::before {
  content: "🌿"; 
  font-size: 0.9rem;
  opacity: 0.8;
  color: var(--accent-color);
  transition: color 0.3s ease, transform 0.3s ease;
  transform: scale(0.95);
}

/* On hover */
.collections-tabs .tab-header li:hover {
  border-color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

/* On active (selected) */
.collections-tabs .tab-header li.active {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.06);
}
.collections-tabs .tab-header li.active::before {
  color: var(--contrast-color);
  transform: scale(1.15) rotate(-10deg);
}

/* Small subtext below label */
.collections-tabs .tab-header li small {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent-color);
  opacity: 0.85;
}
.collections-tabs .tab-header li.active small {
  color: var(--contrast-color);
}

/* ✅ Responsive for mobile */
@media (max-width: 991.98px) {
  .collections-tabs .tab-header li {
    min-width: 120px;
    padding: 9px 12px;
    font-size: 0.9rem;
  }
}

/* Center align tabs on desktop */
@media (min-width: 992px) {
  .scrollable-tabs {
    justify-content: center;
    overflow-x: visible; /* prevent unnecessary scroll on wide screens */
  }
}


/* ===========================================
   ADDITRI COLLECTION – Image Styling
=========================================== */

.collection-image-wrapper {
  position: relative;
  display: inline-block;
  background: #fff;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  overflow: hidden;
  max-width: 300px;
}

.collection-image-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.collection-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: contain;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.collection-image-wrapper:hover .collection-image {
  transform: scale(1.04);
  opacity: 0.95;
}

/* Subtle edge glow */
.collection-image-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  pointer-events: none;
  background: linear-gradient(
    to bottom right,
    rgba(0, 128, 0, 0.06),
    rgba(255, 255, 0, 0.04)
  );
  opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .collection-image-wrapper {
    max-width: 240px;
    margin: 0 auto;
  }
}

/* ===========================================
   FIX: Ensure collection buttons are visible on mobile
=========================================== */
@media (max-width: 992px) {
  #collections .tab-pane .btn {
    display: block !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 12px auto 0 !important;
    text-align: center !important;
  }
}


/* ===============================
   ADDITRI PRODUCTS – Home page design
=============================== */

.product-card-hz {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
  padding: 18px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: 0.3s ease;
}
.product-card-hz:hover { transform: translateY(-3px); }

.product-hz-inner {
  flex: 1;
  display: flex;
  gap: 18px;
  align-items: center;
}

/* IMAGE BLOCK */
.product-hz-img {
  flex: 0 0 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 16px;
  border-right: 1px solid rgba(0,0,0,0.08);
}
.product-hz-img img {
  width: 100%;
  height: 170px;
  object-fit: contain; /* ✅ Ensures uniform image fit */
}

/* CONTENT BLOCK */
.product-hz-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-hz-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* BULLET POINTS */
.product-hz-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 14px;
}
.product-hz-content ul li {
  font-size: .9rem;
  margin-bottom: 6px;
  padding-left: 18px;
  position: relative;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}
.product-hz-content ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: 700;
}

/* PRICE STYLE - CLEAN GREEN LABEL */
.product-price {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-price .mrp {
  text-decoration: line-through;
  opacity: .55;
}
.product-price .sale {
  font-weight: 700;
  background: var(--accent-color);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: .9rem;
}

/* BUTTONS — SIDE BY SIDE */
.product-hz-btns {
  display: flex;
  gap: 10px;
  margin-top: auto;
}
.btn-outline-sm,
.btn-fill-sm {
  flex: 1;
  padding: 9px 0;
  font-size: .83rem;
  border-radius: 6px;
  font-weight: 600;
  text-transform: none;
  transition: .3s;
}

/* Outline Button */
.btn-outline-sm {
  border: 1.8px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}
.btn-outline-sm:hover {
  background: var(--accent-color);
  color: #fff;
}

/* Filled Button */
.btn-fill-sm {
  background: var(--accent-color);
  color: #fff;
}
.btn-fill-sm:hover {
  background: var(--heading-color);
}

/* ---------------------------------------
   ARROWS — 
---------------------------------------- */
/* .products-prev,
.products-next {
  color: var(--accent-color) !important;
  font-size: 22px;
  font-weight: bold;
  top: 50%;
  transform: translateY(-50%);
}
.products-prev::after { content: "←"; }
.products-next::after { content: "→"; }

.products-prev { left: -36px; }
.products-next { right: -36px; } */

/* ---------------------------------------
   PAGINATION DOTS — CENTERED ON MOBILE
---------------------------------------- */
.products-pagination {
  text-align: center;
  margin-top: 16px;
}
.products-pagination .swiper-pagination-bullet {
  background: rgba(45, 92, 57, 0.35);
  opacity: 1;
}
.products-pagination .swiper-pagination-bullet-active {
  background: var(--accent-color);
}

/* ---------------------------------------
   MOBILE LAYOUT
---------------------------------------- */
@media(max-width: 768px){
  .product-hz-inner {
    flex-direction: column;
    text-align: left;
  }
  .product-hz-img {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.12);
    padding-right: 0;
    padding-bottom: 14px;
    width: 100%;
    justify-content: center;
  }
  .product-hz-btns { width: 100%; }
  .products-prev,
  .products-next { display: none !important; } /* ✅ Remove arrows */
}


/* ================================
   CTA Block
================================ */
.cta-modern {
  padding: 80px 0;
  background: #ffffff;
}

.cta-modern-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* Left text block */
.cta-modern-text {
  flex: 1.2;
  max-width: 620px;
}

.cta-modern-text h2 {
  font-family: var(--heading-font);
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--heading-color);
}

.cta-modern-text p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.7;
  margin-bottom: 24px;
}

/* Buttons */
.cta-modern-buttons {
  display: flex;
  gap: 16px;
}

.cta-modern-buttons a {
  text-align: center;
}

/* Right illustration */
.cta-modern-illustration {
  flex: 1;
  text-align: right;
}

.cta-modern-illustration img {
  max-width: 390px;
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ================================
   Responsive (Tablet + Mobile)
================================ */
@media (max-width: 992px) {

  /* Stack entire section */
  .cta-modern-wrapper {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 32px !important;
  }

  /* Text first */
  .cta-modern-text {
    order: 1 !important;
    max-width: 100% !important;
  }

  /* Buttons — always visible + stacked */
  .cta-modern-buttons {
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 350px;
    gap: 12px !important;
    margin: 0 auto;
  }

  .cta-modern-buttons .btn-primary,
  .cta-modern-buttons .btn-secondary {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
  }

  /* Image second */
  .cta-modern-illustration {
    order: 2 !important;
    width: 100% !important;
    text-align: center !important;
  }

  .cta-modern-illustration img {
    max-width: 270px !important;
    margin: 0 auto !important;
  }
}



/* ===============================
   ABOUT US SECTION - seperate Page 
=============================== */
.about-section {
  padding: 80px 0;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.about-content p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.7;
  margin-bottom: 15px;
}

.about-image img {
  border-radius: 12px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 20px rgba(0,0,0,0.08);
}

/* ===========================================
   FIX: Ensure BOTH About section buttons are visible on mobile
=========================================== */
@media (max-width: 992px) {
  .about-section .btn {
    display: block !important;
    width: 100% !important;
    max-width: 320px !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ===============================
   VISION, MISSION & VALUES
=============================== */
.vision-mission {
  background-color: var(--surface-color);
  padding: 80px 0;
}

.vmv-card {
  background: #fff;
  border-radius: 14px;
  padding: 35px 25px;
  height: 100%;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

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

.vmv-icon {
  width: 70px;
  height: 70px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 32px;
  color: var(--accent-color);
}

.vmv-card h4 {
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.vmv-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Responsive --- */
@media (max-width: 991.98px) {
  .about-section {
    padding: 60px 0;
  }
  .vision-mission {
    padding: 60px 0;
  }
  .vmv-card {
    padding: 30px 20px;
  }
}



/* ===============================
   ABOUT STORY / INTRO
=============================== */
.about-story {
  padding: 80px 0;
}

.story-content h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.5;
  margin-bottom: 15px;
}

.story-content p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 14px;
  line-height: 1.7;
}

/* ===============================
   OUR JOURNEY / TIMELINE
=============================== */
.our-journey {
  padding: 80px 0;
}

.timeline {
  margin-top: 50px;
  position: relative;
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  gap: 30px;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-img img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.timeline-text h4 {
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-text p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .timeline-item {
    flex-direction: column !important;
    text-align: center;
  }

  .timeline-img img {
    width: 100%;
    height: auto;
  }
}

/* ===============================
   OUR TEAM (Split Card with Flip)
=============================== */
.our-team {
  padding: 80px 0;
}

.team-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  max-width: 300px;
  margin: 0 auto;
}

/* --- Top (Flip Image Section) --- */
.team-top {
  background-color: #f9faf9;
  padding: 10px;
  perspective: 1000px; /* enables 3D flip */
}

.team-flip {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  transition: transform 0.7s;
  transform-style: preserve-3d;
  border-radius: 8px;
}

.team-card:hover .team-flip {
  transform: rotateY(180deg);
}

.team-front, .team-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 8px;
}

/* --- Front (Photo) --- */
.team-front img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}

/* --- Back (Description) --- */
.team-back {
  background-color: #f1f5f2;
  color: var(--heading-color);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  transform: rotateY(180deg);
}

.team-back p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.5;
  margin: 0;
}

/* --- Bottom (Details) --- */
.team-bottom {
  padding: 20px 15px 25px;
}

.team-name {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.9rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 8px;
}

/* --- Social Icon --- */
.team-social {
  margin-top: 10px;
}

.team-social .social-icon {
  width: 26px;
  height: 26px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.team-social .social-icon:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .team-card {
    max-width: 260px;
  }
}

@media (max-width: 576px) {
  .team-card {
    max-width: 100%;
  }

  .team-flip {
    aspect-ratio: 1 / 1;
  }

  .team-back p {
    font-size: 0.85rem;
  }
}


/* ===============================
   WHY US (USP)
=============================== */
.why-us {
  padding: 80px 0;
}

.usp-card {
  background: #fff;
  border-radius: 14px;
  padding: 35px 20px;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
}

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

.usp-card i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.usp-card h5 {
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.usp-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

/* Responsive Tweaks */
@media (max-width: 991.98px) {
  .about-story,
  .our-journey,
  .our-team,
  .why-us {
    padding: 60px 0;
  }
}

/* ===================================================
   FINAL FIX — Force USP cards to be single-column on mobile
=================================================== */
@media (max-width: 992px) {
  .why-us [class*="col-"] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }

  .usp-card {
    margin-bottom: 22px !important;
  }
}



/* ===============================
   SERVICES SECTION
=============================== */
.services {
  padding: 80px 0;
}

.service-card {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
}

.service-img {
  width: 45%;
  height: 100%;
  object-fit: cover;
}

.service-content {
  padding: 24px;
  flex: 1;
}

.service-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.service-content p {
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  font-size: 0.95rem;
  margin-bottom: 16px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .service-card {
    flex-direction: column;
    text-align: center;
  }

  .service-img {
    width: 100%;
    height: 200px;
  }

  .service-content {
    padding: 20px;
  }

  .service-content h4 {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .services {
    padding: 60px 0;
  }

  .service-card {
    flex-direction: column;
  }

  .service-img {
    height: 180px;
  }
}

/* =========================
   DRONE SECTION
========================= */
.drone-head {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.drone-content .lead {
  font-size: 16px;
  font-weight: bold;
  color: #444;
}

/* Features */
.drone-features {
  margin-top: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}

.feature-item i {
  font-size: 28px;
  font-weight: bold;
  color: var(--accent-color);
}

.feature-item h5 {
  font-size: 18px;
  font-weight: 700;
}

.feature-item p {
  font-size: 14.5px;
  font-weight: bold;
}

/* Buttons */
.drone-buttons {
  margin-top: 25px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Images */
.drone-image-block {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
}

.drone-main {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.15);
  object-fit: cover;
}

.drone-small {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 48%;
  border-radius: 12px;
  border: 4px solid #fff;
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
}

@media (max-width: 768px) {
  .drone-small {
    bottom: -10px;
    right: -5px;
    width: 55%;
  }
}

/* =========================
   DaaS Section
========================= */
.daas-section {
  padding: 80px 0;
}

.daas-content p {
  font-size: 15.5px;
  font-weight: bold;
  line-height: 1.7;
}

.daas-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.daas-list li {
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
}

.daas-list li i {
  color: var(--accent-color);
  margin-right: 8px;
}

.daas-image-wrapper {
  text-align: center;
}

.daas-image {
  width: 100%;
  max-width: 480px;
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Mobile: Image First */
@media (max-width: 991px) {
  .daas-section .col-lg-6:first-child {
    order: 2;
  }
  .daas-section .col-lg-6:last-child {
    order: 1;
  }
}

/* ===========================================
   FIX: Drone & DaaS Buttons on Mobile
=========================================== */
@media (max-width: 992px) {
  .drone-buttons .btn,
  .daas-section .btn {
    display: block !important;
    width: 100% !important;
    max-width: 320px !important;
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ===========================================
   FIX: DaaS Buttons (Mobile Only)
=========================================== */
@media (max-width: 992px) {
  .daas-section .btn {
    display: block !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 0 auto 12px !important;
    text-align: center !important;
  }
}


/* =====================================
   SOIL TESTING PAGE — FINAL CLEAN CSS
===================================== */

/* =========================
   Image Styling
========================= */
.soil-img {
  width: 90%;
  max-width: 420px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  display: block;
  margin: 0 auto 25px;
}

/* Mobile Image Resize */
@media (max-width: 768px) {
  .soil-img {
    width: 80%;
    max-width: 350px;
    margin-bottom: 20px;
  }
}

/* =========================
   Soil Cards (Why Choose Us)
========================= */
.soil-card {
  background: #fff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform .3s ease, box-shadow .3s ease;
}

.soil-card i {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.soil-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.soil-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Mobile card adjustments */
@media (max-width: 768px) {
  .soil-card {
    padding: 20px;
  }
}

/* =========================
   Benefits Grid
========================= */
.benefits-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.benefit-item {
  text-align: center;
  padding: 20px;
}

.benefit-item i {
  font-size: 30px;
  color: var(--accent-color);
}

.benefit-item p {
  margin-top: 10px;
  font-size: 14.5px;
}

/* =========================
   CTA Buttons Visibility Fix
========================= */
.soil-intro .btn,
.soil-benefits .btn {
  display: inline-block !important;
  width: auto;
  min-width: 160px;
  margin-right: 10px;
  margin-bottom: 12px;
  position: relative;
  z-index: 5;
}

/* Buttons full width on small screens */
@media (max-width: 768px) {
  .soil-intro {
    padding-bottom: 40px;
  }

  .soil-intro .btn,
  .soil-benefits .btn {
    width: 100%;
    margin-right: 0;
  }
}



/* ===============================
   WHY US SECTION
=============================== */
.why-us {
  padding: 80px 0;
}

.why-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  padding: 30px 25px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

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

.why-icon {
  width: 65px;
  height: 65px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.why-card:hover .why-icon {
  background: var(--accent-color);
  color: #fff;
  transform: scale(1.05);
}

.why-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
  line-height: 1.6;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .why-card {
    padding: 25px 20px;
  }

  .why-icon {
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }
}



/* ===============================
  PDP page
=============================== */

/* -------------------------------
   PRODUCT DETAILS WRAPPER
------------------------------- */
.product-details {
  padding: 80px 0;
}

/* -------------------------------
   PRODUCT GALLERY
------------------------------- */
.product-gallery img {
  width: 100%;
  aspect-ratio: 1/1;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

/* Swiper Pagination */
.swiper-pagination {
  position: relative !important;
  margin-top: 10px;
  text-align: center;
}
.swiper-pagination-bullet {
  background: var(--accent-color) !important;
  opacity: 0.5;
}
.swiper-pagination-bullet-active {
  opacity: 1;
}

/* -------------------------------
   STICKY IMAGE – CLEAN MERGED
------------------------------- */
.sticky-image {
  position: sticky;
  top: 100px;
  z-index: 3;
  align-self: flex-start;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  transition: top 0.25s ease;
}

.sticky-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
}

/* End of scroll area */
.sticky-image.end {
  position: absolute !important;
  bottom: 0;
  top: auto !important;
  left: 0 !important;
}

/* Disable sticky on mobile/tablet */
@media (max-width: 991px) {
  .sticky-image {
    position: relative !important;
    top: auto !important;
    left: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0;
  }
}

/* -------------------------------
   PRODUCT INFO
------------------------------- */
.product-info {
  padding: 10px 0;
}

.product-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
}

.product-desc {
  color: var(--default-color);
  font-size: 1rem;
  margin-bottom: 20px;
}

.product-price {
  margin: 15px 0;
}
.product-price .mrp {
  text-decoration: line-through;
  color: #999;
  margin-right: 10px;
}
.product-price .sale {
  background: var(--accent-color);
  color: #fff;
  padding: 5px 12px;
  border-radius: 6px;
  font-weight: 600;
}

/* -------------------------------
   PDP BUTTONS – CLEAN MERGED
------------------------------- */
.pdp-btn-primary,
.pdp-btn-secondary,
.pdp-btn-outline {
  font-family: var(--heading-font);
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 8px;
  padding: 10px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-align: center;
  transition: all 0.3s ease;
}

/* Primary */
.pdp-btn-primary {
  background-color: var(--accent-color);
  color: #fff;
  border: none;
}
.pdp-btn-primary:hover {
  background-color: var(--heading-color);
}

/* Secondary */
.pdp-btn-secondary {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}
.pdp-btn-secondary:hover {
  background-color: var(--highlight-color);
  color: #1d4d2c;
  border-color: var(--highlight-color);
}

/* Outline */
.pdp-btn-outline {
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
}
.pdp-btn-outline:hover {
  background: var(--accent-color);
  color: #fff;
}

/* Product Buttons Container */
.product-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}
.product-buttons a {
  flex: 1 1 48%;
}

/* Mobile Stacking */
@media (max-width: 992px) {
  .product-buttons {
    flex-direction: column !important;
    width: 100% !important;
    gap: 12px !important;
  }
  .product-buttons a {
    width: 100% !important;
    display: block !important;
    text-align: center !important;
  }
}

/* -------------------------------
   ACCORDION
------------------------------- */
.accordion-button {
  background: #f5f8f6;
  color: var(--heading-color);
  font-weight: 600;
  border-radius: 6px;
}
.accordion-button:not(.collapsed) {
  background: #e9f4ec;
  color: var(--accent-color);
}

.benefits-list {
  list-style: none;
  padding: 0;
}
.benefits-list li {
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.benefits-list i {
  color: var(--accent-color);
}

/* -------------------------------
   STICKY CTA BAR
------------------------------- */
.sticky-cta-bar {
  position: fixed;
  bottom: 62px; /* Important: lift above mobile bottom bar height */
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #ddd;
  z-index: 1000000 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  flex-wrap: nowrap;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
}

/* Mobile & Tablet only */
@media (max-width: 991px) {
  .sticky-cta-bar {
    bottom: 62px !important; /* above mobile bottom bar */
    z-index: 1000000 !important; 
  }
}

/* Desktop — reset position */
@media (min-width: 992px) {
  .sticky-cta-bar {
    bottom: 0 !important; /* default desktop position */
  }
}


.sticky-cta-bar a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* WhatsApp Icon */
.whatsapp-icon {
  width: 18px !important;
  height: 18px !important;
  object-fit: contain;
  margin-right: 6px;
}

/* Desktop behavior */
@media (min-width: 992px) {
  .sticky-cta-bar {
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.4s ease;
  }
  .sticky-cta-bar.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .sticky-cta-bar a {
    min-width: 150px;
    max-width: 180px;
  }
}

/* Mobile Equal Width */
@media (max-width: 991px) {
  .sticky-cta-bar {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    gap: 6px;
    padding: 6px 8px;
  }
  .sticky-cta-bar a {
    flex: 1;
    font-size: 0.8rem;
    padding: 8px;
  }
}

/* Pulse Button */
.call-btn {
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(60,165,92,0.4); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(60,165,92,0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(60,165,92,0); }
}

/* -------------------------------
   Mobile and Tab White empty space isse fix below the prodct 
------------------------------- */
@media (max-width: 991px) {
  .product-details .row {
    display: flex !important;
    flex-direction: column !important;
  }
  .product-gallery,
  .sticky-image,
  .product-info {
    width: 100% !important;
  }
}






/* =========================
   ALL PRODUCTS GRID
========================= */
.all-products {
  padding: 80px 0;
}

.product-card {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

/* Image section */
.product-img {
  background: #f9f9f9;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

/* Info section */
.product-info {
  padding: 16px;
  text-align: start;
}

.product-info h4 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  min-height: 50px;
}

.product-price {
  margin-bottom: 12px;
}

.product-price .mrp {
  text-decoration: line-through;
  color: #888;
  margin-right: 6px;
}

.product-price .sale {
  background: var(--accent-color);
  color: #ffffff; /* White text for contrast */
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 800;
  display: inline-block;
}

/* Buttons */
.product-buttons {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.product-buttons a {
  flex: 1 1 45%;
  text-align: center;
  font-size: 0.9rem;
  padding: 8px 10px;
  border-radius: 6px;
}

@media (max-width: 767px) {
  .product-buttons {
    flex-direction: column;
  }
  .product-buttons a {
    width: 100%;
  }
}



/* ===============================
   CONTACT SECTION STYLING
=============================== */
.contact-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  padding: 25px 20px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

.contact-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}

.contact-card h5 {
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 12px;
}

/* ===============================
   CONTACT SECTION – RESPONSIVE
=============================== */
@media (max-width: 768px) {

  /* Card Layout */
  .contact-card {
    padding: 20px 18px;
    text-align: center;          /* Centered for cleaner mobile look */
    border-radius: 10px;
  }

  /* Icon */
  .contact-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
  }

  /* Headings */
  .contact-card h5 {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  /* Paragraph */
  .contact-card p {
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 10px;
  }

  /* If your contact cards are in a grid */
  .contact-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;  /* Single column on mobile */
    gap: 18px !important;
  }
}


@media (max-width: 768px) {
  .contact-card-container {
    width: 100% !important;
    margin-bottom: 15px;
  }
}

/* --- Enquiry Form --- */
.contact-form-wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
  padding: 40px 30px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-form-wrap h3 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form-wrap p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.contact-form-wrap .form-control,
.contact-form-wrap .form-select {
  border-radius: 8px;
  padding: 12px 15px;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}

.contact-form-wrap .form-control:focus,
.contact-form-wrap .form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--accent-color), transparent 75%);
}

/* --- Submit Button --- */
.contact-form-wrap button {
  margin-top: 10px;
  padding: 12px 40px;
}

@media (max-width: 992px) {
  .contact-form-wrap button {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
  }
}





/* ===============================
   MAP SECTION (Enhanced)
=============================== */
.map-section {
  background-color: var(--surface-color);
  padding: 70px 0;
}

.map-container {
  max-width: 1200px; /* not fully stretched */
  margin: 0 auto;
}

.map-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 16px;
}

/* --- Responsive adjustments --- */
@media (max-width: 991px) {
  .map-section {
    padding: 50px 0;
  }

  .map-wrapper iframe {
    height: 380px;
  }
}

@media (max-width: 576px) {
  .map-section {
    padding: 40px 0;
  }

  .map-wrapper iframe {
    height: 320px;
  }
}


/* ===============================
   CENTERED CTA – PARTNER WITH US
=============================== */
.cta-centered {
  background-color: var(--surface-color);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 80px 0;
}

.cta-centered h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.cta-centered p {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.cta-centered-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* --- Responsive adjustments --- */
@media (max-width: 768px) {
  .cta-centered {
    padding: 60px 0;
  }

  .cta-centered h2 {
    font-size: 1.7rem;
  }

  .cta-centered p {
    font-size: 0.95rem;
  }

  .cta-centered-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-centered-buttons .btn {
    width: auto;
    min-width: 200px;
  }
}

@media (max-width: 992px) {

  /* Force both buttons to be visible and full width */
  .cta-centered-buttons .btn-primary,
  .cta-centered-buttons .btn-secondary,
  .cta-centered-buttons .btn {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
  }

  /* Stack buttons vertically with spacing */
  .cta-centered-buttons {
    flex-direction: column !important;
    gap: 12px !important;
    width: 100%;
    align-items: center;
  }
}






/* ===============================
   FAQ SECTION STYLING
=============================== */
.faq-section {
  padding: 80px 0;
}

.faq-image {
  max-width: 85%;
  height: auto;
  object-fit: contain;
}

.accordion-item {
  border: none;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.accordion-button {
  font-weight: 600;
  font-size: 1rem;
  color: var(--heading-color);
  background-color: var(--surface-color);
  box-shadow: none;
  border: none;
  padding: 18px 22px;
  border-radius: 12px;
  transition: background-color 0.3s ease;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
}

.accordion-body {
  background-color: #fff;
  padding: 18px 22px;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* --- Responsive --- */
@media (max-width: 991px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-image {
    max-width: 65%;
    margin-bottom: 25px;
  }
}

@media (max-width: 576px) {
  .accordion-button {
    font-size: 0.95rem;
    padding: 16px 18px;
  }
}




/* ==========================================================
   ADDITRI – RESEARCH & INNOVATION (FINAL CLEAN RESPONSIVE CSS)
========================================================== */

/* SECTION WRAPPER */
.research-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.research-light {
  background: color-mix(in srgb, var(--background-color), transparent 10%);
}

/* SECTION TITLE */
.research-title {
  font-family: var(--heading-font);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  text-align: center;
}

.research-subtext {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  text-align: center;
  max-width: 760px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

/* ==========================================================
   1. THE SCIENCE BEHIND ADDITRI
========================================================== */

.science-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 45px;
  align-items: center;
}

/* Wrapper */
.science-image-block {
  position: relative;
  display: inline-block;
  max-width: 520px;     /* controls the overall image block width */
  margin: 0 auto;
}

/* Main Image */
.science-main-img {
  width: 100%;
  max-width: 460px;     /* slightly smaller main image */
  border-radius: 18px;
  object-fit: cover;
  box-shadow: 0 20px 45px rgba(0,0,0,0.10);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Floating small image */
.science-small-img {
  position: absolute;
  bottom: -35px;
  right: -15px;
  width: 42%;           /* smaller and cleaner */
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

/* Hover effect — premium lift */
.science-image-block:hover .science-main-img {
  transform: translateY(-6px);
  box-shadow: 0 28px 55px rgba(0,0,0,0.15);
}

.science-image-block:hover .science-small-img {
  transform: translate(4px, -6px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.18);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .science-image-block {
    max-width: 100%;
  }

  .science-main-img {
    max-width: 100%;
  }

  .science-small-img {
    bottom: -25px;
    right: -10px;
    width: 48%;          /* slightly larger for mobile */
  }
}

.science-points {
  display: grid;
  gap: 22px;
}

.science-point {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #eee;
  box-shadow: 0 8px 25px rgba(0,0,0,0.04);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: 0.25s ease;
}

.science-point:hover {
  transform: translateY(-4px);
  border-color: var(--accent-color);
}

.science-point i {
  font-size: 32px;
  color: var(--accent-color);
}

.science-point h4 {
  font-size: 1.35rem;
  margin-bottom: 6px;
  color: var(--heading-color);
}

.science-point p {
  color: color-mix(in srgb, var(--default-color), transparent 12%);
  line-height: 1.6;
}

/* ==========================================================
   2. FIELD TRIALS — Creative Cards
========================================================== */

.trials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.trial-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #eaeaea;
  transition: 0.3s ease;
}

.trial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.trial-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.trial-card-content {
  padding: 22px;
}

.trial-card h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--heading-color);
}

.view-report-btn {
  margin-top: 12px;
  display: inline-block;
  padding: 10px 20px;
  background: var(--accent-color);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s ease;
}

.view-report-btn:hover {
  background: var(--heading-color);
}

/* ==========================================================
   3. INNOVATION PIPELINE
========================================================== */

.pipeline-row {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.pipeline-item {
  width: 290px;
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: 0.25s ease;
}

.pipeline-item:hover {
  transform: translateY(-5px);
}

.pipeline-item img {
  width: 85px;
  margin-bottom: 15px;
}

/* ==========================================================
   4. FUTURE AGRICULTURE VISION
========================================================== */

.vision-row {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.vision-block {
  background: #fff;
  border: 1px solid #eee;
  padding: 18px 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.vision-block i {
  font-size: 28px;
  color: var(--accent-color);
}

/* ==========================================================
   5. MICROBIAL TECHNOLOGY
========================================================== */

.microbe-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.microbe-item {
  background: #fff;
  padding: 26px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #eee;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  transition: 0.25s ease;
}

.microbe-item:hover {
  transform: translateY(-4px);
}

.microbe-item img {
  width: 75px;
  margin-bottom: 14px;
}

/* ==========================================================
   6. PARTNERSHIP — GKVK BANGALORE
========================================================== */

.partner-box {
  max-width: 850px;
  margin: 40px auto 0;
  padding: 38px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 35px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.partner-box img {
  width: 130px;
}

.partner-box p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.75;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/* ==========================================================
   RESPONSIVE FOR ALL SECTIONS
========================================================== */

@media (max-width: 991px) {
  .science-layout {
    grid-template-columns: 1fr;
  }

  .science-small-img {
    display: none;
  }

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

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

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

  .pipeline-item {
    width: 100%;
  }

  .partner-box {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .partner-box img {
    width: 110px;
  }
}

@media (max-width: 480px) {
  .research-title {
    font-size: 1.9rem;
  }

  .science-point {
    padding: 18px;
  }

  .microbe-item {
    padding: 20px;
  }
}



/* ========================
   GLOBAL SECTION SPACING
======================== */
.research-section {
  padding: 70px 0;
  position: relative;
}

.creative-light {
  background: color-mix(in srgb, var(--background-color), transparent 10%);
}



/* ========================
   1. MISSION SECTION
======================== */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  margin-top: 32px;
}

.mission-left .cover-img {
  width: 100%;
  max-width: 440px;  
  margin: 0 auto;     
  display: block;     
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 18px 40px rgba(0,0,0,0.09);
}


.mission-right h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.mission-right p {
  margin-bottom: 14px;
  line-height: 1.65;
}

/* Mission List */
.mission-list {
  list-style: none;
  padding: 0;
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.mission-list li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 1rem;
  color: var(--default-color);
}

.green-check {
  font-size: 22px;
  color: var(--accent-color);
}

/* ========================
   2. ENVIRONMENTAL IMPACT
======================== */
.metrics-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 32px;
}

.metric {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #eee;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

.metric-number {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-color);
}

.metric-label {
  margin-top: 6px;
  font-size: 1rem;
}

/* ========================
   3. REGENERATIVE AGRICULTURE
======================== */
.regen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 30px;
}

.regen-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0,0,0,0.06);
  transition: 0.25s ease;
}

.regen-card:hover {
  transform: translateY(-4px);
}

.regen-card .card-img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.regen-card h4 {
  margin: 14px 14px 6px;
  font-size: 1.2rem;
}

.regen-card p {
  padding: 0 14px 14px;
  font-size: 0.95rem;
}

/* ========================
   4. SUSTAINABLE PRODUCT PRACTICES
======================== */
.practices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 32px;
}

.practice {
  background: #fff;
  text-align: center;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #eee;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

.practice i {
  font-size: 36px;
  color: var(--accent-color);
  margin-bottom: 10px;
}

/* ========================
   5. CIRCULAR FARMING SOLUTIONS
======================== */
.circle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 30px;
}

.circle-visual .cover-img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.09);
}


.circle-explain h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.circle-explain ul {
  list-style: none;
  padding: 0;
  margin-top: 12px;
}

.circle-explain li {
  margin-bottom: 8px;
}

/* ========================
   6. ECO-FRIENDLY R&D
======================== */
.rnd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
  align-items: center;
}

.rnd-left .cover-img {
  width: 100%;
  max-width: 360px;  
  margin: 0 auto;     
  display: block;     
  border-radius: 14px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.09);
}


.rnd-right h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
}

/* Button removed per your request */
.rnd-right .btn-secondary {
  display: none;
}

/* ========================
   7. CLIMATE FARMING
======================== */
.climate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 28px;
}

.climate-card {
  background: #fff;
  text-align: center;
  padding: 24px;
  border-radius: 14px;
  border: 1px solid #eee;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

.climate-card i {
  font-size: 34px;
  color: var(--accent-color);
  margin-bottom: 10px;
}



/* ========================
   9. GREEN GOALS
======================== */
.goals-grid {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.goal {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  border: 1px solid #eee;
  width: 200px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

.goal-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-color);
}

/* ========================
   RESPONSIVE
======================== */

@media (max-width: 991px) {
  .mission-grid,
  .rnd-grid,
  .circle-grid {
    grid-template-columns: 1fr;
  }

  .regen-grid,
  .practices-grid,
  .climate-grid,
  .cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 600px) {
  .regen-grid,
  .practices-grid,
  .climate-grid,
  .cases-grid,
  .metrics-row {
    grid-template-columns: 1fr;
  }

  .mission-left,
  .mission-right,
  .rnd-right,
  .circle-explain {
    text-align: center;
  }

  .goal {
    width: 100%;
  }
}


/* ============================================================
   ADDITRI – Policy Pages (Terms, Privacy, Shipping, Returns)
   Clean, readable, premium layout
============================================================ */

/* Main Policy Wrapper */
.policy-wrapper {
  max-width: 900px;
  margin: 50px auto;
  padding: 0 20px;
}

/* Title Area */
.policy-wrapper h1 {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.policy-effective-date {
  text-align: center;
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 40px;
}

/* Section Headings */
.policy-section-title {
  font-size: 1.4rem;
  margin: 35px 0 12px;
  font-family: var(--heading-font);
  color: var(--heading-color);
  position: relative;
  padding-left: 18px;
}

.policy-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 18px;
  border-radius: 3px;
  background: var(--accent-color);
}

/* Paragraph Text */
.policy-wrapper p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 5%);
}

/* Numbered List Style */
.policy-wrapper ol {
  margin-left: 20px;
  margin-bottom: 20px;
}

.policy-wrapper ol li {
  margin-bottom: 12px;
  padding-left: 6px;
  line-height: 1.7;
  color: var(--default-color);
}

/* Contact Block */
.policy-contact-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 18px 20px;
  margin-top: 20px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.policy-contact-box p {
  margin: 0;
  font-size: 1rem;
}

/* Emojis in contact section */
.policy-contact-box p span {
  margin-right: 6px;
}

/* Responsive */
@media (max-width: 600px) {
  .policy-wrapper {
    padding: 0 14px;
  }

  .policy-wrapper h1 {
    font-size: 1.8rem;
  }

  .policy-section-title {
    font-size: 1.25rem;
  }
}


/* =============================
   ADDITRI – CREATIVE 404 PAGE
============================= */
.creative-404 {
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Organic Background Shape */
.creative-404 .error-bg-shape {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 320px;
  background: linear-gradient(
    to bottom,
    color-mix(in srgb, var(--accent-color), transparent 75%),
    transparent
  );
  z-index: -1;
  border-bottom-left-radius: 40%;
  border-bottom-right-radius: 40%;
}



/* Error Code */
.error-404 .error-code {
  font-size: clamp(6rem, 18vw, 12rem);
  font-weight: 800;
  font-family: var(--heading-font);
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  margin-bottom: 10px;
}

/* Title */
.error-404 .error-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 14px;
}

/* Text */
.error-404 .error-text {
  max-width: 620px;
  margin: 0 auto 32px;
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.7;
}



/* Buttons */
.error-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

/* Responsive */
@media (max-width: 768px) {
  .creative-404 {
    padding: 80px 0 100px;
  }
  .error-404 .error-title {
    font-size: 1.7rem;
  }
  .error-404 .error-text {
    font-size: 0.98rem;
    padding: 0 12px;
  }
  .error-actions {
    flex-direction: column;
  }
  .error-actions .btn-primary,
  .error-actions .btn-secondary {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}


/* =========================
   SITEMAP PAGE
========================= */
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.sitemap-column h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.sitemap-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-column ul li {
  margin-bottom: 8px;
}

.sitemap-column ul li a {
  color: var(--default-color);
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.sitemap-column ul li a:hover {
  color: var(--accent-color);
}

/* ===========================
   Floating WhatsApp CTA – LEFT SIDE
=========================== */
.floating-whatsapp {
  position: fixed;
  left: 18px;              
  bottom: 68px !important;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: glowPulse 2s infinite ease-in-out;
  transition: transform 0.3s ease;
}

.floating-whatsapp img {
  width: 42px;
  height: 42px;
}

/* Hover Effect */
.floating-whatsapp:hover {
  transform: scale(1.1);
}

/* Glowing Keyframes */
@keyframes glowPulse {
  0% {
    box-shadow: 0 0 6px rgba(37, 211, 102, 0.4),
                0 0 12px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 0 18px rgba(37, 211, 102, 0.75),
                0 0 28px rgba(37, 211, 102, 0.55);
  }
  100% {
    box-shadow: 0 0 6px rgba(37, 211, 102, 0.4),
                0 0 12px rgba(37, 211, 102, 0.3);
  }
}

/* MOBILE OPTIMIZATION */
@media (max-width: 768px) {
  .floating-whatsapp {
    width: 50px;
    height: 50px;
    left: 15px;          /* adjust left padding */
    bottom: 15px;
  }

  .floating-whatsapp img {
    width: 26px;
    height: 26px;
  }
}

/* Hide WhatsApp CTA when mobile menu (drawer) is open */
body.drawer-open .floating-whatsapp {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* Hide floating WhatsApp CTA on mobile & tablet */
@media (max-width: 992px) {
  .floating-whatsapp {
    display: none !important;
  }
}



/* ============================
   CATALOGUE GRID & CARD
============================ */
.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.catalogue-card {
  display: flex;
  background: var(--surface-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* ============================
   IMAGE SECTION
============================ */
.catalogue-left {
  width: 40%;
  display: flex;
}

.catalogue-left img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.4/1;
  object-fit: cover;
}

/* ============================
   RIGHT CONTENT
============================ */
.catalogue-right {
  width: 60%;
  padding: 24px;
}

/* ============================
   HSN/GST HIGHLIGHT BOX
============================ */
.catalogue-meta-box {
  background: #eef8f1;
  border-left: 6px solid var(--accent-color);
  padding: 16px 20px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.benefits-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

/* ============================
   TICK LIST (FIXED)
============================ */
.catalogue-benefits,
.catalogue-benefits li {
  list-style: none !important;
  padding: 0;
  margin: 0;
}

.catalogue-benefits li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.7;
}

.catalogue-benefits li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 3px;
  color: var(--accent-color);
  font-size: 18px;
  font-weight: bold;
}

/* ============================
   CTA BUTTONS
============================ */
.catalogue-buttons {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.catalogue-buttons a {
  flex: 1 1 180px;
  text-align: center;
}

/* ============================
   MOBILE FIXES
============================ */
@media (max-width: 768px) {

  .catalogue-card {
    flex-direction: column;
  }

  .catalogue-left,
  .catalogue-right {
    width: 100%;
  }

  .catalogue-left img {
    border-radius: 12px 12px 0 0;
    aspect-ratio: 1.2/1;
  }

  .catalogue-right {
    padding: 20px;
  }

  .catalogue-grid {
    grid-template-columns: 1fr;
  }
}



@media (max-width: 768px) {
  .catalogue-buttons {
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    gap: 14px !important;
  }

  .catalogue-buttons a {
    width: 100% !important;
    flex: unset !important;
  }

  .catalogue-buttons .btn-primary,
  .catalogue-buttons .btn-secondary {
    width: 100% !important;
    display: block !important;
    padding: 14px 20px !important;
    font-size: 16px !important;
    border-radius: 10px !important;
  }
}



/* Paymnet Page - UPI QR */
.additri-payment-section {
  padding: 70px 0;
  background: #f8faf8;
}

/* TITLE */
.payment-title {
  text-align: center;
  font-family: var(--heading-font);
  font-size: 34px;
  color: var(--heading-color);
  margin-bottom: 40px;
}

/* LAYOUT GRID */
.payment-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT WHITE CARD */
.payment-info {
  background: #ffffff;
  padding: 35px;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

/* SUBTITLE */
.payment-subtitle {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

/* DESCRIPTION */
.payment-desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--default-color);
}

/* HIGHLIGHT BOX */
.payment-highlight {
  background: #eef8f1; /* light green */
  padding: 20px 22px;
  border-radius: 14px;
  border-left: 6px solid var(--accent-color);
  margin-bottom: 30px;
}

.highlight-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
}

/* ROW ALIGNMENT FIX */
.bank-detail-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
  flex-wrap: nowrap;
}

.bank-detail-row span {
  white-space: nowrap;
}

/* COPY ICON – CHATGPT STYLE */
.copy-icon {
  width: 32px;
  height: 32px;
  background: #e8f1ea !important;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
  position: relative;
  color: var(--heading-color);
  flex-shrink: 0;
}

.copy-icon:hover {
  background: var(--accent-color) !important;
  color: #fff !important;
}

/* COPY ICON */
.copy-icon {
  width: 32px;
  height: 32px;
  background: #e8f1ea;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s ease;
  position: relative; /* Required for tooltip */
  color: var(--heading-color);
  flex-shrink: 0;
}

.copy-icon:hover {
  background: var(--accent-color);
  color: white;
}

/* TOOLTIP FLOATS TO RIGHT SIDE */
.copy-icon::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 42px; /* Push tooltip to RIGHT of icon */
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  color: #000;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
  z-index: 99;
}

/* SHOW ON HOVER */
.copy-icon:hover::after {
  opacity: 1;
}


/* BUTTON */
/* .payment-btn {
  margin-top: 20px;
  display: inline-block;
} */

.payment-btn {
  display: block !important;
  width: 100%;
  text-align: center;
  margin-top: 25px;
}


/* RIGHT QR CARD */
.upi-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
  text-align: center;
}

.upi-qr-img {
  width: 260px;
  border-radius: 12px;
}

.upi-scan-text {
  margin-top: 12px;
  font-weight: 600;
  color: var(--heading-color);
}

/* TOAST */
#copyToast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-color);
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 15px;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s ease;
  z-index: 99999;
}

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

  .upi-card {
    order: -1;
  }
}



/* ============================
   Bottom Doc - Bottom Bar 
============================ */

/* Prevent content overlap ONLY on tabs mobile */
@media (max-width: 992px) {
  body {
    padding-bottom: 70px;
  }
}


/* Mobile Bottom Bar */
.mobile-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62px;
  background: var(--surface-color);
  border-top: 1px solid #e5e5e5;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: 999999; /* recommend increasing */
  box-shadow: 0 -2px 10px rgba(0,0,0,0.06);
  padding-bottom: env(safe-area-inset-bottom);

  opacity: 1;              /* FIXED */
  transform: translateY(0); /* FIXED */
}


/* Bottom nav item */
.mobile-bottom-bar .bottom-item {
  flex: 1;
  text-align: center;
  text-decoration: none;
  color: var(--default-color);
  font-size: 12px;
  font-weight: 600; /* BOLD text */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  padding-top: 4px;
}

/* PNG Icons */
.mobile-bottom-bar img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

/* Underline for active */
.mobile-bottom-bar .bottom-item.active span::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -2px;
  transform: translateX(-50%);
  width: 18px;
  height: 2px;
  background: var(--accent-color); /* green underline */
  border-radius: 10px;
}

/* Hover effect (text only) */
.mobile-bottom-bar .bottom-item:hover span {
  color: var(--accent-color);
}

/* Hide on Desktop */
@media (min-width: 768px) {
  .mobile-bottom-bar {
    display: none;
  }
}



/* ===============================
FRANCHISE ENQUIRY PAGE
================================ */
.franchise-section {
  padding: 70px 0 90px;
}

.franchise-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: nowrap; /* desktop layout */
}

@media (max-width: 991px) {
  .franchise-layout {
    flex-wrap: wrap !important; /* mobile fix */
  }
}

.franchise-content {
  flex: 1.4;
  min-width: 0;
}

.franchise-form-wrapper {
  flex: 1;
  min-width: 320px;
}

/* ===============================
   FORM CARD
================================ */
.franchise-form-card {
  background: #fff;
  padding: 26px 22px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.06);
}

.franchise-form-card h3 {
  font-size: 1.4rem;
  font-family: var(--heading-font);
  margin-bottom: 6px;
}

.form-intro {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  margin-bottom: 18px;
}

/* ---- STICKY FORM DESKTOP ---- */
@media (min-width: 992px) {
  .franchise-form-wrapper {
    position: sticky !important;
    top: 90px !important;
    height: fit-content;
  }
}

/* ---- MOBILE FORM FIRST ---- */
@media (max-width: 991px) {
  .franchise-form-wrapper {
    order: -1;
  }
}

/* ===============================
   FORM ELEMENTS
================================ */
.form-control,
.form-select {
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid #dcdcdc;
  font-size: 0.95rem;
  transition: 0.25s ease;
}

/* Green focus */
.form-control:focus,
.form-select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.15rem rgba(46,125,68,0.25);
}

/* Reduce spacing */
.franchise-form-card .row.g-3 > div {
  margin-bottom: 6px;
}

/* ---- Radio ---- */
.fr-radio-group {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}
.fr-radio-group input[type="radio"] {
  accent-color: var(--accent-color);
  transform: scale(1.1);
}

/* ---- Textarea ---- */
textarea.form-control {
  resize: none;
  min-height: 95px;
}

/* ---- Submit Button ---- */
#franchise-form button[type="submit"] {
  height: 48px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
}
@media (max-width: 992px) {
  #franchise-form button[type="submit"] {
    display: block !important;
    width: 100% !important;
  }
}

/* ---- Disclaimer ---- */
.form-disclaimer {
  margin-top: 16px;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.5;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}
.form-disclaimer a {
  color: var(--accent-color);
  font-weight: bold;
}


/* ===============================
   WHY PARTNER (BLOG QUOTE)
================================ */
.why-partner-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 18px;
}
@media (max-width: 992px) {
  .why-partner-grid {
    grid-template-columns: 1fr;
  }
}

.why-box {
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  gap: 14px;
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
  transition: 0.25s;
}
.why-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.why-box i {
  font-size: 1.6rem;
  color: var(--accent-color);
  margin-top: 4px;
}
.why-text h5 {
  font-size: 1rem;
  font-weight: 700;
}
.why-text p {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

/* ===============================
   BUSINESS MODEL (PREMIUM)
================================ */
.business-model-card {
  background: linear-gradient(135deg, #ffffff 0%, #f4fff5 100%);
  border: 1px solid rgba(46,125,68,0.10);
  border-radius: 18px;
  padding: 28px 26px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.bm-header {
  text-align: center;
  margin-bottom: 28px;
}
.bm-header i {
  color: var(--accent-color);
  font-size: 2rem;
}
.bm-header h4 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.bm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
@media (max-width: 992px) {
  .bm-grid {
    grid-template-columns: 1fr;
  }
}

.bm-item {
  display: flex;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border-left: 4px solid var(--accent-color);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.05);
  transition: 0.25s;
}
.bm-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.bm-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(46,125,68,0.08);
  border: 2px solid rgba(46,125,68,0.15);
  display: flex;
  justify-content: center;
  align-items: center;
}
.bm-icon i {
  color: var(--accent-color);
  font-size: 1.45rem;
}

.bm-info h5 {
  font-size: 1rem;
  margin-bottom: 4px;
}
.bm-value {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent-color);
}

/* ===============================
   FRANCHISE BENEFITS
================================ */
.franchise-benefits {
  padding: 70px 0;
}

.franchise-benefits .section-title {
  text-align: center;
  margin-bottom: 40px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  display: flex;
  gap: 18px;
  padding: 26px 22px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.05);
  transition: 0.25s;
}
.benefit-card:hover {
  transform: translateY(-4px);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(46,125,68,0.10);
  border: 2px solid rgba(46,125,68,0.18);
  display: flex;
  justify-content: center;
  align-items: center;
}
.benefit-icon i {
  font-size: 1.85rem;
  color: var(--accent-color);
}

/* ===============================
   WHAT MAKES US DIFFERENT
================================ */
.why-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  text-align: center;
  min-height: 260px;
  transition: 0.3s ease;
}
.why-card:hover {
  transform: translateY(-4px);
}
.why-card i {
  font-size: 42px;
  color: var(--accent-color);
  margin-bottom: 14px;
}
.why-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}


/* -------------------------------
 Imp Stokicky fix for contact form Hight
--------------------------------*/
.franchise-content::after {
  content: "";
  display: block;
  height: 100px;
}



/* -------------------------------
   HOW IT WORKS — Section Header
--------------------------------*/
.how-it-works-section h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--heading-color);
}

/* -------------------------------
   MAIN CARD WRAPPER
--------------------------------*/
.how-steps-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);

  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;               /* FIX overflow */
  gap: 30px;
  overflow: visible !important;  /* ensure nothing is clipped */
}

/* Connector lines */
.how-steps-card .line {
  height: 4px;
  flex: 1;
  background: rgba(0,0,0,0.08);
  border-radius: 10px;
  min-width: 40px;
}

/* -------------------------------
   STEP BLOCK
--------------------------------*/
.how-step {
  text-align: center;
  flex: 1 1 180px;      /* prevent overflow & enable wrap */
  min-width: 180px;
}

/* Step Icon */
.step-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(46,125,68,0.10);
  border: 2px solid rgba(46,125,68,0.22);

  display: flex;
  align-items: center;
  justify-content: center;

  margin: 0 auto 12px auto;
  font-size: 1.6rem;
  color: var(--accent-color);
  transition: 0.3s ease;
}

/* Active icon */
.active-icon {
  background: rgba(46,125,68,0.18);
  border-color: rgba(46,125,68,0.32);
}

/* Pending icon */
.pending-icon {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.15);
  color: rgba(0,0,0,0.45);
}

/* -------------------------------
   TITLES & STATUS LABELS
--------------------------------*/
.step-title {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: var(--heading-color);
}

.step-status {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Completed */
.step-status.completed {
  background: #e8f8ee;
  color: var(--accent-color);
}

/* Active */
.step-status.active {
  background: rgba(46,125,68,0.15);
  color: var(--accent-color);
}

/* Pending */
.step-status.pending {
  background: rgba(0,0,0,0.05);
  color: rgba(0,0,0,0.45);
}

/* -------------------------------
   MOBILE VERSION — Vertical Display
--------------------------------*/
@media (max-width: 768px) {
  .how-steps-card {
    flex-direction: column;
    padding: 26px 22px;
    gap: 32px;
  }

  .how-steps-card .line {
    width: 4px;
    height: 40px;
    flex: unset;
  }

  .how-step {
    min-width: 100%;
  }
}



/* ---------------------------------------------------
   BULK / WHITE LABELLING – FORM SECTION
---------------------------------------------------- */

.bulk-white-form-section {
  padding: 70px 0;
}

.bulk-white-form-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.bulk-white-form-section .form-sub {
  font-size: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 25px;
}

.form-wrapper {
  background: #fff;
  padding: 32px 26px;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
}

/* Phone field with +91 */
.phone-field {
  display: flex;
  align-items: center;
  gap: 8px;
}

.phone-field .country-code {
  background: rgba(46,125,68,0.15);
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 700;
  color: var(--accent-color);
  border: 1px solid rgba(46,125,68,0.25);
}

/* Requirement Radio */
.req-type-group {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.req-type-group label {
  font-weight: 600;
}

/* Multi-select */
select[multiple] {
  height: 120px;
  padding: 8px;
}

/* Disclaimer */
.form-disclaimer {
  font-size: 0.85rem;
  text-align: center;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

@media (max-width: 768px) {
  .form-wrapper {
    padding: 26px 20px;
  }
}

/* Limit desktop form width */
@media (min-width: 992px) {
  .bulk-white-form-section .form-wrapper {
    max-width: 700px;   /* perfect size */
    margin: 0 auto;     /* center the form */
  }
}


/* Ensure submit button is always visible on mobile and tab */
@media (max-width: 992px) {
  #bulk-enquiry-form button[type="submit"],
  .php-email-form button[type="submit"] {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    margin-top: 12px !important;
  }
}

/* -------------------------------
   Tom Select 
--------------------------------*/
.ts-wrapper {
  border-radius: 8px !important;
  border: 1px solid #dcdcdc !important;
  padding: 6px 10px !important;
  box-shadow: none !important;
}

.ts-wrapper.focus {
  border-color: var(--accent-color) !important;
  box-shadow: 0 0 0 2px rgba(46,125,68,0.25) !important;
}

.ts-control {
  border: none !important;
}

.ts-dropdown {
  border-radius: 10px !important;
  border: 1px solid #ddd !important;
}

.ts-dropdown .ts-option {
  padding: 8px 12px !important;
}

.ts-dropdown .ts-option:hover {
  background: rgba(46,125,68,0.08) !important;
}

.ts-wrapper .item {
  background: rgba(46,125,68,0.12) !important;
  color: var(--accent-color) !important;
  border-radius: 6px !important;
  padding: 4px 8px !important;
  margin: 3px !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
}

.ts-wrapper .remove {
  color: var(--accent-color) !important;
}


/* ============================================
Button Click Blue colour issue fix 
============================================ */
.btn,
button,
input[type="submit"],
input[type="button"] {
  box-shadow: none !important;
  outline: none !important;
}

/* Remove active blue overlay */
.btn:active,
.btn:focus,
.btn:focus-visible,
.btn.show,
button:active,
button:focus,
button:focus-visible {
  outline: none !important;
  box-shadow: none !important;
  background-image: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
}

/* Remove Bootstrap's default active state */
.btn:active {
  background-color: inherit !important;   /* Keep your custom color */
  border-color: inherit !important;
}

/* Chrome Mobile Tap Highlight */
* {
  -webkit-tap-highlight-color: transparent !important;
}

/* Remove Firefox inner border */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0 !important;
}

/* Remove blue highlight from <a class="btn"> links */
a.btn:focus,
a.btn:active {
  outline: none !important;
  box-shadow: none !important;
}




/* INSTALL APP POPUP */
.install-app-popup {
  position: fixed;
  bottom: -200px; /* Start off-screen */
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
  padding: 15px;
  display: none;
  z-index: 999999;
  transition: bottom 0.45s ease, opacity 0.3s ease;
  opacity: 0;
}

.install-app-popup.show {
  bottom: 20px;
  opacity: 1;
}


.install-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Close (X) Button */
.install-close-btn {
  position: absolute;
  top: 6px;
  right: 8px;
  background: transparent;
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: #444;
  padding: 4px;
  z-index: 2;
}

.install-close-btn:hover {
  color: #000;
}


.install-app-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
}

.install-text h4 {
  font-size: 17px;
  margin: 0;
  color: #000;
  font-weight: 600;
}

.install-text p {
  margin: 2px 0 0;
  font-size: 14px;
  color: #444;
}

.install-btn {
  margin-left: auto;
  background: #0a8a2a; /* Additri Green */
  color: #fff;
  padding: 8px 14px;
  font-size: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.install-btn:hover {
  background: #06661f;
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.update-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--surface-color);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  display: none;
  z-index: 999999;
}

.update-popup-content h4 {
  margin: 0 0 5px 0;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.update-popup-content p {
  margin: 0 0 12px 0;
  font-size: 14px;
  color: var(--default-color);
}

.update-popup.show {
  display: block;
  animation: slideUp 0.4s ease;
}
