:root {
  --primary-orange: #F57C00;
  --deep-brown: #3E2723;
  --premium-black: #111111;
  --warm-white: #FFFDF8;
  --light-beige: #F8F3EA;
  --accent-gold: #D89A3D;
  --soft-gray: #666666;
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  
  --shadow-sm: 0 2px 8px rgba(17, 17, 17, 0.04);
  --shadow-md: 0 8px 24px rgba(17, 17, 17, 0.08);
  --shadow-lg: 0 24px 48px rgba(17, 17, 17, 0.12);
  --shadow-glass: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
  
  --gradient-orange: linear-gradient(135deg, #F57C00 0%, #D89A3D 100%);
  --gradient-dark: linear-gradient(180deg, #111111 0%, #3E2723 100%);
  --gradient-gold: linear-gradient(135deg, #D89A3D 0%, #F57C00 100%);
  
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: 1px solid rgba(255, 255, 255, 0.4);
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  background-color: var(--warm-white);
  color: var(--premium-black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--premium-black);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
 
}

section {
  padding: 100px 5%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Utilities */
.text-center { text-align: center; }
.text-orange { color: var(--primary-orange); }
.text-gray { color: var(--soft-gray); }
.bg-warm-white { background-color: var(--warm-white); }
.bg-light-beige { background-color: var(--light-beige); }
.bg-dark { background-color: var(--premium-black); color: var(--warm-white); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--warm-white); }
.bg-gradient-orange { background: var(--gradient-orange); color: white; }
.bg-gradient-orange h1, .bg-gradient-orange h2 { color: white; }

/* Glassmorphism */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glass);
}
.glass-card-dark {
  background: rgba(17, 17, 17, 0.6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
  border: none;
  gap: 8px;
}

.btn-primary {
  background: var(--gradient-orange);
  color: white;
  box-shadow: 0 4px 14px rgba(245, 124, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 124, 0, 0.4);
}

.btn-secondary {
  background: rgba(245, 124, 0, 0.1);
  color: var(--primary-orange);
}

.btn-secondary:hover {
  background: rgba(245, 124, 0, 0.15);
  transform: translateY(-2px);
}

.btn-white {
  background: white;
  color: var(--primary-orange);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Typography specifics */
.heading-xl {
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.heading-lg {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}
.heading-md {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}
.subtitle {
  font-size: 1.25rem;
  color: var(--soft-gray);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}
.bg-dark .subtitle { color: rgba(255,255,255,0.7); }
.bg-gradient-orange .subtitle { color: rgba(255,255,255,0.9); }

/* Grid Layouts */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 992px) {
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .grid-3 { grid-template-columns: 1fr; }
  section { padding: 60px 5%; }
}

/* Animations */
.animate-fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.3s ease;
  background: rgba(255, 253, 248, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-logo span {
  color: var(--primary-orange);
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--soft-gray);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--primary-orange);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(216, 154, 61, 0.1);
  color: var(--accent-gold);
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
  width: fit-content;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
}
.trust-badge {
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--soft-gray);
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 600px;
}
.guru-3d-placeholder {
  width: 400px;
  height: 500px;
  background: var(--gradient-orange);
  border-radius: 40px;
  position: relative;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
  overflow: hidden;
}
.floating-icon {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  padding: 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  animation: float 6s ease-in-out infinite;
  color: var(--premium-black);
  border: 1px solid rgba(255,255,255,0.8);
}
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
  100% { transform: translateY(0px); }
}
.floating-icon:nth-child(1) { top: 10%; left: -10%; animation-delay: 0s; }
.floating-icon:nth-child(2) { top: 88%; right: 0%; animation-delay: 1.5s; }
.floating-icon:nth-child(3) { bottom: 15%; left: 0%; animation-delay: 3s; }

/* Why mGurukul Cards */
.feature-card {
  padding: 40px;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.03);
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}
.feature-icon-wrapper {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(245, 124, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--primary-orange);
}
.feature-icon-wrapper svg { width: 32px; height: 32px; }

/* Our Story Timeline */
.story-timeline {
  position: relative;
  padding-left: 40px;
  border-left: 2px dashed rgba(245, 124, 0, 0.3);
}
.timeline-item {
  position: relative;
  margin-bottom: 40px;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -49px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--primary-orange);
  border: 4px solid var(--warm-white);
  box-shadow: 0 0 0 4px rgba(245, 124, 0, 0.2);
}
.timeline-content {
  background: white;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

/* What You'll Learn Grid */
.learn-grid-item {
  padding: 32px;
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.learn-grid-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--gradient-orange);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.learn-grid-item:hover {
  color: white;
  transform: scale(1.02);
}
.learn-grid-item:hover::before { opacity: 1; }
.learn-grid-item:hover .learn-icon { background: rgba(255,255,255,0.2); color: white; }
.learn-grid-item:hover p { color: rgba(255,255,255,0.9); }
.learn-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(245, 124, 0, 0.1);
  color: var(--primary-orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

/* AI For Everyone */
.avatar-card {
  text-align: center;
  padding: 32px 24px;
}
.avatar-img {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--light-beige);
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  box-shadow: var(--shadow-sm);
  border: 4px solid white;
}

/* Learn & Earn */
.dashboard-ui {
  background: var(--premium-black);
  border-radius: var(--radius-xl);
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 32px 64px rgba(0,0,0,0.5);
  position: relative;
  overflow: hidden;
}
.dashboard-ui::after {
  content: '';
  position: absolute;
  top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(245, 124, 0, 0.1) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}
.dashboard-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 32px; position: relative; z-index: 1;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  border-radius: var(--radius-md);
  position: relative; z-index: 1;
}
.stat-value {
  font-size: 2.5rem; font-weight: 700; color: white;
  margin: 8px 0;
}
.chart-bar {
  height: 8px; border-radius: 4px; background: rgba(255,255,255,0.1);
  margin-top: 16px; overflow: hidden;
}
.chart-fill {
  height: 100%; background: var(--primary-orange); width: 0;
  transition: width 1.5s ease-out;
}

