:root{
  --bg:#0b0b0b;
  --gold:#D4AF37;
  --muted:#bfbfbf;
  --white:#ffffff;
  --container:1200px;
  --font-sans: 'Poppins', sans-serif;
}

/* Reset */
*{box-sizing:border-box;margin:0;padding:0}
html,body{height:100%}
body{font-family:var(--font-sans);background:var(--white);color:#111;line-height:1.5}

/* Container */
.container{width:min(var(--container),92%);margin:0 auto}

/* Header */
.site-header{position:fixed;left:0;right:0;top:0;background:rgba(255,255,255,0.98);z-index:1200;box-shadow:0 2px 18px rgba(2,6,23,0.06)}
.header-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 0}
.brand img.logo{height:56px}
.nav ul{display:flex;gap:20px;align-items:center;list-style:none}
.nav a{text-decoration:none;color:#111;font-weight:600}
.nav a.cta{background:var(--gold);color:var(--bg);padding:8px 12px;border-radius:8px}

/* Mobile toggle */
.mobile-toggle{display:none;background:none;border:0;font-size:20px}

/* Hero */
.hero{position:relative;height:78vh;display:flex;align-items:center;justify-content:center;overflow:hidden;margin-top:72px}
.hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;filter:brightness(42%);z-index:0}
.hero-overlay{position:relative;z-index:2;color:var(--white);text-align:center;padding:6% 4%}
.hero-content h1{font-size:3rem;letter-spacing:2px;color:var(--gold);margin-bottom:10px}
.hero-content .lead{color:#f1f1f1;margin-bottom:18px}
.btn{display:inline-block;padding:12px 20px;border-radius:30px;text-decoration:none;font-weight:700}
.btn-primary{background:var(--gold);color:var(--bg)}
.btn-ghost{background:transparent;border:2px solid rgba(255,255,255,0.12);color:#fff}

/* Why */
.why{padding:56px 0}
.why h2{color:var(--bg);text-align:center;margin-bottom:20px}
.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:16px}
.card{background:#fff;padding:18px;border-radius:10px;box-shadow:0 6px 20px rgba(11,11,11,0.04);text-align:center}

/* Products */
.products{padding:56px 0}
.products h2{text-align:center;color:var(--bg);margin-bottom:22px}
.product-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:18px}
.product{background:#fff;border-radius:10px;padding:12px;text-align:center;box-shadow:0 6px 20px rgba(11,11,11,0.04)}
.product img{width:100%;height:160px;object-fit:cover;border-radius:8px}

/* Contact preview */
.contact-preview{padding:46px 0;text-align:center}
.contact-preview .btn{margin-top:12px}

/* Footer */
.site-footer{background:var(--bg);color:var(--white);padding:26px 0;margin-top:24px}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:12px}
.footer-logo{height:46px}

/* Contact widget */
.contact-widget{position:fixed;right:18px;bottom:18px;display:flex;flex-direction:column;gap:8px;z-index:1400}
.widget{display:inline-block;background:var(--white);padding:8px 10px;border-radius:8px;box-shadow:0 6px 18px rgba(2,6,23,0.08);text-decoration:none;color:var(--bg);font-weight:700}
.widget.wa{background:#25d366;color:#fff}

/* Preloader */
#preloader{position:fixed;inset:0;background:var(--white);display:flex;align-items:center;justify-content:center;z-index:2000}
.preloader-inner{text-align:center}
.preloader-logo{height:90px}
.preloader-tag{margin-top:8px;color:var(--muted)}

/* Responsive */
@media(max-width:900px){
  .hero-content h1{font-size:2rem}
  .nav ul{display:none}
  .mobile-toggle{display:block}
}
/* === BUTTON HOVER EFFECT === */
button, .btn, .cta-button {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}

button::before, .btn::before, .cta-button::before {
  content: "";
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, rgba(255,215,0,0.3), rgba(255,255,255,0.1));
  transition: all 0.5s ease;
}

button:hover::before, .btn:hover::before, .cta-button:hover::before {
  left: 100%;
}

button:hover, .btn:hover, .cta-button:hover {
  background-color: #c8a007;
  color: #000;
  transform: scale(1.05);
}

/* === MOUSE CLICK RIPPLE EFFECT === */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple span {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-effect 0.6s linear;
  background-color: rgba(255, 215, 0, 0.5);
}

@keyframes ripple-effect {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
/* ------------------------------
   NAVIGATION HOVER EFFECT (GOLD)
--------------------------------*/
nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav ul li {
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  padding: 5px 0;
}

nav ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background-color: #d4af37; /* Gold underline */
  transition: width 0.3s ease;
}

nav ul li a:hover {
  color: #d4af37; /* Gold text on hover */
}

nav ul li a:hover::after {
  width: 100%;
}

/* Optional: Add glow when hovering */
nav ul li a:hover {
  text-shadow: 0 0 5px rgba(212, 175, 55, 0.7);
}
/* Contact button - normal white with gold hover */
nav ul li:last-child a {
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  padding: 8px 18px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.4s ease;
}

/* Hover effect - gold fill with white text */
nav ul li:last-child a:hover {
  background: linear-gradient(90deg, #d4af37, #b8860b);
  color: #fff;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
  transform: translateY(-2px);
}
/* Dropdown Base */
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(0, 0, 0, 0.9);
  border-radius: 8px;
  min-width: 180px;
  padding: 10px 0;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

/* Dropdown Links */
.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: gold;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover Effects */
.dropdown-menu li a:hover {
  background: gold;
  color: black;
  letter-spacing: 1px;
  text-shadow: 0 0 10px gold;
}

/* Show Dropdown */
.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Luxury hover animation for main nav items */
.nav-links li a:hover {
  color: gold;
  text-shadow: 0 0 15px gold, 0 0 30px #d4af37;
}

/* Premium Why Choose ABAI Cards - Animated Gold Border */
.choose-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
  padding: 20px;
}

.choose-card {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.3);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  color: #fff;
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
}

