*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins;
}

body{
background:#0b1624;
color:white;
}

.hero{

height:100vh;

background:
linear-gradient(rgba(11,22,36,0.85), rgba(11,22,36,0.95)),
url("hero-background.png");

background-size:cover;
background-position:center;
background-repeat:no-repeat;

display:flex;
flex-direction:column;
justify-content:center;
align-items:center;
text-align:center;

padding:20px;

}

/* Navbar */

.navbar{
position:absolute;
top:20px;
left:40px;
}

/* Logo */

.logo img{
width:160px;
max-width:100%;
}

/* Hero text */

.hero-content{
max-width:800px;
padding:20px;
}

.hero h1{
font-size:64px;
color:#3be8b0;
letter-spacing:2px;
}

.hero h3{
margin-top:10px;
font-size:22px;
color:#d1d1d1;
}

.hero p{
margin-top:15px;
font-size:16px;
color:#ccc;
line-height:1.6;
}

/* Buttons */

.buttons{
margin-top:35px;
display:flex;
gap:15px;
justify-content:center;
flex-wrap:wrap;
}

.buttons a{
text-decoration:none;
}

.btn1{
background:#1fc48d;
border:none;
padding:14px 30px;
border-radius:8px;
font-size:15px;
cursor:pointer;
transition:0.3s;
}

.btn1:hover{
background:#16a374;
transform:translateY(-2px);
}

.btn2{
background:transparent;
border:2px solid #ff8c00;
padding:14px 30px;
border-radius:8px;
font-size:15px;
color:#ff8c00;
cursor:pointer;
transition:0.3s;
}

.btn2:hover{
background:#ff8c00;
color:white;
transform:translateY(-2px);
}


/* Mobile Responsive */

@media (max-width:768px){

.hero h1{
font-size:42px;
}

.hero h3{
font-size:18px;
}

.hero p{
font-size:14px;
}

.logo img{
width:120px;
}

.navbar{
left:20px;
}

.buttons{
flex-direction:column;
}

.btn1,
.btn2{
width:220px;
}

}

.about{

padding:100px 10%;
background:#0b1624;

}

.about-container{

max-width:1200px;
margin:auto;

display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;

}

.about-text h2{

font-size:42px;
margin-bottom:20px;
color:#3be8b0;

}

.about-text p{

font-size:16px;
line-height:1.8;
color:#cfcfcf;
margin-bottom:18px;

}

/* Feature Grid */

.about-features{

display:grid;
grid-template-columns:1fr 1fr;
gap:25px;

}

.feature{

background:#11263c;
padding:25px;
border-radius:12px;
transition:0.3s;

}

.feature:hover{

transform:translateY(-6px);
box-shadow:0 0 20px rgba(59,232,176,0.2);

}

.feature h4{

color:#3be8b0;
margin-bottom:10px;
font-size:18px;

}

.feature p{

font-size:14px;
color:#bbb;

}


/* Mobile Responsive */

@media (max-width:900px){

.about-container{

grid-template-columns:1fr;

}

.about-features{

grid-template-columns:1fr;

}

.about-text h2{

font-size:34px;

}

}


.features{

padding:100px 8%;
background:#0f1e2e;
color:white;

}

.features-container{

max-width:1200px;
margin:auto;

}

.section-title{

font-size:40px;
color:#3be8b0;
text-align:center;
margin-bottom:10px;

}

.section-subtitle{

text-align:center;
color:#b0b0b0;
max-width:650px;
margin:auto;
margin-bottom:60px;
font-size:16px;

}

/* GRID */

.feature-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;

}

/* CARD */

.card{

background:#13283f;
padding:35px 25px;
border-radius:12px;
transition:all 0.3s ease;
text-align:center;
border:1px solid rgba(255,255,255,0.05);

}

.card:hover{

transform:translateY(-8px);
box-shadow:0 10px 30px rgba(0,0,0,0.4);
border-color:#3be8b0;

}

.card h3{

font-size:20px;
margin-bottom:10px;
color:white;

}

.card p{

font-size:15px;
color:#cfcfcf;
line-height:1.6;

}

/* ICON */

.icon{

font-size:30px;
margin-bottom:15px;
color:#3be8b0;

}

/* RESPONSIVE */

@media (max-width:768px){

.section-title{

font-size:32px;

}

.section-subtitle{

font-size:14px;

}

.card{

padding:25px 20px;

}

}

.card{

background:#11263c;
padding:30px;
border-radius:12px;
transition:0.3s;

}

.card:hover{
transform:translateY(-10px);
box-shadow:0 0 20px #0f6;
}

/* SECTION */

.why {
  padding: 80px 20px;
  background: #f8fafc;
}

/* CONTAINER */

.container{
  max-width:1200px;
  margin:auto;
}

/* TITLE */

.section-title{
  font-size:2.5rem;
  font-weight:700;
  text-align:center;
  color:#111;
  margin-bottom:10px;
}

.section-subtitle{
  text-align:center;
  color:#555;
  max-width:600px;
  margin:auto;
  margin-bottom:50px;
  font-size:1rem;
}

