@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 {
}

/* 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%);
  }
}

/* TIMELINE SECTION STYLES (Exact match from newindex.html) */
.timeline-section {
  padding: 30px 8%;
  padding-bottom: 70px;
  background: #ffffff;
  color: #0f172a;
  position: relative;
  overflow: hidden;
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
}

.timeline-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 100px auto;
}

.timeline-eyebrow {
  font-family: var(--font-heading), "Outfit", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #2563eb;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: block;
}

.timeline-title {
  font-family: var(--font-heading), "Outfit", sans-serif;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #0f172a;
}

.timeline-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
}

/* Timeline Path */
.timeline-path {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

/* Vertical background line */
.bg-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 4px;
}

/* Dynamic progress line */
.progress-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 0%;
  background: linear-gradient(180deg, #2563eb, #3b82f6);
  border-radius: 4px;
  transform-origin: top;
  z-index: 2;
}

/* Milestone Item */
.milestone-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  margin-bottom: 40px;
  align-items: center;
}

.milestone-item:last-child {
  margin-bottom: 0;
}

/* Left & Right layouts */
.left-side {
  text-align: right;
}

.left-side .timeline-card {
  grid-column: 1;
  justify-self: end;
  margin-right: 60px;
}

.right-side {
  text-align: left;
}

.right-side .timeline-card {
  grid-column: 2;
  justify-self: start;
  margin-left: 60px;
}

/* Timeline Center Node */
.node-wrapper {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid #2563eb;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease; /* Fix GSAP conflict */
}

/* Milestone Card */
.timeline-card {
  width: 85%;
  background: #f8fafc;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
  position: relative;
  z-index: 3;
  opacity: 0; /* Hidden initially, triggered by ScrollTrigger */
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease;
}

.timeline-card:hover {
  border-color: #2563eb;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06);
}

.timeline-year {
  font-family: var(--font-heading), "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #2563eb;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
  letter-spacing: -0.5px;
}

.timeline-card-title {
  font-family: var(--font-heading), "Outfit", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.timeline-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: #475569;
}

/* 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;
}

.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%;
  height: 650px; /* SQUARE */
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* LEFT IMAGE */
.quote-left {
  background: #1e3c72;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.quote-left img {
  height: 100%;
  object-fit: cover;
}
/* ===============================
   QUOTE SECTION FIXED (PRO LEVEL)
================================*/
/* ===============================
   PERFECT QUOTE ALIGNMENT
================================*/

.quote-right {
  padding: 90px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f3f4f6;
}

/* QUOTE BLOCK */
.quote-text {
  position: relative;
  max-width: 720px;
}

/* TOP LINE */
.quote-text::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 65%;
  height: 3px;
  background: #111;
}

/* BOTTOM LINE */
.quote-text::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0; /* FIXED ALIGNMENT */
  width: 100%; /* FULL WIDTH MATCH TEXT */
  height: 2px;
  background: #111;
}

/* 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 {
    min-height: 350px;
  }
  .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;
  }
}
