@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;900&family=Noto+Sans:wght@300;400;500;600;700&family=Baloo+2:wght@400;600;700;800&display=swap');

:root {
  --saffron: #FF6B00;
  --saffron-light: #FF8C00;
  --deep-green: #0A6E3A;
  --green-light: #1A8B4E;
  --gold: #D4A017;
  --gold-light: #F5C518;
  --deep-navy: #0D1B2A;
  --cream: #FFF8F0;
  --white: #ffffff;
  --text-dark: #1A1A2E;
  --text-muted: #5A5A6E;
  --card-bg: #ffffff;
  --border: rgba(255,107,0,0.15);
  --shadow: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-hover: 0 20px 60px rgba(255,107,0,0.2);
  --gradient-saffron: linear-gradient(135deg, #FF6B00 0%, #FF8C00 50%, #D4A017 100%);
  --gradient-green: linear-gradient(135deg, #0A6E3A 0%, #1A8B4E 100%);
  --gradient-hero: linear-gradient(135deg, #0D1B2A 0%, #0A6E3A 40%, #FF6B00 100%);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Noto Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ===================== NAVBAR ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 2px solid var(--saffron);
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-saffron);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-family: 'Baloo 2', cursive;
  font-weight: 800;
  color: white;
  box-shadow: 0 4px 15px rgba(255,107,0,0.4);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-main {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  line-height: 1;
}

.nav-logo-sub {
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--white);
  background: rgba(255,107,0,0.2);
  color: var(--saffron-light);
}

.nav-cta {
  background: var(--gradient-saffron) !important;
  color: white !important;
  padding: 10px 20px !important;
  border-radius: 25px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(255,107,0,0.35);
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,107,0,0.5) !important;
  background: rgba(255,107,0,0) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===================== HERO ===================== */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--deep-navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 50%, rgba(10,110,58,0.35) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,107,0,0.3) 0%, transparent 55%),
    radial-gradient(ellipse at 60% 80%, rgba(212,160,23,0.2) 0%, transparent 50%),
    url('https://images.unsplash.com/photo-1580582932707-520aed937b7b?w=1600&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.92) 0%, rgba(10,110,58,0.75) 50%, rgba(13,27,42,0.88) 100%);
}

/* Decorative Indian pattern */
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: repeating-linear-gradient(45deg, #FF6B00 0, #FF6B00 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, #FF6B00 0, #FF6B00 1px, transparent 0, transparent 50%);
  background-size: 30px 30px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text { animation: fadeInLeft 0.9s ease forwards; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,0,0.15);
  border: 1px solid rgba(255,107,0,0.4);
  border-radius: 50px;
  padding: 8px 18px;
  margin-bottom: 24px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-title span {
  background: var(--gradient-saffron);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 40px;
}

.hero-stat span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--saffron-light);
}

.hero-stat p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gradient-saffron);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 30px rgba(255,107,0,0.4);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255,107,0,0.5);
}

.btn-secondary {
  background: transparent;
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-3px);
}

.hero-visual {
  animation: fadeInRight 0.9s ease 0.2s both;
  position: relative;
}

.hero-card-stack {
  position: relative;
  height: 460px;
}

.hero-card-main {
  position: absolute;
  top: 0; right: 0;
  width: 85%;
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

.hero-card-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-float {
  position: absolute;
  bottom: 0; left: 0;
  width: 65%;
  background: white;
  border-radius: 20px;
  padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.hero-card-float h4 {
  font-family: 'Baloo 2', cursive;
  font-size: 15px;
  color: var(--saffron);
  margin-bottom: 4px;
}

.hero-card-float p {
  font-size: 13px;
  color: var(--text-muted);
}

.hero-card-float .rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.stars { color: var(--gold-light); font-size: 14px; }
.rating-text { font-size: 12px; color: var(--text-muted); }

/* ===================== DEMO CLASSES SECTION ===================== */
.demo-section {
  background: linear-gradient(135deg, var(--deep-green) 0%, #0D5C2F 100%);
  padding: 70px 24px;
  position: relative;
  overflow: hidden;
}

.demo-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,107,0,0.15);
  filter: blur(60px);
}

.demo-section::after {
  content: '';
  position: absolute;
  bottom: -40px; left: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(212,160,23,0.15);
  filter: blur(40px);
}

.demo-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.demo-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.demo-text h2 span { color: var(--gold-light); }

.demo-text p {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.demo-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.demo-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.demo-card:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--gold-light);
  transform: translateY(-4px);
}

.demo-card-icon {
  font-size: 36px;
  margin-bottom: 12px;
  display: block;
}

.demo-card h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 17px;
  color: var(--white);
  margin-bottom: 8px;
}

.demo-card p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0;
}

.demo-card .badge {
  display: inline-block;
  background: var(--gradient-saffron);
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* ===================== SECTION COMMONS ===================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  background: rgba(255,107,0,0.1);
  color: var(--saffron);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(255,107,0,0.2);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-title span { color: var(--saffron); }

.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===================== FEATURES ===================== */
.features {
  padding: 100px 24px;
  background: var(--cream);
}

.features-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid var(--border);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gradient-saffron);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.feature-card:hover::before { transform: scaleX(1); }

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(212,160,23,0.1));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===================== SERVICES ===================== */
.services {
  padding: 100px 24px;
  background: white;
}

.services-wrapper {
  max-width: 1280px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--saffron);
}

.service-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

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

.service-card:hover .service-img img {
  transform: scale(1.06);
}

.service-level {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--gradient-saffron);
  color: white;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.service-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.service-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 16px;
  flex: 1;
}

