@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,600&family=Cormorant+Garamond:wght@400;600;700&display=swap");

:root {
  --primary: #3db256;
  --primary-light: #eef8f0;
  --accent: #fb923c;
  --bg-main: #f8fafc;
  --bg-secondary: #ffffff;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.08);

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);

  --font-heading: "Playfair Display", serif;
  --font-body: "Outfit", sans-serif;

  /* Loader & Progress Bar Variables */
  --ink: #0d0d12;
  --gold: #c9943c;
  --gold2: #e8b45a;
  --blue3: #3b6ef5;
}

/* --- LOADER SCREEN --- */
#loader {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 28px;
  transition:
    opacity 0.7s,
    visibility 0.7s;
}

#loader.gone {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ld-logo {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ld-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  display: flex;
  align-items: center;
  justify-content: center;
  animation: ldPop 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) 0s both;
}

.ld-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.ld-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 44px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  animation: ldUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.ld-name span {
  color: var(--gold2);
}

.ld-bar {
  width: 220px;
  height: 2px;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 2px;
  overflow: hidden;
  animation: ldUp 0.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.ld-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  animation: ldFill 1.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

@keyframes ldPop {
  from {
    transform: scale(0) rotate(-20deg);
    opacity: 0;
  }

  to {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

@keyframes ldUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes ldFill {
  to {
    width: 100%;
  }
}

/* PROGRESS BAR */
#pbar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  z-index: 999;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--blue3));
  width: 0%;
  transition: width 0.1s;
}

/* --- NAVIGATION LINKS --- */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding: 4px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 99px;
  border: 1px solid rgba(255, 255, 255, 0.02);
}

.nav-link {
  position: relative;
  padding: 10px 20px;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  border-radius: 99px;
  transition: color 0.3s ease;
  z-index: 2;
}

body.scrolled .nav-link {
  padding: 8px 16px;
  /* Smaller touch targets */
}

.nav-link:hover {
  color: #fff;
}

.nav-indicator {
  position: absolute;
  top: 4px;
  left: 5px;
  height: calc(100% - 8px);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  pointer-events: none;
  z-index: 1;
  transition:
    width 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1),
    opacity 0.3s ease;
  opacity: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/**/
/* HAMBURGER FIX */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 260px;
  height: 100%;
  background: #111;
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  transition: 0.4s ease;
  z-index: 1000;
}

/* OPEN */
.mobile-menu.active {
  right: 0;
}

/* LINKS */
.mobile-menu a {
  color: white;
  text-decoration: none;
  padding: 15px 25px;
  font-size: 18px;
  transition: 0.3s;
}

.mobile-menu a:hover {
  background: #333;
  padding-left: 35px;
}

/**/

/* RESET */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text-main);
}

/* LAYOUT */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 14px rgba(45, 90, 39, 0.25);
}

.btn-primary:hover {
  background: #23481f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(45, 90, 39, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary-light);
}

/* NAVBAR */
.navbar {
  width: 100%;
  background: white;
  position: fixed;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
}

/* LEFT SIDE */
.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo {
  font-weight: 600;
  font-size: 18px;
  color: black;
  text-decoration: none;
}

.logo span {
  color: var(--primary);
}

/* RIGHT SIDE */
.hamburger {
  width: 35px;
  height: 25px;
  border: none;
  background: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: black;
  border-radius: 5px;
  transition: 0.4s;
}

/* FULLSCREEN MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  transition: 0.5s ease;
}

.mobile-menu a {
  color: white;
  font-size: 28px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.mobile-menu a:hover {
  color: var(--primary);
}

/* ACTIVE MENU */
.mobile-menu.active {
  right: 0;
}

/* SEARCH */
.nav-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-search-input {
  width: 0;
  opacity: 0;
  padding: 0;
  border: none;
  background: var(--bg-main);
  border-radius: 20px;
  transition: var(--transition);
  outline: none;
  font-size: 0.9rem;
}

.nav-search-wrap.active .nav-search-input {
  width: 200px;
  opacity: 1;
  padding: 8px 16px;
  margin-right: -36px;
  padding-right: 40px;
  border: 1px solid var(--border);
}

/* NAV LINKS */
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-link {
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--text-muted);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* ICON BUTTON */
.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-main);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}

.icon-btn:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* HERO */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 24px;
}

.hero-content h1 span {
  color: var(--primary);
  font-style: italic;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* PRODUCTS */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-info {
  padding: 24px;
}

.product-title {
  font-size: 1.25rem;
  font-weight: 600;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
}

/* FOOTER */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
}

/* Mobile Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  transition: var(--transition);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
  }

  .logo img {
    height: 36px;
  }

  .text-logo {
    font-size: 1.5rem;
  }

  .nav-search-wrap.active .nav-search-input {
    position: absolute;
    right: 0;
    top: 120%;
    width: 250px;
    margin-right: 0;
    box-shadow: var(--shadow-md);
  }
}

/* Hero Section */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 200px;
  background: radial-gradient(circle,
      var(--primary-light) 0%,
      rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  border-radius: 50%;
  opacity: 0.6;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 24px;
  position: relative;
}

.hero-content h1 span {
  color: var(--primary);
  font-style: italic;
}