/* Inner glow */
.choose-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    rgba(255, 215, 0, 0.1),
    rgba(255, 215, 0, 0.8),
    rgba(255, 215, 0, 0.1),
    transparent 50%
  );
  animation: rotateBorder 6s linear infinite;
  z-index: 0;
}

@keyframes rotateBorder {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* inner layer to keep content readable */
.choose-card::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 18px;
  z-index: 1;
}

.choose-card h3,
.choose-card p {
  position: relative;
  z-index: 2;
}

.choose-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: #ffd700;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.choose-card p {
  font-size: 0.95rem;
  color: #ddd;
}

.choose-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
}
.choose-card:hover h3 {
  color: #fff;
}
/* Animated Gold Shine for Section Title */
.section-title {
  font-size: 2.2rem;
  text-align: center;
  color: #ffd700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  display: inline-block;
  background: linear-gradient(90deg, #b8860b, #ffd700, #b8860b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.8), transparent);
  animation: shine 3s infinite linear;
}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}
/* ============================
   GLOBAL GOLD SHINE BRAND KIT
   ============================ */

/* 1) shared variables */
:root{
  --gold-1: #b8860b;
  --gold-2: #ffd700;
  --gold-grad: linear-gradient(90deg,var(--gold-1),var(--gold-2),var(--gold-1));
}

/* 2) reusable gold-shine keyframe (for text & buttons) */
@keyframes gold-shine {
  0% { transform: translateX(-120%); opacity: 0; }
  20% { opacity: 0.9; }
  60% { opacity: 0.9; }
  100% { transform: translateX(120%); opacity: 0; }
}


/* 4) SECTION TITLES - consistent look */
.section-title {
  position: relative;
  display: inline-block;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-title::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.85), transparent);
  transform: skewX(-15deg);
  animation: gold-shine 3s linear infinite;
}

/* 5) generic helper class - apply to any element you want shining */
.gold-shine {
  position: relative;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gold-shine::after {
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 45%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.9), transparent);
  transform: skewX(-15deg);
  animation: gold-shine 3s linear infinite;
}

/* 6) CTA Buttons - primary style + hover fill + shine */
.btn-gold, .btn.primary, .btn {
  background: linear-gradient(90deg, var(--gold-1), var(--gold-2));
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  letter-spacing: 0.4px;
  position: relative;
  overflow: hidden;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* subtle moving shine overlay for button (always) */
.btn-gold::before,
.btn.primary::before,
.btn::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -120%;
  width: 40%;
  height: 160%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.6), transparent);
  transform: skewX(-15deg);
  transition: none;
  pointer-events: none;
  animation: gold-shine 2s linear infinite;
  opacity: 0.6;
}

/* hover: invert to transparent with gold border (so shine stays visible) */
.btn-gold:hover,
.btn.primary:hover,
.btn:hover {
  background: transparent;
  color: var(--gold-2);
  border: 2px solid var(--gold-2);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(212,175,55,0.18);
}

