@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&display=swap');

/* ============================================================
   SASHANKA AGRO TECH — Index Pro Theme
   Corporate design system derived from brand logo
   ============================================================ */

:root {
  --sat-green-900: #0C3A1D;
  --sat-green-800: #14522A;
  --sat-green-700: #1E6B34;
  --sat-green-600: #27843F;
  --sat-green-100: #E7F3EA;
  --sat-green-050: #F3F9F4;
  --sat-red-600: #E0A526;
  --sat-red-700: #B8860B;
  --sat-gold: #E0A526;
  --sat-gold-dark: #B8860B;
  --sat-cream: #FBF9F4;
  --sat-ink: #131F17;
  --sat-body: #4A5A4F;
  --sat-border: #E4EAE5;
  --sat-white: #ffffff;
  --shadow-sm: 0 2px 10px rgba(19, 31, 23, .06);
  --shadow-md: 0 10px 30px rgba(19, 31, 23, .10);
  --shadow-lg: 0 24px 60px rgba(12, 58, 29, .16);
  --radius: 16px;
}

html {
  scroll-behavior: auto;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Inter', 'Roboto', -apple-system, sans-serif;
  color: var(--sat-body);
  background: var(--sat-white);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Manrope', 'Poppins', 'Inter', sans-serif;
  color: var(--sat-ink);
  font-weight: 700;
  line-height: 1.25;
}

a { text-decoration: none; transition: all .3s ease; }
img { max-width: 100%; }

/* ---------- typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--sat-green-600);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 3px;
  background: var(--sat-red-600);
  border-radius: 3px;
}
.sec-title {
  font-size: clamp(34px, 4vw, 68px);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: .96;
  max-width: 1300px;
  margin: 0 auto;
}
#welcome .sec-title {
  max-width: 560px;
  font-size: clamp(32px, 3vw, 52px);
  line-height: 1.03;
  letter-spacing: -.05em;
  margin: 0;
}
.sec-title span { color: var(--sat-green-600); }
.sec-sub {
  max-width: 960px;
  margin: 18px auto 0;
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.55;
  color: rgba(19, 31, 23, .72);
}

.btn-sat {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  transition: all .3s ease;
  border: 2px solid transparent;
}
.btn-sat i { transition: transform .3s ease; }
.btn-sat:hover i { transform: translateX(4px); }
.btn-sat-green { background: var(--sat-green-700); color: #fff; box-shadow: 0 8px 24px rgba(30, 107, 52, .35); }
.btn-sat-green:hover { background: var(--sat-green-800); color: #fff; transform: translateY(-2px); }
.btn-sat-red { background: var(--sat-gold); color: var(--sat-ink); box-shadow: 0 8px 24px rgba(224, 165, 38, .38); }
.btn-sat-red:hover { background: var(--sat-gold-dark); color: #fff; transform: translateY(-2px); }
.btn-sat-ghost { border-color: var(--sat-green-700); color: var(--sat-green-800); background: #fff; }
.btn-sat-ghost:hover { background: var(--sat-green-700); color: #fff; border-color: var(--sat-green-700); }

.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(12, 58, 29, .82), rgba(7, 26, 16, .78)), url('../images/banner/gal10.jpg') center/cover no-repeat;
  min-height: 420px;
  display: flex;
  align-items: center;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(224,165,38,.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(39,132,63,.22), transparent 25%);
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.page-hero__content {
  max-width: 640px;
  color: #fff;
  padding: 70px 0 50px;
}
.page-hero__content h1 {
  color: #fff;
  font-size: clamp(34px, 5vw, 58px);
  font-weight: 800;
  margin: 0 0 18px;
  letter-spacing: -1.2px;
}
.page-hero__content h1 span { color: var(--sat-gold); }
.page-hero__content p {
  color: rgba(255,255,255,.8);
  font-size: 18px;
  max-width: 560px;
  margin-bottom: 26px;
}
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}
.page-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.page-hero__stats span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 50px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(3px);
  font-size: 13px;
  letter-spacing: .2px;
  color: rgba(255,255,255,.9);
}
.page-hero__stats i { color: var(--sat-gold); }

.gallery-shell {
  background: linear-gradient(180deg, #f8faf8 0%, #eef4ef 100%);
  padding: 90px 0 110px;
}
.section-heading {
  margin-bottom: 36px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.gallery-card {
  background: rgba(255, 255, 255, 0.38);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 12px 30px rgba(12, 58, 29, 0.08), inset 0 1px 0 rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.gallery-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 40px rgba(12, 58, 29, 0.14), inset 0 1px 0 rgba(255,255,255,0.75);
  border-color: rgba(30, 107, 52, .22);
}
.gallery-card a {
  display: block;
  position: relative;
}
.gallery-card__media {
  position: relative;
  overflow: hidden;
  background: rgba(223, 233, 225, 0.9);
  border-bottom: 1px solid rgba(255,255,255,0.4);
}
.gallery-card__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.16), rgba(12,58,29,0.14));
  z-index: 1;
  pointer-events: none;
}
.gallery-card__media img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
  transition: transform .5s ease, filter .35s ease;
  filter: saturate(1.08) contrast(1.02);
}
.gallery-card:hover .gallery-card__media img { transform: scale(1.06); filter: saturate(1.18) contrast(1.05); }
.gallery-card__zoom {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 42px; height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255,255,255,0.32);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  box-shadow: 0 10px 24px rgba(12, 58, 29, .25);
  z-index: 2;
}
.gallery-card__body {
  padding: 20px 20px 22px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.gallery-card__year {
  display: inline-block;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(231, 243, 234, 0.9);
  color: var(--sat-green-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .6px;
  margin-bottom: 12px;
  border: 1px solid rgba(30, 107, 52, 0.12);
}
.gallery-card h3 {
  font-size: 18px;
  line-height: 1.55;
  margin: 0;
  color: var(--sat-ink);
}
.gallery-card:hover h3 { color: var(--sat-green-700); }

@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .page-hero { min-height: 340px; }
  .page-hero__content { padding: 52px 0 36px; }
  .page-hero__content p { font-size: 16px; }
  .gallery-shell { padding: 72px 0 90px; }
  .gallery-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--sat-green-900);
  color: rgba(255,255,255,.85);
  font-size: 13.5px;
  padding: 8px 0;
  position: relative;
  z-index: 1002;
}
.topbar .inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: var(--sat-gold); }
.topbar .tb-item { display: inline-flex; align-items: center; gap: 8px; }
.topbar .tb-item i { color: var(--sat-gold); }
.topbar .tb-badge {
  background: var(--sat-red-600);
  color: #fff;
  padding: 2px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .4px;
}
@media (max-width: 768px) {
  .topbar { padding: 5px 0; font-size: 12px; }
  .topbar .inner { justify-content: center; flex-wrap: nowrap; gap: 16px; }
  .topbar .tb-right { display: none; }
  .topbar .tb-item { gap: 6px; }
  .topbar .tb-item i { font-size: 11px; }
  .topbar .tb-item .ml-3 { margin-left: 0 !important; }
}
@media (max-width: 576px) {
  .topbar .tb-email { display: none; }
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#header {
  background: #fff;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all .35s ease;
  box-shadow: var(--shadow-sm);
}
#header .row { line-height: 0; }
#header .logo { display: inline-block; line-height: 0; }
@media (min-width: 768px) {
  #header .row { height: 58px; }
}
#header.sticked {
  padding: 8px 0;
  box-shadow: 0 10px 34px rgba(12, 58, 29, .13);
}
#header .logo img {
  height: 58px !important;
  width: auto;
  display: block;
  transition: height .3s ease;
}
#header.sticked .logo img { height: 50px !important; }

#navbarn { text-align: left; line-height: normal; }
#navbarn ul { margin: 0; padding: 0; list-style: none; display: flex; align-items: center; gap: 4px; text-align: left; }
@media (min-width: 1201px) {
  #navbarn ul { justify-content: flex-end; }
}
#navbarn ul li { position: relative; text-align: left; }
#navbarn a { text-align: left; }
#navbarn a:hover,
#navbarn a:focus { text-decoration: none; }
#navbarn ul > li > a,
.btn-sat { white-space: nowrap; }
#navbarn ul > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 13px !important;
  font-family: 'Manrope', 'Poppins', 'Inter', sans-serif !important;
  font-weight: 600 !important;
  font-size: 14.5px !important;
  line-height: 1.7 !important;
  text-transform: none !important;
  color: var(--sat-ink);
  border-radius: 10px;
}
#navbarn ul > li > a:hover,
#navbarn ul > li > a.active { color: var(--sat-green-700); background: var(--sat-green-100); text-decoration: none; }
#navbarn .dropdown-indicator { font-size: 11px; margin-left: 2px; transition: transform .3s; }

/* dropdown panels */
#navbarn ul li ul {
  position: absolute;
  top: 100%; left: 0;
  min-width: 250px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: 10px;
  display: block;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .22s ease, transform .22s ease, visibility 0s linear .22s;
  z-index: 500;
}
#navbarn ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .22s ease, transform .22s ease, visibility 0s;
}
#navbarn ul li ul li { width: 100%; }
#navbarn ul li ul a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--sat-body);
  border-radius: 10px;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
