/* =========================================
   REVEO ULTRA PREMIUM CSS
========================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Outfit',sans-serif;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#f6f8ff;
  overflow-x:hidden;
  color:#111;
  position:relative;
}

/* =========================================
   CUSTOM CURSOR GLOW
========================================= */

body::before{
  content:"";
  position:fixed;
  width:400px;
  height:400px;
  background:radial-gradient(circle,#7b5cff33 0%,transparent 70%);
  border-radius:50%;
  pointer-events:none;
  top:var(--y);
  left:var(--x);
  transform:translate(-50%,-50%);
  z-index:-1;
}

/* =========================================
   BLOBS
========================================= */

.blob{
  position:fixed;
  border-radius:50%;
  filter:blur(90px);
  z-index:-2;
  opacity:0.4;
}

.blob1{
  width:400px;
  height:400px;
  background:#7b5cff;
  top:5%;
  left:-100px;
  animation:blobMove 10s infinite alternate;
}

.blob2{
  width:350px;
  height:350px;
  background:#ff7b54;
  top:45%;
  right:-120px;
  animation:blobMove 12s infinite alternate;
}

.blob3{
  width:300px;
  height:300px;
  background:#43b0ff;
  bottom:0;
  left:35%;
  animation:blobMove 8s infinite alternate;
}

@keyframes blobMove{

  from{
    transform:translateY(0px) translateX(0px);
  }

  to{
    transform:translateY(-50px) translateX(30px);
  }

}

/* =========================================
   NAVBAR
========================================= */

nav{
  width:100%;
  padding:24px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  position:fixed;
  top:0;
  left:0;
  z-index:1000;
  backdrop-filter:blur(20px);
  background:rgba(255,255,255,0.7);
  border-bottom:1px solid rgba(255,255,255,0.4);
}

.logo{
  font-size:2.2rem;
  font-weight:900;
  letter-spacing:-3px;
  color:#6c47ff;
  cursor:pointer;
  transition:0.3s;
}

.logo:hover{
  transform:scale(1.08) rotate(-2deg);
}

.nav-links{
  display:flex;
  gap:40px;
}

.nav-links a{
  text-decoration:none;
  color:#111;
  font-weight:700;
  position:relative;
  transition:0.3s;
}

.nav-links a::after{
  content:"";
  position:absolute;
  width:0%;
  height:3px;
  background:#6c47ff;
  bottom:-8px;
  left:0;
  border-radius:20px;
  transition:0.3s;
}

.nav-links a:hover::after{
  width:100%;
}

.nav-links a:hover{
  color:#6c47ff;
}

.enroll-btn{
  border:none;
  background:linear-gradient(135deg,#7b5cff,#5f37ff);
  color:white;
  padding:16px 30px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
  transition:0.4s;
  box-shadow:0 15px 35px rgba(108,71,255,0.3);
}

.enroll-btn:hover{
  transform:translateY(-5px) scale(1.05);
}

/* =========================================
   HERO
========================================= */

.hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:70px;
  padding:150px 8% 100px;
}

.hero-mini-text{
  display:inline-block;
  background:#ece7ff;
  color:#6c47ff;
  padding:12px 24px;
  border-radius:999px;
  font-size:1rem;
  font-weight:700;
  margin-bottom:30px;
  animation:pulse 2s infinite;
}

.hero-left h1{
  font-size:clamp(4rem,8vw,7rem);
  line-height:0.95;
  font-weight:900;
  letter-spacing:-5px;
  margin-bottom:25px;
  transition:0.4s;
}

.hero-left h1:hover{
  transform:translateY(-5px);
  color:#6c47ff;
}

.hero-left p{
  color:#555;
  line-height:1.9;
  font-size:1.1rem;
  max-width:650px;
  margin-bottom:45px;
}

.hero-buttons{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
}

.hero-btn,
.whatsapp-btn{
  text-decoration:none;
  border:none;
  padding:18px 35px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
  transition:0.4s;
  position:relative;
  overflow:hidden;
}

.hero-btn{
  background:linear-gradient(135deg,#7b5cff,#5f37ff);
  color:white;
}

.whatsapp-btn{
  background:#25D366;
  color:white;
}

.hero-btn:hover,
.whatsapp-btn:hover{
  transform:translateY(-5px) scale(1.05);
}

/* =========================================
   HERO IMAGE
========================================= */

.hero-right{
  position:relative;
  display:flex;
  justify-content:center;
}

.floating-image{
  width:100%;
  max-width:550px;
  border-radius:40px;
  animation:float 5s ease-in-out infinite;
  box-shadow:0 35px 80px rgba(0,0,0,0.15);
  transition:0.4s;
}

.floating-image:hover{
  transform:scale(1.03) rotate(-1deg);
}

.floating-card{
  position:absolute;
  background:white;
  padding:18px 24px;
  border-radius:22px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  font-weight:700;
  animation:float 4s ease-in-out infinite;
}

.card1{
  top:8%;
  left:-30px;
}

.card2{
  bottom:8%;
  right:-30px;
}

.mini-proof{
  margin-top:25px;
  margin-bottom:30px;
  font-weight:700;
  color:#555;
  line-height:1.8;
  font-size:0.95rem;
}

.no-experience{

  margin-bottom:15px;
  color:#666;
  font-weight:600;
  font-size:0.95rem;

}

/* =========================================
   TRUST SECTION
========================================= */

.trust-section{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  padding:100px 8%;
}

.trust-box{
    text-align:center;
    overflow:hidden;
    position:relative;
}

.trust-box img{
    margin-top: 20px;
    width:90px;
    margin-bottom:25px;
}

.trust-box::before{
  content:"";
  position:absolute;
  width:100%;
  height:6px;
  background:linear-gradient(90deg,#7b5cff,#43b0ff);
  top:0;
  left:0;
}

.trust-box:hover{
  transform:translateY(-15px) scale(1.03);
  box-shadow:0 30px 70px rgba(108,71,255,0.15);
}

.trust-box h2{
  margin-bottom:15px;
  font-size:1.5rem;
}

.trust-box p{
  color:#666;
  line-height:1.8;
}

/* =========================================
   SECTION HEADINGS
========================================= */

.section-heading{
  text-align:center;
  margin-bottom:70px;
}

.section-heading span{
  color:#6c47ff;
  font-weight:800;
  letter-spacing:2px;
}

.section-heading h2{
  font-size:clamp(2.8rem,6vw,5rem);
  font-weight:900;
  letter-spacing:-3px;
  margin-top:10px;
}

/* =========================================
   WHY US
========================================= */

.why-us{
  padding:100px 8%;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.why-card{
  background:white;
  padding:45px 35px;
  border-radius:35px;
  transition:0.4s;
  box-shadow:0 20px 50px rgba(0,0,0,0.05);
  position:relative;
  overflow:hidden;
}

.why-card::before{
  content:"";
  position:absolute;
  width:120%;
  height:120%;
  background:linear-gradient(135deg,#7b5cff11,#43b0ff11);
  top:-100%;
  left:-100%;
  transition:0.5s;
}

.why-card:hover::before{
  top:0;
  left:0;
}

.why-card:hover{
  transform:translateY(-15px) rotate(-1deg);
}

.why-card img{
  width:80px;
  margin-bottom:25px;
}

.why-card h3{
  margin-bottom:15px;
  font-size:1.4rem;
}

.why-card p{
  color:#666;
  line-height:1.9;
}

/* =========================================
   PROGRAM SECTION
========================================= */

.python-program{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
  padding:120px 8%;
}

.program-left img{
  width:100%;
  border-radius:40px;
  box-shadow:0 35px 80px rgba(0,0,0,0.1);
  transition:0.4s;
}

.program-left img:hover{
  transform:scale(1.03);
}

.program-right{
  background:white;
  padding:50px;
  border-radius:40px;
  box-shadow:0 25px 60px rgba(0,0,0,0.06);
}

.program-right span{
  color:#6c47ff;
  font-weight:800;
}

.program-right h2{
  font-size:clamp(2.5rem,5vw,4.5rem);
  margin:20px 0;
  line-height:1;
}

.program-right p{
  color:#555;
  line-height:1.9;
  margin-bottom:35px;
}

.program-features{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}

.program-features div{
  background:#f7f8ff;
  padding:20px;
  border-radius:20px;
  transition:0.3s;
  font-weight:700;
}

.program-features div:hover{
  transform:translateY(-6px);
  background:#ece7ff;
}


.program-enroll-btn{
  margin-top:35px;
  border:none;
  background:linear-gradient(135deg,#7b5cff,#5f37ff);
  color:white;
  padding:18px 35px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
  width:fit-content;
}

.program-enroll-btn:hover{
  transform:translateY(-5px);
}

/* =========================================
   TESTIMONIALS
========================================= */

.testimonials{
  padding:100px 8%;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.testimonial-card{
  background:white;
  padding:40px;
  border-radius:35px;
  box-shadow:0 20px 50px rgba(0,0,0,0.05);
  transition:0.4s;
}

.testimonial-card:hover{
  transform:translateY(-12px);
}

.testimonial-card p{
  line-height:1.9;
  color:#555;
  margin-bottom:20px;
}

/* =========================================
   SUCCESS POPUP
========================================= */

.success-popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.45);
  backdrop-filter:blur(8px);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:3000;
  padding:20px;
}

.success-box{
  width:100%;
  max-width:420px;
  background:white;
  padding:45px 35px;
  border-radius:35px;
  text-align:center;
  animation:popupShow 0.4s ease;
  box-shadow:0 30px 80px rgba(0,0,0,0.2);
}

.checkmark-circle{
  width:90px;
  height:90px;
  background:#22c55e;
  color:white;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:auto;
  font-size:3rem;
  font-weight:900;
  margin-bottom:25px;
  animation:pop 0.5s ease;
}

.success-box h2{
  margin-bottom:15px;
  font-size:2rem;
}

.success-box p{
  color:#666;
  line-height:1.8;
  margin-bottom:30px;
}

.success-box button{
  border:none;
  background:#6c47ff;
  color:white;
  padding:16px 30px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
}

/* =========================================
   ERROR POPUP
========================================= */

.error-popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.45);
  backdrop-filter:blur(8px);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:3000;
  padding:20px;
}

.error-box{
  width:100%;
  max-width:420px;
  background:white;
  padding:45px 35px;
  border-radius:35px;
  text-align:center;
  animation:popupShow 0.4s ease;
  box-shadow:0 30px 80px rgba(0,0,0,0.2);
}

.error-circle{
  width:90px;
  height:90px;
  background:#ef4444;
  color:white;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  margin:auto;
  font-size:3rem;
  font-weight:900;
  margin-bottom:25px;
  animation:pop 0.5s ease;
}

.error-box h2{
  margin-bottom:15px;
  font-size:2rem;
}

.error-box p{
  color:#666;
  line-height:1.8;
  margin-bottom:30px;
}

.error-box button{
  border:none;
  background:#ef4444;
  color:white;
  padding:16px 30px;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
}

/* =========================================
   FINAL CTA
========================================= */

.final-cta{
  margin:100px 8%;
  background:linear-gradient(135deg,#7b5cff,#5f37ff);
  color:white;
  padding:100px 50px;
  border-radius:45px;
  text-align:center;
  position:relative;
  overflow:hidden;
}

.final-cta::before{
  content:"";
  position:absolute;
  width:500px;
  height:500px;
  background:rgba(255,255,255,0.08);
  border-radius:50%;
  top:-250px;
  right:-150px;
}

.final-cta h2{
  font-size:clamp(3rem,6vw,5.5rem);
  line-height:1;
  margin-bottom:25px;
}

.final-cta p{
  max-width:700px;
  margin:auto;
  line-height:1.9;
  margin-bottom:40px;
}

.cta-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.cta-buttons button,
.cta-buttons a{
  text-decoration:none;
  border:none;
  padding:18px 35px;
  border-radius:999px;
  font-weight:700;
  transition:0.4s;
}

.cta-buttons button{
  background:white;
  color:black;
}

.cta-buttons a{
  background:#25D366;
  color:white;
}

.cta-buttons button:hover,
.cta-buttons a:hover{
  transform:translateY(-5px) scale(1.05);
}

/* =========================================
   MICRO ANIMATIONS
========================================= */

/* BUTTON GLOW */

.hero-btn,
.enroll-btn,
.program-enroll-btn{

  position:relative;
  overflow:hidden;

}

.hero-btn::before,
.enroll-btn::before,
.program-enroll-btn::before{

  content:"";
  position:absolute;
  width:120%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.35),
    transparent
  );

  top:0;
  left:-120%;
  transition:0.6s;
}

.hero-btn:hover::before,
.enroll-btn:hover::before,
.program-enroll-btn:hover::before{

  left:120%;

}

/* CARD FLOAT */

.trust-box,
.why-card,
.testimonial-card{

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;

}

.trust-box:hover,
.why-card:hover,
.testimonial-card:hover{

  transform:translateY(-10px);
  box-shadow:0 30px 70px rgba(0,0,0,0.08);

}

/* IMAGE FLOAT */

.floating-image{

  animation:floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

  0%,100%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-10px);
  }

}