/* 7) Contact pill (special) */
.contact-btn {
  position: relative;
  background: transparent;
  color: var(--gold-2) !important;
  border: 2px solid rgba(212,175,55,0.95);
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 700;
  overflow: hidden;
}

/* gold shine on contact on hover (stronger) */
.contact-btn::after {
  content: "";
  position: absolute;
  top: -30%;
  left: -120%;
  width: 45%;
  height: 160%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.95), transparent);
  transform: skewX(-15deg);
  animation: gold-shine 2s linear infinite;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.contact-btn:hover::after { opacity: 1; }

/* 8) small polish — make sure shine doesn't break on small screens */
@media (max-width: 600px) {
  .hero h1, .section-title {
    font-size: 1.6rem;
  }
  .btn-gold::before, .btn::before {
    display: none; /* reduce animation on small devices */
  }
  .gold-shine::after { display: none; }
}
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(90deg, #d4af37, #ffcc00, #fff8dc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.4), 0 0 20px rgba(255, 215, 0, 0.2);
  animation: shimmer 3s infinite;
  letter-spacing: 1px;
  margin-bottom: 40px;
}

/* Premium shimmer effect animation */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.choose-heading {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(90deg, #b8860b, #ffd700, #ffef96, #b8860b);
  background-size: 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 5s linear infinite;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
  margin-bottom: 60px;
}

@keyframes shimmer {
  0% {
    background-position: 400% center;
  }
  100% {
    background-position: 0% center;
  }
}
/* === Why Choose ABAI Section === */
#why-choose {
  display: flex;
  justify-content: center;  /* horizontally center */
  align-items: center;       /* vertically center */
  height: 100vh;             /* full viewport height */
  background: linear-gradient(135deg, #0e0e0e, #1c1c1c);
  color: #fff;
  text-align: center;
}

.why-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  letter-spacing: 2px;
  font-weight: 700;
  background: linear-gradient(90deg, #d4af37, #f8e473);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  animation: fadeInDown 1.5s ease-in-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  background: linear-gradient(135deg, #faf7f0, #f0e6d2);
  color: #2b2b2b;
  font-family: "Playfair Display", serif;
}
h1, h2, h3 {
  color: #b8860b;
  letter-spacing: 2px;
}
/* === LUXURY BLACK-GOLD THEME === */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #0e0e0e;
  color: #f5f5f5;
}

/* HEADER */
.luxury-header {
  background-color: #000;
  border-bottom: 2px solid #d4af37;
  padding: 15px 40px;
  display: flex;
  justify-content: center;
}

.luxury-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: #FFD700;
  letter-spacing: 1px;
}

.nav-links a {
  color: #f5f5f5;
  text-decoration: none;
  margin: 0 15px;
  transition: 0.3s;
  font-weight: 500;
}

.nav-links a:hover {
  color: #FFD700;
}