#navbarn ul li ul a .dropdown-indicator { margin-left: auto; transition: transform .25s ease; }
#navbarn ul li ul a:hover,
#navbarn ul li ul a:focus {
  background: var(--sat-green-050);
  color: var(--sat-green-700);
  box-shadow: inset 3px 0 0 var(--sat-green-600);
  text-decoration: none;
}
#navbarn ul li ul a:hover .dropdown-indicator { transform: translateX(3px); color: var(--sat-green-600); }
#navbarn ul li ul ul { top: 0; left: 100%; transform: translateX(12px); }
#navbarn ul li ul li:hover > ul { transform: translateX(0); }
#navbarn > ul { background: transparent; }

/* mobile toggle icons */
.mobile-nav-toggle {
  display: none;
  font-size: 28px;
  color: var(--sat-green-800);
  cursor: pointer;
  line-height: 1;
}
.nav-toggle-btn {
  width: 44px;
  height: 44px;
  border: 0;
  background: var(--sat-green-050);
  border-radius: 12px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  vertical-align: middle;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background .3s ease, transform .2s ease;
}
.nav-toggle-btn:hover { background: var(--sat-green-100); }
.nav-toggle-btn:active { transform: scale(.94); }
.nav-toggle-btn:focus-visible { outline: 2px solid var(--sat-green-600); outline-offset: 2px; }
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--sat-green-800);
  transition: transform .35s cubic-bezier(.22,.61,.36,1), opacity .25s ease;
}
@media (max-width: 1200px) {
  .mobile-nav-toggle { display: block; position: relative; z-index: 1002; }
  .nav-toggle-btn { display: flex; }
  body.mobile-nav-active .nav-toggle-btn { background: transparent; box-shadow: none; }
  body.mobile-nav-active .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.mobile-nav-active .nav-toggle-bar:nth-child(2) { opacity: 0; transform: scaleX(.4); }
  body.mobile-nav-active .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  #navbarn {
    position: fixed;
    top: 0; right: 0;
    width: 300px;
    max-width: 86vw;
    height: 100vh;
    background: #fff;
    box-shadow: -12px 0 40px rgba(0,0,0,.16);
    padding: 84px 20px 30px;
    transform: translateX(105%);
    visibility: hidden;
    transition: transform .45s cubic-bezier(.22,.61,.36,1), visibility 0s linear .45s;
    overflow-y: auto;
    overscroll-behavior: contain;
    z-index: 999;
  }
  body.mobile-nav-active #navbarn {
    transform: translateX(0);
    visibility: visible;
    transition: transform .45s cubic-bezier(.22,.61,.36,1), visibility 0s;
  }
  body.mobile-nav-active { overflow: hidden; }
  body.mobile-nav-active #navbarn > ul > li { animation: navItemIn .45s cubic-bezier(.22,.61,.36,1) both; }
  body.mobile-nav-active #navbarn > ul > li:nth-child(2) { animation-delay: .05s; }
  body.mobile-nav-active #navbarn > ul > li:nth-child(3) { animation-delay: .09s; }
  body.mobile-nav-active #navbarn > ul > li:nth-child(4) { animation-delay: .13s; }
  body.mobile-nav-active #navbarn > ul > li:nth-child(5) { animation-delay: .17s; }
  body.mobile-nav-active #navbarn > ul > li:nth-child(6) { animation-delay: .21s; }
  body.mobile-nav-active #navbarn > ul > li:nth-child(7) { animation-delay: .25s; }
  body.mobile-nav-active #navbarn > ul > li:nth-child(8) { animation-delay: .29s; }
  body.mobile-nav-active #navbarn > ul > li:nth-child(9) { animation-delay: .33s; }
}

@media (min-width: 1201px) {
  #header { padding: 18px 0 !important; }
  #navbarn { position: static !important; width: auto !important; height: auto !important; margin: 0 !important; padding: 0 !important; transform: none !important; visibility: visible !important; overflow: visible !important; box-shadow: none !important; }
  #navbarn ul > li > a { padding: 10px 13px !important; }
}
@keyframes navItemIn {
  from { opacity: 0; transform: translateX(26px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  #navbarn, .nav-toggle-bar { transition: none !important; }
  body.mobile-nav-active #navbarn > ul > li { animation: none !important; }
}
@media (max-width: 1200px) {
  #navbarn {
    background: #ffffff !important;
    padding: 84px 20px 30px !important;
  }
  #navbarn > ul {
    position: static !important;
    inset: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 2px !important;
    background: transparent !important;
    overflow-y: visible !important;
  }
  #navbarn ul {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 2px !important;
    background: transparent !important;
  }
  #navbarn a,
  #navbarn ul > li > a,
  #navbarn ul li a {
    color: #1a202c !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    text-decoration: none !important;
  }
  #navbarn ul > li > a {
    padding: 12px 14px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    border-radius: 10px !important;
  }
  #navbarn ul > li > a:hover,
  #navbarn ul > li > a.active {
    color: #0d5c2e !important;
    background: #e8f5ed !important;
  }
  #navbarn ul li ul {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    padding: 4px 0 4px 12px !important;
    display: none;
    min-width: 0 !important;
    margin: 2px 0 6px !important;
    background: transparent !important;
  }
  #navbarn ul li ul.dropdown-active {
    display: block !important;
  }
  #navbarn ul li ul li a {
    padding: 9px 12px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #2d3748 !important;
    border-radius: 8px !important;
    background: transparent !important;
  }
  #navbarn ul li ul li a:hover,
  #navbarn ul li ul li a.active {
    color: #0d5c2e !important;
    background: #e8f5ed !important;
  }
  #navbarn ul li ul li ul {
    border-left: 2px solid #86efac !important;
    padding-left: 10px !important;
    margin: 4px 0 6px 8px !important;
  }
  #navbarn ul li ul li ul li a {
    padding: 7px 10px !important;
    font-size: 13.5px !important;
    font-weight: 500 !important;
    color: #4a5568 !important;
  }
  #navbarn ul li ul li ul li a:hover,
  #navbarn ul li ul li ul li a.active {
    color: #0d5c2e !important;
    background: #e8f5ed !important;
  }
  #navbarn .dropdown-indicator {
    color: #4a5568 !important;
    font-size: 12px !important;
    margin-left: auto !important;
    transition: transform .25s ease !important;
  }
  #navbarn .active > .dropdown-indicator,
  #navbarn a:hover > .dropdown-indicator {
    color: #0d5c2e !important;
  }
}
@media (min-width: 1201px) { .mobile-nav-toggle { display: none !important; } }

/* search icon in nav */
.search-icon a {
  color: var(--sat-green-800) !important;
  background: var(--sat-green-100);
  border-radius: 50% !important;
  width: 40px; height: 40px;
  justify-content: center;
  padding: 0 !important;
}
.search-icon a:hover { background: var(--sat-green-700); color: #fff !important; }

/* ============================================================
   SEARCH OVERLAY
   ============================================================ */
#search {
  position: fixed;
  inset: 0;
  background: rgba(12, 58, 29, .96);
  backdrop-filter: blur(8px);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all .35s ease;
}
#search.open { opacity: 1; visibility: visible; }
#search form { width: min(680px, 86vw); }
#search input[type="search"] {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 3px solid var(--sat-gold);
  color: #fff;
  font-size: clamp(22px, 4vw, 38px);
  font-family: 'Poppins', sans-serif;
  padding: 14px 4px;
  outline: none;
  text-align: center;
}
#search input::placeholder { color: rgba(255,255,255,.5); }
#search .close-btn {
  position: absolute;
  top: 34px; right: 44px;
  font-size: 34px;
  color: #fff;
}
#search .close-btn:hover { color: var(--sat-gold); transform: rotate(90deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  background: var(--sat-green-900);
  box-sizing: border-box;
}

/* Desktop (>= 1200px) */
@media (min-width: 1200px) {
  .hero {
    height: clamp(520px, 32vw, 620px);
  }
  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item {
    height: 100%;
  }
  .hero .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center !important;
  }
  .hero-card {
    position: absolute;
    right: max(calc((100% - 1200px) / 2 + 15px), 24px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: min(460px, 38vw);
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
    border-radius: 22px;
    padding: clamp(22px, 2.2vw, 36px) clamp(20px, 2vw, 32px);
    box-shadow: 0 20px 45px rgba(0,0,0,.25);
    border-top: 5px solid var(--sat-gold);
    box-sizing: border-box;
    isolation: isolate;
    overflow: hidden;
    animation: heroCardIn .85s cubic-bezier(.22,.61,.36,1) both;
  }
}

/* Medium screens (992px - 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero {
    height: 480px;
  }
  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item {
    height: 100%;
  }
  .hero .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center !important;
  }
  .hero-card {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 410px;
    background: rgba(255,255,255,.94);
    backdrop-filter: blur(14px);
    border-radius: 20px;
    padding: 22px 20px;
    box-shadow: 0 18px 40px rgba(0,0,0,.22);
    border-top: 5px solid var(--sat-gold);
    box-sizing: border-box;
    isolation: isolate;
    overflow: hidden;
    animation: heroCardIn .85s cubic-bezier(.22,.61,.36,1) both;
  }
}

/* Tablet & Mobile (< 992px): Image stays 100% full aspect-ratio, card sits cleanly below */
@media (max-width: 991px) {
  .hero {
    height: auto;
    background: #f7faf8;
    padding-bottom: 25px;
  }
  .hero .carousel,
  .hero .carousel-inner,
  .hero .carousel-item {
    height: auto;
  }
  .hero .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1920 / 600;
    object-fit: contain;
  }
  .hero-card {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin: 18px auto 0;
    width: calc(100% - 30px);
    max-width: 540px;
    background: #ffffff;
    border-radius: 20px;
    padding: 22px 18px;
    box-shadow: 0 12px 32px rgba(12,58,29,.12);
    border-top: 5px solid var(--sat-gold);
    z-index: 7;
    box-sizing: border-box;
    isolation: isolate;
    overflow: hidden;
    animation: heroCardInMobile .8s cubic-bezier(.22,.61,.36,1) both;
  }
}

