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



  :root{
    --navy: #0b1a3d;
    --navy-2: #10214d;
    --red: #e02b3c;
    --red-dark: #c81f30;
    --pink-bg: #fdecee;
    --lav-bg: #eef0fb;
    --text-muted: #6b7280;
    --cream: #f7f8fc;
  }

  *{ box-sizing: border-box; }

  body{
    font-family: 'Poppins', sans-serif;
    color: #1c1c2e;
    background: #fff;
    overflow-x: hidden;
  }

  .logoimg img 
  {
    width: 200px;
    height:40px;
  }

  h1,h2,h3,h4, .font-display{
    font-family: 'Merriweather', serif;
  }

  a{ text-decoration: none; }

  .eyebrow{
    color: var(--red);
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  .eyebrow::before{
    content:"";
    display:inline-block;
    width: 22px;
    height: 2px;
    background: var(--red);
  }

  .section-title{
    font-weight: 900;
    color: var(--navy);
    font-size: 2rem;
  }

  .btn-brand{
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    font-weight: 600;
    padding: .7rem 1.6rem;
    border-radius: 8px;
  }
  .btn-brand:hover{
    background: var(--red-dark);
    border-color: var(--red-dark);
    color: #fff;
  }
  .btn-outline-light-brand{
    border: 1px solid rgba(255,255,255,.5);
    color: #fff;
    font-weight: 600;
    padding: .7rem 1.4rem;
    border-radius: 8px;
    background: transparent;
  }
  .btn-outline-light-brand:hover{
    background: rgba(255,255,255,.08);
    color:#fff;
  }
  .btn-navy{
    background: var(--navy);
    border-color: var(--navy);
    color:#fff;
    font-weight:600;
    border-radius: 6px;
  }
  .btn-navy:hover{ background:#081335; color:#fff; }

  .btn-outline-brand{
    border: 1px solid var(--red);
    color: var(--red);
    font-weight: 600;
    border-radius: 8px;
    padding: .5rem 1.2rem;
    background:#fff;
  }
  .btn-outline-brand:hover{ background: var(--red); color:#fff; }

  /* NAVBAR */
  .navbar-custom{
    padding: 14px 0;
    background: #fff;
  }
  .navbar-custom .nav-link{
    color: #26264d;
    font-weight: 500;
    margin: 0 12px;
    position: relative;
  }
  .navbar-custom .nav-link.active{
    color: var(--red);
    font-weight: 600;
  }
  .navbar-custom .nav-link.active::after{
    content:"";
    position:absolute;
    bottom:-6px;
    left:0;
    width:100%;
    height:2px;
    background: var(--red);
  }
  .brand-logo{
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--navy);
  }
  .brand-logo span{ color: var(--red); }
  .brand-tagline{
    font-size: .65rem;
    letter-spacing: .15em;
    color: #9ca3af;
    text-transform: uppercase;
    margin-left: 4px;
  }

  /* HERO */
  .hero{
    background:
      linear-gradient(100deg, rgba(11,26,61,.96) 30%, rgba(11,26,61,.75) 55%, rgba(11,26,61,.45) 100%),
      url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
    color: #fff;
    padding: 70px 0 130px;
    position: relative;
  }
  .hero h1{
    font-weight: 900;
    font-size: 3rem;
    line-height: 1.2;
  }
  .hero h1 .red{ color: #ff5468; }
  .hero p.lead-text{
    color: #cfd4e6;
    font-size: 1.05rem;
    max-width: 480px;
  }
  .avatar-stack img{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--navy);
    object-fit: cover;
    margin-left: -12px;
  }
  .avatar-stack img:first-child{ margin-left:0; }

  .hero-card{
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    color: #1c1c2e;
    box-shadow: 0 25px 50px rgba(0,0,0,.35);
  }
  .hero-card .trophy-circle{
    width: 54px; height: 54px;
    background: var(--pink-bg);
    border-radius: 50%;
    display:flex;align-items:center;justify-content:center;
    font-size: 1.4rem;
    color: #f4a300;
  }
  .hero-card h5{ font-weight: 800; margin-bottom: 2px;}
  .hero-card .result-title{ color: var(--red); }
  .hero-card .stat-row{
    display:flex; align-items:center; gap:12px;
    padding: 10px 0;
    border-top: 1px solid #f0f0f4;
  }
  .hero-card .stat-icon{
    width: 34px;height:34px;border-radius:8px;
    background: var(--lav-bg);
    display:flex;align-items:center;justify-content:center;
    color: var(--navy);
    font-size: .9rem;
  }
  .hero-card .stat-row strong{ display:block; font-size: .95rem; }
  .hero-card .stat-row small{ color: var(--text-muted); font-size: .75rem;}

  /* STATS BAR */
  .stats-bar{
    background:#fff;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(20,30,70,.12);
    margin-top: -70px;
    position: relative;
    z-index: 5;
    padding: 30px 10px;
  }
  .stats-bar .stat-item{ text-align:center; }
  .stats-bar .stat-icon-circle{
    width: 54px;height:54px;border-radius:50%;
    background: var(--lav-bg);
    display:flex;align-items:center;justify-content:center;
    margin: 0 auto 10px;
    color: var(--navy);
    font-size: 1.2rem;
  }
  .stats-bar .stat-item:nth-child(3) .stat-icon-circle{
    background: var(--pink-bg);
    color: var(--red);
  }
  .stats-bar h3{
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 0;
  }
  .stats-bar small{ color: var(--text-muted); }

  section{ padding: 70px 0; }
  .bg-soft{ background: var(--cream); }

  /* COURSE CARDS */
  .course-card{
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(20,30,70,.08);
    background:#fff;
    height: 100%;
    transition: transform .25s ease, box-shadow .25s ease;
  }
  .course-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(20,30,70,.15);
  }
  .course-card img{
    width:100%; height: 130px; object-fit: cover;
  }
  .course-card .body{ padding: 16px; }
  .course-card h6{ font-weight: 700; color: var(--navy); }
  .badge-code{
    background: var(--pink-bg);
    color: var(--red);
    font-size: .68rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    display:inline-block;
    margin-bottom: 8px;
  }
  .course-meta{ font-size: .78rem; color: var(--text-muted); margin-bottom: 4px;}
  .course-fee{ font-size: .82rem; font-weight: 600; color: var(--navy); margin-bottom: 10px;}
  .old-price{ text-decoration: line-through; color:#b0b3c0; font-weight: 400; margin-right:6px;}
  .discount-badge{
    background: var(--red);
    color:#fff;
    font-size: .62rem;
    padding: 1px 7px;
    border-radius: 4px;
    margin-left: 6px;
  }
  .course-card .btn{ width:100%; font-size: .85rem; padding: 8px; }

  /* WHY CHOOSE */
  .feature-item{
    display:flex; gap:14px; align-items:flex-start; margin-bottom: 26px;
  }
  .feature-icon{
    width: 46px;height:46px;border-radius:12px;
    background: var(--lav-bg);
    display:flex;align-items:center;justify-content:center;
    color: var(--navy);
    font-size: 1.1rem;
    flex-shrink:0;
  }
  .feature-item:nth-child(3n+2) .feature-icon{ background:var(--pink-bg); color:var(--red); }
  .feature-item h6{ font-weight:700; margin-bottom: 2px; color:#1c1c2e; }
  .feature-item p{ font-size:.82rem; color: var(--text-muted); margin-bottom:0;}

  .dot-grid{
    width: 140px; height:140px;
    background-image: radial-gradient(circle, #d9d9e6 1.6px, transparent 1.6px);
    background-size: 14px 14px;
    opacity: .7;
  }

  /* TESTIMONIALS / RESULTS */
  .result-card{
    background:#fff;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(20,30,70,.08);
    height:100%;
  }
  .result-card img{
    width:60px;height:60px;border-radius:50%; object-fit:cover;
  }
  .result-card h6{ color: var(--red); font-weight: 800; margin-bottom:0;}
  .result-card .stars{ color:#f4a300; font-size:.8rem;}
  .result-card .quote{
    font-size: .85rem;
    color:#4b5065;
    font-style: italic;
    margin-top:12px;
    position: relative;
    padding-left: 18px;
  }
  .result-card .quote::before{
    content:"\201C";
    position:absolute; left:-4px; top:-8px;
    font-size: 1.8rem; color: var(--red); opacity:.5;
    font-family: serif;
  }
  .carousel-dots{ display:flex; gap:6px; justify-content:center; margin-top:20px;}
  .carousel-dots span{
    width:8px;height:8px;border-radius:50%;
    background:#d9dbe6; display:inline-block;
  }
  .carousel-dots span.active{ background: var(--red); width:22px; border-radius:5px;}

  /* PROCESS STEPS */
  .process-wrap{
    display:flex; align-items:flex-start; justify-content:space-between;
    flex-wrap: wrap;
    gap: 10px;
  }
  .process-step{
    text-align:center;
    flex: 1;
    min-width: 110px;
    position: relative;
  }
  .process-step .circle{
    width: 62px;height:62px;border-radius:50%;
    background: var(--pink-bg);
    color: var(--red);
    display:flex;align-items:center;justify-content:center;
    font-weight:700;
    margin: 0 auto 12px;
    font-size: 1.3rem;
    border: 2px dashed #f3b8bf;
  }
  .process-step small{
    display:block;
    color: var(--red);
    font-weight: 700;
    font-size: .7rem;
    margin-bottom: 4px;
  }
  .process-step p{ font-size:.8rem; font-weight:600; color: var(--navy); margin-bottom:0;}
  .process-arrow{
    align-self: center;
    color: #d9dbe6;
    font-size: 1.2rem;
    margin-top: 20px;
  }

  /* FACULTY */
  .faculty-card{
    text-align:center;
    background:#fff;
    border-radius: 14px;
    overflow:hidden;
    box-shadow: 0 10px 30px rgba(20,30,70,.08);
    transition: transform .25s ease;
  }
  .faculty-card:hover{ transform: translateY(-6px); }
  .faculty-card img{
    width:100%; height: 200px; object-fit: cover;
  }
  .faculty-card .body{ padding: 16px; }
  .faculty-card h6{ font-weight:700; margin-bottom:2px; color:var(--navy);}
  .faculty-card small{ color: var(--text-muted); }
  .faculty-social{ margin-top:10px; }
  .faculty-social a{
    width:28px;height:28px;border-radius:50%;
    background: var(--lav-bg);
    color: var(--navy);
    display:inline-flex;align-items:center;justify-content:center;
    font-size:.7rem;
    margin: 0 3px;
  }

  /* APP SECTION */
  .app-section{
    background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
    border-radius: 20px;
    color:#fff;
    padding: 50px;
    position: relative;
    overflow:hidden;
  }
  .app-section h3{ font-weight:800; font-size:1.8rem;}
  .app-section ul{ list-style:none; padding:0; margin-top:20px;}
  .app-section ul li{
    margin-bottom:10px; font-size:.92rem;
    display:flex; align-items:center; gap:8px;
  }
  .app-section ul li i{ color:#4ade80; }
  .app-phone-frame{
    background:#000;
    border-radius: 34px;
    padding: 10px;
    width: 200px;
    margin: 0 auto;
    box-shadow: 0 25px 60px rgba(0,0,0,.5);
  }
  .app-phone-frame img{
    border-radius: 26px;
    width:100%;
    display:block;
  }
  .qr-box{
    background:#fff;
    border-radius: 12px;
    padding: 14px;
    width: 130px;
    margin: 0 auto;
  }
  .qr-box img{ width:100%; }
  .store-badges img{ height: 38px; margin: 6px 4px 0; }

  /* BLOG */
  .blog-card{
    border-radius:14px;
    overflow:hidden;
    background:#fff;
    box-shadow: 0 10px 30px rgba(20,30,70,.08);
    height:100%;
  }
  .blog-card img{ width:100%; height:140px; object-fit:cover;}
  .blog-card .body{ padding:16px; }
  .cat-badge{
    font-size:.62rem; font-weight:700; text-transform:uppercase;
    color: var(--red); letter-spacing:.05em;
  }
  .blog-card h6{ font-weight:700; font-size:.92rem; color:var(--navy); margin: 6px 0;}
  .blog-card .date{ font-size:.72rem; color:var(--text-muted);}
  .read-more{ font-size:.78rem; font-weight:600; color: var(--red); }

  /* CTA */
  .cta-banner{
    background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%);
    color:#fff;
    padding: 45px 0;
  }
  .cta-banner h3{ font-weight:800; }

  /* FOOTER */
  footer{
    background: #0a1633;
    color: #b7bcd4;
    padding-top: 60px;
  }
  footer h6{
    color:#fff; font-weight:700; margin-bottom:16px; font-size:.9rem; text-transform:uppercase; letter-spacing:.05em;
  }
  footer a{ color:#b7bcd4; font-size:.85rem; line-height:2; }
  footer a:hover{ color:#fff; }
  .footer-bottom{
    border-top: 1px solid rgba(255,255,255,.08);
    margin-top: 40px;
    padding: 18px 0;
    font-size: .78rem;
  }
  .footer-social a{
    width:32px;height:32px;border-radius:50%;
    background: rgba(255,255,255,.08);
    display:inline-flex;align-items:center;justify-content:center;
    margin-right:8px;
  }

  @media (max-width: 991px){
    .hero h1{ font-size: 2.1rem; }
    .process-arrow{ display:none; }
    .app-section{ padding: 30px; text-align:center; }
  }


  
