
html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
}

    body {
      font-family: 'Poppins', sans-serif;
      font-size: 17px;
    }
    
     :root {
            --primary: #00b4d8 ;
            --secondary: #00b4d8 ;
            --dark-bg: #212529;
     }

    /* Navbar */
    /* Navbar – White Theme */
.navbar {
  background: #ffffff !important;
}

.navbar-brand img {
  filter: none; /* keep logo original */
}

.nav-link {
  color: #000 !important;
  font-weight: 500;
}

.nav-link:hover {
  color: #00b4d8 !important;
}

.nav-link:hover {
      color: #00b4d8 !important;
    }

.navbar-toggler {
  border-color: rgba(0,0,0,0.2);
}

.navbar-toggler-icon {
  filter: invert(0);
}


    /* stats section */
    .stats-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 60px 0;
    
}

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}


    /* Hero Section */
   .hero {
  position: relative;
  min-height: 100vh;            /* Banner height */
  width: 100%;
  background: 
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    url('/media/bann.png');
  background-size: cover;      /* Banner fit */
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;         /* Vertical center */
  justify-content: center;     /* Horizontal center */
  text-align: center;
  color: #fff;
  padding: 0 20px;
}


    .hero h1 span {
      color: #00b4d8;
    }

    /* Section Title */
    .section-title {
      text-align: center;
      margin-bottom: 40px;
    }
    .section-title h2 {
      font-weight: 700;
      color: #0d1b2a;
    }

    .section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Gallery Zoom Effect */
.gallery-item {
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}
 
    .feature-card {
    position: relative;
    padding: 2.5rem 2rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(6px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    height: 100%;
    overflow: hidden;
}



.feature-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 75px;
    height: 75px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.35s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.feature-card:hover .feature-icon {
    transform: translateY(-6px) rotate(6deg);
}

.feature-card h4 {
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: #0d1b2a;
}

.feature-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Courses Section */
.course-card {
  border: none;
  border-radius: 15px;
  padding-top: 20px;
  transition: all 0.35s ease;
  background: #ffffff;
  border: 1px solid #adb5bd;
}

.course-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.course-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto;
  background: #00b4d8;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 15px;
  

}

.course-card .card-text {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}


/* Testimonials Section */
.testimonial-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  height: 100%;
  transition: all 0.3s ease;
  border-top: 4px solid #00b4d8;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Quote Icon */
.quote-icon {
  font-size: 60px;
  color: #00b4d8;
  position: absolute;
  top: 15px;
  right: 20px;
  opacity: 0.2;
  font-family: serif;
}

/* Text */
.testimonial-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Student Name */
.student-name {
  font-weight: 600;
  color: #222;
  margin-bottom: 2px;
}

/* Course */
.student-course {
  font-size: 13px;
  color: #0d6efd;
}

#highlight-image h3 {
  color: #0d1b2a;
}

#highlight-image ul li {
  margin-bottom: 8px;
  font-size: 15px;
}

#highlight-image ul {
  display: inline-block; /* keeps list centered */
  text-align: left;      /* aligns checkmarks nicely */
}


.contact-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #00b4d8, #48cae4);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.icon-circle {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #00b4d8, #00b4d8);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}


    /* Footer */
.footer
{
   background: var(--dark-bg) !important;
}    
.hover-link:hover {
    color: #00b4d8  !important; /* yellow */
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.1);
}

.instagram {
    background: linear-gradient(45deg, #ec4899, #facc15);
}

.whatsapp {
    background-color: #25D366;
}

.facebook {
    background-color: #1877F2;
}

/* Mobile view – reduce banner height */
@media (max-width: 768px) {
  .hero {
    min-height: 45vh;   /* You can try 60vh or 70vh */
    padding-top: 90px;  /* Adjust for fixed navbar */
  }
}

/* Add this to your existing stats-section CSS */
@media (max-width: 768px) {
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .stat-item {
        padding: 0.5rem;
    }
}