.hero-content p {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-images {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hero-img-box {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: var(--transition);
}

.hero-img-box:nth-child(2) {
  transform: translateY(-20px);
}

.hero-images:hover .hero-img-box {
  transform: translateY(0);
}

.hero-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  transition: var(--transition);
}

.hero-img-box:hover img {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content p {
    margin: 0 auto 40px;
  }

  .hero-images {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-content h1 {
    font-size: 3rem;
  }
}

/* MARQUEE */
.marquee-wrap {
  background: var(--ink);
  padding: 14px 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 32px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ── MOUNTAIN SUMMIT JOURNEY SECTION (EXACT MATCH OF USER SCREENSHOT) ── */
.mountain-journey-section {
  padding: 90px 0;
  background: #ffffff;
  color: #0f172a;
  position: relative;
  overflow: hidden;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.mountain-journey-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 75px;
}

.journey-editorial-header {
  padding-right: 20px;
}

.journey-gold-eyebrow {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #b45309;
  display: block;
  margin-bottom: 16px;
}

.journey-editorial-title {
  font-family: var(--font-heading), "Georgia", serif;
  font-size: 1.95rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.journey-accent-line {
  width: 55px;
  height: 3px;
  background: #b45309;
  border-radius: 3px;
  margin-bottom: 24px;
}

.journey-editorial-desc {
  font-size: 0.82rem;
  line-height: 1.55;
  color: #64748b;
  max-width: 480px;
}

.mountain-hero-graphic {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12);
  background: #090e1a;
}

.mountain-img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: contain;
  display: block;
}

.summit-path-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.summit-flag-badge {
  position: absolute;
  top: 22px;
  right: 62px;
  width: 32px;
  height: 32px;
  background: #b45309;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  box-shadow: 0 0 15px rgba(180, 83, 9, 0.6);
  animation: bounce 2s infinite ease-in-out;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Horizontal 5-Stage Stepper Roadmap */
.mountain-roadmap-wrapper {
  position: relative;
  margin-bottom: 75px;
  padding: 0 10px;
}

.roadmap-track-line {
  position: absolute;
  top: 72px;
  left: 60px;
  right: 60px;
  height: 2px;
  background: #e2e8f0;
  z-index: 1;
}

.roadmap-progress-fill {
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, #b45309, #d97706, #f59e0b);
}

.roadmap-steps-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.roadmap-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.roadmap-step-item:hover {
  transform: translateY(-5px);
}

.roadmap-year {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.roadmap-icon-node {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffffff 0%, #fffbf5 100%);
  border: 3px solid #d97706;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(180, 83, 9, 0.22);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.roadmap-icon-node i {
  color: #b45309 !important;
  font-size: 1.65rem !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  filter: drop-shadow(0 2px 4px rgba(180, 83, 9, 0.35));
  transition: all 0.3s ease;
}

.roadmap-step-item:hover .roadmap-icon-node,
.roadmap-step-item.active .roadmap-icon-node {
  border-color: #b45309;
  background: linear-gradient(135deg, #b45309 0%, #d97706 100%);
  box-shadow: 0 14px 32px rgba(180, 83, 9, 0.45);
  transform: scale(1.15);
}

.roadmap-step-item:hover .roadmap-icon-node i,
.roadmap-step-item.active .roadmap-icon-node i {
  color: #ffffff !important;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.4));
}

.roadmap-step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.roadmap-step-desc {
  font-size: 0.75rem;
  line-height: 1.45;
  color: #64748b;
  margin: 0;
}

/* Bottom Executive Quote Banner */
.mountain-banner-card {
  background: #fcfaf5;
  border: 1px solid #f3ebd8;
  border-radius: 20px;
  padding: 28px 36px;
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 35px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.banner-brand-col {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 25px;
  border-right: 1px solid #e5dcc6;
}

.banner-logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0f172a;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner-brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 1px;
  line-height: 1.1;
}

.brand-sub {
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 2px;
}

.banner-quote-col {
  display: flex;
  align-items: center;
  gap: 10px;
}

.quote-mark {
  font-family: serif;
  font-size: 3rem;
  color: #b45309;
  line-height: 0.8;
  opacity: 0.6;
}

.quote-text {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}

.banner-values-col {
  display: flex;
  gap: 25px;
  padding-left: 25px;
  border-left: 1px solid #e5dcc6;
}

.value-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.value-icon {
  font-size: 1.2rem;
  color: #b45309;
}

.value-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .mountain-journey-hero {
    grid-template-columns: 1fr;
  }
  .roadmap-steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .mountain-banner-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .banner-brand-col, .banner-values-col {
    border: none;
    padding: 0;
  }
}

/* Responsive configurations */
@media (max-width: 900px) {

  .bg-line,
  .progress-line {
    left: 40px;
    transform: none;
  }

  .milestone-item {
    grid-template-columns: 1fr;
    margin-left: 80px;
    width: calc(100% - 80px);
    margin-bottom: 30px;
  }

  .left-side {
    text-align: left;
  }

  .left-side .timeline-card,
  .right-side .timeline-card {
    grid-column: 1;
    justify-self: start;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .node-wrapper {
    left: -40px;
    top: 50px;
    transform: translate(-50%, -50%);
  }
}

@media (max-width: 600px) {
  .timeline-section {
    padding: 90px 6%;
  }

  .timeline-title {
    font-size: 32px;
  }

  .timeline-card {
    padding: 25px;
  }

  .timeline-year {
    font-size: 24px;
  }
}



/* Section Shared Attributes */
.section {
  padding: 30px 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}

.section-title {
  font-size: 2.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
}

/* Category Slider/Grid */
.categories-wrapper {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding-bottom: 16px;
  /* Hide scrollbar completely to rely purely on arrows on desktop and swipe on mobile */
  scrollbar-width: none;
  /* Firefox */
}

.categories-wrapper::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.category-card {
  flex: 0 0 auto;
  width: 160px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.cat-icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.cat-icon-wrap img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  transition: var(--transition);
}

.category-card:hover .cat-icon-wrap img {
  transform: scale(1.1);
}

.cat-name {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}

@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

.product-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.product-img-wrap {
  position: relative;
  padding-top: 100%;
  /* 1:1 Aspect Ratio */
  background: var(--bg-main);
  overflow: hidden;
}

.product-img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.05);
}

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--bg-secondary);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.product-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media (max-width: 768px) {
  .product-info {
    padding: 12px;
  }

  .product-title {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .product-price {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .product-cat {
    font-size: 0.7rem;
    margin-bottom: 4px;
  }

  .add-to-cart-btn {
    padding: 8px;
    font-size: 0.85rem;
  }
}

.product-cat {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.product-title {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.product-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  margin-top: auto;
}

.add-to-cart-btn {
  width: 100%;
  padding: 12px;
  background: var(--bg-main);
  color: var(--primary);
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
}

.add-to-cart-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Products Page Layout */
.shop-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

@media (max-width: 768px) {
  .shop-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .shop-sidebar {
    position: static;
    z-index: 10;
    margin-bottom: 8px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .filter-group {
    margin-bottom: 0;
  }

  .filter-title {
    font-size: 1rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }

  .filter-list {
    flex-direction: row;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }

  .filter-list::-webkit-scrollbar {
    display: none;
  }

  .filter-label {
    white-space: nowrap;
    background: var(--bg-main);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
  }

  .filter-label input[type="radio"]:checked+span {
    font-weight: 700;
    color: var(--primary);
  }
}

.shop-sidebar {
  background: var(--bg-secondary);
  padding: 32px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  height: fit-content;
  position: sticky;
  top: 100px;
}

.filter-group {
  margin-bottom: 32px;
}

.filter-group:last-child {
  margin-bottom: 0;
}

.filter-title {
  font-size: 1.15rem;
  font-family: var(--font-heading);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.filter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.filter-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.filter-label:hover,
.filter-label input:checked~span {
  color: var(--primary);
  font-weight: 500;
}

.filter-label input {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

@media (max-width: 991px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }
}

/* Footer */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 80px 0 40px;
  margin-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-col {
  padding-right: 0;
}

.footer-col:first-child {
  padding-right: 40px;
}

.footer-col h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links a {
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-main);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
}

.social-link:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ══════════════════════════════
   Cinematic Hero Slider Section
══════════════════════════════ */
.hero-cinematic {
  position: relative;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  overflow: hidden;
  background: #fdfaf6;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: white;
}

.cinematic-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1.2s ease-in-out,
    visibility 1.2s;
  z-index: 1;
}

.cinematic-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.cinematic-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  /* Fresh morning glow aesthetic overlay */
  /* background-color: rgba(0,0,0,0.15); */
  /* background-blend-mode: overlay; */
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

/* Subtle darkening gradient at the bottom for text readability */
.cinematic-bg::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Darkened the gradient to cover the whole image and be darker at the bottom */
  /* background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.3) 100%); */
  pointer-events: none;
}

.cinematic-slide.active .cinematic-bg {
  transform: scale(1);
}

.cinematic-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0;
  padding: 0 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s ease-out 0.4s,
    transform 0.8s ease-out 0.4s;
}

.cinematic-slide.active .cinematic-content {
  opacity: 1;
  transform: translateY(0);
}

.cinematic-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content;
}

.cinematic-title {
  font-size: 5rem;
  line-height: 1.1;
  font-family: var(--font-heading);
  margin-bottom: 24px;
  /* Added stronger shadow for maximum readability */
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
  color: white;
}

.cinematic-desc {
  font-size: 1.25rem;
  max-width: 600px;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  /* Stronger text shadow */
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  line-height: 1.6;
}

/* ── Arshith Group Banner (Suntech-Inspired Branching Architecture Diagram) ── */
.group-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 30%, #053b28 0%, #022417 70%, #01140c 100%);
  overflow: hidden;
  z-index: 1;
}

.group-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.38;
  pointer-events: none;
}

.group-bg-glow.glow-emerald {
  width: 500px;
  height: 500px;
  background: #059669;
  top: -120px;
  left: 35%;
}

.group-bg-glow.glow-blue {
  width: 450px;
  height: 450px;
  background: #147b96;
  bottom: -80px;
  left: 8%;
}

.group-bg-glow.glow-amber {
  width: 420px;
  height: 420px;
  background: #d97706;
  bottom: -80px;
  right: 8%;
}

.group-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.35;
  pointer-events: none;
}

.cinematic-content.group-interactive-hero {
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
  padding: 10px 20px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.group-hero-header {
  margin-bottom: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.group-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #38bdf8;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 30px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
  }
}

.group-hero-tagline {
  font-size: 2.1rem;
  font-weight: 800;
  color: #ffffff;
  margin: 4px 0 2px 0;
  font-family: var(--font-heading);
}

.gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #a7f3d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.group-hero-main-title {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: 6px;
  color: #ffffff;
  margin: 0;
  font-family: var(--font-heading);
  text-shadow: 0 4px 25px rgba(56, 189, 248, 0.3);
}

.group-branching-wrapper {
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  position: relative;
}

.group-branching-svg {
  width: 100%;
  height: auto;
  display: block;
}

.pulse-line {
  stroke-dasharray: 8, 6;
  animation: strokeDash 20s linear infinite;
}

