/* GLOBAL */
body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fb;
    color: #333;
    height: 100%;
    margin: 0;
}
html{
    height: 100%;
}

/* CONTAINER SPACING */
section {
    padding: 80px 0;
}
p{
    font-size: 18px;
    color: #707070;
}

/* BUTTON */
.btn-modern {
    background: linear-gradient(135deg, #007bff, #00c6ff);
    border: none;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* CARD */
.card-modern {
    background: #fff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.card-modern:hover {
    transform: translateY(-5px);
}
.navbar {
    background: linear-gradient(90deg, #007bff, #00c6ff);
    height: 80px;
    display: flex;
    align-items: center;
}

#navMenu ul li a {
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

#navMenu ul li a:hover {
    color: #000;
}
/*.hero-slide {*/
/*  height: 70vh;*/
/*  min-height: 400px;*/
/*  background-size: cover;*/
/*  background-position: center center;*/
/*  background-repeat: no-repeat;*/
/*  position: relative;*/

/*  display: flex;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*  text-align: center;*/
/*}*/

/* SINGLE overlay (clean way) */
/*.hero-slide::before {*/
/*  content: "";*/
/*  position: absolute;*/
/*  inset: 0;*/
  /*background: rgba(0,0,0,0.5);*/
/*}*/

/* content above overlay */
/*.hero-slide .container {*/
/*  position: relative;*/
/*  z-index: 2;*/
/*}*/
/*.hero-content {*/
/*  background: rgba(0, 0, 0, 0.55);*/
  /* glass effect */
/*  border-radius: 12px;*/
/*  padding: 30px;*/
/*}*/

/* ONLY image here (no gradient) */
/*.carousel-item:nth-child(1) .hero-slide {*/
/*  background-image: url('/assets/img/hero1.jpg');*/
/*}*/

/*.carousel-item:nth-child(2) .hero-slide {*/
/*  background-image: url('/assets/img/hero2.jpg');*/
/*}*/

/*.carousel-item:nth-child(3) .hero-slide {*/
/*  background-image: url('/assets/img/hero3.jpg');*/
/*}*/
/*@media (max-width: 768px) {*/
/*  .hero-slide {*/
/*    height: 60vh;*/
/*    text-align: center;*/
/*  }*/

/*  .hero h1 {*/
/*    font-size: 28px;*/
/*  }*/

/*  .hero p {*/
/*    font-size: 15px;*/
/*  }*/
/*}*/
/*.carousel-item h1,*/
/*.carousel-item p,*/
/*.carousel-item a {*/
/*  animation: fadeUp 1s ease;*/
/*}*/

/*@keyframes fadeUp {*/
/*  from {*/
/*    opacity: 0;*/
/*    transform: translateY(20px);*/
/*  }*/
/*  to {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*  }*/
/*}*/

/* Text styling */
/*.hero h1 {*/
/*  font-size: 48px;*/
/*  font-weight: bold;*/
/*}*/

/*.hero p {*/
/*  font-size: 20px;*/
/*}*/
/*@media (max-width: 768px) {*/
/*  .hero-slide {*/
/*    height: 70vh;*/
/*  }*/

/*  .hero h1 {*/
/*    font-size: 28px;*/
/*  }*/

/*  .hero p {*/
/*    font-size: 16px;*/
/*  }*/
/*}*/

/* FULL HEIGHT FIX */
.login, .register, .admin-certificate {
    min-height: calc(100vh - 140px);
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .login {
        padding: 40px 0;
        min-height: auto; /* avoid overflow issue */
    }

    .login img {
        width: 60%;
    }
}
/* TESTIMONIAL CARD */
.testimonial {
    background: #ffffff;
    padding: 30px 20px;
    margin: 15px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
}

/* HOVER EFFECT */
.testimonial:hover {
    transform: translateY(-8px);
}

/* QUOTE ICON */
.testimonial .icon {
    font-size: 25px;
    color: #007bff;
    margin-bottom: 15px;
}

/* MESSAGE TEXT */
.testimonial .description {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 100px;
}

/* IMAGE */
.testimonial .pic {
    margin-bottom: 10px;
}

.testimonial .pic img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid #007bff;
    object-fit: cover;
}

/* NAME */
.testimonial .title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 5px 0;
}

/* COURSE */
.testimonial .post {
    font-size: 14px;
    color: #007bff;
}

.why-us {
  background: #f9fbfd;
}

.icon-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  transition: 0.3s;
  height: auto;
}

.icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.icon {
  width: 50px;
  height: 50px;
  background: #007bff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
  background: linear-gradient(45deg, #007bff, #00c6ff);
}
@media (max-width: 768px) {
  .why-us {
    text-align: center;
  }

  .icon-box {
    flex-direction: column;
    align-items: center;
  }

  .icon {
    margin-bottom: 10px;
  }
}
/* OWL CAROUSEL ALIGN FIX */
.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
}

/* DOTS STYLE */
.owl-dots {
    text-align: center;
    margin-top: 20px;
}

.owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    margin: 5px;
}

.owl-dots .owl-dot.active span {
    background: #007bff;
}

/* NAVIGATION ARROWS */
.owl-nav {
    text-align: center;
    margin-top: 10px;
}

.owl-nav button {
    background: #007bff !important;
    color: #fff !important;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    margin: 5px;
    border: none;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .testimonial {
        padding: 20px;
    }

    .testimonial .description {
        font-size: 14px;
    }
}
.dashboard .menu {
    background: #1e293b;
    min-height: 100vh;
}

.dashboard .menu a {
    color: #cbd5e1;
}

.dashboard .menu a:hover {
    background: #334155;
    color: #fff;
}
.form-control {
    border-radius: 10px;
    padding: 10px;
}

.login .card,
.register .card {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.footer {
  font-size: 14px;
  background: linear-gradient(90deg, #007bff, #00c6ff);
}

.footer h5 {
  font-weight: 600;
  color: #fff;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

/* Social icons */
.social-icon {
  display: inline-block;
  color: #fff;
  background: #444;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  margin-right: 8px;
  transition: 0.3s;
}

.social-icon:hover {
  background: #007bff;
}