/* =========================================================
   GOOGLE FONT
========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* =========================================================
   GLOBAL RESET
========================================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins',sans-serif;
  scroll-behavior:smooth;
}

:root{

  --primary:#2563eb;
  --primary-dark:#1d4ed8;
  --secondary:#7c3aed;

  --text-dark:#111827;
  --text-light:#64748b;

  --white:#ffffff;

  --bg-light:#f8fbff;

  --shadow-sm:0 5px 15px rgba(0,0,0,0.06);
  --shadow-md:0 10px 30px rgba(37,99,235,0.10);
  --shadow-lg:0 20px 50px rgba(37,99,235,0.16);

  --radius-lg:24px;
}


/* =========================================================
   BODY
========================================================= */

body{
  background:#f8fbff;
  color:#111827;
  overflow-x:hidden;
  padding-top:82px;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
}


/* =========================================================
   HEADER
========================================================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:90px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 5%;
    box-sizing:border-box;
}


/* =========================================================
   LOGO
========================================================= */

.logo-container{
    display:flex;
    align-items:flex-start;
    flex-shrink:0;
}

.logo-container img{
    height:100px;
    width:auto;
    display:block;
}


/* =========================================================
   NAVIGATION
========================================================= */

.nav ul{

  display:flex;
  align-items:center;

  gap:34px;

  list-style:none;
}

.nav a{

  color:#111827;

  font-size:15px;
  font-weight:600;

  position:relative;

  transition:0.3s;
}

.nav a:hover{
  color:#2563eb;
}


/* =========================================================
   HEADER RIGHT
========================================================= */

.header-right{
  display:flex;
  align-items:center;
  gap:20px;
}


/* =========================================================
   BUTTONS
========================================================= */

.header-btns{
  display:flex;
  align-items:center;
  gap:14px;
}

.login-btn{

  padding:12px 22px;

  border-radius:50px;

  border:1px solid #d1d5db;

  background:transparent;

  font-size:15px;
  font-weight:600;

  color:#111827;

  cursor:pointer;

  transition:0.3s;
}

.login-btn:hover{
  background:#f3f4f6;
}


/* =========================================================
   MAIN BUTTONS
========================================================= */

.hero-btn,
.hero-main-btn,
.contact-btn,
.about-btn,
.hero-secondary-btn{

  display:inline-flex;

  align-items:center;
  justify-content:center;

  padding:14px 28px;

  border:none;

  border-radius:50px;

  background:
  linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
  );

  color:#fff;

  font-size:15px;
  font-weight:600;

  cursor:pointer;

  transition:0.35s ease;

  box-shadow:
  0 12px 30px rgba(37,99,235,0.20);
}

.hero-btn:hover,
.hero-main-btn:hover,
.contact-btn:hover,
.about-btn:hover,
.hero-secondary-btn:hover{

  transform:translateY(-4px);

  box-shadow:
  0 18px 40px rgba(37,99,235,0.28);
}

.hero-secondary-btn{

  background:#ffffff;
  color:#111827;
}


/* =========================================================
   ENHANCED COURSE BUTTON
========================================================= */

.course-card button{

  position:relative;

  width:100%;

  padding:15px 24px;

  border:none;

  border-radius:16px;

  background:
  linear-gradient(
    135deg,
    #2563eb,
    #7c3aed
  );

  color:#fff;

  font-size:15px;
  font-weight:700;

  letter-spacing:0.3px;

  cursor:pointer;

  overflow:hidden;

  transition:all 0.35s ease;

  box-shadow:
  0 12px 25px rgba(37,99,235,0.22);

  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
}

/* SHINE EFFECT */

.course-card button::before{

  content:'';

  position:absolute;

  top:0;
  left:-120%;

  width:100%;
  height:100%;

  background:
  linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );

  transition:0.6s;
}

/* ARROW */

.course-card button::after{

  content:'→';

  font-size:18px;

  transition:0.3s ease;
}