@keyframes strokeDash {
  to {
    stroke-dashoffset: -1000;
  }
}

.diagram-branch-node {
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.diagram-branch-node:hover {
  transform: translateY(-8px);
}

.diagram-branch-node:hover rect {
  fill: rgba(30, 41, 59, 0.95);
  stroke-width: 2.8;
}

.group-company-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  transition: opacity 0.3s ease;
}

.card-fresh::before {
  background: linear-gradient(90deg, #10b981, #34d399);
}

.card-infotech::before {
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
}

.card-suntech::before {
  background: linear-gradient(90deg, #f59e0b, #fbbf24);
}

.group-company-card:hover {
  transform: translateY(-8px);
  background: rgba(30, 41, 59, 0.85);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.card-fresh:hover {
  border-color: rgba(16, 185, 129, 0.5);
}

.card-infotech:hover {
  border-color: rgba(59, 130, 246, 0.5);
}

.card-suntech:hover {
  border-color: rgba(245, 158, 11, 0.5);
}

.card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.group-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.icon-fresh {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.icon-infotech {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.icon-suntech {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.group-card-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
}

.badge-fresh {
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
}

.badge-infotech {
  background: rgba(59, 130, 246, 0.15);
  color: #60a5fa;
}

.badge-suntech {
  background: rgba(245, 158, 11, 0.15);
  color: #fbbf24;
}

.group-company-card h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.group-company-card p {
  font-size: 0.92rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 20px;
}

.group-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  transition: all 0.2s ease;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-fresh {
  color: #34d399;
}

.btn-infotech {
  color: #60a5fa;
}

.btn-suntech {
  color: #fbbf24;
}

.group-card-btn:hover {
  gap: 12px;
  filter: brightness(1.25);
}

@media (max-width: 992px) {
  .group-companies-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .group-company-card {
    padding: 18px 14px;
  }

  .group-hero-title {
    font-size: 2.8rem;
  }

  .group-company-card h3 {
    font-size: 1.15rem;
  }

  .group-company-card p {
    font-size: 0.82rem;
  }
}

@media (max-width: 768px) {
  .group-companies-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    max-height: 340px;
    overflow-y: auto;
  }

  .group-hero-title {
    font-size: 2.2rem;
  }
}

.btn-cinematic {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: white;
  color: #1a1a1a;
  padding: 16px 36px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-cinematic:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(45, 90, 39, 0.4);
}

.cinematic-controls {
  position: absolute;
  bottom: 40px;
  right: 10%;
  z-index: 10;
  display: flex;
  gap: 16px;
}

.cinematic-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(0, 0, 0, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(5px);
}

.cinematic-arrow:hover {
  background: white;
  color: black;
  transform: scale(1.1);
}

.cinematic-indicators {
  position: absolute;
  bottom: 55px;
  left: 10%;
  z-index: 10;
  display: flex;
  gap: 12px;
}

.dot-cine {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition);
}

.dot-cine.active {
  background: var(--primary);
  width: 32px;
  border-radius: 6px;
}

@media (max-width: 900px) {
  .hero-cinematic {
    height: 75vh;
  }

  .cinematic-title {
    font-size: 3.5rem;
  }

  .cinematic-desc {
    font-size: 1.1rem;
  }

  .cinematic-controls {
    display: none;
  }
}

@media (max-width: 576px) {
  .hero-cinematic {
    height: 65vh;
  }

  .cinematic-title {
    font-size: 2.5rem;
  }

  .cinematic-content {
    padding: 0 20px;
  }
}

/* ══════════════════════════════
   Deal Tabs
══════════════════════════════ */
.deal-tabs {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.deal-tabs::-webkit-scrollbar {
  display: none;
}

.deal-tab {
  padding: 10px 24px;
  border: 1px solid var(--border);
  background: var(--bg-secondary);
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  white-space: nowrap;
  transition: var(--transition);
}

.deal-tab:hover {
  border-color: var(--primary-light);
  color: var(--primary);
}

.deal-tab.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(45, 90, 39, 0.2);
}

/* ══════════════════════════════
   Layout Extensions (New Sections)
══════════════════════════════ */
.hero-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 40px;
}

.hero-layout .banner-slider {
  height: 440px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.hero-side-banner {
  background:
    url("Background.png") center/cover,
    var(--primary);
  color: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.hero-side-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(45, 90, 39, 0.9),
      rgba(45, 90, 39, 0.7));
  z-index: 1;
}

.h-side-content {
  position: relative;
  z-index: 2;
}

.h-side-content h3 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  line-height: 1.1;
}

.h-side-content p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  font-size: 1rem;
}

.hero-side-banner img {
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 200px;
  z-index: 2;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

@media (max-width: 991px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-side-banner {
    min-height: 250px;
  }
}

/* Brands */
.brands-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.brand-item {
  filter: grayscale(100%);
  opacity: 0.6;
  transition: var(--transition);
  height: 40px;
}

.brand-item:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* Limit Products styling (Horizontal Cards) */
.limited-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.limited-card {
  display: flex;
  align-items: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  gap: 16px;
  transition: var(--transition);
}

.limited-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
  transform: translateY(-4px);
}

.limited-img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  background: var(--bg-main);
}

.limited-info {
  flex: 1;
}

.limited-info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  font-family: var(--font-body);
}

.limited-info .price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
}

/* FAQ Overlay */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  background: var(--bg-secondary);
}