/* Card typography and trust items */
.hero-card {
  box-sizing: border-box;
}
.hero-card::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, rgba(255,255,255,.4), transparent 45%);
  pointer-events: none;
}
.hero-card .hc-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--sat-green-100);
  color: var(--sat-green-700);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 30px;
  margin-bottom: 12px;
  max-width: 100%;
  transition: transform .3s ease;
}
.hero-card:hover .hc-badge {
  transform: translateX(3px);
}
.hero-card h1 {
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 800;
  letter-spacing: -.5px;
  margin-bottom: 10px;
  line-height: 1.25;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.hero-card h1 span { color: var(--sat-green-700); }
.hero-card p {
  font-size: clamp(13px, .9vw, 14.5px);
  margin-bottom: 16px;
  color: #4a5568;
  line-height: 1.55;
  overflow-wrap: break-word;
}
.hero-card .hc-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border-top: 1px dashed #e2e8f0;
  padding-top: 14px;
}
.hero-card .hc-pt {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 10px 4px;
  min-width: 0;
  box-sizing: border-box;
  opacity: 0;
  animation: hcPop .6s cubic-bezier(.2,.8,.25,1) forwards;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  cursor: pointer;
}
.hero-card .hc-pt:nth-child(1) {
  background: linear-gradient(160deg, #FFF9EA 0%, #FCF0D2 100%);
  border-color: rgba(224,165,38,.35);
  animation-delay: .18s;
}
.hero-card .hc-pt:nth-child(2) {
  background: linear-gradient(160deg, #EDF7EF 0%, #DCF0E1 100%);
  border-color: rgba(39,132,63,.28);
  animation-delay: .32s;
}
.hero-card .hc-pt:nth-child(3) {
  background: linear-gradient(160deg, #EEF4FC 0%, #DCE8F8 100%);
  border-color: rgba(43,108,176,.28);
  animation-delay: .46s;
}

.hero-card .hc-pt:hover {
  transform: translateY(-4px);
}
.hero-card .hc-pt:nth-child(1):hover {
  box-shadow: 0 12px 24px rgba(224,165,38,.28);
  border-color: rgba(224,165,38,.6);
}
.hero-card .hc-pt:nth-child(2):hover {
  box-shadow: 0 12px 24px rgba(39,132,63,.22);
  border-color: rgba(39,132,63,.55);
}
.hero-card .hc-pt:nth-child(3):hover {
  box-shadow: 0 12px 24px rgba(43,108,176,.22);
  border-color: rgba(43,108,176,.55);
}

.hero-card .hc-pt .hc-ico {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  box-shadow: 0 3px 8px rgba(0,0,0,.06);
  animation: hcFloat 3.2s ease-in-out infinite;
  transition: transform .3s cubic-bezier(.34,1.56,.64,1), box-shadow .3s ease;
}
.hero-card .hc-pt:nth-child(1) .hc-ico {
  color: var(--sat-gold-dark);
  border-color: rgba(224,165,38,.45);
  animation-delay: .2s;
}
.hero-card .hc-pt:nth-child(2) .hc-ico {
  color: var(--sat-green-700);
  border-color: rgba(39,132,63,.38);
  animation-delay: .6s;
}
.hero-card .hc-pt:nth-child(3) .hc-ico {
  color: #2B6CB0;
  border-color: rgba(43,108,176,.38);
  animation-delay: 1.0s;
}
.hero-card .hc-pt:hover .hc-ico {
  animation-play-state: paused;
  transform: scale(1.15) rotate(-6deg);
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}

.hero-card .hc-pt b {
  font-size: 11px;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.25;
}

/* Animations & Keyframes */
@keyframes heroCardIn {
  from {
    opacity: 0;
    transform: translateY(-50%) translateX(28px);
  }
  to {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
  }
}
@keyframes heroCardInMobile {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes hcPop {
  from {
    opacity: 0;
    transform: translateY(14px) scale(.94);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes hcFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-card,
  .hero-card .hc-pt,
  .hero-card .hc-pt .hc-ico {
    animation: none !important;
    opacity: 1 !important;
  }
}

@media (max-width: 480px) {
  .hero-card {
    padding: 16px 12px;
    width: calc(100% - 20px);
  }
  .hero-card .hc-badge {
    font-size: 9.5px;
    letter-spacing: .4px;
    padding: 4px 9px;
  }
  .hero-card h1 {
    font-size: 19px;
  }
  .hero-card p {
    font-size: 12.5px;
    margin-bottom: 12px;
  }
  .hero-card .hc-points {
    gap: 5px;
    padding-top: 10px;
  }
  .hero-card .hc-pt {
    padding: 8px 2px;
  }
  .hero-card .hc-pt .hc-ico {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
  .hero-card .hc-pt b {
    font-size: 9.5px;
    word-break: break-word;
  }
}

/* Indicators & Controls */
.hero-indicators {
  position: absolute;
  bottom: 14px;
  left: 30px;
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0; padding: 0; list-style: none;
}
@media (max-width: 991px) {
  .hero-indicators {
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
  }
}
.hero-indicators li {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  cursor: pointer;
  transition: all .3s;
}
.hero-indicators li.active {
  width: 24px;
  border-radius: 6px;
  background: var(--sat-gold);
}
.hero .carousel-control-prev,
.hero .carousel-control-next {
  width: 44px; height: 44px;
  background: rgba(0,0,0,.35);
  border-radius: 50%;
  top: 50%; transform: translateY(-50%);
  opacity: .7;
  border: 1px solid rgba(255,255,255,.3);
  z-index: 5;
}
.hero .carousel-control-prev { left: 16px; }
.hero .carousel-control-next { right: 16px; }
.hero:hover .carousel-control-prev,
.hero:hover .carousel-control-next { opacity: 1; }
.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  background: var(--sat-green-600);
  border-color: transparent;
}
@media (max-width: 767px) {
  .hero .carousel-control-prev,
  .hero .carousel-control-next {
    width: 32px; height: 32px;
  }
  .hero .carousel-control-prev { left: 8px; }
  .hero .carousel-control-next { right: 8px; }
  .hero-indicators li { width: 6px; height: 6px; }
  .hero-indicators li.active { width: 18px; }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  background: linear-gradient(120deg, var(--sat-green-900) 0%, var(--sat-green-700) 100%);
  position: relative;
  overflow: hidden;
  padding: 66px 0;
}
.stats-strip::before {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  border: 44px solid rgba(255,255,255,.05);
  top: -130px; left: -110px;
}
.stats-strip .stat { text-align: center; padding: 10px 8px; position: relative; }
.stats-strip .stat + .stat::before {
  content: "";
  position: absolute; left: 0; top: 12%;
  height: 76%; width: 1px;
  background: rgba(255,255,255,.18);
}
.stats-strip .stat h5 {
  color: #fff;
  font-size: clamp(30px, 3.6vw, 44px);
  font-weight: 800;
  margin-bottom: 2px;
}
.stats-strip .stat span {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .4px;
}
@media (max-width: 767px) {
  .stats-strip .stat + .stat::before { display: none; }
  .stats-strip .stat { padding: 14px 8px; }
}

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
.section { padding: 112px 0; }
.section-sm { padding: 76px 0; }
.bg-cream { background: var(--sat-cream); }
.bg-green-050 { background: var(--sat-green-050); }

/* ============================================================
   ABOUT
   ============================================================ */
.about-media { position: relative; }
.about-media .cert-img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: transform .35s ease;
}
.about-media .cert-img:hover { transform: scale(1.02); }
.about-media .exp-badge {
  position: absolute;
  left: -26px; bottom: 34px;
  background: var(--sat-green-800);
  color: #fff;
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.about-media .exp-badge .num { font-family: 'Poppins'; font-size: 40px; font-weight: 800; line-height: 1; }
.about-media .exp-badge .lbl { font-size: 12.5px; letter-spacing: 1.5px; text-transform: uppercase; opacity: .92; }
.about-list { list-style: none; padding: 0; margin: 22px 0 30px; }
.about-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 7px 0;
  color: var(--sat-ink);
  font-weight: 500;
}
.about-list li i {
  color: var(--sat-green-600);
  margin-top: 4px;
}
@media (max-width: 991px) {
  .about-media {
    display: flex;
    flex-direction: column;
  }
  .about-media .exp-badge {
    position: static;
    align-self: flex-start;
    margin-top: 14px;
    padding: 14px 20px;
    border-radius: 14px;
  }
  .about-media .exp-badge .num { font-size: 32px; }
  .about-media .exp-badge .lbl { font-size: 11px; }
}

/* ============================================================
   BUSINESS VERTICALS — CLEAN PREMIUM SHOWCASE (GARDENO STYLE)
   ============================================================ */
.vt-section {
  position: relative;
  padding: 56px 0 40px;
  overflow: hidden;
  background:
    radial-gradient(720px 460px at 8% 12%, rgba(39,132,63,.12), transparent 58%),
    radial-gradient(840px 540px at 92% 82%, rgba(224,165,38,.10), transparent 60%),
    linear-gradient(180deg, #f8fbf9 0%, #edf6ef 42%, #f7faf7 100%);
  border-top: 1px solid rgba(12, 58, 29, .04);
}
.vt-section::after {
  content: "";
  position: absolute;
  inset: auto 10% 40px 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(30,107,52,.12), transparent);
}
.vt-section::before {
  content: "";
  position: absolute;
  inset: 30px 20px auto 20px;
  height: 120px;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: linear-gradient(90deg, rgba(39,132,63,.04), rgba(224,165,38,.04), rgba(39,132,63,.04));
  pointer-events: none;
}
/* soft ambient blobs */
.vt-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.vt-glow-a {
  width: 420px; height: 420px;
  background: rgba(39, 132, 63, .10);
  top: -160px; left: -140px;
  animation: vtFloat 10s ease-in-out infinite alternate;
}
.vt-glow-b {
  width: 380px; height: 380px;
  background: rgba(224, 165, 38, .12);
  bottom: -170px; right: -130px;
  animation: vtFloat 12s ease-in-out infinite alternate-reverse;
}
@keyframes vtFloat {
  from { transform: translate(0, 0); }
  to   { transform: translate(36px, 24px); }
}

/* section head */
.vt-head { margin-bottom: 64px; }
.vt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2.8px;
  text-transform: uppercase;
  color: var(--sat-gold-dark);
  border: 1px solid rgba(224, 165, 38, .55);
  background: rgba(255,255,255,.78);
  box-shadow: 0 8px 18px rgba(12, 58, 29, .04);
  padding: 11px 22px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.vt-eyebrow i { font-size: 15px; }

/* grid rhythm */
.vt-grid { row-gap: 30px; }
.vt-cell { display: flex; position: relative; z-index: 1; }
.vt-card {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: transform .45s cubic-bezier(.2,.8,.25,1), filter .45s ease;
}
.vt-card::before {
  content: "";
  position: absolute;
  inset: 8px 6px -12px;
  border-radius: 32px;
  background: radial-gradient(circle at center, rgba(39,132,63,.09), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.vt-card:hover { transform: translateY(-8px); filter: saturate(1.05); }

/* ---------- white frame (organic rounded corner) ---------- */
.vt-frame {
  position: relative;
  display: block;
  padding: 10px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(17, 84, 49, .08);
  border-radius: 30px 14px 14px 14px;
  box-shadow: 0 18px 42px rgba(12, 58, 29, .10);
  transition: box-shadow .45s ease, border-radius .6s cubic-bezier(.2,.8,.25,1), border-color .45s ease, transform .45s ease;
  z-index: 1;
}
.vt-card:hover .vt-frame {
  box-shadow: 0 30px 60px rgba(12, 58, 29, .20);
  border-radius: 38px 14px 14px 14px;
  border-color: rgba(224, 165, 38, .45);
  transform: scale(1.01);
}

.vt-win {
  position: relative;
  display: block;
  height: 300px;
  overflow: hidden;
  border-radius: 26px 12px 12px 12px;
  background:
    radial-gradient(180px 180px at 82% 16%, rgba(224,165,38,.28), transparent 70%),
    linear-gradient(150deg, #2B8A46 0%, #1E6B34 55%, #14522A 100%);
  transition: border-radius .6s cubic-bezier(.2,.8,.25,1);
}
.vt-card:hover .vt-win { border-radius: 38px 14px 14px 14px; }
/* glass light-sweep on hover */
.vt-win::after {
  content: "";
  position: absolute;
  top: -60%; left: -85%;
  width: 50%; height: 220%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.30), transparent);
  transform: rotate(8deg);
  z-index: 3;
  pointer-events: none;
  transition: left .95s ease;
}
.vt-card:hover .vt-win::after { left: 140%; }
.vt-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(.2,.8,.25,1);
}
.vt-img.vt-missing { display: none; }
.vt-card:hover .vt-img { transform: scale(1.07); }

.vt-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 32, 17, .28) 0%, rgba(10, 32, 17, 0) 40%);
}

/* ---------- dark frosted glass icon chip ---------- */
.vt-glass {
  position: absolute;
  top: 16px; left: 16px;
  width: 52px; height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  border-radius: 18px;
  background: rgba(16, 38, 24, .26);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
          backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, .40);
  box-shadow: 0 10px 22px rgba(10, 32, 17, .28), inset 0 1px 0 rgba(255,255,255,.30);
  transition: background .4s ease, border-color .4s ease, transform .3s ease;
}
.vt-card:hover .vt-glass {
  background: rgba(224, 165, 38, .85);
  border-color: rgba(255, 255, 255, .55);
}
.vt-overlay {
  position: absolute;
  left: 16px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 18px 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 22px rgba(10, 32, 17, .18);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .28s ease, transform .28s ease;
  z-index: 4;
}
.vt-overlay span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.vt-overlay span::after {
  content: "→";
  font-size: 15px;
  display: inline-block;
  transform: translateX(0);
}
.vt-card:hover .vt-overlay {
  opacity: 1;
  transform: translateY(0);
}
.vt-card:hover .vt-overlay span::after {
  transform: translateX(2px);
}