/* HOVER */

.course-card button:hover{

  transform:translateY(-4px) scale(1.02);

  box-shadow:
  0 18px 40px rgba(37,99,235,0.30);
}

.course-card button:hover::before{
  left:120%;
}

.course-card button:hover::after{
  transform:translateX(4px);
}

/* CLICK */

.course-card button:active{
  transform:scale(0.98);
}


/* =========================================================
   HAMBURGER
========================================================= */

.hamburger{
  display:none;

  background:none;
  border:none;

  cursor:pointer;
}

.hamburger .bar{

  width:24px;
  height:2px;

  background:#111827;

  margin:5px 0;

  display:block;
}


/* =========================================================
   HERO SECTION
========================================================= */

.hero{

  min-height:100vh;

  display:flex;
  align-items:center;
  justify-content:center;

  padding:120px 8% 100px;

  background:
  linear-gradient(
    135deg,
    #dbeafe 0%,
    #ede9fe 50%,
    #f8fbff 100%
  );

  position:relative;

  overflow:hidden;
}

.hero::before{

  content:'';

  position:absolute;

  width:500px;
  height:500px;

  border-radius:50%;

  background:rgba(255,255,255,0.45);

  top:-180px;
  left:-120px;
}

.hero::after{

  content:'';

  position:absolute;

  width:350px;
  height:350px;

  border-radius:50%;

  background:rgba(37,99,235,0.08);

  bottom:-120px;
  right:-80px;
}


/* =========================================================
   HERO CONTAINER
========================================================= */