/* 1 Rupee Mission */
.mission-section {
  text-align: center;
  padding: 120px 5%;
  position: relative;
}
.rupee-huge {
  font-size: clamp(8rem, 15vw, 12rem);
  font-weight: 900;
  line-height: 1;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 24px;
  filter: drop-shadow(0 10px 20px rgba(216, 154, 61, 0.3));
}

/* Success Roadmap */
.roadmap-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 60px 0;
}
.roadmap-line {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 4px;
  background: rgba(245, 124, 0, 0.2);
  z-index: 0;
  border-radius: 2px;
}
.roadmap-step {
  position: relative;
  z-index: 1;
  background: white;
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--warm-white);
  transition: transform 0.3s ease;
}
.roadmap-step:hover { transform: scale(1.1); }
.roadmap-label {
  position: absolute;
  bottom: -36px;
  font-weight: 600;
  color: var(--premium-black);
}

@media (max-width: 992px) {
  .roadmap-container {
    flex-direction: column;
    gap: 60px;
    padding: 20px 0;
  }
  .roadmap-line {
    top: 0; bottom: 0; left: 50%; right: auto;
    width: 4px; height: 100%;
    transform: translateX(-50%);
  }
  .roadmap-label {
    bottom: auto; left: 100px; top: 50%;
    transform: translateY(-50%);
  }
}

/* Testimonials */
.testimonial-card {
  padding: 40px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 16px; margin-top: 24px;
}
.author-img {
  width: 56px; height: 56px; border-radius: 50%; background: var(--soft-gray);
  object-fit: cover;
}
.stars { color: var(--accent-gold); display: flex; gap: 4px; margin-bottom: 16px; }

/* FAQ */
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 24px 0;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 1.25rem;
  cursor: pointer;
}
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.3s ease, margin-top 0.3s ease;
  color: var(--soft-gray);
}
.faq-item.active .faq-answer {
  max-height: 200px; margin-top: 16px;
}
.faq-icon { transition: transform 0.3s ease; }
.faq-item.active .faq-icon { transform: rotate(45deg); }

/* Footer */
footer {
  background: var(--deep-brown);
  color: white;
  padding: 80px 5% 40px;
}
.footer-grid {
  text-align: center;
  margin-bottom: 60px;
}
.footer-title { font-size: 1.25rem; margin-bottom: 24px; color: var(--accent-gold); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 24px; text-align: center; }
}


.footer{
    background:linear-gradient(135deg,#1a1a1a,#3b251c);
    padding:70px 20px 30px;
    color:#fff;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    text-align:center;
}

.footer-logo img{
    height:70px;
    margin-bottom:25px;
}

.footer-email{
    margin-bottom:25px;
}

.footer-email a{
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:500;
    transition:.3s;
}

.footer-email a:hover{
    color:#ff9800;
}

.footer-email i{
    margin-right:8px;
    color:#ff9800;
}

.footer-social{
    display:flex;
    justify-content:center;
    gap:18px;
    margin-bottom:35px;
}

.footer-social a{
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    transition:.3s;
    text-decoration:none;
}

.footer-social a:hover{
    background:#ff9800;
    color:#fff;
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(255,152,0,.45);
}

.footer-links{
    display:flex;
    justify-content:center;
    gap:35px;
    flex-wrap:wrap;
    margin-bottom:35px;
}

.footer-links a{
    color:#d9d9d9;
    text-decoration:none;
    font-size:16px;
    transition:.3s;
}

.footer-links a:hover{
    color:#ff9800;
}

.footer-copy{
    border-top:1px solid rgba(255,255,255,.12);
    padding-top:25px;
    color:#bcbcbc;
    font-size:15px;
}

@media(max-width:768px){

.footer{
    padding:55px 20px 25px;
}

.footer-links{
    gap:18px;
    flex-direction:column;
}

.footer-social{
    gap:14px;
}

.footer-social a{
    width:42px;
    height:42px;
    font-size:18px;
}

.footer-email a{
    font-size:16px;
}

.footer-logo img{
    height:60px;
}




.footer-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto 30px;
}

.footer-logo img{
    display: block;
    max-width: 220px;   /* adjust size */
    width: 100%;
    height: auto;
}