/* GRID */

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}

/* CARD */

.why-card{
  background:white;
  padding:30px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.06);
  text-align:center;
  transition:all .3s ease;
}

/* CARD TITLE */

.why-card h4{
  font-size:1.2rem;
  margin-bottom:10px;
  color:#111;
}

/* CARD TEXT */

.why-card p{
  font-size:.95rem;
  color:#666;
  line-height:1.6;
}

/* HOVER EFFECT */

.why-card:hover{
  transform:translateY(-6px);
  box-shadow:0 12px 30px rgba(0,0,0,0.1);
}

/* MOBILE OPTIMIZATION */

@media (max-width:768px){

.section-title{
  font-size:2rem;
}

.section-subtitle{
  font-size:.9rem;
}

.why-card{
  padding:25px;
}

}

/* SECTION */

.countdown{
  padding:90px 20px;
  text-align:center;
  background:#0f172a;
  color:white;
}

/* CONTAINER */

.container{
  max-width:1200px;
  margin:auto;
}

/* TITLE */

.countdown-title{
  font-size:2.5rem;
  font-weight:700;
  margin-bottom:10px;
}

/* SUBTITLE */

.countdown-subtitle{
  color:#cbd5e1;
  max-width:600px;
  margin:auto;
  margin-bottom:40px;
  font-size:1rem;
}

/* TIMER GRID */

.timer{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(120px,1fr));
  gap:20px;
  justify-content:center;
  max-width:600px;
  margin:auto;
}

/* TIME BOX */

.time-box{
  background:#11263c;
  padding:30px 20px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.2);
  transition:all .3s ease;
}

/* NUMBER */

.time-box span{
  display:block;
  font-size:2.5rem;
  font-weight:700;
  color:#3be8b0;
}

/* LABEL */

.time-box p{
  margin-top:8px;
  font-size:.9rem;
  color:#94a3b8;
}

/* HOVER EFFECT */

.time-box:hover{
  transform:translateY(-5px);
  box-shadow:0 12px 30px rgba(0,0,0,0.35);
}

/* MOBILE */

@media (max-width:768px){

.countdown-title{
  font-size:2rem;
}

.time-box{
  padding:25px 15px;
}

.time-box span{
  font-size:2rem;
}

}

/* SECTION */

.notify{
  padding:90px 20px;
  background:#f8fafc;
  text-align:center;
}

/* CONTAINER */

.notify-container{
  max-width:700px;
  margin:auto;
}

/* TITLE */

.notify-title{
  font-size:2.3rem;
  font-weight:700;
  margin-bottom:10px;
  color:#111827;
}

/* SUBTITLE */

.notify-subtitle{
  color:#6b7280;
  font-size:1rem;
  margin-bottom:35px;
}

/* FORM */

.notify-form{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

/* INPUT */

.notify-form input{
  flex:1;
  min-width:240px;
  max-width:420px;

  padding:14px 16px;
  font-size:.95rem;

  border:1px solid #d1d5db;
  border-radius:8px;

  outline:none;
  transition:all .25s ease;
}

/* INPUT FOCUS */

.notify-form input:focus{
  border-color:#1fc48d;
  box-shadow:0 0 0 3px rgba(31,196,141,0.15);
}

/* BUTTON */

.notify-form button{
  padding:14px 24px;
  font-size:.95rem;

  background:#1fc48d;
  color:white;

  border:none;
  border-radius:8px;
  cursor:pointer;

  transition:all .25s ease;
}

/* BUTTON HOVER */

.notify-form button:hover{
  background:#17a878;
  transform:translateY(-1px);
}

/* PRIVACY NOTE */

.privacy-note{
  font-size:.8rem;
  color:#9ca3af;
  margin-top:16px;
}

/* MOBILE */

@media (max-width:600px){

.notify-title{
  font-size:1.8rem;
}

.notify-form{
  flex-direction:column;
}

.notify-form input{
  width:100%;
}

.notify-form button{
  width:100%;
}

}
/* FOOTER */

.footer{
  background:#07101b;
  color:#9ca3af;
  padding:60px 20px 30px;
}

/* CONTAINER */

.footer-container{
  max-width:1200px;
  margin:auto;
  text-align:center;
}

/* TOP */

.footer-top{
  margin-bottom:30px;
}

.footer-logo{
  font-size:1.8rem;
  font-weight:700;
  color:white;
  margin-bottom:8px;
}

.footer-tagline{
  font-size:.95rem;
  color:#9ca3af;
}

/* DIVIDER */

.footer-divider{
  height:1px;
  background:#1e293b;
  margin:30px 0;
}

/* BOTTOM */

.footer-bottom{
  font-size:.85rem;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
}

/* COLLAB TEXT */

.collab{
  color:#94a3b8;
}

/* MOBILE */

@media (max-width:768px){

.footer-bottom{
  flex-direction:column;
  text-align:center;
}

.footer-logo{
  font-size:1.5rem;
}

}