
    body { font-family: "Poppins", sans-serif; }

 


    /* HERO SECTION */

     /* Carousel Captions */
  #heroSlider .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: initial;
    color: #fff;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.6);
  }

  #heroSlider .carousel-caption h2 {
    font-size: 3rem;
    font-weight: 700;
  }

  #heroSlider .carousel-caption p {
    font-size: 1.25rem;
  }

  /* Responsive Captions */
  @media(max-width:768px){
    #heroSlider .carousel-caption h2 {
      font-size: 2rem;
    }
    #heroSlider .carousel-caption p {
      font-size: 1rem;
    }
  }

  /* Carousel Controls */
  .carousel-control-prev,
  .carousel-control-next {
    width: 50px;
  }
    .hero-section {
      background: url('https://images.unsplash.com/photo-1552581234-26160f608093?auto=format&fit=crop&w=1500&q=80') center/cover;
      padding: 150px 0;
      position: relative;
    }
    .hero-section::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0,0,0,0.55);
    }
    .hero-content {
      position: relative;
      z-index: 2;
      color: #fff;
    }

    /* Category Box */
    .category-box {
      padding: 28px 20px;
      text-align: center;
      border-radius: 12px;
      background: #fff;
      transition: 0.3s;
      border: 1px solid #eee;
    }
    .category-box:hover {
      box-shadow: 0 8px 30px rgba(0,0,0,0.1);
      transform: translateY(-6px);
    }

    /* Courses */
    .course-card {
      border-radius: 15px;
      overflow: hidden;
      transition: 0.3s;
    }
    .course-card:hover {
      box-shadow: 0 10px 35px rgba(0,0,0,0.1);
      transform: translateY(-5px);
    }

    /* Testimonials */
    .testimonial-box {
      background: #fff;
      padding: 25px;
      border-radius: 12px;
      border: 1px solid #eee;
    }

    /* Partners */
    .partner-logos img {
      width: 100px;
      filter: grayscale(100%);
      transition: 0.3s;
    }
    .partner-logos img:hover {
      filter: grayscale(0);
      transform: scale(1.1);
    }

    nav a {
    color: #2C2C2C;
    text-decoration: none;
    transition: 0.3s;
}

.navbar-nav .nav-link {
    color: black;          /* default color */
    transition: color 0.3s;
}

.navbar-nav .nav-link.active {
    color: orange !important;   /* active link color */
    font-weight: bold;          /* active link bold */
}



nav a:hover,
nav a.active {
    color: #ECA817;
}

header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    color:#00a54f;
}

.btn-warning {
    background: #ECA817 !important;
    border: none !important;
}

.btn-warning:hover {
    background: #d69814 !important;
}


.carousel-caption {
  bottom: 0;
  top: 0;
}

.carousel-caption h2 {
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.6);
}

.carousel-caption p {
  color: #f5f5f5;
  text-shadow: 1px 1px 8px rgba(0,0,0,0.6);
}


.announcement-bar {
    width: 100%;
    background: #00a54f;
    color: #fff;
    padding: 25px 10px;       /* Increased height */
    padding-top: 25px;        /* Extra top space */
    overflow: hidden;
    position: relative;
    white-space: nowrap;
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;        /* Better line spacing */
}

.announcement-text {
    display: inline-block;
    margin-top: -15px;
    position: absolute;
    padding-left: 100%;
    animation: scrollText 12s linear infinite;
}


@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}

.hero-banner {
    position: relative;
    width: 100%;
}

.banner-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    padding: 15px 40px;
    border-radius: 40px;
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    text-align: center;
}


/* ===== TOP COLORFUL CURVED BACKGROUND ===== */
.footer-top {
  background: linear-gradient(90deg, #d9f3cf, #00a54f);
  padding: 70px 0 50px;
  clip-path: ellipse(100% 100% at 50% 0%);
}

/* Circular icons */
.footer-circle {
  width: 50px;
  height: 50px;
  background: #00a54f;
  color: #fff;
  border-radius: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  font-size: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.footer-title {
  margin-top: 15px;
  font-weight: 800;
  font-size: 18px;
  color: #004d2d;
}

.footer-top p {
  margin-top: 8px;
  line-height: 1.6;
  font-size: 18px;
  color: #003d24;
}

/* ===== BOTTOM FOOTER ===== */
.footer-bottom-section {
  background: #222;
  padding: 35px 0;
}

.footer-menu a {
  margin: 0 14px;
  color: #00a54f;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1px;
  transition: 0.3s;
  text-decoration: none;
}

.footer-menu a:hover {
  color: #f4c20d;
}

.footer-social {
  margin: 18px 0;
}

.footer-social a {
  margin: 0 10px;
  color: #f4c20d;
  font-size: 20px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #00a54f;
}

.footer-copy {
  color: #ccc;
  font-size: 14px;
}


/* Social Icons */
.footer-social a {
    color: #fff;
    font-size: 18px;
    margin-right: 12px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #f4c20d;
    transform: scale(1.2);
}

/* Box styling */
.footer-box {
    padding: 10px;
    transition: 0.3s;
}

.footer-box:hover {
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

/* Container */
.floating-icons {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* WhatsApp Button */
.float-whatsapp {
    background: #25d366;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

/* Call Button */
.float-call {
    background: #00a54f;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: 0.3s;
}

/* Hover effect */
.float-whatsapp:hover,
.float-call:hover {
    transform: scale(1.1);
    opacity: 0.9;
}