/* ---------- gold arrow badge (redirect) ---------- */
.vt-corner {
  position: absolute;
  right: 16px; bottom: 16px;
  width: 54px; height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #fff;
  border-radius: 18px;
  background: linear-gradient(180deg, #E0A526, #C98A13);
  box-shadow: 0 14px 28px rgba(224, 165, 38, .42);
  transition: background .4s ease, box-shadow .4s ease, transform .3s ease;
}
.vt-corner i { transform: rotate(-45deg); transition: transform .4s ease; }
.vt-card:hover .vt-corner {
  background: var(--sat-green-700);
  box-shadow: 0 14px 30px rgba(30, 107, 52, .40);
}
.vt-card:hover .vt-corner i { transform: rotate(-45deg) translate(2px, -2px) scale(1.1); }

/* ---------- name ---------- */
.vt-name {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -.35px;
  line-height: 1.3;
  min-height: 44px;
}
.vt-meta {
  position: relative;
  z-index: 1;
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(19, 31, 23, .62);
}
.vt-name a { color: var(--sat-ink); transition: color .3s ease; }
.vt-name a:hover { color: var(--sat-green-700); }

.service-showcase {
  position: relative;
  padding: 118px 0 110px;
  background:
    radial-gradient(600px 360px at 12% 12%, rgba(39,132,63,.10), transparent 60%),
    linear-gradient(180deg, #f8faf7 0%, #edf6ef 35%, #f7fbf8 100%);
}
.service-grid { margin-top: 18px; }
.service-card {
  position: relative;
  height: 100%;
  padding: 30px 26px 24px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(19,31,23,.08);
  border-radius: 28px;
  box-shadow: 0 18px 38px rgba(12,58,29,.06);
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  cursor: pointer;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: -40% auto auto -12%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39,132,63,.10), transparent 70%);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 54px rgba(12,58,29,.12);
  border-color: rgba(224,165,38,.55);
}
.service-card:hover .service-link {
  opacity: 0;
  transform: translateY(10px);
}
.service-icon {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(39,132,63,.14), rgba(224,165,38,.18));
  color: var(--sat-green-700);
  font-size: 30px;
  margin-bottom: 22px;
  border: 1px solid rgba(30,107,52,.10);
  position: relative;
  z-index: 1;
}
.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: clamp(22px, 1.9vw, 28px);
  line-height: 1.3;
  letter-spacing: -.04em;
}
.service-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 20px;
  color: rgba(19,31,23,.72);
  font-size: 15px;
  line-height: 1.7;
}
.service-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sat-green-700);
  font-weight: 700;
  letter-spacing: .01em;
  transition: opacity .25s ease, transform .25s ease;
}
.service-link i { transition: transform .3s ease; }
.service-card:hover .service-link i { transform: translateX(5px); }
.service-cta {
  position: absolute;
  right: 22px;
  bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1e6b34, #27843f);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 16px 28px rgba(30,107,52,.25);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .3s ease, transform .3s ease;
  z-index: 2;
}
.service-card:hover .service-cta {
  opacity: 1;
  transform: translateY(0);
}
.service-cta i {
  transition: transform .25s ease;
}
.service-card:hover .service-cta i { transform: translateX(4px); }

/* ---------- accessibility ---------- */
.vt-frame:focus-visible,
.vt-name a:focus-visible,
.service-link:focus-visible,
.service-cta:focus-visible,
.service-card:focus-within {
  outline: 3px solid rgba(224, 165, 38, .75);
  outline-offset: 3px;
}