/* =========================================
   FOOTER
========================================= */

footer{
  background:#0f1020;
  color:white;
  padding:80px 8% 40px;
}

.footer-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-logo{
  font-size:2.5rem;
  font-weight:900;
  margin-bottom:20px;
  color:#7b5cff;
}

.footer-text{
  color:#aaa;
  line-height:1.9;
  max-width:450px;
}

.footer-column h3{
  margin-bottom:20px;
}

.footer-column a{
  display:block;
  color:#aaa;
  text-decoration:none;
  margin-bottom:12px;
  transition:0.3s;
}

.footer-column a:hover{
  color:white;
  transform:translateX(5px);
}

.footer-bottom{
  margin-top:60px;
  border-top:1px solid rgba(255,255,255,0.1);
  padding-top:25px;
  text-align:center;
  color:#888;
}

.image-wrapper{
  position:relative;
}

.glow-circle{
  position:absolute;
  width:300px;
  height:300px;
  background:#7b5cff55;
  border-radius:50%;
  filter:blur(80px);
  z-index:-1;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
}

.card3{
  top:45%;
  left:-40px;
}

.floating-card{
  transition:0.4s;
}

.floating-card:hover{
  transform:scale(1.08);
}

/* HIDE HAMBURGER ON DESKTOP */

.menu-btn{
  display:none;
  cursor:pointer;
}

