*{
    margin: 0;
    padding: 0;
    font-family: 'Josefin Sans', sans-serif;
    
    
}
a{
    text-decoration: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: #e4e3e3; */
  padding: 10px 20px;
}

.logo img {
  height: 45px; /* Adjust as needed */
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: rgb(2, 54, 52);
  text-decoration: none;
  font-size: 18px;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: rgb(2, 54, 52);
  margin: 4px 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .nav-links {
      position: absolute;
      top: 60px;
      right: 0;
      background-color: #e4e3e3;
      flex-direction: column;
      width: 100%;
      align-items: center;
      display: none;
  }

  .nav-links.active {
      display: flex;
  }

  .hamburger {
      display: flex;
  }
}
.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  min-width: 200px;
  padding: 10px 0;
  border-radius: 4px;
  z-index: 1000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li {
  padding: 8px 15px;
}

.dropdown-menu a {
  color: #333;
  text-decoration: none;
  display: block;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
  padding-left: 20px;
}





/* Custom Styles for Carousel */
.banner-carousel {
  margin: 0px auto;
  max-width: 1200px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.carousel-item img {
  height: 500px; /* Adjust height as needed */
  object-fit: cover; /* Ensure images cover the area */
}

.carousel-caption {
  background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
  padding: 20px;
  border-radius: 10px;
}

.carousel-caption h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.carousel-caption p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.carousel-caption .btn {
  font-size: 1rem;
  padding: 10px 20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .carousel-item img {
      height: 300px; /* Adjust height for smaller screens */
  }

  .carousel-caption h2 {
      font-size: 1.5rem;
  }

  .carousel-caption p {
      font-size: 1rem;
  }

  .carousel-caption .btn {
      font-size: 0.9rem;
      padding: 8px 16px;
  }
}

.fHero{
  background-color: #f1cc25;
  border-radius: 20px;
  padding: 5px;
  margin: 0px 10px;
}


.cHero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.rHero {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px; /* Space between columns */
}

.fHero {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); /* Soft shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  flex: 1 1 300px; /* Flexible width for responsiveness */
  max-width: 350px; /* Maximum width for larger screens */
}

.fHero:hover {
  transform: translateY(-10px); /* Lift effect on hover */
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

.fHero a {
  color: inherit; /* Inherit text color */
  text-decoration: none;
}

.fHero i {
  font-size: 3rem; /* Icon size */
  color: #007bff; /* Icon color */
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.fHero:hover i {
  color: #0056b3; /* Icon color on hover */
}

.fHero h3 {
  font-size: 1.5rem;
  margin: 0;
  color: #333; /* Text color */
  transition: color 0.3s ease;
}

.fHero:hover h3 {
  color: #007bff; /* Text color on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .fHero {
      flex: 1 1 100%; /* Full width on smaller screens */
      max-width: 100%;
  }

  .fHero i {
      font-size: 2.5rem; /* Smaller icons on mobile */
  }

  .fHero h3 {
      font-size: 1.25rem; /* Smaller text on mobile */
  }
}


/* Custom Styles for Courses Section */
.courses-section {
  padding: 50px 0;
  background-color: antiquewhite;
}


.courses-section h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

.card {
  border: none;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  height: 200px; /* Adjust image height */
  object-fit: cover; /* Ensure images cover the area */
}

.card-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 15px;
}

.card-text {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.price {
  font-size: 1.25rem;
}

.price .text-muted {
  font-size: 1rem;
}

.btn-primary {
  background-color: #007bff;
  border: none;
  padding: 10px 20px;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #0056b3;
}

.btn-outline-primary {
  border-color: #007bff;
  color: #007bff;
  padding: 10px 20px;
  font-size: 1rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: #007bff;
  color: white;
}

/* Custom Styles for What We Provide Section */
.what-we-provide {
  background-color: #f8f9fa; /* Light background */
  padding: 60px 0;
}

.what-we-provide h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
}

.what-we-provide .lead {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: 40px;
}

.card {
  border: none;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.card-title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #007bff;
  margin-bottom: 15px;
}

.card-text {
  font-size: 1rem;
  color: #666;
}

.footer {
  background-color: #1a1a1a !important;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.footer h4 {
  color: #fff;
  font-size: 1.4rem;
  border-bottom: 2px solid #4a90e2;
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.footer p {
  color: #b3b3b3;
  line-height: 1.8;
  font-size: 0.95rem;
  max-width: 300px;
}



.footer-logo:hover {
  opacity: 0.8;
}

.footer ul li {
  margin-bottom: 12px;
}

.footer a {
  color: #b3b3b3 !important;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  text-decoration: none !important;
}

.footer a:hover {
  color: #4a90e2 !important;
  padding-left: 5px;
}

.social-icons a {
  display: inline-block;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  text-align: center;
  line-height: 45px;
  transition: all 0.3s ease;
  margin-right: 10px;
}

.social-icons a:hover {
  background-color: #4a90e2;
  transform: translateY(-3px);
}

.social-icons i {
  vertical-align: middle;
}

.footer .border-top {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

.footer h6 {
  color: #888;
  font-size: 0.9rem;
  font-weight: 400;
}

.footer h6 strong {
  color: #4a90e2;
  font-weight: 600;
}

.contact-info li {
  color: #b3b3b3;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 15px !important;
}

.contact-info i {
  width: 25px;
  color: #4a90e2;
  vertical-align: top;
}

@media (max-width: 768px) {
  .footer .col-md-4, 
  .footer .col-md-2,
  .footer .col-md-3 {
      margin-bottom: 30px;
  }

  .footer h4 {
      font-size: 1.3rem;
  }
}