/* ---------- responsive ---------- */
@media (max-width: 1199px) {
  .vt-win { height: 258px; }
  .vt-frame { border-radius: 54px 20px 20px 20px; }
  .vt-win { border-radius: 44px 12px 12px 12px; }
  .vt-name { font-size: 19px; }
}
@media (max-width: 991px) {
  .vt-section { padding: 88px 0 92px; }
  .vt-head { margin-bottom: 48px; }
}
@media (max-width: 575px) {
  .vt-win { height: 290px; }
  .vt-frame { border-radius: 44px 18px 18px 18px; }
  .vt-win { border-radius: 36px 12px 12px 12px; }
  .vt-name { min-height: 0; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .vt-glow { animation: none; }
  .vt-card, .vt-img, .vt-glass, .vt-corner, .vt-corner i, .vt-frame, .vt-win {
    transition: none !important;
  }
  .vt-win::after { display: none; }
  .vt-card:hover { transform: none; }
  .vt-card:hover .vt-img { transform: none; }
  .vt-card:hover .vt-frame { border-radius: 64px 22px 22px 22px; }
  .vt-card:hover .vt-win { border-radius: 54px 14px 14px 14px; }
}

/* ============================================================
   POPULAR PRODUCTS — GARDENO STYLE SPLIT CARDS
   ============================================================ */
.popular-area {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(620px 420px at 12% 18%, rgba(39,132,63,.16), transparent 62%),
    radial-gradient(720px 520px at 78% 72%, rgba(39,132,63,.12), transparent 62%),
    radial-gradient(520px 380px at 45% 95%, rgba(39,132,63,.10), transparent 65%),
    #EDF3EC;
}

/* eyebrow with icon */
.eyebrow-ico::before { display: none; }
.eyebrow-ico i {
  font-size: 17px;
  color: var(--sat-green-600);
  margin-right: 2px;
}

/* top-right dark image block */
.pa-side {
  position: absolute;
  top: 0; right: 0;
  width: min(34vw, 560px);
  height: 68%;
  z-index: 0;
}
.pa-side img { width: 100%; height: 100%; object-fit: cover; }
.pa-side::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(12,58,29,.5), rgba(12,58,29,.78));
}
@media (max-width: 1199px) { .pa-side { display: none; } }

/* header nav arrows — prev white, next gold */
.pp-nav { display: flex; gap: 12px; position: relative; z-index: 2; }
.pp-arrow {
  position: static;
  left: auto; right: auto; top: auto; bottom: auto;
  transform: none;
  opacity: 1;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  box-shadow: 0 10px 26px rgba(12,58,29,.28);
  transition: all .3s ease;
}
.pp-arrow.carousel-control-prev,
.pp-arrow.na-prev {
  background: #fff;
  border: 1px solid rgba(255,255,255,.5);
  color: var(--sat-green-900);
}
.pp-arrow.carousel-control-next,
.pp-arrow.na-next {
  background: var(--sat-gold);
  border: 1px solid var(--sat-gold);
  color: #fff;
}
.pp-arrow.carousel-control-prev:hover,
.pp-arrow.na-prev:hover { background: var(--sat-gold); border-color: var(--sat-gold); color: #fff; }
.pp-arrow.carousel-control-next:hover,
.pp-arrow.na-next:hover { background: var(--sat-gold-dark); border-color: var(--sat-gold-dark); }
@media (max-width: 767px) {
  .pp-nav { justify-content: flex-start; }
  .popular-area .d-flex > .pp-nav {
    flex-basis: 100%;
    width: 100%;
    margin-top: 30px;
  }
}

/* card */
.pp-card {
  display: flex;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(150deg, #1E6B34 0%, #17592B 55%, #114A23 100%);
  box-shadow: 0 18px 40px rgba(12,58,29,.22);
  transition: all .35s ease;
  min-height: 250px;
}
.pp-card:hover { transform: translateY(-6px); box-shadow: 0 26px 54px rgba(12,58,29,.3); }

/* content side with subtle grid pattern */
.pp-card .pp-content {
  flex: 1 1 auto;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 2.2vw, 34px) clamp(20px, 2vw, 32px);
  min-width: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 26px 26px;
}

.pp-card .pp-ico {
  display: inline-flex;
  font-size: 36px;
  color: var(--sat-gold);
  margin-bottom: 18px;
}
.pp-card .pp-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--sat-gold);
  margin-bottom: 8px;
}
.pp-card .pp-content h3 {
  margin: 0 0 8px;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.3;
  padding-right: 60px;
}
.pp-card .pp-content h3 a { color: #fff; transition: color .3s ease; }
.pp-card .pp-content h3 a:hover { color: var(--sat-gold); }
.pp-card .pp-content p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
  color: rgba(255,255,255,.72);
  max-width: 300px;
  padding-right: 60px;
}

/* vertical pill arrow button */
.pp-card .pp-pill {
  position: absolute;
  right: clamp(14px, 1.4vw, 22px);
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height: 92px;
  border-radius: 40px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  transition: all .3s ease;
}
.pp-card .pp-pill i { transform: rotate(-45deg); transition: transform .3s ease; }
.pp-card .pp-pill:hover {
  background: var(--sat-gold);
  border-color: var(--sat-gold);
  color: var(--sat-ink);
}
.pp-card .pp-pill:hover i { transform: rotate(-45deg) scale(1.12); }

/* thumb */
.pp-card .pp-thumb {
  flex: 0 0 42%;
  max-width: 42%;
  position: relative;
  overflow: hidden;
  display: block;
  z-index: 1;
}
.pp-card .pp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.pp-card:hover .pp-thumb img { transform: scale(1.08); }

@media (max-width: 767px) {
  .pp-card { flex-direction: column-reverse; min-height: 0; }
  .pp-card .pp-thumb { flex-basis: auto; max-width: none; height: 190px; }
  .pp-card .pp-content h3 { padding-right: 0; }
  .pp-card .pp-content p { padding-right: 0; max-width: none; }
  .pp-card .pp-pill {
    position: static;
    transform: none;
    margin-top: 16px;
    width: 46px; height: 46px;
    border-radius: 50%;
  }
  .pp-card .pp-pill i { transform: none; }
  .pp-card .pp-pill:hover i { transform: none; }
}

/* ============================================================
   NEW ARRIVALS — SPLIT SHOWCASE CAROUSEL
   ============================================================ */
.na2-section {
  position: relative;
  padding: 112px 0 104px;
  overflow: hidden;
  background-color: #F5F2E9;
  background-image: radial-gradient(rgba(30,107,52,.08) 1.5px, transparent 1.5px);
  background-size: 24px 24px;
}

/* left dark image half */
.na2-half {
  position: absolute;
  left: 0; top: 0;
  width: 50%;
  height: 100%;
  background:
    radial-gradient(420px 420px at 85% 88%, rgba(255,255,255,.05), transparent 70%),
    linear-gradient(160deg, #165A2E 0%, #0C3A1D 55%, #082413 100%);
}
.na2-half::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1.5px, transparent 1.5px);
  background-size: 26px 26px;
}
.na2-half::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 42px solid rgba(255,255,255,.06);
  top: -100px; right: -100px;
}
.na2-ghost {
  position: absolute;
  left: 44px; bottom: 26px;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(120px, 10vw, 185px);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,.16);
  letter-spacing: 2px;
}
@media (max-width: 991px) { .na2-half { display: none; } }

/* header on right (light) half */
.na2-eyebrow { color: var(--sat-gold-dark); }
.na2-title {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -.5px;
  line-height: 1.15;
  margin: 0;
}
@media (max-width: 991px) {
  .na2-title { color: var(--sat-ink); }
}

/* full-bleed scroll track */
.na-track {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 10px max(24px, calc((100% - 1140px) / 2)) 30px;
  scroll-padding-left: max(24px, calc((100% - 1140px) / 2));
  cursor: grab;
}
.na-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.na-track::-webkit-scrollbar { display: none; }

/* white photo-frame card */
.na2-card {
  flex: 0 0 296px;
  scroll-snap-align: start;
  background: #fff;
  border-radius: 16px;
  padding: 10px 10px 0;
  box-shadow: 0 16px 38px rgba(12,40,20,.16);
  transition: transform .35s ease, box-shadow .35s ease;
}
.na2-card:hover { transform: translateY(-8px); box-shadow: 0 26px 54px rgba(12,40,20,.24); }
.na2-frame {
  display: block;
  border-radius: 11px;
  overflow: hidden;
  height: 296px;
  background: var(--sat-green-050);
}
.na2-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  user-select: none;
}
.na2-card:hover .na2-frame img { transform: scale(1.07); }

.na2-body {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 16px 8px 12px;
}
.na2-body h3 { font-size: 17px; margin: 0; line-height: 1.3; }
.na2-body h3 a { color: var(--sat-ink); }
.na2-body h3 a:hover { color: var(--sat-green-700); }
.na2-arrow {
  flex: 0 0 auto;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--sat-green-050);
  color: var(--sat-green-700);
  font-size: 12px;
  transition: all .3s ease;
}
.na2-arrow i { transform: rotate(-45deg); }
.na2-card:hover .na2-arrow { background: var(--sat-gold); color: #fff; }

.na2-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--sat-border);
  margin: 0 8px;
  padding: 12px 0 16px;
  font-size: 13px;
}
.na2-meta span { color: var(--sat-body); }
.na2-meta b { color: var(--sat-ink); font-family: 'Poppins', sans-serif; font-weight: 600; }

.na2-nav-row {
  display: flex;
  justify-content: flex-end;
  margin-top: 26px;
}

@media (max-width: 575px) {
  .na2-section { padding: 80px 0 72px; }
  .na2-card { flex-basis: 258px; }
  .na2-frame { height: 260px; }
}

/* ============================================================
   VIDEO SHOWCASE
   ============================================================ */
