/* ── home.css ── */
.hero{min-height:90vh;display:flex;flex-direction:column;justify-content:center;padding:50px 0 80px;position:relative;overflow:hidden;}
.hero-bg{position:absolute;inset:0;background-image:url("../image.png");background-size:cover;background-position:center;background-repeat:no-repeat;transition:opacity .6s ease;z-index:0;}
[data-theme="dark"] .hero-bg{background-image:url("../image-dark.png");}
.hero::before{content:'';position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(255,255,255,.85);pointer-events:none;z-index:1;}
[data-theme="dark"] .hero::before{background:rgba(15,17,23,.35);}
.hero .container{position:relative;z-index:2;}
.hero-content{display:flex;align-items:center;justify-content:space-between;gap:60px;}
.hero-text{flex:1;}
.hero-text h1{font-size:72px;font-weight:800;margin-bottom:25px;}
.hero-text p{font-size:18px;line-height:1.6;color:#4b5563;max-width:420px;}
.hero-image{flex:1;display:flex;justify-content:center;}
.hero-image img{max-width:520px;width:100%;}

.features-section{padding:80px 0;background:var(--bg-soft);}
.offer-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:28px;}
.offer-card{background:var(--bg-card);border:1.5px solid var(--border);border-radius:16px;padding:32px 28px;display:flex;flex-direction:column;gap:18px;transition:all .3s ease;}
.offer-card:hover{transform:translateY(-6px);box-shadow:0 16px 40px rgba(78,110,242,.1);border-color:var(--accent-border);}
.offer-card-featured{border:2px solid var(--accent);background:var(--bg-card);}
.offer-card-top{display:flex;align-items:center;gap:16px;}
.offer-icon{font-size:36px;width:64px;height:64px;background:var(--bg-soft);border-radius:14px;display:flex;align-items:center;justify-content:center;flex-shrink:0;}
.offer-card-top h3{font-size:22px;font-weight:800;color:var(--text);margin-bottom:6px;}
.offer-tag{display:inline-block;background:#dcfce7;color:#15803d;padding:3px 12px;border-radius:20px;font-size:11px;font-weight:700;letter-spacing:.5px;text-transform:uppercase;}
.offer-tag-amber{background:#fef3c7;color:#b45309;}
.offer-tag-blue{background:var(--accent-soft);color:var(--accent);}
.offer-card>p{font-size:14px;color:var(--text-muted);line-height:1.7;margin:0;}
.offer-subjects{list-style:none;display:flex;flex-direction:column;gap:10px;flex:1;}
.offer-subjects li{font-size:14px;color:var(--text-muted);font-weight:500;padding:10px 14px;background:var(--bg-soft);border-radius:8px;border-left:3px solid var(--accent);}
.offer-footer{display:flex;align-items:center;justify-content:space-between;padding-top:16px;border-top:1px solid var(--border-soft);}
.offer-badges{display:flex;gap:10px;}
.jee-badge{display:inline-flex;align-items:center;background:linear-gradient(135deg,#4e6ef2,#5c7cfa);color:white;padding:10px 20px;border-radius:8px;font-size:13px;font-weight:700;box-shadow:0 4px 12px rgba(78,110,242,.3);transition:all .3s ease;}
.jee-badge:hover{transform:translateY(-2px);box-shadow:0 6px 20px rgba(78,110,242,.4);}

.pricing-section{padding:80px 0;background:var(--bg);}
.pricing-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(300px,1fr));gap:30px;margin-top:50px;}
.pricing-card{background:var(--bg-card);border:2px solid var(--border);border-radius:16px;padding:40px 30px;transition:all .3s ease;position:relative;text-align:center;}
.pricing-card:hover{transform:translateY(-8px);box-shadow:0 12px 40px rgba(78,110,242,.15);border-color:var(--accent);}
.pricing-card.featured{border:2px solid var(--accent);background:var(--bg-card);}
.pricing-badge{position:absolute;top:-15px;left:50%;transform:translateX(-50%);background:linear-gradient(135deg,#4e6ef2,#5c7cfa);color:white;padding:6px 20px;border-radius:20px;font-size:13px;font-weight:700;}
.pricing-header h3{font-size:24px;font-weight:700;color:var(--text);margin-bottom:8px;}
.pricing-subtitle{font-size:14px;color:var(--text-muted);margin-bottom:25px;}
.pricing-price{margin:30px 0;}
.price-starting{font-size:13px;color:var(--text-muted);display:block;margin-bottom:4px;}
.price-amount{font-size:48px;font-weight:800;color:var(--accent);display:block;line-height:1;}
.price-period{font-size:14px;color:var(--text-muted);margin-top:8px;display:block;}
.pricing-features{list-style:none;margin:30px 0;text-align:left;}
.pricing-features li{padding:12px 0;color:var(--text-muted);font-size:15px;border-bottom:1px solid var(--border-soft);}
.pricing-features li:last-child{border-bottom:none;}
.pricing-card .btn{width:100%;margin-top:20px;}
.pricing-note{max-width:700px;margin:40px auto 0;text-align:center;padding:20px;background:var(--accent-soft);border:1px solid var(--accent-border);border-radius:8px;}
.pricing-note p{font-size:15px;color:var(--text-muted);line-height:1.6;margin:0;}
.pricing-note strong{color:var(--text);}

/* About the Founder Section */
.founder-section{padding:80px 0;background:var(--bg);}
.founder-card{background:linear-gradient(135deg,#ffffff,#f9fafb);border:2px solid var(--border);border-radius:20px;padding:50px;display:flex;align-items:center;gap:40px;box-shadow:0 8px 32px rgba(78,110,242,.08);transition:all .4s ease;position:relative;overflow:hidden;}
.founder-card::before{content:'';position:absolute;top:-50%;right:-50%;width:200%;height:200%;background:radial-gradient(circle,rgba(78,110,242,.05) 0%,transparent 70%);animation:pulse 8s ease-in-out infinite;}
@keyframes pulse{0%,100%{transform:scale(1);opacity:.5;}50%{transform:scale(1.1);opacity:.8;}}
[data-theme="dark"] .founder-card{background:linear-gradient(135deg,var(--bg-card),var(--bg-soft));border-color:var(--accent-border);}
.founder-card:hover{transform:translateY(-8px);box-shadow:0 16px 48px rgba(78,110,242,.15);border-color:var(--accent);}
.founder-pfp{width:180px;height:180px;min-width:180px;border-radius:50%;background:linear-gradient(135deg,#4e6ef2,#5c7cfa);display:flex;align-items:center;justify-content:center;font-size:80px;font-weight:800;color:white;box-shadow:0 8px 24px rgba(78,110,242,.3);border:6px solid #fff;position:relative;z-index:2;}
[data-theme="dark"] .founder-pfp{border-color:var(--bg);}
.founder-text{flex:1;position:relative;z-index:2;}
.founder-label{display:inline-block;background:linear-gradient(135deg,#4e6ef2,#5c7cfa);color:white;padding:6px 18px;border-radius:20px;font-size:12px;font-weight:700;letter-spacing:1px;text-transform:uppercase;margin-bottom:16px;box-shadow:0 4px 12px rgba(78,110,242,.3);}
.founder-name{font-size:42px;font-weight:900;color:var(--text);margin-bottom:20px;line-height:1.2;background:linear-gradient(135deg,#4e6ef2,#5c7cfa);-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text;}
.founder-text p{font-size:16px;line-height:1.8;color:var(--text-muted);text-align:justify;}
.founder-quote{margin-top:24px;padding:20px 24px;background:var(--bg-soft);border-left:4px solid var(--accent);border-radius:8px;font-style:italic;font-size:15px;color:var(--text);position:relative;}
.founder-quote::before{content:'"';position:absolute;top:10px;left:12px;font-size:48px;color:var(--accent);opacity:.3;font-family:Georgia,serif;line-height:1;}
.founder-quote p{position:relative;z-index:1;margin:0 !important;}

.why-section{padding:80px 0;background:var(--bg-soft);}
.why-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:30px;margin-top:50px;}
.why-card{background:var(--bg-card);border:1px solid var(--border);border-radius:12px;padding:35px 25px;text-align:center;transition:all .3s ease;}
.why-card:hover{transform:translateY(-5px);box-shadow:0 8px 24px rgba(78,110,242,.1);border-color:var(--accent-border);}
.why-icon{font-size:48px;margin-bottom:20px;}
.why-card h3{font-size:20px;font-weight:700;color:var(--text);margin-bottom:12px;}
.why-card p{font-size:15px;color:var(--text-muted);line-height:1.6;}

.how-section{padding:80px 0;background:var(--bg);}
.steps-container{display:flex;align-items:center;justify-content:center;gap:20px;margin-top:50px;flex-wrap:wrap;}
.step-card{background:var(--bg-card);border:2px solid var(--border);border-radius:12px;padding:30px 25px;text-align:center;flex:1;min-width:200px;max-width:250px;transition:all .3s ease;}
.step-card:hover{border-color:var(--accent);transform:translateY(-5px);box-shadow:0 8px 20px rgba(78,110,242,.12);}
.step-number{width:60px;height:60px;background:linear-gradient(135deg,#4e6ef2,#5c7cfa);color:white;font-size:28px;font-weight:800;border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;box-shadow:0 4px 12px rgba(78,110,242,.3);}
.step-content h3{font-size:18px;font-weight:700;color:var(--text);margin-bottom:10px;}
.step-content p{font-size:14px;color:var(--text-muted);line-height:1.5;}
.step-arrow{font-size:32px;color:var(--accent);font-weight:700;}

.footer{background:var(--bg-soft);color:var(--text);padding:60px 0 30px;margin-top:80px;border-top:1px solid var(--border);}
.footer-content{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:40px;margin-bottom:40px;}
.footer-section h3{font-size:24px;font-weight:700;margin-bottom:15px;color:var(--text);}
.footer-section h4{font-size:18px;font-weight:600;margin-bottom:15px;color:var(--text);}
.footer-section p{font-size:15px;line-height:1.6;color:var(--text-muted);}
.footer-section ul{list-style:none;}
.footer-section ul li{margin-bottom:10px;}
.footer-section ul li a{color:var(--text-muted);text-decoration:none;font-size:15px;transition:color .2s ease;}
.footer-bottom{text-align:center;padding-top:30px;border-top:1px solid var(--border);}
.footer-bottom p{color:var(--text-faint);font-size:14px;}
.footer-social-icons{display:flex;gap:12px;margin-top:8px;}
.footer-icon-btn{display:flex;align-items:center;justify-content:center;width:44px;height:44px;border-radius:10px;background:var(--border);color:var(--text-muted);text-decoration:none;font-size:20px;transition:background .2s,color .2s,transform .2s;}
.footer-icon-btn:hover{background:#4e6ef2;color:#fff;transform:translateY(-3px);}

@media(max-width:900px){
  .offer-grid{grid-template-columns:1fr;}
  .founder-card{flex-direction:column;text-align:center;padding:40px 30px;}
  .founder-pfp{width:150px;height:150px;min-width:150px;font-size:64px;margin:0 auto;}
  .founder-name{font-size:32px;}
  .hero-content{flex-direction:column;text-align:center;gap:40px;padding-top:20px;}
  .hero-text h1{font-size:48px;}
  .hero-text p{max-width:100%;}
  .hero-image img{max-width:420px;}
  .section-header h2{font-size:32px;}
  .pricing-grid{grid-template-columns:1fr;max-width:400px;margin-left:auto;margin-right:auto;}
  .steps-container{flex-direction:column;}
  .step-arrow{transform:rotate(90deg);}
  .footer-content{grid-template-columns:1fr;text-align:center;}
  .footer-social-icons{justify-content:center;}
}
@media(max-width:600px){
  .hero-bg{background-position:center top;}
  .hero-text h1{font-size:36px;}
  .hero-text p{font-size:16px;}
  .section-header h2{font-size:28px;}
  .founder-card{padding:30px 20px;}
  .founder-pfp{width:120px;height:120px;min-width:120px;font-size:56px;}
  .founder-name{font-size:26px;}
  .founder-text p{font-size:14px;text-align:left;}
  .founder-quote{padding:16px 18px;font-size:14px;}
}