/* =========================================
   MENTOR SECTION
========================================= */

.mentor-section{

  padding:120px 8%;
  text-align:center;

}

.mentor-content{

  max-width:850px;
  margin:auto;

}

.mentor-content span{

  color:#6c47ff;
  font-weight:800;
  letter-spacing:2px;

}

.mentor-content h2{

  font-size:clamp(2.8rem,6vw,5rem);
  margin:20px 0;
  line-height:1;
  letter-spacing:-3px;

}

.mentor-content p{

  color:#666;
  line-height:2;
  font-size:1.05rem;

}

/* =========================================
   FOOTER
========================================= */

footer{
  background:#0b0b24;
  color:white;
  padding:80px 8% 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:80px;
  align-items:flex-start;
}

.footer-logo{
  font-size:3rem;
  font-weight:900;
  color:#6c47ff;
  margin-bottom:20px;
}

.footer-text{
  color:#aaa;
  line-height:1.9;
  max-width:420px;
}

.footer-column h3{
  margin-bottom:20px;
  font-size:1.4rem;
}

.footer-column a{
  display:block;
  color:#aaa;
  text-decoration:none;
  margin-bottom:14px;
  transition:0.3s;
}

.footer-column a:hover{
  color:white;
  transform:translateX(5px);
}

.footer-bottom{
  margin-top:60px;
  padding-top:25px;
  border-top:1px solid rgba(255,255,255,0.1);
  text-align:center;
  color:#888;
}