.video-showcase {
  background:
    linear-gradient(rgba(12,58,29,.93), rgba(12,58,29,.93)),
    url('../images/banner/b3.jpg') center/cover fixed;
}
.video-card {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.video-card img { width: 100%; height: 240px; object-fit: cover; transition: transform .5s ease; }
.video-card::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(12,58,29,.15), rgba(12,58,29,.55));
  z-index: 1;
  transition: background .3s;
}
.video-card .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  border: 2px solid rgba(255,255,255,.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  transition: all .3s ease;
}
.video-card:hover img { transform: scale(1.08); }
.video-card:hover .play-btn { background: var(--sat-gold-dark); border-color: var(--sat-gold-dark); transform: translate(-50%,-50%) scale(1.1); }
.video-showcase .sec-title,
.video-showcase h2 { color: #fff; }
.video-showcase .sec-title span { color: var(--sat-gold); }
.video-showcase .eyebrow { color: var(--sat-gold); }
.video-showcase .sec-sub { color: rgba(255,255,255,.75); }
@media (max-width: 991px) {
  .video-showcase { background-attachment: scroll; }
}

/* ============================================================
   PRODUCT CARDS (carousels)
   ============================================================ */
.p-card {
  background: #fff;
  border: 1px solid var(--sat-border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: all .35s ease;
}
.p-card .p-img {
  display: block;
  overflow: hidden;
  position: relative;
}
.p-card .p-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform .55s ease;
}
.p-card .p-body { padding: 18px 20px 20px; text-align: center; }
.p-card .p-body h3 { font-size: 16.5px; font-weight: 600; margin: 0 0 10px; line-height: 1.4; }
.p-card .p-body h3 a { color: var(--sat-ink); }
.p-card .enq-link a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--sat-green-700);
  letter-spacing: .3px;
  text-transform: uppercase;
}
.p-card .enq-link a:hover { color: var(--sat-gold-dark); letter-spacing: .8px; }
.p-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.p-card:hover .p-img img { transform: scale(1.08); }

.carousel-control-prev,
.carousel-control-next {
  width: 48px; height: 48px;
  background: var(--sat-green-700);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  box-shadow: var(--shadow-md);
  transition: background .3s;
}
.carousel-control-prev { left: -8px; }
.carousel-control-next { right: -8px; }
.carousel-control-prev:hover,
.carousel-control-next:hover { background: var(--sat-gold-dark); }
@media (max-width: 991px) {
  .carousel-control-prev { left: 4px; }
  .carousel-control-next { right: 4px; }
}
@media (max-width: 767px) { .small-view .carousel-control-prev, .small-view .carousel-control-next { display: none; } }

/* dot indicators for product carousels */
.carousel-indicators.sat-dots {
  position: static;
  margin: 4px 0 0;
  justify-content: center;
}
.sat-dots li {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #CBD8CE;
  border: none;
  opacity: 1;
  margin: 0 4px;
  transition: all .3s ease;
}
.sat-dots li.active {
  width: 28px;
  border-radius: 8px;
  background: var(--sat-green-700);
}

/* ============================================================
   WAY TO SUCCESS
   ============================================================ */
.success-img-wrap {
  background: #fff;
  border: 1px solid var(--sat-border);
  border-radius: 20px;
  padding: clamp(18px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}

/* ============================================================
   MAP — FULL WIDTH
   ============================================================ */
.map-section { padding-bottom: 0; }
.map-wrap { position: relative; z-index: 1; line-height: 0; }
.map-wrap iframe {
  width: 100%;
  height: 480px;
  border: 0;
  filter: grayscale(100%) contrast(1.04);
  transition: filter .45s ease;
}
.map-wrap:hover iframe { filter: grayscale(0); }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #0B2413;
  color: rgba(255,255,255,.72);
  padding: 74px 0 0;
  font-size: 15px;
}
#footer h2.f-head {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
#footer h2.f-head::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 38px; height: 3px;
  background: var(--sat-gold);
  border-radius: 2px;
}
html body #footer h2.f-head::after {
  top: auto !important;
  bottom: 0 !important;
  left: 0 !important;
  width: 38px !important;
  height: 3px !important;
}
html body #footer .b-footer .extra-links {
  margin-bottom: 0;
  padding: 0;
}
html body #footer .b-footer .extra-links li {
  display: block;
  padding: 0;
  border-right: 0;
}
html body #footer .f-details li h6 {
  display: block !important;
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  overflow-wrap: anywhere;
}

/* company profile refresh */
.company-profile {
  margin: 0;
  padding: 78px 0 92px;
  background: linear-gradient(180deg, #f7faf7 0%, #ffffff 42%, #f7faf7 100%);
}
.company-profile > .container > .row:first-child {
  margin-bottom: 42px;
}
.company-profile h3 {
  margin: 0;
  color: var(--sat-ink) !important;
  font-family: 'Poppins', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}
.company-profile h3::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  margin: 18px auto 0;
  background: var(--sat-gold);
  border-radius: 3px;
}
.company-profile > .container > .row:first-child {
  animation: companyTitleIn .7s cubic-bezier(.22,.61,.36,1) both;
}
.cp-text {
  margin: 0 0 22px;
  padding: 26px 30px 28px;
  background: #fff;
  border: 1px solid rgba(30, 107, 52, .11);
  border-left: 4px solid var(--sat-green-600);
  border-radius: 0 12px 12px 0;
  box-shadow: 0 12px 30px rgba(12, 58, 29, .07);
  animation: companyCardIn .65s cubic-bezier(.22,.61,.36,1) both;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.cp-text:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 107, 52, .24);
  box-shadow: 0 18px 36px rgba(12, 58, 29, .11);
}
.cp-text:nth-child(1) { animation-delay: .08s; }
.cp-text:nth-child(2) { animation-delay: .14s; }
.cp-text:nth-child(3) { animation-delay: .20s; }
.cp-text:nth-child(4) { animation-delay: .26s; }
.cp-text:nth-child(5) { animation-delay: .32s; }
.cp-text:nth-child(6) { animation-delay: .38s; }
.cp-text:nth-child(7) { animation-delay: .44s; }
.cp-text:nth-child(8) { animation-delay: .50s; }
.cp-text:nth-child(9) { animation-delay: .56s; }
.cp-text:nth-child(10) { animation-delay: .62s; }
@keyframes companyTitleIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
@keyframes companyCardIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
.cp-text h4 {
  display: block;
  width: auto;
  padding: 0;
  margin: 0 0 13px;
  background: none;
  color: var(--sat-green-800);
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-align: left;
  border-radius: 0;
}
.cp-text span { display: none; }
.cp-text p,
.cp-text ul li {
  color: #526158;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.8;
  text-align: left;
}
.cp-text p { margin: 0 0 12px; }
.cp-text p:last-child { margin-bottom: 0; }
.cp-text ul { margin: 14px 0 0; padding-left: 21px; }
.cp-text ul li { margin: 8px 0; padding-left: 4px; }
.cp-text ul li::marker { color: var(--sat-gold); }
.cp-text strong { color: var(--sat-ink); }
.company-profile > .container > .row:last-child {
  margin-top: 46px;
  padding-top: 38px;
  border-top: 1px solid rgba(30, 107, 52, .14);
}
.company-profile .cp-img {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.company-profile .cp-img li { display: block; width: 100%; margin: 0; }
.company-profile .cp-img img {
  width: 100%;
  max-width: 270px;
  padding: 8px;
  margin: 0 auto 20px;
  background: #fff;
  border: 1px solid rgba(30, 107, 52, .12);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(12, 58, 29, .1);
}
.company-profile .cp-img img:hover { transform: translateY(-5px); }
@media (max-width: 767px) {
  .company-profile { padding: 54px 0 64px; }
  .cp-text { padding: 22px 20px 24px; }
  .cp-text h4 { font-size: 18px; }
  .cp-text p, .cp-text ul li { font-size: 14px; line-height: 1.7; }
  .company-profile > .container > .row:last-child { margin-top: 26px; padding-top: 26px; }
}
@media (prefers-reduced-motion: reduce) {
  .company-profile > .container > .row:first-child,
  .company-profile .cp-text { animation: none; transition: none; }
}

/* ==========================================================================
   EXECUTIVE CONTACT PAGE SUITE — SASHANKA AGRO TECH PVT. LTD.
   ========================================================================== */

/* Page Header */
.contact-header-section {
  padding: 10px 0 32px;
  max-width: 860px;
  margin: 0 auto;
}
.contact-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(30, 107, 52, 0.08);
  color: var(--sat-green-700);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-main-title {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800;
  color: var(--sat-ink);
  line-height: 1.2;
  margin-bottom: 10px;
}
.contact-subtitle {
  font-size: 15.5px;
  line-height: 1.7;
  color: #55675e;
  margin: 0 auto;
}

/* Grid & Column Alignment */
.contact-twin-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
  margin: 0 -15px 46px !important;
}
.contact-twin-grid > .col-lg-6 {
  display: flex !important;
  flex-direction: column !important;
  padding: 0 15px !important;
  margin-bottom: 28px !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

/* Common Card Aesthetics */
.premium-contact-card,
.enq_f {
  position: relative !important;
  overflow: hidden !important;
  height: 100% !important;
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 34px 32px 28px !important;
  background: #ffffff !important;
  border: 1px solid rgba(22, 65, 37, 0.12) !important;
  border-radius: 22px !important;
  box-shadow: 0 16px 40px -10px rgba(12, 58, 29, 0.08) !important;
  box-sizing: border-box !important;
}

/* Top Accent Banner Strip on Both Cards */
.card-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--sat-green-700) 0%, var(--sat-gold) 100%);
}

