.banner{
      color: red;
      background-color: #FFF2D7;
      height: 40px;
     /* Topbar styling */
    }
    
    .topbar{
      background-color: #328739;
       color: white;

    }
    .blink_me {
  animation: blinker 1s linear infinite;
  color: red;
}

    .topbar .contact-left {
      float: left;
    }

    .topbar .social-right {
      float: right;
    }

    .topbar .social-right a {
      color: white;
      margin-left: 5px;
      font-size: 1.2rem;
      text-decoration: none;
    }

    .topbar .contact-left a {
      color: white;
      margin-right: 5px;
      text-decoration: none;
    }
    /* Custom styles for the dropdown */
    .dropdown-menu #aboutUsDropdown{
      width: 50px !important;
    }
    .dropdown-menu {
      display: none;
      width: 710px;
      padding: 10px 0;
      border-radius: 0px;
      border-top: 4px solid orange;
    }
    .dropdown-menu-medium{
      display: none;
      width: 100px;
      padding: 10px 0;
      border-radius: 0px;
      border-top: 4px solid orange;
    }

    .nav-item:hover .dropdown-menu {
      display: block;
    }

    /* Creating the two columns inside the dropdown */
    .dropdown-menu .row {
      padding: 0px;
    }
.navbar-brand img {
      height: 80px;
      margin-right: 20px;
      width: 220px;
    }

    

    /* Header style for the two columns */
    .dropdown-header {
      font-weight: bold;
      text-transform: uppercase;
      color: #333;
      padding: 10px 15px;
      background-color: #f8f9fa;
    }

    /* Hover effect for the dropdown items */
    .dropdown-item:hover {
      background-color: #28a745;
      color: white;
    }
   

.carousel-item {
      position: relative;
    }

    .carousel-item img {
      width: 100%; /* Make images responsive */
      height: 75vh; /* Adjust height to suit your design */
      object-fit: cover; /* Ensure images cover the area without distortion */
    }

    /* Text styling */
    .carousel-caption {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: white;
      text-align: center;
      z-index: 10;
      width: auto;
    }

    .carousel-caption h5 {
      font-weight: bold;
      font-size: 2.5rem;
      font-family: 'Arial', sans-serif;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Add shadow for better visibility */
    }

    .carousel-caption p {
      font-size: 1.25rem;
      font-family: 'Georgia', serif; /* Decorative font */
      font-style: italic;
      margin-bottom: 1.5rem;
      color: black;
      font-weight: bold;
      -webkit-text-stroke: 1px white;
    }

    .carousel-caption .btn {
      font-size: 1rem;
      margin: 0.5rem;
      padding: 10px 20px;
      background-color: orange;
      border: none;
      border-radius: 5px;
      color: white;
    }

    .carousel-caption .btn:hover {
      background-color: #218838;
    }

    /* Adjustments for smaller devices */
    @media (max-width: 768px) {
      .carousel-caption h5 {
        font-size: 1.8rem;
      }

      .carousel-caption p {
        font-size: 1rem;
      }

      .carousel-caption .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
      }
    }
    .navbar .navbar-expand-lg .navbar-light .bg-light{
      display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
    }

/* Footer styles */
.footer {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  background-color: #6ec475; /* Dark background for footer */
  color: #fff;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  opacity: 0;
  animation: fadeInFooter 1s forwards;
}

.footer-column {
  flex: 1;
  padding: 20px;
}

/* Animation for footer fade-in */
@keyframes fadeInFooter {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.footer-column h4 {
  margin-bottom: 20px;
  font-size: 18px;
  color: #fff;
}

.about-us p {
  margin: 10px 0;
  font-size: 14px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

/* Social media links */
.social-media {
  display: flex;
  gap: 15px;
}

.social-link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #00aced;
  transform: translateY(0); /* Animate link position */
}

/* Quick links */
.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links li {
  margin: 10px 0;
}

.quick-links a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.quick-links a:hover {
  color: #00aced;
  transform: translateY(0); /* Animate link position */
}

/* Hover animations */
.quick-links a:hover, .social-link:hover {
  color: #00aced;
}

/* WOW Animation Styles */
.wow {
  visibility: hidden;
}

.wow.fadeInUp {
  animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add delay for each item */
[data-wow-delay] {
  animation-delay: var(--wow-delay);
}

/*departments sections*/
 .department-box {
            padding: 30px;
            text-align: center;
            border-radius: 8px;
            margin-bottom: 5px;
        }

        .department-box img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
        }

        .container {
            margin-top: 50px;
        }

        .section-header {
            margin-bottom: 10px;
            text-align: center;
            font-size: 2rem;
            font-weight: bold;
        }
        .container .departments{
          background-color: green;
        }

.application_banner{
  background-color: #CAF0F8;
}
#about{
  margin-bottom: 50px;
}
.widget .services-list li {
  background-color: #eeeeee;
  border-bottom: 1px solid #ddd;
  padding: 10px 15px 10px 20px;
  margin-bottom: 5px;
  text-decoration: none;
  list-style-type: none;
}
.widget .services-list li.active {
  position: relative;
  border-bottom: 1px solid transparent !important;
}
.widget .services-list li a{
text-decoration: none;
}
.btn-primary{
  background-color: #3CB043 !important;
  border:0px;
}
.btn-secondary{
  background-color: orange !important;
  border:0px;

}
.btn-primary:hover{
  background-color: orange !important;
  border:0px;
}
footer{
  margin-bottom: 5px;
  background-color: #36454F ;
  border-top: 4px solid orange;
  width:100%;
  height:20%;
  color: #fff;
}
footer .Useful-links ul {
  list-style-type: none;

}
footer .Useful-links ul li a{
  color: #fff;
  list-style-type: none;
  text-decoration: none;
  padding: 5px;
}
footer .Useful-links ul li {
  padding: 10px;

}
.image-container {
            position: relative;
            width: 100%;
            height: 20vh; /* Full screen height */
            background: url('../images/bg/bg04.jpg') no-repeat center center;
            background-size: cover; /* Make the image cover the whole container */
        }

        .overlay-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: white;
            font-size: 2rem; /* Adjust font size for responsiveness */
            font-weight: bold;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            text-align: center;
            max-width: 90%; /* Ensures text fits on smaller screens */
        }

        /* Responsive font-size */
        @media (max-width: 768px) {
            .overlay-text {
                font-size: 1.5rem; /* Smaller font size on tablets and phones */
            }
        }

        @media (max-width: 480px) {
            .overlay-text {
                font-size: 1.2rem; /* Even smaller font size on very small devices */
            }
        }