.faq-header {
  padding: 16px 24px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-header i {
  transition: var(--transition);
}

.faq-item.active .faq-header i {
  transform: rotate(180deg);
}

.faq-content {
  padding: 0 24px 16px;
  color: var(--text-muted);
  display: none;
}

.faq-item.active .faq-content {
  display: block;
}

.faq-item.active .faq-header {
  color: var(--primary);
}

/* News Cards */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.news-card {
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.news-img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

.news-content {
  padding: 24px;
}

.news-date {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  display: block;
}

.news-title {
  font-size: 1.2rem;
  font-family: var(--font-heading);
  margin-bottom: 12px;
}

.news-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.news-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}

/* ══════════════════════════════
   Sticky Cart
══════════════════════════════ */
.sticky-cart-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.sticky-cart {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 32px var(--shadow-md);
  border: 1.5px solid var(--border);
  transition: var(--transition);
}

.sticky-cart:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.sticky-cart a {
  color: inherit;
  display: block;
}

.sticky-label {
  padding: 9px 18px;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}

.cart-items {
  padding: 11px 18px;
  background: var(--primary-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-main);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  /* Clean numbers */
}

.cart-items h6 {
  margin: 0;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}

.mobile-sticky-cart {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 998;
}

.mobile-cart-label {
  background: var(--primary);
  text-align: center;
  padding: 9px 18px;
  color: white;
  font-weight: 700;
  font-size: 0.78rem;
}

.mobile-cart-bar {
  background: var(--primary-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  padding: 12px 20px;
  font-size: 0.9rem;
  color: var(--text-main);
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  /* Clean numbers */
}

@media (min-width: 769px) {
  .mobile-sticky-cart {
    display: none;
  }
}

@media (max-width: 768px) {
  .sticky-cart-container {
    display: none;
  }

  body {
    padding-bottom: 80px;
  }
}

/* Mobile Responsiveness Improvements */
@media (max-width: 768px) {
  .hero-layout .banner-slider {
    height: auto;
    min-height: 480px;
  }

  h2.section-title {
    font-size: 1.8rem;
  }

  .slide-content h2 {
    font-size: 2rem !important;
  }

  .slide-inner {
    padding: 40px 20px !important;
    text-align: center;
    gap: 20px;
  }

  .slide-image img {
    max-height: 200px;
  }

  .ghee-hero-image {
    width: 250px !important;
    max-height: 250px !important;
  }

  .footer-col:first-child {
    padding-right: 0;
  }

  .slider-controls {
    display: none;
  }

  .hero-side-banner {
    padding: 24px;
    text-align: center;
    align-items: center;
  }

  .hero-side-banner img {
    position: static;
    width: 140px;
    margin-top: 16px;
    margin-right: auto;
  }
}

/* ══════════════════════════════
   Square Quote Card (Exact Style)
══════════════════════════════ */

.quote-card {
  width: 100%;
  min-height: 560px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #f8f6f6;
  overflow: hidden;
}

.quote-right {
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background: #f8f6f6;
}

.quote-text-wrapper {
  max-width: 620px;
  width: 100%;
}

.quote-top-line {
  width: 260px;
  height: 3px;
  background: #111111;
  margin-bottom: 35px;
}

.quote-statement {
  font-family: var(--font-heading), "Georgia", serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.5;
  margin: 0 0 35px 0;
  letter-spacing: -0.2px;
}

.quote-bottom-line {
  width: 100%;
  height: 3px;
  background: #111111;
  margin-bottom: 24px;
}

.quote-author-block {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  width: 100%;
}

.author-name {
  font-family: var(--font-heading), "Georgia", serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 4px;
}

.author-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #64748b;
  margin-bottom: 16px;
}

.author-btn-wrap {
  display: flex;
  justify-content: flex-end;
}

.btn-view-profile {
  display: inline-block;
  border: 1.5px solid #16a34a;
  color: #16a34a;
  font-family: var(--font-heading), "Outfit", sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 6px 24px;
  border-radius: 20px;
  text-decoration: none;
  background: transparent;
  transition: all 0.3s ease;
}

.btn-view-profile:hover {
  background: #16a34a;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(22, 163, 74, 0.3);
}

.quote-left {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.quote-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* TEXT */
.quote-text p {
  font-family: var(--font-heading);
  font-size: 26px;
  line-height: 1.7;
  color: #1e293b;

  text-indent: 55px;
}

/* QUOTE SYMBOL */

/* FOOTER (LOCK TO RIGHT EDGE OF TEXT) */
.quote-footer {
  margin-top: 55px;

  width: 100%;
  max-width: 720px;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

/* NAME */
.quote-footer h3 {
  font-size: 28px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 6px;
}

/* ROLE */
.quote-footer span {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 18px;
}

/* BUTTON */
.quote-footer .btn-outline {
  margin: 0;
  padding: 10px 26px;
  border-radius: 30px;
}

/* BUTTON already matches your system */

/* ══════════════════════════════
   Businesses Section
══════════════════════════════ */

.businesses {
  padding: 60px;
}

.business-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.business-header h2 {
  font-size: 2.5rem;
  letter-spacing: 2px;
}

/* Tabs */
.tabs span {
  margin-left: 20px;
  cursor: pointer;
  color: var(--text-muted);
  position: relative;
}

.tabs span.active {
  color: var(--primary);
}

.tabs span.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #3db256, #7c3aed);
}

/* Layout */
.business-layout {
  display: grid;
  grid-template-columns: 1.3fr 2fr 1.3fr;
  /* left थोड़ा bigger */
  gap: 20px;
}

/* LEFT GRID */
.business-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#business {
  background: linear-gradient(135deg, #f8fafc, #eef8f0);
  position: relative;
  overflow: hidden;
}

/* optional soft glow */
#business::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(61, 178, 86, 0.15);
  filter: blur(120px);
  top: -100px;
  left: -100px;
}

/* Cards */
.card {
  position: relative;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card span {
  position: absolute;
  bottom: 10px;
  left: 12px;
  color: white;
  font-size: 14px;
  z-index: 2;
}

/* Hover animation */
.card:hover img {
  transform: scale(1.1);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

/* Gradient special card */
.card.gradient {
  background: linear-gradient(135deg, #3b82f6, #9333ea);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 15px;
  color: white;
}

.card.gradient i {
  font-size: 20px;
}

/* RIGHT FEATURE */
.business-feature {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.business-feature img {
  width: 90%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

/* Zoom animation */
.business-feature:hover img {
  transform: scale(1.05);
}

/* Overlay */
.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
}

/* Tags */
.tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.tags span {
  background: rgba(0, 0, 0, 0.6);
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 13px;
  transition: var(--transition);
}

/* Tag hover animation */
.tags span:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

/* Explore link */
.overlay a {
  color: white;
  border-bottom: 1px solid white;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
  .business-layout {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════
   Leader Quote Section (Adani Style)
══════════════════════════════ */

.leader-section {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.leader-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

/*animation*/

/* Image Side */
.leader-image {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content Side */
.leader-content {
  padding: 20px;
}

/* Quote Box */
.leader-quote-box {
  position: relative;
  padding-left: 24px;
  margin-bottom: 40px;
  border-left: 4px solid var(--text-main);
}

.leader-quote-box p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--text-main);
  max-width: 600px;
}

/* Speech Tail */
.leader-quote-box::after {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 60px;
  border: 10px solid transparent;
  border-top-color: var(--text-main);
}

/* Info */
.leader-info h2 {
  font-size: 1.8rem;
  margin-bottom: 6px;
}

.leader-info span {
  display: block;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Responsive */
@media (max-width: 991px) {
  .leader-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .leader-content {
    text-align: center;
  }

  .leader-quote-box {
    border-left: none;
    padding-left: 0;
  }

  .leader-quote-box::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ══════════════════════════════
   PREMIUM SCROLL ANIMATION (Adani Style)
══════════════════════════════ */

/* ══════════════════════════════
   GLOBAL SMOOTH SETTINGS
══════════════════════════════ */
html {
  scroll-behavior: smooth;
}

* {
  transition: all 0.3s ease;
}

/* ══════════════════════════════
   SCROLL REVEAL BASE
══════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition: all 0.8s cubic-bezier(0.2, 0.65, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Direction Animations */
.reveal-left {
  transform: translateX(-80px);
}

.reveal-right {
  transform: translateX(80px);
}

.reveal-zoom {
  transform: scale(0.85);
}

.reveal.active.reveal-left,
.reveal.active.reveal-right,
.reveal.active.reveal-zoom {
  transform: translate(0) scale(1);
}

/* ══════════════════════════════
   CARD HOVER EFFECT
══════════════════════════════ */
.card,
.news-card,
.ag-career-card {
  transition: all 0.4s ease;
}

.card:hover,
.news-card:hover,
.ag-career-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Image zoom inside cards */
.card img,
.news-img {
  transition: transform 0.6s ease;
}

.card:hover img,
.news-card:hover img {
  transform: scale(1.1);
}

/* ══════════════════════════════
   BUTTON ANIMATION
══════════════════════════════ */
.btn,
.btn-cinematic,
.btn-premium-solid {
  transition: all 0.3s ease;
}

.btn:hover,
.btn-cinematic:hover,
.btn-premium-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0);
}

/* ══════════════════════════════
   HERO CINEMATIC EFFECT
══════════════════════════════ */
.cinematic-bg {
  animation: zoomBg 10s ease-in-out infinite alternate;
}

@keyframes zoomBg {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

.cinematic-content {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ══════════════════════════════
   FLOATING LOGO ANIMATION
══════════════════════════════ */
.slide-img {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* ══════════════════════════════
   QUOTE SECTION ANIMATION
══════════════════════════════ */
.quote-card {
  transition: all 0.5s ease;
}

.quote-card:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* ══════════════════════════════
   BUSINESS FEATURE HOVER
══════════════════════════════ */
.business-feature img {
  transition: transform 1s ease;
}

.business-feature:hover img {
  transform: scale(1.05);
}

/* Overlay smooth */
.overlay {
  transition: all 0.5s ease;
}

.business-feature:hover .overlay {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

/* ══════════════════════════════
   CAREER CARDS EFFECT
══════════════════════════════ */
.ag-career-card {
  transition: all 0.4s ease;
}

.ag-career-card:hover {
  transform: translateY(-8px) scale(1.03);
}

.ag-career-overlay {
  transition: opacity 0.4s ease;
}

.ag-career-card:hover .ag-career-overlay {
  opacity: 0.7;
}

.ag-career-body h4,
i {
  color: whitesmoke;
}

/* ══════════════════════════════
   HEADER SCROLL EFFECT
══════════════════════════════ */
.ag-header {
  transition: all 0.3s ease;
}

.ag-header--scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}



/* ══════════════════════════════
   FORM INPUT EFFECT
══════════════════════════════ */
.ag-form-group input,
.ag-form-group textarea,
.ag-form-group select {
  transition: all 0.3s ease;
}

.ag-form-group input:focus,
.ag-form-group textarea:focus,
.ag-form-group select:focus {
  border-color: #3db256;
  box-shadow: 0 0 0 3px rgba(61, 178, 86, 0.2);
}

/* ══════════════════════════════
   FADE IN PAGE LOAD
══════════════════════════════ */
body {
  animation: pageFade 0.8s ease;
}

@keyframes pageFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ══════════════════════════════
   MOBILE RESPONSIVENESS (ADDED FIXES)
══════════════════════════════ */
@media (max-width: 900px) {

  /* Quote Card fixes */
  .quote-card {
    height: auto;
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column-reverse;
  }

  .quote-left {
    height: 310px;
    min-height: 310px;
    max-height: 310px;
    overflow: hidden;
  }

  .quote-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
  }

  .quote-right {
    padding: 40px 20px;
  }

  .quote-text p {
    font-size: 1.25rem;
    line-height: 1.5;
    text-indent: 40px;
  }

  .quote-text p::before {
    font-size: 50px;
    top: -5px;
  }

  .quote-footer {
    margin-top: 60px;
    align-items: center;
    text-align: center;
  }

  .quote-footer h3 {
    font-size: 22px;
  }

  /* Businesses fixes */
  .businesses {
    padding: 40px 20px;
  }

  .business-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .business-header h2 {
    font-size: 2rem;
  }

  .tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }

  .tabs span {
    margin-left: 0;
    margin-right: 15px;
  }

  .business-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* News section fixes */
  .section-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
  }

  .section-header .section-title {
    font-size: 1.5rem;
  }

  .section-header .btn {
    padding: 8px 15px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  .news-grid {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

/* Footer layout updates */
@media (min-width: 901px) {
  .ag-footer-cols {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
  }
}

/* --- Partner with Arshith AI Tech Section --- */
.partner-ai-section {
  --yass-queen: #ff1d58;
  --sister-sister: #f75990;
  --crown-yellow: #fff685;
  --blue-light: #00ddff;
  --text-light: #ffffff;
  --text-muted: #cbd5e1;
  --bg-color: #f8fafc;
  --glass-border: rgba(255, 255, 255, 0.08);

  padding: 0;
  aspect-ratio: 16 / 9;
  height: auto;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--glass-border);
}

.partner-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.partner-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.partner-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(248, 250, 252, 0.25) 0%,
      transparent 6%,
      transparent 94%,
      rgba(248, 250, 252, 0.25) 100%);
}

.partner-ai-container {
  max-width: 900px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.partner-ai-glass-card {
  background: linear-gradient(135deg,
      rgba(2, 6, 23, 0.88),
      rgba(2, 6, 23, 0.8));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 32px;
  padding: 4.5rem 3.5rem;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1.2s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.5s ease;
}

.partner-ai-section.video-first-loop-complete .partner-ai-glass-card {
  opacity: 1;
  transform: translateY(0);
}

.partner-ai-glass-card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(255, 255, 255, 0.15);
}

.partner-ai-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--text-light);
}

.partner-ai-title .highlight {
  background: linear-gradient(135deg, #ffffff, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.animated-ai-text {
  position: relative;
  display: inline-block;
  padding: 0 8px;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(120deg, #00ddff, #ff1d58, #fff685, #00ddff);
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation:
    gradientShine 4s linear infinite,
    neonPulse 2s ease-in-out infinite alternate;
}

.animated-ai-text::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #00ddff, #ff1d58, #fff685);
  background-size: 200% auto;
  border-radius: 2px;
  animation: gradientShine 4s linear infinite;
  opacity: 0.8;
}

@keyframes gradientShine {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes neonPulse {
  0% {
    filter: drop-shadow(0 0 2px rgba(0, 221, 255, 0.4)) drop-shadow(0 0 4px rgba(255, 29, 88, 0.2));
  }

  100% {
    filter: drop-shadow(0 0 6px rgba(0, 221, 255, 0.8)) drop-shadow(0 0 12px rgba(255, 29, 88, 0.6)) drop-shadow(0 0 16px rgba(255, 246, 133, 0.4));
  }
}

.partner-ai-desc {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 3rem;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.partner-ai-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.partner-ai-section .tracking-tag {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blue-light);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.btn-contact {
  background: linear-gradient(135deg, var(--yass-queen), var(--sister-sister));
  color: #ffffff;
  padding: 0.65rem 1.75rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px 0 rgba(255, 29, 88, 0.3);
  display: inline-block;
  border: none;
}

.btn-contact:hover {
  box-shadow: 0 6px 20px rgba(255, 29, 88, 0.5);
  transform: translateY(-2px);
  filter: brightness(1.1);
}

/* Animated footer elements */
.ag-footer .footer_bg {
  position: absolute;
  bottom: 0;
  left: 0;
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEigB8iI5tb8WSVBuVUGc9UjjB8O0708X7Fdic_4O1LT4CmLHoiwhanLXiRhe82yw0R7LgACQ2IhZaTY0hhmGi0gYp_Ynb49CVzfmXtYHUVKgXXpWvJ_oYT8cB4vzsnJLe3iCwuzj-w6PeYq_JaHmy_CoGoa6nw0FBo-2xLdOPvsLTh_fmYH2xhkaZ-OGQ/s16000/footer_bg.png") no-repeat scroll center bottom;
  width: 100%;
  height: 266px;
  opacity: 0.85;
  z-index: 1;
  pointer-events: none;
}

.ag-footer .footer_bg .footer_bg_one {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia0PYPxwT5ifToyP3SNZeQWfJEWrUENYA5IXM6sN5vLwAKvaJS1pQVu8mOFFUa_ET4JuHNTFAxKURFerJYHDUWXLXl1vDofYXuij45JZelYOjEFoCOn7E6Vxu0fwV7ACPzArcno1rYuVxGB7JY6G7__e4_KZW4lTYIaHSLVaVLzklZBLZnQw047oq5-Q/s16000/volks.gif") no-repeat center center;
  width: 330px;
  height: 105px;
  background-size: 100%;
  position: absolute;
  bottom: 0;
  left: 30%;
  animation: myfirst 15s linear infinite;
}

.ag-footer .footer_bg .footer_bg_two {
  background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyLGwEUVwPK6Vi8xXMymsc-ZXVwLWyXhogZxbcXQYSY55REw_0D4VTQnsVzCrL7nsyjd0P7RVOI5NKJbQ75koZIalD8mqbMquP20fL3DxsWngKkOLOzoOf9sMuxlbyfkIBTsDw5WFUj-YJiI50yzgVjF8cZPHhEjkOP_PRTQXDHEq8AyWpBiJdN9SfQA/s16000/cyclist.gif") no-repeat center center;
  width: 88px;
  height: 100px;
  background-size: 100%;
  bottom: 0;
  left: 38%;
  position: absolute;
  animation: myfirst 22s linear infinite;
}

@keyframes myfirst {
  0% {
    left: -25%;
  }

  100% {
    left: 100%;
  }
}

/* Animated car rooftop corporate logo sign */
.car-logo {
  position: absolute;
  top: 5px;
  left: 45%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 800;
  color: #ffffff !important;
  background: linear-gradient(135deg,
      #3db256,
      #f75990);
  /* matches FinalAG primary green */
  padding: 2px 7px;
  border-radius: 12px;
  border: 1.5px solid #263b5e;
  box-shadow: 0 0 10px rgba(61, 178, 86, 0.5);
  white-space: nowrap;
  letter-spacing: 0.5px;
  font-family: "Inter", sans-serif;
  pointer-events: none;
  z-index: 2;
  animation: signGlow 2s ease-in-out infinite alternate;
}

.car-logo::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px 3.5px 0;
  border-style: solid;
  border-color: #263b5e transparent;
  display: block;
  width: 0;
}

.car-logo span {
  color: #00ddff;
}

@keyframes signGlow {
  0% {
    box-shadow: 0 0 6px rgba(61, 178, 86, 0.4);
  }

  100% {
    box-shadow:
      0 0 14px rgba(61, 178, 86, 0.8),
      0 0 4px #00ddff;
  }
}

/* Animated cyclist speech bubble / banner */
.cyclist-logo {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  font-weight: 800;
  color: #ffffff !important;
  background: linear-gradient(135deg, #00ddff, #2563eb);
  padding: 2px 7px;
  border-radius: 8px;
  border: 1px solid #263b5e;
  box-shadow: 0 0 8px rgba(0, 221, 255, 0.3);
  white-space: nowrap;
  letter-spacing: 0.5px;
  font-family: "Inter", sans-serif;
  pointer-events: none;
  z-index: 2;
  animation: cyclistGlow 2s ease-in-out infinite alternate;
}

.cyclist-logo::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 4px 3px 0;
  border-style: solid;
  border-color: #263b5e transparent;
  display: block;
  width: 0;
}

@keyframes cyclistGlow {
  0% {
    box-shadow: 0 0 4px #00ddff;
  }

  100% {
    box-shadow:
      0 0 12px #00ddff,
      0 0 4px #3db256;
  }
}

/* ══════════════════════════════════════════════════════════════════
   HIGH-EFFECTIVE CONTACT INFO CARDS & PERFECT-GRID QUOTE CARD
══════════════════════════════════════════════════════════════════ */

/* 1. Contact Info Cards */
.ag-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ag-info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  padding: 22px 26px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.ag-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
  border-color: #cbd5e1;
}

.ag-info-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: #ffffff !important;
  flex-shrink: 0;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.ag-info-icon-box.icon-location {
  background: linear-gradient(135deg, #2563eb, #1d4ed8) !important;
}

.ag-info-icon-box.icon-phone {
  background: linear-gradient(135deg, #16a34a, #15803d) !important;
}

.ag-info-icon-box.icon-email {
  background: linear-gradient(135deg, #ea580c, #c2410c) !important;
}

.ag-info-icon-box.icon-clock {
  background: linear-gradient(135deg, #9333ea, #7e22ce) !important;
}

.ag-info-content h4 {
  margin: 0 0 6px 0;
  font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 1.12rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  letter-spacing: -0.2px;
}

.ag-info-content p,
.ag-info-content a {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
  font-size: 0.95rem !important;
  color: #475569 !important;
  line-height: 1.5;
  text-decoration: none;
}

.ag-info-content a:hover {
  color: #2563eb !important;
  text-decoration: underline !important;
}

/* Mobile Responsiveness for Careers / Join Us & Contact Section */
@media (max-width: 992px) {
  .ag-careers-head {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 16px !important;
    margin-bottom: 28px !important;
  }

  .ag-careers-head .ag-btn,
  .ag-careers-head a {
    align-self: flex-start !important;
  }

  .ag-contact-container {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    width: 100% !important;
  }

  .ag-contact-info-list {
    width: 100% !important;
  }

  .ag-info-card {
    padding: 16px 18px !important;
    width: 100% !important;
  }

  .ag-contact-form .ag-form-row {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .ag-contact-form-wrap {
    padding: 24px 18px !important;
    border-radius: 18px !important;
    width: 100% !important;
  }
}

@media (max-width: 600px) {
  .ag-contact {
    padding: 50px 0 !important;
  }

  .ag-contact .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .ag-contact-form-wrap {
    padding: 20px 14px !important;
    border-radius: 16px !important;
  }

  .ag-contact-heading {
    margin-bottom: 30px !important;
  }

  .ag-contact-title {
    font-size: 2.1rem !important;
  }
}

/* ── PARTNER WITH ARSHITH AI TECH BANNER SECTION ── */
.partner-ai-section {
  padding: 70px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.partner-ai-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.partner-ai-banner-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.15);
  max-height: 480px;
}

.partner-ai-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.partner-ai-banner-wrap:hover .partner-ai-img {
  transform: scale(1.03);
}

.partner-ai-content-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9, 13, 22, 0.88) 0%, rgba(9, 13, 22, 0.55) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 50px 60px;
  color: #ffffff;
}

.ai-badge {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 6px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ai-title {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.gradient-cyan {
  background: linear-gradient(135deg, #38bdf8 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ai-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 480px;
  line-height: 1.6;
  margin-bottom: 26px;
}

.ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #0284c7 0%, #2563eb 100%);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 30px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(2, 132, 199, 0.4);
  transition: all 0.3s ease;
}

.ai-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(2, 132, 199, 0.6);
  background: linear-gradient(135deg, #0369a1 0%, #1d4ed8 100%);
}

/* ══════════════════════════════════════════════════════════════
   Companies Section - Multi-Color Dynamic Background Theme
   ══════════════════════════════════════════════════════════════ */
.home-company-section {
  position: relative;
  padding: 110px 0 120px 0;
  background: radial-gradient(circle at 50% 30%, #0d1e3d 0%, #070e1e 70%, #040814 100%);
  color: #ffffff;
  overflow: hidden;
}

.company-bg-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.comp-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(65px);
  opacity: 0.85;
}

.glow-cyan {
  width: 650px;
  height: 650px;
  top: -150px;
  left: 15%;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.55) 0%, rgba(3, 105, 161, 0.25) 55%, transparent 75%);
  animation: floatAurora1 10s ease-in-out infinite alternate;
}

.glow-emerald {
  width: 550px;
  height: 550px;
  bottom: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.55) 0%, rgba(4, 120, 87, 0.22) 55%, transparent 75%);
  animation: floatAurora2 12s ease-in-out infinite alternate;
}

.glow-amber {
  width: 550px;
  height: 550px;
  bottom: -100px;
  right: -80px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.55) 0%, rgba(180, 83, 9, 0.22) 55%, transparent 75%);
  animation: floatAurora3 14s ease-in-out infinite alternate;
}

.glow-violet {
  width: 500px;
  height: 500px;
  top: 30%;
  left: 40%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.45) 0%, transparent 70%);
  animation: floatAurora1 8s ease-in-out infinite alternate;
}

@keyframes floatAurora1 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.12); }
  100% { transform: translate(-30px, 20px) scale(0.95); }
}