/* Card Header */
.contact-pane-header {
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(30, 107, 52, 0.08);
  margin-bottom: 20px;
}
.contact-pane-tag {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--sat-gold-dark, #b5891a);
}
.contact-pane-tag.tag-green {
  color: var(--sat-green-700);
}
.contact-pane-header h4 {
  margin: 0 0 6px;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  color: var(--sat-ink);
  line-height: 1.25;
}
.contact-pane-header p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.6;
  color: #617369;
}

/* ================== LEFT CARD SPECIFICS ================== */
.facility-card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}
.facility-item {
  padding: 18px 20px;
  background: linear-gradient(180deg, #fbfdfb 0%, #f6faf7 100%);
  border: 1px solid rgba(30, 107, 52, 0.1);
  border-radius: 16px;
  transition: all 0.25s ease;
}
.facility-item:hover {
  border-color: rgba(30, 107, 52, 0.22);
  box-shadow: 0 6px 18px rgba(12, 58, 29, 0.05);
}
.facility-hub-item {
  background: linear-gradient(180deg, #f4f9f5 0%, #edf6f0 100%);
  border: 1.5px solid rgba(30, 107, 52, 0.18);
  border-left: 4px solid var(--sat-green-700);
}
.facility-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.facility-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(30, 107, 52, 0.09);
  color: var(--sat-green-700);
  font-size: 18px;
  flex-shrink: 0;
}
.facility-icon.hub-icon {
  background: var(--sat-green-700);
  color: #ffffff;
}
.facility-type {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #708477;
}
.facility-type.hub-type {
  color: var(--sat-green-700);
}
.facility-title {
  margin: 2px 0 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--sat-ink);
}
.facility-addr {
  margin: 0 0 12px;
  font-size: 13.5px;
  line-height: 1.55;
  color: #4a5c51;
}
.facility-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: #ffffff;
  border: 1px solid rgba(30, 107, 52, 0.16);
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--sat-green-700);
  text-decoration: none !important;
  transition: all 0.2s ease;
}
.contact-pill:hover {
  background: var(--sat-green-700);
  color: #ffffff;
  border-color: var(--sat-green-700);
}

/* Hub Badges & Direction Button */
.hub-spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.hub-chip {
  display: inline-flex;
  align-items: center;
  font-size: 11.5px;
  font-weight: 700;
  color: #1b5e30;
  background: rgba(30, 107, 52, 0.08);
  padding: 4px 10px;
  border-radius: 6px;
}
.btn-hub-dir {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #ffffff;
  color: var(--sat-green-700);
  border: 1.5px solid var(--sat-green-700);
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none !important;
  transition: all 0.25s ease;
}
.btn-hub-dir:hover {
  background: var(--sat-green-700);
  color: #ffffff;
}

/* Left Card Footer Strip */
.facility-timing-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  margin-top: auto;
  border-top: 1px solid rgba(30, 107, 52, 0.08);
  font-size: 12px;
  color: #6a7d72;
}

/* ================== RIGHT CARD SPECIFICS ================== */
.modern-enquiry-form {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  flex-grow: 1 !important;
}
.sat-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 576px) {
  .sat-form-row {
    grid-template-columns: 1fr;
  }
}
.sat-form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.sat-form-group label {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--sat-ink);
  margin: 0;
}
.sat-req {
  color: #d93829;
  font-weight: 700;
}
.modern-enquiry-form .sat-form-control,
.modern-enquiry-form input.sat-form-control,
.modern-enquiry-form select.sat-form-control,
.modern-enquiry-form textarea.sat-form-control,
.modern-enquiry-form #vinfo_phone_no,
.modern-enquiry-form #vinfo_name,
.modern-enquiry-form #vinfo_email,
.modern-enquiry-form #city_id_input,
.modern-enquiry-form #vinfo_requirements {
  box-sizing: border-box !important;
  width: 100% !important;
  height: 44px !important;
  line-height: normal !important;
  padding: 10px 14px !important;
  font-size: 13.5px !important;
  font-family: 'Inter', sans-serif !important;
  color: var(--sat-ink) !important;
  background: #ffffff !important;
  border: 1.5px solid #d4e0d7 !important;
  border-radius: 9px !important;
  float: none !important;
  margin: 0 !important;
  box-shadow: none !important;
  transition: all 0.2s ease !important;
}
.modern-enquiry-form select.sat-form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='16' height='16'%3E%3Cpath fill='%231e6b34' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  padding-right: 32px !important;
}
.sat-form-group.full-width {
  flex-grow: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}
.modern-enquiry-form textarea.sat-form-control,
.modern-enquiry-form #vinfo_requirements {
  height: 95px !important;
  min-height: 90px !important;
  max-height: 160px !important;
  resize: vertical !important;
  line-height: 1.5 !important;
}
.modern-enquiry-form .sat-form-control:focus,
.modern-enquiry-form #vinfo_phone_no:focus,
.modern-enquiry-form #vinfo_name:focus,
.modern-enquiry-form #vinfo_email:focus,
.modern-enquiry-form #city_id_input:focus,
.modern-enquiry-form #vinfo_requirements:focus {
  outline: none !important;
  border-color: var(--sat-green-600) !important;
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(30, 107, 52, 0.14) !important;
}
.modern-enquiry-form input::placeholder,
.modern-enquiry-form textarea::placeholder,
.modern-enquiry-form .sat-form-control::placeholder {
  color: #8da093 !important;
  font-size: 13px !important;
  opacity: 1 !important;
}

/* Submit Action Button */
.sat-form-action {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin-top: auto !important;
  padding-top: 4px !important;
}
.sat-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 13px 24px;
  background: linear-gradient(135deg, var(--sat-green-700) 0%, #13552b 100%);
  color: #ffffff;
  border: none;
  border-radius: 9px;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(21, 87, 44, 0.22);
  transition: all 0.25s ease;
}
.sat-submit-btn:hover {
  background: linear-gradient(135deg, #155e2f 0%, var(--sat-green-900) 100%);
  box-shadow: 0 8px 22px rgba(21, 87, 44, 0.32);
  transform: translateY(-1px);
}
.sat-submit-btn:active {
  transform: translateY(0);
}
.sat-form-note {
  font-size: 11.5px;
  color: #72847a;
  text-align: center;
}

/* ================== INTERACTIVE MAP CARD ================== */
.contact-map-card {
  background: #ffffff;
  border: 1px solid rgba(22, 65, 37, 0.12);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 36px -8px rgba(12, 58, 29, 0.08);
}
.map-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 22px 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
  border-bottom: 1px solid rgba(30, 107, 52, 0.08);
}
.map-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--sat-green-700);
  margin-bottom: 4px;
}
.map-card-header h5 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
  color: var(--sat-ink);
}
.map-card-header p {
  margin: 0;
  font-size: 13.5px;
  color: #5d7065;
}
.map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  background: #ffffff;
  color: var(--sat-green-700);
  border: 1.5px solid rgba(30, 107, 52, 0.2);
  text-decoration: none !important;
  transition: all 0.2s ease;
}
.map-btn:hover {
  background: var(--sat-green-700);
  color: #ffffff;
  border-color: var(--sat-green-700);
}
.map-btn.map-btn-hub {
  background: rgba(30, 107, 52, 0.06);
  border-color: rgba(30, 107, 52, 0.3);
}
.contact-map {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  margin: 0;
}