.service-subjects {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.subject-tag {
  background: rgba(255,107,0,0.08);
  color: var(--saffron);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(255,107,0,0.2);
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--saffron);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: gap 0.2s;
}

.service-link:hover { gap: 12px; }

/* Large featured service card */
.service-card.featured {
  grid-column: span 2;
  flex-direction: row;
}

.service-card.featured .service-img {
  height: auto;
  width: 45%;
  min-height: 280px;
  flex-shrink: 0;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  padding: 100px 24px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 400px;
  color: rgba(255,107,0,0.04);
  top: -100px;
  left: 40px;
  line-height: 1;
  pointer-events: none;
}

.testimonials-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: white;
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.testi-quote {
  font-size: 36px;
  color: var(--saffron);
  font-family: 'Playfair Display', serif;
  line-height: 1;
  margin-bottom: 16px;
}

.testi-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--saffron);
}

.testi-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
}

.testi-role {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===================== ONLINE COACHING CTA ===================== */
.online-coaching {
  padding: 100px 24px;
  background: var(--deep-navy);
  position: relative;
  overflow: hidden;
}

.online-coaching::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255,107,0,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.coaching-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.coaching-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.coaching-inner h2 span { color: var(--gold-light); }

.coaching-inner p {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  line-height: 1.7;
  max-width: 620px;
  margin: 0 auto 40px;
}

.coaching-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.coaching-feat {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 15px;
}

.coaching-feat span:first-child {
  font-size: 22px;
}

.coaching-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--deep-navy);
  padding: 15px 36px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 8px 30px rgba(212,160,23,0.4);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212,160,23,0.5);
}

/* ===================== CONTACT ===================== */
.contact {
  padding: 100px 24px;
  background: white;
}

.contact-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  margin-bottom: 16px;
  color: var(--text-dark);
}

.contact-info p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-item-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(255,107,0,0.1), rgba(212,160,23,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 700;
  margin-bottom: 3px;
}

.contact-item-text span {
  font-size: 15px;
  color: var(--saffron);
}

.contact-form-box {
  background: var(--cream);
  border-radius: 24px;
  padding: 40px 36px;
  border: 1px solid var(--border);
}

.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 28px;
  color: var(--text-dark);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Noto Sans', sans-serif;
  background: white;
  color: var(--text-dark);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255,107,0,0.1);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--gradient-saffron);
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Noto Sans', sans-serif;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255,107,0,0.4);
}

/* ===================== FOOTER ===================== */
.footer {
  background: var(--deep-navy);
  color: rgba(255,255,255,0.75);
  padding: 70px 24px 30px;
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.55);
}

.footer-brand .tagline {
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 20px;
  display: block;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.social-btn:hover {
  background: var(--saffron);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Baloo 2', cursive;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col ul { list-style: none; }

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

.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--saffron-light);
}

.footer-bottom {
  max-width: 1280px;
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-tricolor {
  height: 4px;
  background: linear-gradient(90deg, #FF6B00 0%, #FF6B00 33%, white 33%, white 66%, #0A6E3A 66%, #0A6E3A 100%);
  margin-bottom: 0;
}

/* ===================== PAGE BANNER ===================== */
.page-banner {
  padding: 140px 24px 80px;
  background: var(--deep-navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(255,107,0,0.2), transparent 60%);
}

.page-banner h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  color: var(--white);
  position: relative;
  margin-bottom: 16px;
}

.page-banner h1 span { color: var(--gold-light); }

.page-banner p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  max-width: 550px;
  margin: 0 auto;
  position: relative;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  position: relative;
}

.breadcrumb a {
  color: var(--gold-light);
  text-decoration: none;
}

/* ===================== ABOUT PAGE ===================== */
.about-story {
  padding: 100px 24px;
  background: var(--cream);
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gradient-saffron);
  color: white;
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255,107,0,0.3);
}

.about-img-badge strong {
  display: block;
  font-size: 32px;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
}

.about-img-badge span {
  font-size: 13px;
  opacity: 0.85;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-text h2 span { color: var(--saffron); }

.about-text p {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.value-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,107,0,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.value-item h4 {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
}

.value-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ===================== TEAM ===================== */
.team-section {
  padding: 80px 24px;
  background: white;
}

.team-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--cream);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}

.team-img {
  height: 220px;
  overflow: hidden;
}

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

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

.team-info {
  padding: 20px;
  text-align: center;
}

.team-info h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.team-info p {
  font-size: 13px;
  color: var(--saffron);
  font-weight: 600;
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== MOBILE NAV ===================== */
@media (max-width: 900px) {
  .hamburger { display: flex; }
  
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--deep-navy);
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
  }
  
  .nav-links.open { display: flex; }
  
  .nav-links a { padding: 12px 16px; border-radius: 10px; }

  .hero-content { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .demo-inner { grid-template-columns: 1fr; gap: 36px; }
  .demo-cards { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { flex-direction: column; }
  .service-card.featured .service-img { width: 100%; height: 220px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-inner { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero-stats { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .demo-cards { grid-template-columns: 1fr; }
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 3px; }

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
background:#25D366;
color:#fff;
width:55px;
height:55px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:26px;
box-shadow:0 8px 20px rgba(0,0,0,0.25);
z-index:999;
transition:0.3s;
animation:whatsappFloat 2s ease-in-out infinite;
}

.whatsapp-float:hover{
transform:scale(1.1);
}

@keyframes whatsappFloat{
0%{transform:translateY(0)}
50%{transform:translateY(-6px)}
100%{transform:translateY(0)}
}
.gal-item {
  height: 250px;
  overflow: hidden;
}

.gallery .gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}