.quote-btn {
  background-color: #FFD700;
  color: #000;
  padding: 8px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.quote-btn:hover {
  background-color: #fff;
  color: #000;
}

/* FOOTER */
.luxury-footer {
  background-color: #111;
  color: #f5f5f5;
  padding: 40px 20px;
  border-top: 2px solid #d4af37;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  width: 220px;
  margin: 15px;
}

.footer-section h3 {
  color: #FFD700;
  margin-bottom: 10px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin-bottom: 5px;
}

.footer-section ul li a {
  color: #f5f5f5;
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #FFD700;
}

.social-icons a {
  font-size: 20px;
  color: #FFD700;
  margin-right: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #fff;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  padding-top: 15px;
  margin-top: 20px;
  color: #aaa;
  font-size: 0.9rem;

}
/* === Why Choose ABAI Section === */
#why-choose {
  display: flex;
  justify-content: center;  /* horizontally center */
  align-items: center;       /* vertically center */
  height: 100vh;             /* full viewport height */
  background: linear-gradient(135deg, #0e0e0e, #1c1c1c);
  color: #fff;
  text-align: center;
}

.why-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  letter-spacing: 2px;
  font-weight: 700;
  background: linear-gradient(90deg, #d4af37, #f8e473);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  animation: fadeInDown 1.5s ease-in-out;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body {
  background: linear-gradient(135deg, #faf7f0, #f0e6d2);
  color: #2b2b2b;
  font-family: "Playfair Display", serif;
}
h1, h2, h3 {
  color: #b8860b;
  letter-spacing: 2px;
}
social-icons a {
  font-size: 20px;
  color: #d4af37; /* gold */
  margin-right: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: #000;
  border: 1px solid #d4af37;
  padding: 8px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
}

.social-icons a:hover {
  background: #d4af37;
  color: #000;
  transform: translateY(-3px);
}
.map-column iframe {
  width: 100%;
  height: 220px;
  border: 1px solid #d4af37;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(212,175,55,0.2);
}
.footer-column .social-icons a {
  font-size: 20px;
  color: #d4af37; /* luxury gold */
  margin: 0 10px;
  transition: all 0.3s ease;
}

.footer-column .social-icons a:hover {
  color: #fff;
  transform: scale(1.2);
}
footer::after {
  content: "";
  display: block;
  height: 2px;
  background: linear-gradient(to right, #d4af37, #fff, #d4af37);
  margin-top: 30px;
}

.products-section {
  background: linear-gradient(180deg, #000, #111);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: gold;
  text-transform: uppercase;
  margin-bottom: 50px;
  letter-spacing: 2px;
}

.product-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.product-card {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid gold;
  border-radius: 15px;
  width: 320px;
  padding: 25px;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.5);
  background: rgba(255, 215, 0, 0.1);
}

.product-card h3 {
  color: gold;
  margin-top: 15px;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.product-card p {
  font-size: 1rem;
  color: #ccc;
  margin-top: 10px;
  line-height: 1.5;
}

.product-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid #444;
  transition: transform 0.3s ease;
}

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

.details-btn {
  display: inline-block;
  margin-top: 15px;
  background: gold;
  color: #000;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.details-btn:hover {
  background: #000;
  color: gold;
  border: 1px solid gold;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
}

@media (max-width: 768px) {
  .product-card {
    width: 90%;
  }
  .section-title {
    font-size: 2rem;
  }
}.intro-text {
  color: #ccc;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.basmati-section {
  margin-top: 80px;
}

.basmati-heading {
  color: gold;
  font-size: 2rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.variety-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.variety-card {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid gold;
  border-radius: 15px;
  width: 250px;
  padding: 15px;
  transition: all 0.4s ease;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
}

.variety-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.1);
}

.variety-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.variety-card h3 {
  color: gold;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.variety-card p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .variety-card {
    width: 90%;
  }
  .basmati-heading {
    font-size: 1.6rem;
  }
}
.intro-text {
  color: black;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.7;
}

.basmati-section {
  margin-top: 80px;
}

.basmati-heading {
  color: gold;
  font-size: 2rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.variety-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.variety-card {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid gold;
  border-radius: 15px;
  width: 250px;
  padding: 15px;
  transition: all 0.4s ease;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.15);
}

.variety-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.4);
  background: rgba(255, 215, 0, 0.1);
}

.variety-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.variety-card h3 {
  color: gold;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.variety-card p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.4;
}

@media (max-width: 768px) {
  .variety-card {
    width: 90%;
  }
  .basmati-heading {
    font-size: 1.6rem;
  }
}
.spec-table {
  width: 100%;
  margin-top: 10px;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.spec-table td {
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
  padding: 5px 8px;
  color: white;
  text-align: left;
}

.spec-table td:first-child {
  color: gold;
  font-weight: 600;
  width: 45%;
}

.sub-text {
  color: #bbb;
  font-size: 1rem;
  margin-bottom: 20px;
  text-align: center;
}

/* ===== Leadership Section (Premium) ===== */
.leadership-section {
  background: #000;
  padding: 60px 20px;
  text-align: center;
}

.leader-title {
  color: gold;
  font-size: 2.4rem;
  margin-bottom: 35px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Cards */
.leader-card {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 50px auto;
  background: rgba(255, 215, 0, 0.06);
  padding: 30px;
  border-radius: 14px;
  border: 1px solid gold;
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.25);
  transition: .3s ease;
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 35px rgba(255, 215, 0, 0.4);
}

.leader-img {
  width: 100%;
  border-radius: 12px;
  object-fit: contain;
  background: #000;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

/* Name & Role */
.leader-name {
  font-size: 1.8rem;
  margin-top: 18px;
  font-weight: 600;
  color: gold;
  letter-spacing: 1px;
}

.leader-role {
  color: #ccc;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

/* Mission Box */
.mission-box {
  background: rgba(255, 215, 0, 0.07);
  padding: 18px 20px;
  border-left: 4px solid gold;
  border-radius: 10px;
  text-align: left;
}

.mission-box h4 {
  color: gold;
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.mission-box p {
  color: #ddd;
  font-size: 1rem;
  line-height: 1.55;
}