.hero-container{

  width:100%;

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:80px;

  align-items:center;

  position:relative;
  z-index:2;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.hero-badge{

  display:inline-block;

  padding:10px 22px;

  border-radius:999px;

  background:rgba(124,58,237,0.10);

  color:#7c3aed;

  font-size:14px;
  font-weight:700;

  margin-bottom:24px;
}

.hero-content h1{

  font-size:72px;
  font-weight:800;

  line-height:1.05;

  margin-bottom:24px;

  color:#111827;
}

.gradient-text{

  background:
  linear-gradient(
    90deg,
    #2563eb,
    #7c3aed
  );

  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-content p{

  font-size:19px;

  line-height:1.9;

  color:#64748b;

  margin-bottom:36px;

  max-width:650px;
}


/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons{
  display:flex;
  gap:18px;
  margin-bottom:50px;
}


/* =========================================================
   HERO STATS
========================================================= */

.hero-stats{

  display:flex;
  align-items:center;
  gap:50px;
}

.hero-stat h3{

  font-size:38px;
  font-weight:700;

  margin-bottom:6px;

  color:#111827;
}

.hero-stat p{

  margin:0;

  color:#64748b;

  font-size:15px;
}


/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image{

  position:relative;

  border-radius:34px;

  overflow:hidden;

  box-shadow:
  0 25px 60px rgba(0,0,0,0.14);
}

.hero-image img{

  width:100%;
  height:650px;

  object-fit:cover;
}


/* =========================================================
   SECTIONS
========================================================= */

section{
  padding:110px 8%;
}


/* =========================================================
   SECTION TITLE
========================================================= */

.section-title{
  text-align:center;
  margin-bottom:70px;
}

.section-tag{

  display:inline-block;

  padding:10px 22px;

  border-radius:999px;

  background:rgba(37,99,235,0.10);

  color:#2563eb;

  font-size:14px;
  font-weight:700;

  margin-bottom:20px;
}

.section-title h2{

  font-size:58px;
  font-weight:800;

  color:#111827;

  margin-bottom:18px;
}

.section-title p{

  font-size:18px;

  color:#64748b;
}


/* =========================================================
   GRID
========================================================= */

.courses-grid,
.premium-grid{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:35px;
}


/* =========================================================
   COURSE CARD
========================================================= */

.course-card{

  background:#fff;

  border-radius:30px;

  overflow:hidden;

  box-shadow:
  0 12px 35px rgba(0,0,0,0.07);

  transition:0.4s ease;
}

.course-card:hover{

  transform:translateY(-12px);

  box-shadow:
  0 24px 55px rgba(37,99,235,0.15);
}

.course-card img{

  width:100%;
  height:240px;

  object-fit:cover;
}

.course-content{
  padding:20px;
}

.course-tag{

  display:inline-block;

  padding:8px 16px;

  border-radius:40px;

  background:#eff6ff;

  color:#2563eb;

  font-size:13px;
  font-weight:700;

  margin-bottom:20px;
}

.course-content h3{

  font-size:30px;
  font-weight:700;

  line-height:1.2;

  margin-bottom:14px;
}

.course-content p{

  color:#64748b;

  line-height:1.8;

  margin-bottom:24px;
}


/* =========================================================
   FOOTER
========================================================= */

footer{

  background:#111827;

  color:#fff;

  padding:80px 8% 30px;
}

.footer-container{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(200px,1fr));

  gap:40px;

  margin-bottom:40px;
}

footer h3,
footer h4{
  margin-bottom:16px;
  font-weight:700;
}

footer p,
footer a{

  color:#cbd5e1;

  line-height:1.8;
}

footer a{
  display:block;
  margin-bottom:10px;
}

.copy{

  text-align:center;

  color:#94a3b8;

  border-top:1px solid rgba(255,255,255,0.08);

  padding-top:24px;
}

.social-icons{
    display:flex;
    justify-content:center;
    gap:18px;
    margin:30px 0;
}

.social-icons a{
    width:50px;
    height:50px;
    background:rgba(255,255,255,0.08);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:18px;
    transition:all 0.3s ease;
}

.social-icons a:hover{
    transform:translateY(-5px);
    background:linear-gradient(
        135deg,
        #00c6ff,
        #7f5cff
    );
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:1100px){

  .hero-container{
    grid-template-columns:1fr;
  }

  .hero-content{
    text-align:center;
  }

  .hero-buttons,
  .hero-stats{
    justify-content:center;
  }
}


@media(max-width:768px){

  body{
    padding-top:74px;
  }

  .header{

    height:74px;

    padding:0 5%;
  }

  .nav{

    position:fixed;

    top:74px;
    left:0;
    right:0;

    background:#fff;

    padding:24px;

    opacity:0;

    pointer-events:none;

    transition:0.3s;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
  }

  .nav.open{
    opacity:1;
    pointer-events:auto;
  }

  .nav ul{
    flex-direction:column;
    gap:22px;
  }

  .hamburger{
    display:block;
  }

  .header-btns{
    display:none;
  }

  .hero-content h1,
  .section-title h2{

    font-size:42px;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .hero-stats{
    gap:24px;
    flex-wrap:wrap;
  }

  .hero-image img{
    height:420px;
  }

  .courses-grid,
  .premium-grid{
    grid-template-columns:1fr;
  }

  section{
    padding:90px 6%;
  }
}


@media(max-width:480px){

  .hero-content h1,
  .section-title h2{

    font-size:34px;
  }

  .hero-content p{
    font-size:16px;
  }

  .course-content h3{
    font-size:24px;
  }

  .hero{
    padding-top:120px;
  }
}
/* =========================================================
   PREMIUM COURSE BUTTON FINAL
========================================================= */
.course-card button{
    width:100%;
    padding:14px;
    border:none;
    border-radius:50px;
    background:linear-gradient(135deg,#00c6ff,#6c63ff);
    color:#fff;
    font-weight:600;
    font-size:15px;
    cursor:pointer;
    transition:0.3s ease;
}

.course-card button:hover{
    transform:translateY(-2px);
    box-shadow:0 8px 20px rgba(108,99,255,.35);
}


/* GLOW EFFECT */

.course-card button::before{

  content:'';

  position:absolute;

  top:0;
  left:-120%;

  width:60%;
  height:100%;

  background:
  linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.55),
    transparent
  );

  transform:skewX(-25deg);

  transition:0.8s;
}


/* ARROW ICON */

.course-card button::after{

  content:'➜';

  font-size:18px;

  transition:0.3s ease;
}


/* HOVER EFFECT */

.course-card button:hover{

  transform:
  translateY(-6px)
  scale(1.03);

  box-shadow:
  0 22px 45px rgba(79,70,229,0.45);
}


/* SHINE MOVE */

.course-card button:hover::before{
  left:140%;
}


/* ARROW MOVE */

.course-card button:hover::after{
  transform:translateX(6px);
}


/* CLICK EFFECT */

.course-card button:active{

  transform:scale(0.97);
}
/* ==========================================
   COURSE CARD BUTTON
========================================== */

.course-card button {
    margin-top: 20px;
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 12px;
    cursor: pointer;

    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;

    color: #fff;

    background: linear-gradient(
        135deg,
        #4f46e5,
        #06b6d4
    );

    transition: all 0.3s ease;
}

.course-card button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.35);
}

