/* style.css */
/* Base */
*{box-sizing:border-box} html,body{height:100%}
:root{
  --bg:#0b102c; --bg2:#131b47; --text:#eaf1ff; --muted:#9db0d9;
  --brand:#ffb000; --cyan:#63e5ff; --border:rgba(255,255,255,.12);
  --glass:rgba(18,25,60,.6);
}
body{margin:0;font-family:Inter,system-ui,Arial,sans-serif;color:var(--text);background:radial-gradient(80% 60% at 50% -10%, #1e2970 0%, var(--bg) 60%) fixed}
a{text-decoration:none;color:inherit}
.container{max-width:1200px;margin:0 auto;padding:0 20px}

/* Header wider spacing */
/* Header wider spacing */
.header.improved {
  position: fixed;
  top: 1;              /* ✅ fixed */
  left: 0;
  width: 100%;
  z-index: 1000;
  
  background: rgba(11, 16, 44, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 0;          /* ✅ no extra padding */
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto; /* brand | nav | CTA */
  align-items: center;
  height: 90px;
  gap: 32px;

  width: 100%;
  max-width: 100%;
  padding: 0 16px;     /* ✅ single padding control */
  box-sizing: border-box;
}

/* Mobile override */
@media (max-width: 768px) {
  .nav {
    grid-template-columns: auto auto auto;
    height: 64px;       /* ✅ compact look */
    gap: 12px;
    padding: 0 12px;
  }
}



/* moving indicator bar under hovered/active link */
.nav-indicator{
  position:absolute; bottom:-8px; height:3px; width:0;
  background: linear-gradient(90deg, #ffd26a, #ff9a00);
  border-radius:99px; transition: left .25s ease, width .25s ease, opacity .25s;
  opacity:.9;
}

/* CTA micro-interactions */
.btn-pill{
  background:linear-gradient(135deg,#ffd26a,#ff9a00); color:#1b1200;
  padding:10px 16px; border-radius:999px; font-weight:800; display:inline-flex; gap:8px;
  border: none; outline: none; position:relative; overflow:hidden;
  transition: transform .15s ease, box-shadow .2s ease;
}
.btn-pill:hover{ transform: translateY(-1px); box-shadow:0 10px 24px rgba(255,176,0,.35); }
.btn-pill:active{ transform: translateY(0); }

/* “shine” sweep on hover */
.shiny:before{
  content:""; position:absolute; inset:0; background:
   linear-gradient(110deg, transparent 0%, rgba(255,255,255,.35) 45%, transparent 60%);
  transform: translateX(-120%);
}
.shiny:hover:before{ transition: transform .6s ease; transform: translateX(120%); }

/* hamburger visibility */
.hamburger{ display:none; }
@media (max-width: 900px){
  .nav{ grid-template-columns: 1fr auto auto; }
  .nav-center{ display:none; }
  .hamburger{ display:inline-flex; border:1px solid var(--border); color:var(--text); background:transparent; padding:6px 10px; border-radius:8px; }
  #tryBtn{ display:none; }
}


/* Mobile drawer */
.mobile-drawer {
  display: none;
  flex-direction: column;
  padding: 12px 20px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  animation: slideDown 0.3s ease forwards;
}
.mobile-drawer a {
  padding: 10px 0;
  border-top: 1px solid var(--border);
}
.mobile-drawer a:first-child {
  border-top: none;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}


/* Hero */
.hero {
  padding-top: 90px; /* equal to header height */
}

.hero:before{
  content:"";position:absolute;inset:-20% -10% auto -10%;height:120%;
  background:radial-gradient(1000px 400px at 20% 0%, rgba(99,229,255,.12), transparent 60%),
             radial-gradient(900px 500px at 80% 10%, rgba(255,176,0,.10), transparent 60%);
  pointer-events:none;
}
.hero-grid{display:grid;gap:40px;align-items:center;padding:96px 0 40px}
@media(min-width:980px){.hero-grid{grid-template-columns:1.1fr .9fr}}
.hero-copy h1{font-size:46px;line-height:1.15;margin:6px 0 10px}
.hero-copy h2{font-size:36px;line-height:1.15;margin:6px 0 10px}
@media(min-width:980px){.hero-copy h1{font-size:58px}}
.accent{background:linear-gradient(135deg,var(--cyan),#9bd0ff);-webkit-background-clip:text;background-clip:text;color:transparent}
.lead{color:var(--muted);max-width:56ch}
.cta-row{display:flex;gap:16px;margin-top:18px}
.btn-lg{background:linear-gradient(135deg,#ffd26a,#ff9a00);color:#1b1200;padding:14px 22px;border-radius:30px;font-weight:800}
.btn-ghost{border:1px solid var(--border);padding:14px 22px;border-radius:30px;color:var(--text)}
.hero-bullets{display:flex;flex-wrap:wrap;gap:14px;margin-top:14px;color:#c9d6ff;font-size:14px}

/* Phone mock */
.phone{border:1px solid var(--border);background:rgba(12,18,44,.6);backdrop-filter:blur(12px);border-radius:28px;padding:14px;box-shadow:0 24px 80px rgba(0,0,0,.45)}
.phone-header{height:28px;background:rgba(255,255,255,.06);border-radius:18px;margin-bottom:10px}
.chat{background:rgba(6,10,30,.6);border:1px solid var(--border);border-radius:18px;padding:12px;display:flex;flex-direction:column;gap:10px}
.bubble{border-radius:14px;padding:12px 14px;font-size:14px;line-height:1.35}
.bubble.you{background:rgba(255,255,255,.05)}
.bubble.ai{background:rgba(255,176,0,.15);border:1px solid rgba(255,176,0,.4)}
.chat-input{margin-top:6px;width:100%;background:rgba(255,255,255,.06);border:1px solid var(--border);border-radius:12px;padding:10px 12px;color:var(--text)}
.scroll-indicator{position:absolute;left:50%;bottom:14px;transform:translateX(-50%);font-size:12px;color:#b7c6ff;opacity:.75}


/* Generic section placeholder */
.section{min-height:40vh;padding:60px 0}
/* Brand area fix */
.brand {
  display: flex;
  align-items: center;   /* vertical center */
  gap: 10px;
}

.logo-img {
  height: 40px;   /* thoda chhota karke balance */
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  justify-content: center;  /* text ko logo ke beech align karega */
  line-height: 1.1;
}

.brand-text strong {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.brand-text small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}
 
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto; /* brand | center nav | right */
  align-items: center;
}

.nav-center {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  gap: 32px; /* space between links */
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
/* Premium GPT Button */
.btn-lg.shiny {
  background: linear-gradient(135deg, #d4af37, #ffcf66);
  color: #1b1200;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 1.1rem;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(255,176,0,.5), 0 0 40px rgba(99,229,255,.3);
  cursor: pointer;
  animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 15px rgba(255,176,0,.5), 0 0 40px rgba(99,229,255,.3); }
  50%     { box-shadow: 0 0 25px rgba(255,176,0,.8), 0 0 60px rgba(255,176,0,.4); }
}

.btn-lg.shiny:hover { transform: translateY(-2px); }
.btn-lg.shiny:before {
  content:""; position:absolute; inset:0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.5) 50%, transparent 100%);
  transform: translateX(-100%);
}
.btn-lg.shiny:hover:before { transition: transform .6s ease; transform: translateX(100%); }

/* GPT Modal Luxury Style */
.modal {
  display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,.7); backdrop-filter: blur(8px);
  z-index: 1000; justify-content: center; align-items: center;
}
.modal-content {
  position: relative; background: #0b102c; padding: 20px;
  border-radius: 20px; width: 90%; max-width: 1000px; height: 80%;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
  border: 1px solid rgba(212,175,55,.35);
}
.gpt-frame {
  width: 100%; height: 100%; border: none; border-radius: 12px;
}
.close {
  position: absolute; top: 12px; right: 16px;
  font-size: 28px; color: #fff; cursor: pointer;
}
.close:hover { color: var(--brand); }
/* Contact Us button (styled version of .btn-ghost) */
.btn-ghost {
  background: linear-gradient(135deg, #25D366, #128C7E); /* WhatsApp green shades */
  color: #fff;
  padding: 14px 28px;
  border-radius: 40px;
  font-size: 1.05rem;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(18, 140, 126, 0.35);
  display: inline-block;
  text-align: center;
  cursor: pointer;
  border: none; /* remove outline look */
}

.btn-ghost:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(18, 140, 126, 0.55);
}

/* Shine effect on hover */
.btn-ghost:before {
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.5) 50%, transparent 100%);
  transform: translateX(-100%);
}

.btn-ghost:hover:before {
  transition: transform .6s ease;
  transform: translateX(100%);
}


/* Chat bubble animation */
.bubble {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s forwards;
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Typing dots */
.typing {
  display: inline-block;
  width: 24px;
}
.typing span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 1px;
  background: #fff;
  border-radius: 50%;
  animation: blink 1s infinite;
}
.typing span:nth-child(2){ animation-delay:0.2s; }
.typing span:nth-child(3){ animation-delay:0.4s; }
@keyframes blink {
  0%, 80%, 100% { opacity: 0; }
  40% { opacity: 1; }
}
/* Chat header */
.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: rgba(255,255,255,.05);
  border-bottom: 1px solid var(--border);
  border-radius: 20px 20px 0 0;
}
.chat-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.chat-info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.chat-info strong { color: #fff; }
.chat-info small { color: var(--muted); font-size: 12px; }
.status { font-size: 11px; color: #25D366; }

/* Chat body */
.chat-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  height: 280px;
  overflow-y: auto;
  background: rgba(6,10,30,.6);
  border-radius: 0 0 20px 20px;
}

/* Chat bubbles */
.bubble {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.4;
  animation: fadeInUp 0.5s forwards;
}
.bubble.ai {
  align-self: flex-start;
  background: linear-gradient(135deg,#ffd26a,#ff9a00);
  color: #000;
  border-bottom-left-radius: 4px;
}
.bubble.you {
  align-self: flex-end;
  background: #2f365f;
  color: #fff;
  border-bottom-right-radius: 4px;
}

/* Fade animation */
@keyframes fadeInUp {
  from { opacity:0; transform:translateY(8px); }
  to { opacity:1; transform:translateY(0); }
}

/* Typing indicator */
.typing { display:flex; gap:4px; padding:8px; }
.typing span {
  width:6px; height:6px; background:#fff; border-radius:50%;
  animation: blink 1.4s infinite;
}
.typing span:nth-child(2){ animation-delay:0.2s; }
.typing span:nth-child(3){ animation-delay:0.4s; }
@keyframes blink { 0%,80%,100%{opacity:0} 40%{opacity:1} }


/* Problem Section */
.problem-section {
  padding: 100px 0;
  text-align: center;
  background: transparent;
}
.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.section-subtitle {
  font-size: 18px;
  color: #c9d6ff;
  margin-bottom: 60px;
}

/* Grid */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

/* Cards */
.problem-card {
  background: rgba(12,18,44,.6);
  border-radius: 20px;
  padding: 30px;
  text-align: left;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.problem-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}

/* Glow shadows */
.problem-card.career { box-shadow: 0 0 25px rgba(255,176,0,.35); }
.problem-card.psychology { box-shadow: 0 0 25px rgba(138,43,226,.35); }
.problem-card.finance { box-shadow: 0 0 25px rgba(0,255,200,.35); }

/* On hover intensify glow */
.problem-card.career:hover { box-shadow: 0 0 40px rgba(255,176,0,.6); }
.problem-card.psychology:hover { box-shadow: 0 0 40px rgba(138,43,226,.6); }
.problem-card.finance:hover { box-shadow: 0 0 40px rgba(0,255,200,.6); }

/* Card elements */
.card-icon {
  font-size: 40px;
  margin-bottom: 15px;
}
.problem-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 10px;
}
.card-subtitle {
  font-size: 15px;
  color: #c9d6ff;
  margin-bottom: 16px;
}
.card-points {
  list-style: none;
  padding: 0;
  margin: 0;
}
.card-points li {
  background: rgba(255,255,255,.06);
  margin-bottom: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 14px;
  color: #eaf1ff;
}
/* Solution section */
.solution-section {
  padding: 90px 0;
  text-align: center;
}
.solution-section .section-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.solution-section .section-subtitle {
  font-size: 18px;
  color: #c9d6ff;
  margin-bottom: 50px;
}

/* Grid inline style */
.solution-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap; /* mobile responsive */
}

/* Compact Flip Cards */
.solution-card {
  width: 240px;
  height: 220px;
  perspective: 1000px;
}
.flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}
.solution-card:hover .flip-inner {
  transform: rotateY(180deg);
}

/* Faces */
.flip-front, .flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  backface-visibility: hidden;
  background: rgba(12,18,44,.7);
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.flip-front h3, .flip-back h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}
.flip-front p, .flip-back p {
  font-size: 13px;
  color: #c9d6ff;
  line-height: 1.4;
}
.flip-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg,#1c275f,#0b102c);
}

/* Icons */
.solution-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 12px;
  color: #fff;
}
.solution-icon.blue { background: linear-gradient(135deg, #4d8cff, #1e3dd9); }
.solution-icon.green { background: linear-gradient(135deg, #2ecc71, #1abc9c); }
.solution-icon.purple { background: linear-gradient(135deg, #9b59b6, #6c3483); }
.solution-icon.orange { background: linear-gradient(135deg, #ff9a00, #ff4d00); }
/* Underline Glow for section titles */
.section-title {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  margin: 12px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #00f5ff, #00ff88, #ffd26a);
  box-shadow: 0 0 12px rgba(0, 255, 200, 0.6);
  animation: glowline 3s linear infinite;
}

/* Glow animation */
@keyframes glowline {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* Contact Section */
.contact-section {
  padding: 100px 0;
  text-align: center;
}

/* Top Options */
.contact-options {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}
.contact-box {
  flex: 1;
  min-width: 260px;
  max-width: 360px;
  background: rgba(12,18,44,.65);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.3);
  transition: transform .3s ease, box-shadow .3s ease;
  color: #fff;
  text-decoration: none;
}
.contact-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 12px;
  color: #fff;
}
.contact-icon.green { background: linear-gradient(135deg,#25D366,#128C7E); }
.contact-icon.blue { background: linear-gradient(135deg,#4d8cff,#1e3dd9); }
.contact-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-box p {
  font-size: 14px;
  color: #c9d6ff;
  margin-bottom: 8px;
}
.contact-box .cta {
  font-weight: 700;
  font-size: 15px;
  color: #ffd26a;
}

 /* Contact Section */
.contact-section {
  background: #0f172a;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.contact-container {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 40px;
  max-width: 700px;
  width: 100%;
  color: #e2e8f0;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* Title */
.form-title {
  font-size: 28px;
  margin-bottom: 10px;
  color: #fff;
}

.form-subtitle {
  font-size: 15px;
  color: #94a3b8;
  margin-bottom: 30px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Two columns (Name + Email) */
.two-column {
  display: flex;
  gap: 15px;
}
.two-column .input-box {
  flex: 1;
}

/* Inputs & Textarea */
.input-box {
  text-align: left;
  width: 100%;
}

.input-box label {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
  color: #cbd5e1;
}

.input-box input,
.input-box textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #334155;
  background: #1e293b;
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: border 0.3s ease;
}

.input-box input:focus,
.input-box textarea:focus {
  border-color: #facc15;
}

/* Button */
.btn-submit {
  background: linear-gradient(90deg, #facc15, #f97316);
  color: #111;
  font-weight: 600;
  font-size: 16px;
  padding: 14px 24px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* Note */
.form-note {
  font-size: 12px;
  margin-top: 15px;
  color: #94a3b8;
}
.footer {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #e2e8f0;
  padding: 60px 20px 30px;
  font-family: 'Inter', sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-logo {
  width: 50px;
  margin-bottom: 10px;
}

.footer-brand h3 {
  font-size: 20px;
  margin: 5px 0;
  color: #fff;
}

.footer-brand .tagline {
  color: #facc15;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-brand .desc {
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 20px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #facc15; /* golden hover */
  color: #111;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 15px;
  font-size: 16px;
  color: #facc15;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  color: #cbd5e1;
  font-size: 14px;
  transition: color 0.3s;
}

.footer-links ul li a:hover {
  color: #facc15;
}

.footer-contact p {
  font-size: 14px;
  margin: 6px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  font-size: 13px;
  color: #94a3b8;
}

.footer-bottom .policy-links a {
  margin-left: 15px;
  color: #94a3b8;
  transition: color 0.3s;
}

.footer-bottom .policy-links a:hover {
  color: #facc15;
}
/* Fade-up animation (for scroll) */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Tablet adjustments */
@media (max-width: 1024px) {
  .hero-copy h1 { font-size: 36px; }
  .hero-copy h2 { font-size: 26px; }
  .cta-row { flex-direction: column; align-items: flex-start; gap: 12px; }
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .hero-copy h1 { font-size: 32px; }
  .hero-copy h2 { font-size: 20px; }
  .cta-row { flex-direction: column; gap: 10px; width: 100%; }
  .cta-row a { width: 100%; text-align: center; }

  .solution-card { width: 100%; height: auto; }
  .flip-inner { transform: none !important; }
  .flip-front, .flip-back { position: relative; height: auto; backface-visibility: visible; box-shadow: none; }
  .flip-back { display: none; }

  .two-column { flex-direction: column; gap: 15px; }
  .contact-container { padding: 20px; }

  .footer-container { grid-template-columns: 1fr; text-align: center; }
  .social-icons { justify-content: center; }
}
/* ============================= */
/* Mobile / Tablet Optimizations */
/* ============================= */

/* 1. Header & Nav */
@media (max-width: 768px) {
  .header.improved {
    padding: 0 16px;       /* reduce side padding */
    height: auto;
  }

  .nav {
    grid-template-columns: auto auto auto;
    height: 64px;          /* shrink height */
    gap: 12px;
  }

  .brand-text strong {
    font-size: 16px;
  }

  .brand-text small {
    font-size: 11px;
  }

  .nav-center {
    display: none;         /* hide desktop nav */
  }

  #tryBtn {
    display: none;         /* hide CTA in header */
  }

  .hamburger {
    display: inline-flex;  /* show hamburger */
    padding: 8px 12px;
    font-size: 20px;
  }

  .mobile-drawer {
    display: none;
    flex-direction: column;
    padding: 12px 20px;
    background: var(--glass);
  }

  .mobile-drawer a {
    padding: 12px 0;
    font-size: 16px;
  }
}

/* 2. Hero Layout */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 60px 0 30px;
  }

  .hero-copy h1 {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-copy h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .lead {
    font-size: 15px;
    line-height: 1.5;
  }

  .cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-lg,
  .btn-ghost {
    width: 100%;
    text-align: center;
    font-size: 1rem;
  }

  /* Chat mockup full width */
  .phone {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    transform: scale(1); /* no shrink */
  }
}

/* 3. Sections */
@media (max-width: 768px) {
  .section {
    padding: 40px 0;
  }
}

/* 4. Chat Body Scroll (fix overflow on small screens) */
@media (max-width: 480px) {
  .chat-body {
    height: 220px;   /* keep visible without breaking */
  }
}
/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(18, 140, 126, 0.4);
  z-index: 1000;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float img {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 30px rgba(18, 140, 126, 0.6);
}
/* Floating Info Button */
.info-float {
  position: fixed;
  bottom: 90px; /* WhatsApp ke upar */
  right: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #63e5ff, #2a6dd9); /* light blue gradient */
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  z-index: 1000;
  text-decoration: none;
  font-size: 22px;
}

.info-text {
  font-weight: 700;
  transform: none; /* no tilt */
}


.info-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(0,0,0,0.5);
}

/* ============================= */
/* Clean Professional Hero Style */
/* ============================= */


/* Starfield Background */
#starfield {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1; /* keep text above stars */
}
.section {
  min-height: auto;
  padding: 50px 0;
}
.divider {
  position: relative;
  height: 60px;
  background: #0f142d;
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}
#problem {
  background: #0f142d; /* slightly lighter navy than hero */
  position: relative;
}

#problem::before {
  content: "";
  position: absolute;
  top: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: linear-gradient(to bottom, #0b102c 0%, #0f142d 100%);
}

/* ============================= */
/* Feedback Notification Bar */
/* ============================= */

.feedback-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: rgba(212, 175, 55, 0.9); /* gold brand color */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 2000; /* above header */
  font-size: 14px;
  color: #0b102c;
}

.feedback-text {
  overflow: hidden;
  white-space: nowrap;
  flex: 1;
  margin-right: 10px;
}

.feedback-text span {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 12s linear infinite;
}

@keyframes scrollText {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

.feedback-btn {
  background: #0b102c;
  color: #fff;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  text-decoration: none;  /* for <a> */
}

.feedback-btn:hover {
  background: #111630;
  transform: translateY(-1px);
}
body {
  padding-top: 40px; /* same as feedback bar height */
}

.blue-text {
  color: #63e5ff;       /* light blue */
  font-weight: 600;     /* thoda bold */
}
.golden-text {
  color: #d4af37;   /* gold */
  font-weight: 600; /* bold */
}

.highlight-note {
  margin-top: 12px;
  font-size: 15px;
  color: #d4af37;   /* gold */
  font-weight: 600;
  text-align: left; /* left aligned under buttons */
}
 

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  text-align: center;
  padding: 80px 20px 60px;
  background: linear-gradient(180deg, #0b102c, #131b47);
  overflow: hidden;
}

/* Title */
/* Title with Glow */
.hero-title-clean {
  font-family: 'Poppins', 'Inter', sans-serif;
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  text-shadow: 0 0 10px rgba(255, 200, 50, 0.7), 
               0 0 20px rgba(255, 180, 40, 0.5);
}

/* Divider Line */
.hero-divider {
  width: 100px;
  height: 4px;
  border-radius: 3px;
  margin: 0 auto 16px;
  background: linear-gradient(90deg, #ffcc33, #ffb347, #ffcc33);
  box-shadow: 0 0 8px rgba(255, 200, 50, 0.6);
}

/* Subtitle */
.hero-sub-clean {
  font-family: 'Poppins', 'Inter', sans-serif;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #ffb347;
  margin-bottom: 16px;
}

.hero-sub-clean .blue-text {
  color: #63e5ff;
}

/* Paragraph */
.lead {
  font-size: 15px;
  line-height: 1.6;
  color: #c9d4f5;
  max-width: 700px;
  margin: 0 auto 25px;
}

.golden-text {
  color: #ffd26a;
  font-weight: 600;
}

/* Buttons */
.cta-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.btn-lg.shiny {
  background: linear-gradient(90deg, #ffb347, #ffcc33);
  color: #000 !important;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 15px;
  box-shadow: 0 6px 14px rgba(0,0,0,.25);
}

.btn-ghost {
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 30px;
  font-size: 15px;
}

/* Highlight note */
.highlight-note {
  font-size: 13px;
  color: #ffd26a;
  text-align: center;
  margin: 12px 0 18px;
}

/* Bullet points */
.hero-bullets {
  font-size: 14px;
  color: #c9d4f5;
  margin-top: 12px;
  text-align: center;
}

.hero-bullets span {
  display: inline-block;
  margin: 4px 10px;
  text-align: center;
}

/* 📱 Responsive (Mobile) */
@media (max-width: 768px) {
  .hero-title-clean { font-size: 32px; }
  .hero-sub-clean { font-size: 16px; }
  .lead { font-size: 13px; max-width: 95%; }
  .btn-lg, .btn-ghost { font-size: 14px; padding: 10px 22px; }
}

/* AI Baba Chat Composer */
.composer {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  width: 90%;
  max-width: 800px;
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 10px;
  z-index: 1000;
}

.input {
  flex: 1;
  background: #000;
  border: 1px solid #444;
  color: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  outline: none;
  font-size: 15px;
}

.send {
  background: linear-gradient(135deg, #ffd166, #f1c453);
  border: none;
  border-radius: 8px;
  font-weight: 700;
  padding: 0 18px;
  cursor: pointer;
  transition: 0.2s;
}
.send:hover {
  transform: scale(1.05);
}