/* =========================================
   MODAL FIX
========================================= */

.modal{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.5);
  display:none;
  justify-content:center;
  align-items:center;
  z-index:2000;
  padding:20px;
}

.modal-content{
  width:100%;
  max-width:450px;
  background:white;
  padding:40px;
  border-radius:30px;
  position:relative;
  box-shadow:0 30px 80px rgba(0,0,0,0.2);
}

.close-btn{
  position:absolute;
  top:20px;
  right:20px;
  border:none;
  background:none;
  font-size:1.3rem;
  cursor:pointer;
}

.modal-content h2{
  margin-bottom:30px;
}

form{
  display:flex;
  flex-direction:column;
  gap:20px;
}

form input{
  padding:18px;
  border:none;
  background:#f3f4f9;
  border-radius:16px;
  font-size:1rem;
}

form button{
  border:none;
  background:#6c47ff;
  color:white;
  padding:18px;
  border-radius:16px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

form button:hover{
  transform:translateY(-3px);
}

/* Mobile Menu */



/* =========================================
   ANIMATIONS
========================================= */

@keyframes float{

  0%,100%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-15px);
  }

}

@keyframes pulse{

  0%{
    transform:scale(1);
  }

  50%{
    transform:scale(1.05);
  }

  100%{
    transform:scale(1);
  }

}

