body{
  margin:0;
  font-family:'Segoe UI', sans-serif;
  background:#f5f7fb;
}

.container{
  width:90%;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.top-header{
  background:#0b5ed7;
  padding:10px 0;
  position:sticky;
  top:0;
  z-index:1000;
}

.logo-wrap{
  display:flex;
  align-items:center;
}

.logo-wrap img{
  height:55px;
  margin-right:12px;
}

.logo-text h1{
  font-size:20px;
  margin:0;
  color:#fff;
  font-weight:700;
  letter-spacing:0.5px;
}

.logo-text span{
  font-size:12px;
  color:#e0e0e0;
  display:block;
}

@media(max-width:768px){
  .logo-text h1{
    font-size:16px;
  }
  .logo-text span{
    font-size:11px;
  }
}


.logo img{
  height:60px;
}

nav a{
  color:#fff;
  text-decoration:none;
  margin-left:18px;
  font-weight:500;
}

.login-btn{
  background:#dc3545;
  padding:8px 15px;
  border-radius:4px;
}

.hero{
  text-align:center;
  padding:90px 20px;
  background:linear-gradient(to right,#0b5ed7,#084298);
  color:#fff;
}

.hero h1{
  font-size:42px;
}

.hero p{
  font-size:18px;
}

.hero-btn{
  margin-top:25px;
}

.btn{
  background:#dc3545;
  color:#fff;
  padding:12px 28px;
  text-decoration:none;
  border-radius:5px;
  margin:5px;
}

.btn.outline{
  background:transparent;
  border:2px solid #fff;
}

.contact-bar{
  background:#dc3545;
  color:#fff;
  text-align:center;
  padding:10px;
}

.contact-bar a{
  color:#fff;
  text-decoration:none;
  font-weight:bold;
}
.page{
  padding:50px;
  background:#fff;
  margin:20px;
  border-radius:8px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:10px;
  margin:10px 0;
}
.whatsapp-float{
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  text-align: center;
  font-size: 30px;
  line-height: 55px;
  z-index: 1000;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.whatsapp-float i{
  color:#fff;
}

.whatsapp-float:hover{
  background:#1ebe5d;
}

/* ===== MOBILE MENU ===== */

.menu-toggle{
  display:none;
  font-size:28px;
  background:none;
  border:none;
  color:#fff;
  cursor:pointer;
}

/* Mobile view */
@media (max-width:900px){

  .menu-toggle{
    display:block;
  }

  .main-nav{
    position:absolute;
    top:70px;
    right:20px;
    background:#0b5ed7;
    flex-direction:column;
    width:220px;
    padding:15px;
    border-radius:6px;
    display:none;
    box-shadow:0 5px 15px rgba(0,0,0,0.3);
  }

  .main-nav a{
    margin:10px 0;
  }

  .main-nav.show{
    display:flex;
  }
}

/* ===== HOME PAGE ===== */

.hero-home{
  background:linear-gradient(to right,#0b5ed7,#084298);
  color:#fff;
  padding:90px 20px;
  text-align:center;
}

.hero-content h1{
  font-size:42px;
  line-height:1.3;
}

.hero-content h1 span{
  color:#ffcc00;
}

.hero-content p{
  font-size:18px;
  margin:15px 0 25px;
}

.btn-primary{
  background:#dc3545;
  color:#fff;
  padding:12px 28px;
  border-radius:5px;
  text-decoration:none;
  font-weight:600;
}

.btn-secondary{
  border:2px solid #fff;
  color:#fff;
  padding:12px 28px;
  border-radius:5px;
  text-decoration:none;
}

.why-us{
  padding:60px 20px;
  text-align:center;
  background:#f5f7fb;
}

.why-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  margin-top:30px;
}

.why-card{
  background:#fff;
  padding:25px;
  border-radius:8px;
  font-weight:600;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.highlights{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  background:#0b5ed7;
  color:#fff;
  text-align:center;
}

.highlights div{
  padding:20px;
  font-weight:600;
}

.cta{
  padding:80px 20px;
  text-align:center;
  background:#dc3545;
  color:#fff;
}

.cta h2{
  font-size:32px;
  margin-bottom:15px;
}

.cta p{
  font-size:16px;
  margin-bottom:25px;
}

.cta-btn{
  display:inline-block;
  background:#fff;
  color:#dc3545;
  padding:12px 30px;
  border-radius:5px;
  text-decoration:none;
  font-weight:600;
}

.cta-btn:hover{
  background:#f1f1f1;
}


@media(max-width:768px){
  .hero-content h1{
    font-size:28px;
  }
}
/* ===== FOOTER ===== */

.site-footer{
  background:#0b5ed7;
  color:#fff;
  margin-top:40px;
}

.footer-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  padding:50px 20px;
  max-width:1200px;
  margin:auto;
}

.footer-box h3{
  margin-bottom:15px;
  font-size:18px;
  color:#ffcc00;
}

.footer-box p{
  font-size:14px;
  line-height:1.6;
}

.footer-box ul{
  list-style:none;
  padding:0;
  margin:0;
}

.footer-box ul li{
  margin-bottom:8px;
}

.footer-box ul li a,
.footer-box p a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
}

.footer-box ul li a:hover,
.footer-box p a:hover{
  text-decoration:underline;
}

.footer-bottom{
  background:#084298;
  text-align:center;
  padding:12px;
  font-size:14px;
}
.home-courses{
  padding:60px 20px;
  background:#f5f7fb;
}

.home-courses h2{
  text-align:center;
  margin-bottom:30px;
}

.course-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:20px;
  max-width:1200px;
  margin:auto;
}

.course-card{
  background:#fff;
  padding:30px;
  text-align:center;
  font-weight:600;
  border-radius:8px;
  box-shadow:0 5px 15px rgba(0,0,0,0.1);
  transition:0.3s;
}

.course-card:hover{
  transform:translateY(-5px);
}