.course-card button:active {
    transform: translateY(0);
}
/* TESTIMONIAL NOTES */

.testimonials{
    padding:100px 8%;
    background: linear-gradient(135deg, #a88feb 0%, #b79cf6 45%, #c2b2fd 100%);
}

.notes-board{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:40px;
}

.note{
    width:280px;
    min-height:250px;
    padding:35px 25px;
    position:relative;
    border-radius:8px;
    box-shadow:0 15px 35px rgba(0,0,0,0.15);
    transition:0.4s;
    transform:rotate(-3deg);
}

.note:hover{
    transform:rotate(0deg) scale(1.05);
}

.note1{
    background:#fff8a6;
}

.note2{
    background:#c8ffd4;
    transform:rotate(4deg);
}

.note3{
    background:#ffd6d6;
    transform:rotate(-5deg);
}

.note4{
    background:#d8e8ff;
    transform:rotate(3deg);
}

.pin{
    width:18px;
    height:18px;
    background:#ff3b30;
    border-radius:50%;
    position:absolute;
    top:12px;
    left:50%;
    transform:translateX(-50%);
    box-shadow:0 3px 8px rgba(0,0,0,0.3);
}

.note p{
    margin-top:20px;
    line-height:1.8;
    color:#374151;
    font-style:italic;
}

.note h4{
    margin-top:25px;
    color:#111827;
}

.note span{
    font-size:0.9rem;
    color:#6b7280;
}

.testimonials::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: #7c3aed;
  opacity: 0.08;
  filter: blur(80px);
  top: 50px;
  left: -100px;
}
/* ==========================================
   LEAD CAPTURE POPUP
========================================== */

.popup-overlay{
    position: fixed !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0,0,0,0.65) !important;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999 !important;
    padding: 20px;
}

.popup-box{
    background: #fff;
    width: 500px;
    max-width: 90%;
    padding: 30px;
    border-radius: 20px;
}

.popup-box{
    width:100%;
    max-width:500px;
    background:#fff;
    border-radius:24px;
    padding:35px;
    position:relative;
    box-shadow:0 20px 60px rgba(0,0,0,.25);
    animation:popupShow .35s ease;
}

.popup-box h2{
    font-size:30px;
    margin-bottom:10px;
    color:#111827;
}

.popup-box p{
    color:#64748b;
    margin-bottom:25px;
}

.popup-box input,
.popup-box textarea{
    width:100%;
    padding:14px 16px;
    margin-bottom:15px;
    border:1px solid #d1d5db;
    border-radius:12px;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.popup-box input:focus,
.popup-box textarea:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.1);
}