@keyframes floatAurora2 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, -40px) scale(1.18); }
  100% { transform: translate(40px, -20px) scale(1); }
}

@keyframes floatAurora3 {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(30px, -30px) scale(1.15); }
  100% { transform: translate(-40px, 30px) scale(0.92); }
}

/* Floating Animated Light Orbs */
.floating-orbs .orb {
  position: absolute;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 15px currentColor;
  animation: riseOrb 9s linear infinite;
  opacity: 0;
}

.orb-1 { width: 6px; height: 6px; left: 15%; color: #38bdf8; animation-duration: 11s; animation-delay: 0s; }
.orb-2 { width: 8px; height: 8px; left: 40%; color: #34d399; animation-duration: 13s; animation-delay: 2s; }
.orb-3 { width: 5px; height: 5px; left: 70%; color: #fbbf24; animation-duration: 10s; animation-delay: 4s; }
.orb-4 { width: 7px; height: 7px; left: 88%; color: #a78bfa; animation-duration: 14s; animation-delay: 1s; }

@keyframes riseOrb {
  0% { transform: translateY(600px) scale(0.5); opacity: 0; }
  30% { opacity: 0.8; }
  80% { opacity: 0.8; }
  100% { transform: translateY(-100px) scale(1.2); opacity: 0; }
}

.comp-bg-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}

.home-company-section .section-heading {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.home-company-section .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #38bdf8;
  margin-bottom: 12px;
  background: rgba(56, 189, 248, 0.12);
  padding: 7px 20px;
  border-radius: 20px;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.comp-main-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.8px;
}

.gradient-text-multi {
  background: linear-gradient(135deg, #38bdf8 0%, #34d399 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.home-company-showcase {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.companies-branching-card {
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: 30px;
  padding: 40px 30px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.6), 0 0 50px rgba(56, 189, 248, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.companies-branching-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 45px 110px rgba(0, 0, 0, 0.7), 0 0 65px rgba(56, 189, 248, 0.3);
  border-color: rgba(56, 189, 248, 0.45);
}

/* ══════════════════════════════════════════════════════════════
   JOIN US / CAREERS SECTION (HIGH IMPACT SHOWCASE)
   ══════════════════════════════════════════════════════════════ */
.ag-careers {
  padding: 110px 0 100px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.joinus-bg-glows {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.glow-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.glow-1 {
  width: 450px;
  height: 450px;
  top: -100px;
  left: -100px;
  background: rgba(37, 99, 235, 0.07);
}

.glow-2 {
  width: 500px;
  height: 500px;
  bottom: -150px;
  right: -100px;
  background: rgba(56, 189, 248, 0.08);
}

.joinus-hero-wrap {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.joinus-left-content {
  position: relative;
  z-index: 2;
  padding-right: 20px;
}

.joinus-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  background: rgba(37, 99, 235, 0.08);
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.joinus-accent-line {
  width: 36px;
  height: 3.5px;
  background: #2563eb;
  margin: 14px 0 20px 0;
  border-radius: 2px;
}

.joinus-main-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 22px;
}

.highlight-blue {
  color: #2563eb;
}

.gradient-text-blue {
  background: linear-gradient(135deg, #2563eb 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.joinus-subtitle {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.joinus-desc {
  font-size: 1.05rem;
  color: #475569;
  line-height: 1.68;
  max-width: 510px;
  margin-bottom: 32px;
}

.joinus-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 35px;
}

.joinus-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #0b1329;
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 15px 34px;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(11, 19, 41, 0.28);
  transition: all 0.3s ease;
}

.joinus-btn-primary:hover {
  background: #1e40af;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(30, 64, 175, 0.4);
  color: #ffffff;
}

.joinus-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f1f5f9;
  color: #0f172a;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 15px 28px;
  border-radius: 30px;
  text-decoration: none;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.joinus-btn-secondary:hover {
  background: #e2e8f0;
  color: #2563eb;
  transform: translateY(-2px);
}

.joinus-dot-matrix {
  display: grid;
  grid-template-columns: repeat(4, 8px);
  gap: 10px;
  margin-top: 10px;
  opacity: 0.5;
}

.joinus-dot-matrix span {
  width: 5px;
  height: 5px;
  background: #2563eb;
  border-radius: 50%;
  display: block;
}

/* RIGHT IMAGE CARD */
.joinus-right-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 460px;
  display: flex;
  justify-content: flex-end;
}

.joinus-img-mask {
  width: 100%;
  height: 460px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 25px 65px rgba(15, 23, 42, 0.16);
  position: relative;
}

.joinus-team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.joinus-img-mask:hover .joinus-team-img {
  transform: scale(1.05);
}

.joinus-img-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(9, 14, 26, 0.6) 100%);
  pointer-events: none;
}

.glass-floating-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.badge-icon-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 6px 15px rgba(37, 99, 235, 0.4);
}

.badge-text-wrap {
  display: flex;
  flex-direction: column;
}

.badge-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  color: #ffffff;
}