@keyframes popupShow{

  from{
    opacity:0;
    transform:scale(0.8);
  }

  to{
    opacity:1;
    transform:scale(1);
  }

}

@keyframes pop{

  0%{
    transform:scale(0);
  }

  100%{
    transform:scale(1);
  }

}

/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:950px){

  .nav-links,
  .enroll-btn{
    display:none;
  }

  .menu-btn{
    display:block;
  }

  .hero,
  .python-program,
  .footer-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .hero-buttons,
  .cta-buttons{
    justify-content:center;
    width: 100%;
  }

  .program-features{
    grid-template-columns:1fr;
  }

  .floating-card{
    display:0.8;
  }

  .footer-text{
    margin:auto;
  }

  .mobile-menu{
  position:fixed;
  top:90px;
  left:50%;
  transform:translateX(-50%);
  width:90%;
  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(20px);
  border:1px solid rgba(255,255,255,0.4);
  border-radius:24px;
  padding:25px;
  display:none;
  flex-direction:column;
  gap:20px;
  box-shadow:0 20px 50px rgba(0,0,0,0.08);
  z-index:999;
}

.mobile-menu a{
  text-decoration:none;
  color:#111;
  font-weight:700;
  font-size:1.1rem;
  padding:12px 0;
  border-bottom:1px solid #eee;
}

/* MOBILE HERO IMPROVEMENTS */

.hero{
  padding-top:120px;
  gap:40px;
}

.hero-left{
  text-align:center;
}

.hero-left h1{
  font-size:3.2rem;
  line-height:0.95;
  letter-spacing:-2px;
}

.hero-left p{
  font-size:1rem;
  line-height:1.8;
  margin:auto;
  margin-bottom:35px;
}

.hero-buttons{
  justify-content:center;
  width: 100%;
}

.hero-btn,
.whatsapp-btn{
  width:100%;
  justify-content:center;
  text-align:center;
  padding:18px;
}

/* HERO IMAGE */

.hero-right{
  margin-top:10px;
}

.floating-image{
  max-width:100%;
  border-radius:30px;
}

/* FLOATING CARDS MOBILE */

.card1{
  top:5%;
  left:-10px;
}

.card2{
  bottom:5%;
  right:-10px;
}

.card3{
  top:42%;
  left:-15px;
}

.hero-btn:active,
.whatsapp-btn:active,
.enroll-btn:active{
  transform:scale(0.96);
}

.floating-image{
  animation:float 5s ease-in-out infinite;
}

@keyframes float{

  0%,100%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-10px);
  }

}

.program-enroll-btn{
    width:100%;
  }

  .success-box{
    padding:40px 25px;
  }

}