.popup-submit{
    width:100%;
    border:none;
    padding:15px;
    border-radius:12px;
    cursor:pointer;
    color:#fff;
    font-weight:600;
    font-size:15px;
    background:linear-gradient(135deg,#2563eb,#7c3aed);
}

.close-popup{
    position:absolute;
    top:15px;
    right:20px;
    font-size:30px;
    cursor:pointer;
    color:#64748b;
}

@keyframes popupShow{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.popup-box select{
    width:100%;
    padding:14px 16px;
    margin-bottom:15px;
    border:1px solid #d1d5db;
    border-radius:12px;
    font-size:15px;
    font-family:'Poppins',sans-serif;
    outline:none;
    background:#fff;
    transition:.3s;
}

.popup-box select:focus{
    border-color:#2563eb;
    box-shadow:0 0 0 4px rgba(37,99,235,.1);
}
/* ==========================================
   LEAD POPUP FINAL
========================================== */

#leadPopup{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;

    display: none;

    justify-content: center !important;
    align-items: center !important;

    background: rgba(0,0,0,0.7) !important;

    z-index: 999999 !important;

    padding: 20px !important;
}

#leadPopup .popup-box{
    background: #fff !important;

    width: 500px !important;
    max-width: 90% !important;

    padding: 35px !important;

    border-radius: 20px !important;

    position: relative !important;

    box-shadow: 0 20px 60px rgba(0,0,0,.25) !important;
}

.close-popup{
    position:absolute;
    top:15px;
    right:20px;
    font-size:30px;
    cursor:pointer;
}
/* This part is for contactbot */

/* Career Widget */

.career-widget{
    position:fixed;
    bottom:30px;
    right:30px;
    z-index:99999;
}

.career-btn{
    width:75px;
    height:75px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    font-size:30px;
    color:#fff;

    background:linear-gradient(
        135deg,
        #2563eb,
        #7c3aed
    );

    box-shadow:
    0 10px 30px rgba(37,99,235,.4);

    animation:pulse 2s infinite;
}

@keyframes pulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,99,235,.5);
    }
    70%{
        box-shadow:0 0 0 20px rgba(37,99,235,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,99,235,0);
    }
}

.career-box{

    position:absolute;

    bottom:90px;
    right:0;

    width:320px;

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    display:none;

    box-shadow:
    0 20px 60px rgba(0,0,0,.18);
}

.career-box.show{
    display:block;
}

.career-header{

    background:
    linear-gradient(
      135deg,
      #2563eb,
      #7c3aed
    );

    color:white;

    padding:20px;

    display:flex;
    justify-content:space-between;
    align-items:center;
}

.career-header h3{
    margin:0;
}

.career-header span{
    cursor:pointer;
    font-size:24px;
}

.career-body{
    padding:20px;
}

.career-body p{
    margin-bottom:15px;
    color:#64748b;
}

.career-option{

    display:block;

    text-decoration:none;

    padding:15px;

    margin-bottom:12px;

    border-radius:14px;

    background:#f8fafc;

    color:#111827;

    font-weight:600;

    transition:.3s;
}

.career-option:hover{

    background:#eef2ff;

    transform:translateX(5px);
}

/*Every thing wala section ka overwrite  for background */

.premium{
    position: relative;
    overflow: hidden;
    padding: 100px 8%;
}

.premium-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.premium-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    z-index: 2;
}

.premium-content{
    position: relative;
    z-index: 3;
}

.premium .section-title h2,
.premium .section-title p{
    color: white;
}

.premium-card{
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.premium-card p{
    color: rgba(255,255,255,0.85);
}

.contact{
    position: relative;
    overflow: hidden;
    min-height: 850px;
}

.contact-bg-video{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;
    z-index: 1;
}

.contact-overlay{
    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(8, 27, 90, 0.70);
    backdrop-filter: blur(2px);

    z-index: 2;
}

.contact-container{
    position: relative;
    z-index: 3;

    min-height: 850px;

    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
    gap: 50px;
    align-items: center;
}

/* White text */
.contact-info h2,
.contact-info p,
.contact-info h4{
    color: #fff;
}

/* Glassmorphism cards */
.info-box{
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
}

.contact-form{
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.15);
}