.badge-sub {
  font-size: 0.75rem;
  color: #94a3b8;
  font-weight: 500;
}

/* CENTER FLOATING DARK STATS BANNER CARD */
.joinus-stats-card {
  background: #090e1a;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: 22px;
  padding: 34px 44px;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  box-shadow: 0 25px 65px rgba(9, 14, 26, 0.32);
  margin-bottom: 50px;
  position: relative;
  z-index: 3;
}

.stat-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-col:hover {
  transform: translateY(-2px);
}

.stat-icon-wrap {
  color: #38bdf8;
  font-size: 1.7rem;
  margin-bottom: 8px;
  filter: drop-shadow(0 4px 10px rgba(56, 189, 248, 0.3));
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
}

.stat-divider {
  width: 1px;
  height: 52px;
  background: rgba(255, 255, 255, 0.12);
}

/* FEATURE CARDS HEADER & GRID */
.joinus-features-header {
  text-align: center;
  margin-bottom: 35px;
}

.features-eyebrow {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: #2563eb;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}

.features-title {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 800;
  color: #0f172a;
}

.joinus-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.joinus-value-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.04);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.joinus-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(37, 99, 235, 0.12);
  border-color: rgba(37, 99, 235, 0.3);
}

.value-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.value-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.badge-blue {
  background: rgba(37, 99, 235, 0.12) !important;
  color: #2563eb !important;
}

