/* =========================
   PERFECT HERO SECTION
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  
  overflow-x:hidden;
}

.hx-hero{
  width:100%;
  min-height:100vh;
  background:
  linear-gradient(rgba(2,6,23,0.90),rgba(10 36 146 / 92%)),
  url("AI.png");
  background-size:cover;
  background-position:center;
  padding:10px 20px 50px;
  display:flex;
  align-items:center;
}

.hx-container{
  width:100%;
  max-width:1240px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

/* =========================
   LEFT CONTENT
========================= */

.hx-left{
  width:58%;
  color:#fff;
}

.hero-badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 18px;
  background:rgba(139,92,246,0.12);
  border:1px solid rgba(255,255,255,0.08);
  border-radius:40px;
  font-size:16px;
  margin-bottom:20px;
}

.hx-left h1{
  font-size:45px;
  line-height:1.1;
  font-weight:800;
  margin-bottom:18px;
  letter-spacing:-1px;
}

.hx-left h1 span{
  background:linear-gradient(90deg,#c084fc,#2563eb);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.hero-subtitle{
  font-size:20px;
  color:#d1d5db;
  margin-bottom:30px;
}

/* =========================
   FEATURES
========================= */

.hero-features{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  margin-bottom:30px;
}

.feature-item{
  display:flex;
  align-items:center;
  gap:12px;
  padding:15px 18px;
  border-radius:16px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  min-width:230px;
}

.feature-icon{
  width:46px;
  height:46px;
  border-radius:12px;
  background:linear-gradient(135deg,#7c3aed,#2563eb);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:17px;
}

.feature-item span{
  font-size:16px;
  font-weight:500;
}

/* =========================
   STATS
========================= */

.hero-stats{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:30px;
}

.stat-box{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.08);
  padding:20px;
  border-radius:18px;
  min-width:180px;
}

.stat-box h3{
  font-size:24px;
  margin-bottom:6px;
}

.stat-box p{
  font-size:16px;
  color:#d1d5db;
}

/* =========================
   COUNTDOWN
========================= */

.hero-countdown{
  display:flex;
  align-items:center;
  gap:18px;
  padding:20px;
  border-radius:20px;
  background:#050816;
  border:1px solid rgba(249,115,22,0.35);
  flex-wrap:wrap;
}

.batch-title{
  font-size:24px;
  font-weight:700;
  color:#f59e0b;
  line-height:1.3;
}

.time-box{
  text-align:center;
}

.time-box h2{
  font-size:36px;
  color:#fff;
}

.time-box span{
  font-size:12px;
  color:#cbd5e1;
}

/* =========================
   RIGHT FORM
========================= */

.hx-right{
  width:38%;
  display:flex;
  justify-content:center;
}

.hero-form-card{
  width:100%;
  max-width:450px;
  background:#fff;
  border-radius:26px;
  padding:26px;
  box-shadow:0 15px 50px rgba(0,0,0,0.3);
}

.form-top{
  background:linear-gradient(90deg,#6d28d9,#7c3aed);
  color:#fff;
  text-align:center;
  padding:16px;
  border-radius:16px;
  font-size:20px;
  font-weight:700;
  line-height:1.4;
  margin-bottom:22px;
}

.hero-form-card h3{
  text-align:center;
  font-size:20px;
  line-height:1.4;
  margin-bottom:22px;
  color:#111827;
}

.input-box{
  position:relative;
  margin-bottom:16px;
}

.input-box i{
  position:absolute;
  top:50%;
  left:16px;
  transform:translateY(-50%);
  color:#6b7280;
  font-size:15px;
}

.input-box input,
.input-box select{
  width:100%;
  height:56px;
  border:1px solid #d1d5db;
  border-radius:14px;
  padding-left:46px;
  font-size:15px;
  outline:none;
}

.input-box input:focus,
.input-box select:focus{
  border-color:#7c3aed;
}

.hero-btn{
  width:100%;
  height:58px;
  border:none;
  border-radius:16px;
  background:linear-gradient(90deg,#f97316,#ec4899);
  color:#fff;
  font-size:20px;
  font-weight:700;
  cursor:pointer;
  transition:0.3s;
}

.hero-btn:hover{
  transform:translateY(-2px);
}

.safe-text{
  text-align:center;
  margin-top:14px;
  font-size:14px;
  color:#6b7280;
}

/* =========================
   FLOAT BUTTONS
========================= */

.floating-buttons{
  position:fixed;
  right:15px;
  top:50%;
  transform:translateY(-50%);
  display:flex;
  flex-direction:column;
  gap:16px;
  z-index:999;
}

.call-btn,
.whatsapp-btn{
  width:62px;
  height:62px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:#fff;
  text-decoration:none;
  box-shadow:0 0 25px rgba(255,255,255,0.2);
}

.call-btn{
  background:#1682f9;
}

.whatsapp-btn{
  background:#22c55e;
}

/* =========================
   TABLET
========================= */

@media(max-width:1100px){

  .hx-container{
    flex-direction:column;
  }

  .hx-left,
  .hx-right{
    width:100%;
  }

  .hx-left{
    text-align:center;
  }

  .hero-features,
  .hero-stats,
  .hero-countdown{
    justify-content:center;
  }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

  .hx-hero{
    padding:80px 15px 40px;
  }

  .hx-left h1{
    font-size:42px;
  }

  .hero-subtitle{
    font-size:16px;
  }

  .feature-item{
    width:100%;
    min-width:100%;
  }

  .stat-box{
    width:100%;
    min-width:100%;
    text-align:center;
  }

  .hero-countdown{
    justify-content:center;
  }

  .batch-title{
    width:100%;
    text-align:center;
    font-size:22px;
  }

  .time-box h2{
    font-size:28px;
  }

  .hero-form-card{
    padding:22px;
  }

  .form-top{
    font-size:17px;
  }

  .hero-form-card h3{
    font-size:18px;
  }

  .hero-btn{
    font-size:18px;
  }

  .floating-buttons{
    bottom:20px;
    top:auto;
    transform:none;
  }

  .call-btn,
  .whatsapp-btn{
    width:54px;
    height:54px;
    font-size:20px;
  }

}