.contact-form input,
.contact-form textarea{
    background: rgba(255,255,255,0.9);
}

  <style>
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background: #f7f8fc;
      color: #111827;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
    }

    img {
      width: 100%;
      display: block;
    }

    /* HEADER */
    .header {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 8%;
      background: rgba(255,255,255,0.85);
      backdrop-filter: blur(12px);
      position: fixed;
      top: 0;
      z-index: 1000;
      border-bottom: 1px solid rgba(0,0,0,0.05);
    }

    .logo {
      font-size: 2rem;
      font-weight: 700;
      background: linear-gradient(90deg,#00c6ff,#7f5cff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .nav ul {
      display: flex;
      list-style: none;
      gap: 30px;
    }

    .nav a {
      color: #111827;
      font-weight: 500;
      transition: 0.3s;
    }

    .nav a:hover {
      color: #7f5cff;
    }

    .header-btns {
      display: flex;
      gap: 14px;
    }

    .login-btn,
    .hero-btn,
    .course-btn,
    .view-btn,
    .contact-btn {
      padding: 12px 24px;
      border-radius: 999px;
      border: none;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .login-btn {
      background: transparent;
      border: 1px solid #d1d5db;
      color: #111827;
    }

    .hero-btn,
    .course-btn,
    .view-btn,
    .contact-btn {
      background: linear-gradient(90deg,#00c6ff,#7f5cff);
      color: white;
      box-shadow: 0 10px 25px rgba(127,92,255,0.25);
    }

    .hero-btn:hover,
    .course-btn:hover,
    .view-btn:hover,
    .contact-btn:hover {
      transform: translateY(-3px);
    }

    /* HERO */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 120px 8% 80px;
      background: linear-gradient(120deg,#2d7df6 0%, #7f5cff 50%, #d8c3ff 100%);
      position: relative;
    }

    .hero::before {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      background: rgba(255,255,255,0.12);
      border-radius: 50%;
      top: -100px;
      left: -100px;
      filter: blur(30px);
    }

    .hero-container {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
      align-items: center;
      gap: 70px;
      width: 100%;
      position: relative;
      z-index: 1;
    }

    .hero-content h1 {
      font-size: 4rem;
      line-height: 1.1;
      color: white;
      margin-bottom: 25px;
      font-weight: 700;
    }

    .hero-content p {
      color: rgba(255,255,255,0.9);
      font-size: 1.1rem;
      margin-bottom: 35px;
      max-width: 550px;
    }

    .hero-image {
      background: rgba(255,255,255,0.12);
      padding: 18px;
      border-radius: 30px;
      backdrop-filter: blur(10px);
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    }

    .hero-image img {
      border-radius: 22px;
      height: 100%;
      object-fit: cover;
    }

    /* SECTION */
    section {
      padding: 90px 8%;
    }

    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }

    .section-title h2 {
      font-size: 3rem;
      margin-bottom: 15px;
    }

    .section-title p {
      color: #6b7280;
      max-width: 700px;
      margin: auto;
    }

    /* CARDS */
    .courses-grid,
    .premium-container,
    .blogs-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
      gap: 30px;
    }

    .course-card,
    .premium-card,
    .blog-card {
      background: white;
      border-radius: 28px;
      overflow: hidden;
      transition: 0.4s ease;
      box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    }

    .course-card:hover,
    .premium-card:hover,
    .blog-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 25px 60px rgba(0,0,0,0.12);
    }

    .course-card img,
    .blog-card img {
      height: 220px;
      object-fit: cover;
    }

    .course-card-content,
    .blog-content,
    .premium-card {
      padding: 28px;
    }

    .course-card h3,
    .premium-card h3,
    .blog-content h3 {
      font-size: 1.4rem;
      margin-bottom: 14px;
    }

    .course-card p,
    .premium-card p,
    .blog-content p {
      color: #6b7280;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    /* PREMIUM */
    .premium {
      background: linear-gradient(180deg,#f5f7ff,#eef2ff);
    }

    .premium-card {
      text-align: center;
    }

    .premium-icon {
      width: 85px;
      height: 85px;
      background: linear-gradient(135deg,#00c6ff,#7f5cff);
      margin: auto auto 22px;
      border-radius: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: white;
    }

    /* ABOUT */
    .about-container {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
      gap: 60px;
      align-items: center;
    }

    .about-text h2 {
      font-size: 3rem;
      margin-bottom: 25px;
    }

    .about-text p {
      color: #6b7280;
      margin-bottom: 18px;
      line-height: 1.8;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(2,1fr);
      gap: 25px;
    }

    .stat-card {
      background: white;
      border-radius: 24px;
      padding: 35px 25px;
      text-align: center;
      box-shadow: 0 12px 35px rgba(0,0,0,0.06);
    }

    .stat-card h3 {
      font-size: 2.4rem;
      background: linear-gradient(90deg,#00c6ff,#7f5cff);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 10px;
    }

    /* CERTIFICATE */
    .certificate {
      background: linear-gradient(120deg,#1f2937,#4f46e5);
      border-radius: 40px;
      margin: 0 6%;
      overflow: hidden;
    }

    .certificate-container {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
      align-items: center;
      gap: 60px;
    }

    .certificate-text h2 {
      color: white;
      font-size: 3rem;
      margin-bottom: 25px;
    }

    .certificate-text p {
      color: rgba(255,255,255,0.85);
      margin-bottom: 20px;
      line-height: 1.8;
    }

    .certificate-image img {
      border-radius: 28px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    }

    /* BLOG */
    .view-all {
      text-align: center;
      margin-top: 50px;
    }

    /* CONTACT */
    .contact {
      background: #f1f5ff;
    }

    .contact-container {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(320px,1fr));
      gap: 50px;
      align-items: start;
    }

    .contact-info h2 {
      font-size: 3rem;
      margin-bottom: 20px;
    }

    .contact-info p {
      color: #6b7280;
      line-height: 1.8;
      margin-bottom: 30px;
    }

    .info-box {
      background: white;
      padding: 24px;
      border-radius: 20px;
      margin-bottom: 18px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    }

    .contact-form {
      background: white;
      padding: 40px;
      border-radius: 28px;
      box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    }

    .input-group {
      margin-bottom: 24px;
    }

    .input-group input,
    .input-group textarea {
      width: 100%;
      padding: 16px;
      border-radius: 14px;
      border: 1px solid #d1d5db;
      font-family: inherit;
      outline: none;
      transition: 0.3s;
    }

    .input-group input:focus,
    .input-group textarea:focus {
      border-color: #7f5cff;
      box-shadow: 0 0 0 4px rgba(127,92,255,0.1);
    }

    /* FOOTER */
    footer {
      background: #111827;
      color: white;
      padding: 70px 8% 30px;
    }

    .footer-container {
      display: grid;
      grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-container h3,
    .footer-container h4 {
      margin-bottom: 18px;
    }

    .footer-container a {
      display: block;
      color: #cbd5e1;
      margin-bottom: 10px;
    }

    .copy {
      text-align: center;
      color: #9ca3af;
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 25px;
    }

    /* MOBILE */
    @media(max-width: 768px) {
      .nav {
        display: none;
      }

      .hero-content h1,
      .section-title h2,
      .about-text h2,
      .certificate-text h2,
      .contact-info h2 {
        font-size: 2.3rem;
      }

      .hero {
        padding-top: 150px;
      }

      .stats-grid {
        grid-template-columns: 1fr;
      }

      .certificate {
        margin: 0 20px;
      }
    }
  </style> 