.badge-emerald {
  background: rgba(16, 185, 129, 0.12) !important;
  color: #059669 !important;
}

.badge-amber {
  background: rgba(245, 158, 11, 0.12) !important;
  color: #d97706 !important;
}

.badge-purple {
  background: rgba(147, 51, 234, 0.12) !important;
  color: #7c3aed !important;
}

.badge-blue i { color: #2563eb !important; opacity: 1 !important; }
.badge-emerald i { color: #059669 !important; opacity: 1 !important; }
.badge-amber i { color: #d97706 !important; opacity: 1 !important; }
.badge-purple i { color: #7c3aed !important; opacity: 1 !important; }

.card-count-badge {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  background: #f1f5f9;
  color: #2563eb !important;
  border: 1px solid #e2e8f0;
}

.badge-green { color: #059669 !important; background: #ecfdf5 !important; }
.badge-orange { color: #d97706 !important; background: #fffbebfb !important; }
.badge-violet { color: #7c3aed !important; background: #f5f3ff !important; }

.value-card-info h4 {
  font-family: var(--font-heading);
  font-size: 1.22rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  margin-bottom: 8px;
  text-shadow: none !important;
}

.value-card-info p {
  font-size: 0.92rem !important;
  color: #475569 !important;
  font-weight: 500 !important;
  line-height: 1.55 !important;
  margin-bottom: 20px;
}

.card-action-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  color: #2563eb !important;
  transition: gap 0.3s ease;
}

.joinus-value-card:hover .card-action-link {
  gap: 12px;
  color: #1d4ed8 !important;
}

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS & TEXT CLARITY BOOST FOR JOIN US
   ══════════════════════════════════════════════════════════════ */
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.glass-floating-badge {
  animation: floatBadge 4s ease-in-out infinite;
}

.joinus-desc {
  font-size: 1.08rem !important;
  color: #1e293b !important;
  font-weight: 500 !important;
  line-height: 1.7 !important;
  max-width: 520px;
  margin-bottom: 32px;
}

.joinus-subtitle {
  font-family: var(--font-heading);
  font-size: 2.35rem !important;
  font-weight: 800 !important;
  color: #0f172a !important;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

/* JOIN US VISIBILITY & HOVER ANIMATIONS */
.ag-careers .joinus-hero-wrap,
.ag-careers .joinus-stats-card,
.ag-careers .joinus-features-header,
.ag-careers .joinus-value-card {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
}

/* ══════════════════════════════════════════════════════════════
   MOBILE & TABLET RESPONSIVE OVERRIDES (OUR JOURNEY, JOIN US & CONTACT US)
   ══════════════════════════════════════════════════════════════ */

/* TABLET BREAKPOINT (max-width: 992px) */
@media (max-width: 992px) {
  /* Contact Us 1-Column Stack */
  .ag-contact-container {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  
  .ag-contact-form-wrap {
    padding: 28px 20px !important;
  }

  /* Join Us Stats Card */
  .joinus-stats-card {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 24px !important;
  }
  .stat-divider {
    display: none !important;
  }

  /* Join Us Values Grid */
  .joinus-values-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  /* Our Journey Stepper */
  .roadmap-steps-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
}

/* MOBILE PHONES (max-width: 768px) */
@media (max-width: 768px) {
  /* ── 0. GROUP BRANCHING DIAGRAM MOBILE ENLARGEMENT ── */
  /*.group-branching-wrapper {*/
  /*  overflow-x: auto !important;*/
  /*  -webkit-overflow-scrolling: touch !important;*/
  /*  width: 100% !important;*/
  /*  padding-bottom: 12px !important;*/
  /*}*/

  /*.group-branching-svg {*/
  /*  min-width: 750px !important;*/
  /*  width: 100% !important;*/
  /*  height: auto !important;*/
  /*  display: block !important;*/
  /*}*/
  
  /* ==========================================================
   GROUP BRANCHING DIAGRAM
   MOBILE ONLY
   FIT FULL DIAGRAM - NO HORIZONTAL SCROLL
   ========================================================== */

@media only screen and (max-width: 768px) {

    /* Prevent the page itself from moving left/right */
    html,
    body {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Diagram wrapper */
    .group-branching-wrapper {
        display: block !important;

        width: 100vw !important;
        max-width: 100vw !important;

        min-width: 0 !important;

        margin-left: 0 !important;
        margin-right: 0 !important;

        padding: 0 !important;

        overflow: hidden !important;

        box-sizing: border-box !important;
    }

    /* SVG */
    .group-branching-wrapper .group-branching-svg {
        display: block !important;

        width: 100vw !important;
        max-width: 100vw !important;
        min-width: 0 !important;

        height: auto !important;

        margin: 0 !important;
        padding: 0 !important;

        box-sizing: border-box !important;

        overflow: hidden !important;
    }
}


/* ==========================================================
   MOBILE PHONES
   ========================================================== */

@media only screen and (max-width: 480px) {

    html,
    body {
        overflow-x: hidden !important;
    }

    .group-branching-wrapper {
        width: 100vw !important;
        max-width: 100vw !important;

        overflow: hidden !important;

        padding: 0 !important;
        margin: 0 !important;
    }

    .group-branching-wrapper .group-branching-svg {
        width: 100vw !important;
        max-width: 100vw !important;
        min-width: 0 !important;

        height: auto !important;

        display: block !important;
    }
}


/* ==========================================================
   VERY SMALL PHONES
   ========================================================== */

@media only screen and (max-width: 360px) {

    .group-branching-wrapper {
        width: 100vw !important;
        max-width: 100vw !important;

        overflow: hidden !important;
    }

    .group-branching-wrapper .group-branching-svg {
        width: 100vw !important;
        max-width: 100vw !important;
        min-width: 0 !important;

        height: auto !important;
    }
}

  /* ── 1. OUR JOURNEY SECTION MOBILE ── */
  .mountain-journey-section {
    padding: 60px 0 !important;
  }

  .mountain-journey-hero {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
  }

  .journey-gold-eyebrow {
    font-size: 1.15rem !important;
    letter-spacing: 2.5px !important;
    font-weight: 900 !important;
  }

  .journey-editorial-title {
    font-size: 1.45rem !important;
    line-height: 1.3 !important;
  }

  .journey-editorial-desc {
    font-size: 0.78rem !important;
    line-height: 1.5 !important;
  }

  .mountain-hero-graphic {
    width: 100% !important;
    height: auto !important;
    min-height: 280px !important;
    max-height: 480px !important;
    border-radius: 18px !important;
    overflow: hidden !important;
  }

  .mountain-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    display: block !important;
    transform: scale(1.06) !important;
  }

  .mountain-roadmap-wrapper {
    margin-top: 30px !important;
    padding: 10px 0 !important;
  }

  .roadmap-track-line {
    display: none !important;
  }

  .roadmap-steps-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .roadmap-step-item {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 20px 18px !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.04) !important;
    text-align: left !important;
  }

  .roadmap-year {
    font-size: 1.05rem !important;
    font-weight: 800 !important;
    color: #b45309 !important;
  }

  .roadmap-step-title {
    font-size: 1.05rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    margin: 6px 0 4px !important;
  }

  .roadmap-step-desc {
    font-size: 0.72rem !important;
    color: #64748b !important;
    line-height: 1.4 !important;
  }

  .mountain-banner-card {
    flex-direction: column !important;
    gap: 20px !important;
    text-align: center !important;
    padding: 24px 16px !important;
    border-radius: 20px !important;
  }

  .banner-values-col {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* ── 2. JOIN US SECTION MOBILE ── */
  .ag-careers {
    padding: 60px 0 !important;
  }

  .joinus-hero-wrap {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .joinus-main-title {
    font-size: 2.5rem !important;
  }

  .joinus-subtitle {
    font-size: 1.65rem !important;
    line-height: 1.25 !important;
    margin-bottom: 16px !important;
  }

  .joinus-desc {
    font-size: 0.96rem !important;
    line-height: 1.6 !important;
    margin-bottom: 24px !important;
  }

  .joinus-cta-group {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
    margin-bottom: 24px !important;
  }

  .joinus-btn-primary, .joinus-btn-secondary {
    width: 100% !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 14px 20px !important;
  }

  .joinus-right-img-wrap {
    min-height: auto !important;
    height: 260px !important;
  }

  .joinus-img-mask {
    height: 260px !important;
    border-radius: 20px !important;
  }

  .joinus-stats-card {
    grid-template-columns: 1fr 1fr !important;
    gap: 20px 10px !important;
    padding: 24px 16px !important;
    border-radius: 18px !important;
  }

  .stat-number {
    font-size: 1.45rem !important;
  }

  .stat-label {
    font-size: 0.78rem !important;
  }

  .joinus-values-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .joinus-value-card {
    padding: 22px 18px !important;
    border-radius: 18px !important;
  }

  /* ── 3. CONTACT US SECTION MOBILE ── */
  .ag-contact {
    padding: 60px 0 !important;
  }

  .ag-contact-heading {
    margin-bottom: 30px !important;
  }

  .ag-contact-title {
    font-size: 2rem !important;
    margin-bottom: 10px !important;
  }

  .ag-contact-sub {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
  }

  .ag-contact-info-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .ag-info-card {
    padding: 18px !important;
    border-radius: 16px !important;
  }

  .ag-form-row {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .ag-form-group input,
  .ag-form-group select,
  .ag-form-group textarea {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .ag-form-btn {
    width: 100% !important;
    justify-content: center !important;
  }
}

/* ============================================================
   WHY ARSHITH GROUP SECTION (PREMIUM DARK CYBER THEME)
   ============================================================ */
.why-arshith-section {
  position: relative;
  padding: 95px 0;
  background: radial-gradient(circle at 50% 30%, #0f172a 0%, #080e1a 70%, #030712 100%) !important;
  color: #ffffff !important;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  scroll-margin-top: 90px;
}

.why-arshith-section::before {
  content: '';
  position: absolute;
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.16) 0%, rgba(16, 185, 129, 0.06) 50%, transparent 80%);
  pointer-events: none;
  z-index: 1;
}

.why-arshith-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.why-arshith-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.why-arshith-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 30px;
  background: rgba(56, 189, 248, 0.15) !important;
  border: 1.5px solid rgba(56, 189, 248, 0.4) !important;
  color: #38bdf8 !important;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 18px;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.25);
}

.why-arshith-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.why-arshith-title .gradient-text {
  background: linear-gradient(135deg, #38bdf8 0%, #34d399 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-arshith-subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #94a3b8 !important;
  margin: 0 auto;
}

.why-arshith-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.why-arshith-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(9, 14, 26, 0.98) 100%) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 26px;
  padding: 38px 32px;
  position: relative;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.why-arshith-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--card-accent, #38bdf8), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-arshith-card:hover {
  transform: translateY(-10px);
  border-color: var(--card-accent, #38bdf8) !important;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.7), 0 0 35px var(--icon-glow, rgba(56, 189, 248, 0.3)) !important;
}

.why-arshith-card:hover::before {
  opacity: 1;
}

.why-arshith-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.why-arshith-icon-box {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  background: var(--icon-bg, rgba(56, 189, 248, 0.2)) !important;
  border: 1.5px solid var(--icon-border, rgba(56, 189, 248, 0.5)) !important;
  color: var(--icon-color, #38bdf8) !important;
  box-shadow: 0 8px 22px var(--icon-glow, rgba(56, 189, 248, 0.3));
  transition: all 0.35s ease;
}

.why-arshith-icon-box i {
  color: var(--icon-color, #38bdf8) !important;
  font-size: 1.75rem !important;
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.why-arshith-card:hover .why-arshith-icon-box {
  transform: scale(1.12) rotate(4deg);
  background: var(--icon-border, #38bdf8) !important;
  color: #ffffff !important;
}

.why-arshith-card:hover .why-arshith-icon-box i {
  color: #ffffff !important;
}

.why-arshith-card-tag {
  font-family: 'Outfit', sans-serif;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: var(--card-accent, #38bdf8) !important;
}

.why-arshith-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.38rem;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 12px;
  line-height: 1.3;
}

.why-arshith-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 0.96rem;
  line-height: 1.68;
  color: #cbd5e1 !important;
  margin: 0;
}

@media (max-width: 992px) {
  .why-arshith-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }
}

@media (max-width: 640px) {
  .why-arshith-grid {
    grid-template-columns: 1fr;
  }
  .why-arshith-title {
    font-size: 2rem;
  }
  .why-arshith-card {
    padding: 28px 24px;
  }
}