/* ================== DEPARTMENT TOUCHPOINTS ================== */
.contact-dept-section {
  padding-top: 36px;
}
.dept-eyebrow {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--sat-gold-dark, #b5891a);
  margin-bottom: 6px;
}
.dept-title {
  font-size: clamp(22px, 2.3vw, 30px);
  font-weight: 800;
  color: var(--sat-ink);
  margin: 0;
}
.dept-divider {
  width: 48px;
  height: 3px;
  background: var(--sat-gold);
  border-radius: 2px;
  margin: 14px auto 36px;
}
.dept-card {
  height: 100%;
  padding: 28px 24px;
  background: #ffffff;
  border: 1px solid rgba(22, 65, 37, 0.1);
  border-radius: 16px;
  box-shadow: 0 10px 24px -6px rgba(12, 58, 29, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.dept-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 107, 52, 0.25);
  box-shadow: 0 16px 36px -8px rgba(12, 58, 29, 0.12);
}
.dept-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(30, 107, 52, 0.1) 0%, rgba(30, 107, 52, 0.18) 100%);
  color: var(--sat-green-700);
  font-size: 20px;
  margin-bottom: 18px;
}
.dept-card h4 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 800;
  color: var(--sat-ink);
}
.dept-card p {
  margin: 0 0 18px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #5c6f64;
  flex-grow: 1;
}
.dept-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(30, 107, 52, 0.08);
  font-size: 13px;
  font-weight: 700;
}
.dept-links a {
  color: var(--sat-green-700);
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  transition: color 0.2s ease;
}
.dept-links a:hover {
  color: var(--sat-green-900);
}
.dept-links span {
  color: #4a5d51;
  display: inline-flex;
  align-items: center;
}
.contact-office .addre:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 34px rgba(12,58,29,.12);
}
.contact-office .addre img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 14px;
}
.contact-office .addre h4 {
  margin: 0 0 10px;
  color: var(--sat-green-800);
  font-family: 'Poppins', sans-serif;
  font-size: 18px;
  font-weight: 700;
}
.contact-office .addre p {
  margin: 0;
  color: #5b6960;
  font: 14px/1.75 'Inter', sans-serif;
}
@media (max-width: 1200px) {
  body:not(.mobile-nav-active) #navbarn {
    display: none !important;
  }
  body.mobile-nav-active #navbarn {
    display: block !important;
  }
}
@media (max-width: 767px) {
  .contact-header-section {
    padding: 6px 0 20px;
  }
  .contact-main-title {
    font-size: 24px !important;
    line-height: 1.3 !important;
  }
  .contact-subtitle {
    font-size: 13.5px !important;
    line-height: 1.6 !important;
  }
  .contact-twin-grid {
    margin: 0 -10px 30px !important;
  }
  .contact-twin-grid > .col-lg-6 {
    padding: 0 10px !important;
    margin-bottom: 20px !important;
  }
  .premium-contact-card,
  .enq_f {
    padding: 22px 16px 18px !important;
    border-radius: 18px !important;
  }
  .contact-pane-header {
    padding-bottom: 12px;
    margin-bottom: 14px;
  }
  .contact-pane-header h4 {
    font-size: 20px !important;
  }
  .facility-card-list {
    gap: 12px;
  }
  .facility-item {
    padding: 14px 12px !important;
  }
  .facility-title {
    font-size: 15.5px !important;
  }
  .facility-addr {
    font-size: 12.5px !important;
    margin-bottom: 10px !important;
  }
  .facility-pills {
    gap: 6px;
  }
  .contact-pill {
    font-size: 11.5px;
    padding: 5px 9px;
    max-width: 100%;
    word-break: break-all;
  }
  .btn-hub-dir {
    width: 100%;
    justify-content: center;
    font-size: 12px;
    padding: 8px 12px;
  }
  .facility-timing-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 11px;
    padding-top: 12px;
  }
  .sat-form-row {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
  .modern-enquiry-form {
    gap: 12px !important;
  }
  .modern-enquiry-form .sat-form-control,
  .modern-enquiry-form input.sat-form-control,
  .modern-enquiry-form select.sat-form-control,
  .modern-enquiry-form #vinfo_phone_no,
  .modern-enquiry-form #vinfo_name,
  .modern-enquiry-form #vinfo_email,
  .modern-enquiry-form #city_id_input {
    height: 42px !important;
    font-size: 13.5px !important;
    padding: 8px 12px !important;
  }
  .modern-enquiry-form textarea.sat-form-control,
  .modern-enquiry-form #vinfo_requirements {
    height: 85px !important;
    min-height: 85px !important;
    font-size: 13px !important;
  }
  .sat-submit-btn {
    padding: 12px 18px !important;
    font-size: 14px !important;
  }
  .sat-form-note {
    font-size: 10.5px !important;
  }
  .contact-hero .carousel-inner,
  .contact-hero .carousel-item { height: 122px; }
  .contact-map-card {
    border-radius: 16px;
  }
  .map-card-header {
    padding: 16px 14px !important;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .map-links {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }
  .map-btn {
    width: 100%;
    justify-content: center;
    font-size: 12px;
    padding: 8px 14px;
  }
  .contact-map {
    height: 260px !important;
  }
  .contact-dept-section {
    padding-top: 24px;
  }
  .dept-title {
    font-size: 22px !important;
  }
  .dept-card {
    padding: 20px 16px;
    margin-bottom: 14px;
  }
}
#footer .f-about .f-logo { height: 52px; width: auto; margin-bottom: 16px; }
#footer ul { list-style: none; margin: 0; padding: 0; }
#footer .f-details li { display: flex; gap: 14px; margin-bottom: 16px; align-items: flex-start; }
#footer .f-details .fd-ico {
  flex: 0 0 auto;
  width: 44px; height: 44px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--sat-gold);
  background: linear-gradient(135deg, rgba(39,132,63,.30), rgba(39,132,63,.08));
  border: 1px solid rgba(224,165,38,.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: all .3s ease;
}
#footer .f-details .fd-ico i {
  font-size: 17px !important;
  padding: 0 !important;
  margin: 0 !important;
  line-height: 1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
#footer .f-details li:hover .fd-ico {
  background: linear-gradient(135deg, var(--sat-gold), var(--sat-gold-dark));
  color: #fff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(224,165,38,.35);
}
#footer .f-details li:hover .fd-ico i {
  color: #fff !important;
}
#footer .f-details h6 { color: rgba(255,255,255,.85); font-size: 14.5px; font-weight: 500; line-height: 1.6; margin: 0; }
#footer .f-details h6 a { color: inherit; }
#footer .f-details h6 a:hover { color: var(--sat-gold); }
#footer .c-link a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.85);
  font-weight: 600;
  font-size: 14.5px;
  padding: 6px 0;
}
#footer .c-link a:hover { color: var(--sat-gold); }
#footer .c-link img { width: 26px; height: 26px; object-fit: contain; }
#footer .social-row { margin-top: 18px; display: flex; gap: 10px; }
#footer .social-row a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
#footer .social-row a:hover { background: var(--sat-gold-dark); transform: translateY(-3px); }
#footer .f-links li a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6.5px 0;
  color: rgba(255,255,255,.72);
}
#footer .f-links li a::before {
  content: "\F285";
  font-family: "bootstrap-icons";
  font-size: 11px;
  color: var(--sat-gold);
}
#footer .f-links li a:hover { color: #fff; padding-left: 6px; }

/* footer form */
#footer .qform .form-control {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  color: #fff;
  border-radius: 10px;
  padding: 11px 15px;
  font-size: 14.5px;
  margin-bottom: 12px;
}
#footer .qform .form-control::placeholder { color: rgba(255,255,255,.45); }
#footer .qform .form-control:focus {
  background: rgba(255,255,255,.1);
  border-color: var(--sat-gold);
  box-shadow: none;
  color: #fff;
}
#footer .qform textarea.form-control { height: 92px !important; resize: none; }
#footer .btn-sat { padding: 11px 30px; font-size: 14px; }

/* bottom bar */
.b-footer {
  background: #081C0E;
  padding: 20px 0;
  margin-top: 58px;
}
.b-footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 26px;
}
.sales-login {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,.16);
  padding: 7px 18px;
  border-radius: 30px;
  transition: all .3s ease;
}
.sales-login i { font-size: 11px; color: var(--sat-gold); }
.sales-login:hover {
  color: var(--sat-gold);
  border-color: var(--sat-gold);
  background: rgba(224,165,38,.08);
}
.b-footer .extra-links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 26px;
  list-style: none;
  margin: 0; padding: 0;
}
.b-footer .extra-links a { color: rgba(255,255,255,.62); font-size: 13.5px; }
.b-footer .extra-links a:hover { color: var(--sat-gold); }
.f-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 16px 0;
  text-align: center;
  font-size: 13.5px;
  color: rgba(255,255,255,.5);
  background: #081C0E;
}
.f-bottom h6 { color: rgba(255,255,255,.55); font-weight: 400; font-size: 13.5px; margin: 0; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-content { border-radius: 18px; overflow: hidden; border: none; }
.modal-header { border: none; padding: 14px 18px; }
.modal .close { opacity: .8; font-size: 28px; }
.modal .close:hover { opacity: 1; color: var(--sat-red-600); }

/* ============================================================
   WHATSAPP FLOATING BUTTON
   ============================================================ */
.whatsapp-btn {
  position: fixed;
  left: 26px; bottom: 26px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: var(--shadow-md);
  z-index: 1500;
  transition: all .3s ease;
}
.whatsapp-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: waPulse 2.2s infinite;
}
@keyframes waPulse {
  0% { transform: scale(1); opacity: .4; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}
.whatsapp-btn:hover { background: #1EBE5A; color: #fff; transform: translateY(-3px); }
@media (max-width: 767px) {
  .whatsapp-btn { left: 16px; bottom: 16px; width: 48px; height: 48px; font-size: 26px; }
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  right: 26px; bottom: 26px;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--sat-green-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: all .3s ease;
  z-index: 1500;
}
.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--sat-gold-dark); color: #fff; }

/* mobile-nav overlay backdrop */
body.mobile-nav-active::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(12, 40, 20, .5);
  z-index: 998;
  animation: navFadeIn .3s ease both;
}
body.mobile-nav-active #navbarn::before {
  content: none;
  display: none;
}
@keyframes navFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* section divider wave (subtle) */
.divider-soft { height: 1px; background: var(--sat-border); }

/* responsive text */
@media (max-width: 767px) {
  .topbar { display: none; }
  .section { padding: 80px 0; }
  #header { padding: 10px 0; }
  #header.sticked { padding: 6px 0; }
  #header .row { height: 46px; }
  #header .logo img { height: 46px !important; }
  #header.sticked .logo img { height: 42px !important; }
}

html body header#header #navbarn { margin-top: 0 !important; }
#footer p { color: rgba(255, 255, 255, .72) !important; }

/* Lightbox hidden by default */
.lightbox {
  display: none !important;
}

