/*GUIDE TO COLOR SCHEME
button, text, backgound #00b894 (Green)
top-part 50%, counter-icon, counter-number #ffbf00 (Orange)
top-part heading #029679 (dark green)
Prev Next rgba 0, 184, 148 for green color
top-bar Heading & few Elements (purple) #6c5ce7
Footer-bckground #3b3663


*/	
.line-clipping {
	 display: -webkit-box;
	 -webkit-line-clamp: 3;
	 -webkit-box-orient: vertical;
	 overflow: hidden;
 }
 
.divider-line {
    border: none;
    border-top: 2px solid #00b894;
    margin: 20px 0;
}

.text-decor {
  color: #00b894; /* Primary color (vibrant green) */
  font-weight: bold; /* Optional: Make the text bold */
  transition: color 0.3s ease; /* Smooth color transition for hover */
}

.text-decor2 {
  color: #ffbf00; /* Primary color (vibrant green) */
  font-weight: bold; /* Optional: Make the text bold */
  transition: color 0.3s ease; /* Smooth color transition for hover */
}

.text-decor:hover {
  color: #00b894; /* Slightly darker green on hover */
}

.top-bar {
  background: linear-gradient(to right, #00b894 50%, #ffbf00 50%); /* Gradient from #00b894 (65%) to #ffbb00 (35%) */
  color: #fff; /* White text */
  font-size: 1.1rem;
  padding: 10px 20px;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.top-bar a:hover {
  color: #b8f1d6; /* Light green hover */
}

.top-bar .social-icons a {
  margin-left: 10px;
  font-size: 1.2rem; /* Icon size */
  color: #fff;
  transition: transform 0.3s ease, color 0.3s ease;
}

.top-bar .social-icons a:hover {
  transform: scale(1.2); /* Slight zoom on hover */
  color: #b8f1d6; /* Light green hover */
}

.top-bar-heading {
  background-color: #6c5ce7;
  padding: 5px 0; /* Top and bottom padding */
  text-align: center; /* Center the heading */
}

.top-bar-heading h1 {
  font-size: 1.4rem; /* Set the font size */
  color: #fff; /* Dark gray text color */
  margin: 0; /* Remove default margin */
  font-weight: bold; /* Make the font bold */
  letter-spacing: 1px; /* Slightly increase letter spacing for a clean look */
}

/* Navbar */
.navbar {
  background-color: rgba(255, 255, 255, 0.7);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  position: sticky; /* Make the navbar sticky */
  top: 0; /* Stick to the top of the page */
  z-index: 1000; /* Ensure navbar stays on top of other elements */
  border-bottom: 3px solid #6c5ce7;
  border-top: 3px solid #00b894;
  backdrop-filter: blur(8px); /* Adds blur effect */
}

.navbar .navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00b894; /* Green brand color */
}

.navbar .navbar-brand img {
  max-height: 70px; /* Logo size */
}

/* General Link Styling */
.navbar .nav-link {
  color: #333; /* Dark gray text */
  font-weight: 600;
  margin-left: 25px;
  transition: color 0.3s ease, transform 0.3s ease;  
}

.navbar .nav-link:hover {
  color: #00b894; /* Vibrant green on hover */
  transform: scale(1.05); /* Slight zoom on hover */
}

/* Dropdown Menu Styling */
.navbar .nav-item.dropdown .dropdown-menu {
  border-radius: 8px; /* Rounded dropdown */
  border: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Subtle shadow */
  opacity: 0; /* Hidden initially */
  transform: translateY(10px); /* Slightly below */
  transition: opacity 0.3s ease, transform 0.3s ease;
  visibility: hidden; /* Prevents interaction when hidden */
  min-width: 250px; /* Increased width of dropdown */
  padding: 10px 15px; /* Add padding inside dropdown */
}

.navbar .nav-item.dropdown:hover .dropdown-menu {
  opacity: 1; /* Visible on hover */
  transform: translateY(0); /* Move to original position */
  visibility: visible;
}

.navbar .nav-item.dropdown .dropdown-item {
  color: #333; /* Dark gray text */
  padding: 8px 15px; /* Increased spacing between items */
  margin: 5px 0; /* Add spacing between items */
  border-radius: 3px; /* Rounded corners for items */
  transition: color 0.3s ease, background-color 0.3s ease;
  border-bottom: 1px solid #00b894;
}

.navbar .nav-item.dropdown .dropdown-item:hover {
  color: #fff; /* White text */
  background-color: #00b894; /* Green hover background */
}

/* Dropdown Arrow Alignment Fix (Optional) */
.navbar .dropdown-toggle::after {
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.navbar .nav-item.dropdown:hover .dropdown-toggle::after {
  transform: rotate(180deg); /* Rotate arrow on hover */
}


/* Apply Now Button */
.navbar .apply-now {
  background-color: #00b894; /* Vibrant green */
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  padding: 12px 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.navbar .apply-now:hover {
  background-color: #019b7c; /* Slightly darker green on hover */
  transform: scale(1.05); /* Zoom effect */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .top-bar {
    text-align: center;
  }

  .top-bar .container {
    flex-direction: column;
    gap: 10px; /* Add spacing between elements */
  }

  .navbar .nav-item {
    margin-left: 0;
  }

  .navbar .nav-link {
    padding: 10px;
  }

  .navbar .apply-now {
    margin-top: 10px;
    width: 100%; /* Full-width button */
  }
}
body {
    margin: 0;
    font-family: Arial, sans-serif;
}


/*image slider*/
.slider {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
	overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 100%;
     width: 100%;
    height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s ease-in-out;
	overflow: hidden;
	border-bottom: 3px solid #00b894;
}

.slide.active {
    left: 0;
}

/* Slide-up effect for content */
.slide .content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, 30%); /* Initial position is below */
    opacity: 0; /* Make content invisible initially */
    transition: transform 1s ease-out, opacity 1s ease-out; /* Add smooth transition */
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.slide.active .content {
    transform: translate(-50%, -30%); /* Slide content up */
    opacity: 1; /* Make content visible */
}

.slide img {
    position: absolute;
    top: 50%; /* Center the image vertically */
    left: 50%; /* Center the image horizontally */
     width: 100%;
    height: 700px; /* Ensure the image fills the height */
    object-fit: cover;
    object-position: center; /* Ensure the image is centered */
    z-index: -1;

    /* Animation settings */
    animation: zoomIn 10s infinite; /* 10s duration and infinite looping */
    transform-origin: center center; /* Ensures zoom happens from the center */
    transform: translate(-50%, -50%); /* Keep the image centered */
}

/* Define the zoom-in animation */
@keyframes zoomIn {
    0% {
        transform: translate(-50%, -50%) scale(1); /* Normal size */
    }
    50% {
        transform: translate(-50%, -50%) scale(1.4); /* Slightly zoomed in */
    }
    100% {
        transform: translate(-50%, -50%) scale(1); /* Back to normal size */
    }
}

/* Overlay effect */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
     width: 100%;
    height: 700px; /* Ensure the overlay matches the height of the image */
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent overlay */
    z-index: 1; /* Ensures the overlay is above the image */
}

.slide .content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.slide .content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.slide .content h2 span {
    color: #00b894;
}

.slide .content p {
    font-size: 1.3rem;
    margin-bottom: 4rem;
}

.slide .buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    transform: translateY(-50%);
    z-index: 2;
}

.slide .buttons .btn {
    background-color: #00b894;
    color: white;
    width: 150px;
    padding: 0.5rem 1.5rem;
    text-decoration: none;
    border: 1px solid #fff;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.3s;
}

.slide .buttons .btn:hover {
    background-color: #fff;
	color: #00b894;
    transform: scale(1.1);
    border: 1px solid #00b894;
}

.slide .buttons .btn.secondary {
    background-color: white;
    color: #00b894;
    border: 1px solid #00b894;
}

.slide .buttons .btn.secondary:hover {
    background-color: #00b894;
    color: white;
    border: 1px solid #fff;
}

/* Navigation Styling */
.navigation { 
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    z-index: 2;
}

.navigation .prev,
.navigation .next {
    background-color: rgba(0, 0, 0, 0.7); /* Slightly darker for better visibility */
    color: white;
    padding: .8rem 1rem; /* Reduced padding for smaller buttons */
    cursor: pointer;
    user-select: none;
    border: none;
    border-radius: 50%; /* Circular buttons */
    font-size: 0.8rem; /* Reduced font size for smaller buttons */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
}

.navigation .prev:hover,
.navigation .next:hover {
    background-color: #00b894; /* Highlight color on hover */
    transform: scale(1.1); /* Slight zoom effect */
}

.navigation .prev:active,
.navigation .next:active {
    transform: scale(0.95); /* Slight shrink effect on click */
}

/* Adjust icon size */
.navigation .prev i,
.navigation .next i {
    font-size: 1rem; /* Reduced font size for smaller icons */
}



/* counter */
/* Statistics section styling */
        .statistics-section {
            background: linear-gradient(to right, #00b894, #006350);
            padding: 60px 20px;
            text-align: center;
            color: white;
			margin-top: 40px; /* Top margin between sections */
		}

        .section-heading {
            font-size: 2rem;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .section-subheading {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: #b0d4e3;
        }

        .statistics-container {
            display: grid;
			grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
			gap: 20px;
			justify-items: center;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.1);
            padding: 20px;
            border-radius: 15px;
            width: 250px;
            text-align: center;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
        }

        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.2);
        }

        .icon {
            font-size: 4rem;
            margin-bottom: 10px;
            color: #ffbf00;
        }

        .stat-title {
            font-size: 1.2rem;
            margin: 10px 0;
            font-weight: 500;
        }

        .stat-description {
            font-size: 1rem;
            margin-bottom: 10px;
            color: #cce5f3;
        }

        .counter {
            font-size: 2.4rem;
            font-weight: bold;
            color: #ffbf00;
        }

        @media (max-width: 768px) {
            .stat-item {
                width: 100%;
                max-width: 300px;
            }
        }

/*about us */
/* General Container for About Us */
.about-us-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
}

/* About Title */
.title {
  text-align: center;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out;
}

.title h1 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #343a40;
  margin-bottom: 10px;
  position: relative;
  animation: slideInLeft 1s ease-out;
}

.title h1::after {
  content: '';
  width: 70px;
  height: 4px;
  background-color: #00b894;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.about-title p {
  font-size: 1.2rem;
  color: #6c757d;
  animation: fadeInUp 1.2s ease-out;
}

/* About Us Content Section */
.about-us-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  animation: fadeInUp 1.4s ease-out;
}

.about-text {
  flex: 1;
  animation: slideInLeft 1.5s ease-out;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #343a40;
  margin-bottom: 15px;
  transition: color 0.3s ease;
  animation: fadeInUp 1.6s ease-out;
}

.about-text h2 span {
  color: #00b894;
  text-decoration: underline;
}

.about-text h2:hover {
  color: #00b894;
}

.about-text p {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 20px;
  animation: fadeInUp 1.8s ease-out;
}

/* Button Styling */
.btn-primary {
  background-color: #00b894;
  border: none;
  padding: 10px 20px;
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 5px;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.2s ease;
  animation: fadeInUp 2s ease-out;
}

.btn-primary:hover {
  background-color: #00b894;
  transform: translateY(-3px);
}

/* Image Section */
/* About Image Container */
.about-image {
  flex: 1;
  text-align: center;
  position: relative; /* Positioning context for animation */
  overflow: hidden;  /* Prevent image from overflowing its container */
}

/* Image Style */
.about-image img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  animation: continuousMovement 10s infinite alternate; /* Continuous movement */
}

/* Hover effect for scaling the image */
.about-image img:hover {
  transform: scale(1.05);
}

/* Keyframes for the continuous movement */
@keyframes continuousMovement {
  0% {
    transform: translateX(0) translateY(0); /* Start at original position */
  }
  25% {
    transform: translateX(50px) translateY(0); /* Move right by 50px */
  }
  50% {
    transform: translateX(0) translateY(50px); /* Move down by 50px */
  }
  75% {
    transform: translateX(-50px) translateY(0); /* Move left by 50px */
  }
  100% {
    transform: translateX(0) translateY(-50px); /* Move up by 50px */
  }
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
  .about-us-section {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    margin-bottom: 20px;
  }

  .about-title h1 {
    font-size: 2rem;
  }

  .about-title p {
    font-size: 1.1rem;
  }

  .about-text h2 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 1rem;
  }
}

/* Keyframes for Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}



/* Custom ENQUIRY FORM Section Styling */
/* Section Background */
.custom-appointment-section {
  background-color: #f9f9f9;
}

/* Main Wrapper */
.custom-wrapper {
  border: 1px solid #ddd;
  background-color: #ffffff;
  transition: box-shadow 0.3s ease;
  margin: 40px;
  border-left: 5px solid #00b894; /* Add border effect */
}

.custom-wrapper:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

/* Image Wrapper */
.custom-img-wrapper {
  overflow: hidden; /* Prevents the image from overflowing during transform */
  position: relative; /* Ensures the image aligns well */
}

.custom-img-wrapper img {
  object-fit: cover;
  max-height: 600px; /* Adjust the height of the image */
  width: 100%; /* Ensures the image stretches horizontally */
  border-radius: 0; /* Aligns with full section styling */
  transition: transform 0.5s ease, border-radius 0.5s ease; /* Smooth transition effect */
}

.custom-img-wrapper img:hover {
  transform: scale(1.1) rotate(5deg); /* Grow (scale) and turn slightly */
  border-radius: 10px; /* Adds slight rounding on hover */
}

/* Responsive Design for Image */
@media (max-width: 1200px) {
  .custom-img-wrapper img {
    max-height: 400px;
  }
}

@media (max-width: 992px) {
  .custom-img-wrapper img {
    max-height: 350px;
  }
}

@media (max-width: 768px) {
  .custom-img-wrapper img {
    max-height: 300px;
  }
}

@media (max-width: 576px) {
  .custom-img-wrapper img {
    max-height: 250px;
  }
}

/* Form Title & Text */
.custom-form-title {
  color: #333333;
  font-size: 1.5rem;
}

.custom-form-text {
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Form Fields - Input and Select */
.form-control, 
.custom-select {
  border-radius: 5px;
  border: 1px solid #ddd;
  padding: 12px 15px;
  margin-bottom: 15px; /* Spacing between form fields */
  font-size: 1rem;
  background-color: #f8f9fa;
  color: #495057;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus, 
.custom-select:focus {
  border-color: #00b894;
  box-shadow: 0 0 8px rgba(0, 184, 148, 0.3);
  outline: none;
}

/* Add spacing between form fields for mobile view */
@media (max-width: 768px) {
  .form-control, 
  .custom-select {
    margin-bottom: 20px; /* Increase spacing for smaller screens */
  }
}

/* Primary Button Styling */
.custom-btn-primary {
  background-color: #00b894;
  color: #ffffff;
  font-weight: bold;
  padding: 10px;
  border: none;
  border-radius: 5px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.custom-btn-primary:hover {
  background-color: #009b74;
  color: #ffffff;
  transform: translateY(-2px); /* Slight lift on hover */
}

/* Responsive Spacing for Form */
@media (max-width: 576px) {
  .custom-wrapper {
    padding: 20px; /* Adjust padding on smaller screens */
  }
}







/* Background Styling for Students Section */
.bg-students-section {
  position: relative;
  color: #fff; /* Text color for better contrast */
  overflow: hidden;
  padding: 2rem 1rem;
  border-bottom: 3px solid #00b894;
  border-top: 3px solid #00b894;
}

/* Background Overlay */
.bg-students-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay */
  z-index: 1;
}

/* Content Container */
.bg-students-section .container {
  position: relative;
  z-index: 2; /* Place content above overlay */
}

/* Section Heading */
.bg-students-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.bg-students-section .after {
  width: 80px;
  height: 4px;
  background-color: #00d4ff;
  margin: 0 auto 2rem;
}

/* Swiper Navigation Buttons */
.swiper-button-prev-custom,
.swiper-button-next-custom {
  position: absolute;
  top: 50%; /* Vertically centered */
  transform: translateY(-50%);
  z-index: 10;
  background-color: #ffffff; /* Button background */
  color: #000; /* Button icon color */
  border: none;
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.swiper-button-prev-custom {
  right: 60px; /* Adjust spacing */
}

.swiper-button-next-custom {
  right: 20px; /* Adjust spacing */
}

/* Hover Effects for Buttons */
.swiper-button-prev-custom:hover,
.swiper-button-next-custom:hover {
  background-color: #00b894;
  color: #fff;
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.3);
}

/* Card Styling */
.swiper-slide .card {
  background: rgba(255, 255, 255, 0.2); /* Gradient background for cards */
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
  color: #fff; /* White text for contrast */
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  margin-top: 40px; /* Top margin between sections */
  margin-bottom: 40px; /* Bottom margin between sections */
}

.swiper-slide .card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #00b894; /* Ensure title text is white */
  margin-bottom: 0.5rem;
}

.card-text {
  font-size: 1.1rem; /* Adjust font size */
  font-weight: 500; /* Semi-bold for better emphasis */
  color: #ccc; /* Neutral gray for text-secondary */
  margin: 0.5rem 0; /* Add some vertical spacing */
  text-transform: capitalize; /* Capitalize each word */
  letter-spacing: 0.5px; /* Slight spacing for readability */
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1); /* Subtle text shadow */
  transition: color 0.3s ease-in-out; /* Smooth color transition on hover */
}

.card-text:hover {
  color: #ffbf00; /* Change to a vibrant blue on hover */
  text-shadow: 1px 1px 3px rgba(0, 114, 255, 0.5); /* Enhance hover shadow effect */
}

/* Card Hover Effect */
.swiper-slide .card:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4); /* Stronger shadow */
}

/* Responsive Styling for Mobile */
@media (max-width: 768px) {
  .swiper-button-prev-custom,
  .swiper-button-next-custom {
    width: 35px;
    height: 35px;
    right: 20px; /* Reduce spacing for mobile */
  }

  .swiper-button-prev-custom {
    right: 60px; /* Adjust for smaller screens */
  }

  .bg-students-section h2 {
    font-size: 2rem;
  }

  .bg-students-section .after {
    width: 60px;
  }
}


/*course section*/
/* Scoped Section Styling */
.custom-swiper-section {
  background: linear-gradient(135deg, #f5f7fa, #c8e3db); /* Light gradient background */
  padding: 40px 0; /* Adds spacing above and below */
}

/* Scoped Course Card */
.custom-swiper-section .course-card {
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  background: #ffffff; /* White card background */
  overflow: hidden;
  margin-top: 40px; /* Top margin between sections */
  margin-bottom: 40px; /* Bottom margin between sections */
}

.custom-swiper-section .course-card img {
  width: auto;
  max-height: 100%; /* Fixed height for images */
  object-fit: cover;
  transition: transform 0.4s ease; /* Smooth zoom effect */
}

.custom-swiper-section .course-card:hover img {
  transform: scale(1.1); /* Slight zoom on hover */
}

.custom-swiper-section .course-card:hover {
  transform: translateY(-10px); /* Lift the card slightly */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.custom-swiper-section .badge.custom-badge {
  font-size: 0.8rem;
  background-color: #00b894; /* Green badge */
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
}

.custom-swiper-section .course-card h5 {
  color: #333333;
  font-weight: 600;
  margin: 10px 0;
}

.custom-swiper-section .course-card .price {
  font-size: 1.2rem;
  font-weight: bold;
  color: #e63946; /* Eye-catching red price */
}

.custom-swiper-section .course-card .meta {
  font-size: 0.9rem;
  color: #6c757d; /* Muted meta text */
  margin-top: 8px;
}

.custom-swiper-section .btn-outline-success {
  border: 2px solid #00b894;
  color: #00b894;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 12px;
}

.custom-swiper-section .btn-outline-success:hover {
  background-color: #00b894;
  color: #fff;
  box-shadow: 0 4px 8px rgba(0, 184, 148, 0.3);
}

/* Scoped Swiper Styles */
.custom-swiper-section .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center; /* Ensure slides are vertically aligned */
}

.custom-swiper-section .swiper-pagination-bullet {
  background-color: #d1d5db; /* Default bullet color */
  opacity: 0.7;
  transition: all 0.3s ease;
}

.custom-swiper-section .swiper-pagination-bullet-active {
  background-color: #00b894; /* Active bullet color */
  transform: scale(1.2); /* Enlarged active bullet */
  opacity: 1;
}

/* Swiper Navigation Buttons */
.custom-swiper-section .swiper-button-next,
.custom-swiper-section .swiper-button-prev {
  width: 48px; /* Button size */
  height: 48px;
  border-radius: 50%; /* Circular shape */
  background-color: rgba(0, 184, 148, 0.8); /* Green background with opacity */
  color: #ffffff; /* Icon color */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease; /* Smooth animation */
  z-index: 10; /* Ensures buttons are above the slides */
}

.custom-swiper-section .swiper-button-next::after,
.custom-swiper-section .swiper-button-prev::after {
  font-size: 1.2rem; /* Icon size */
  font-weight: bold;
}

.custom-swiper-section .swiper-button-next:hover,
.custom-swiper-section .swiper-button-prev:hover {
  background-color: #00b894; /* Solid green color on hover */
  box-shadow: 0 4px 8px rgba(0, 184, 148, 0.3); /* Shadow for depth */
  transform: scale(1.1); /* Slight zoom on hover */
}

/* Positioning */
.custom-swiper-section .swiper-button-next {
  right: 10px; /* Distance from right */
}

.custom-swiper-section .swiper-button-prev {
  left: 10px; /* Distance from left */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .custom-swiper-section .swiper-button-next,
  .custom-swiper-section .swiper-button-prev {
    width: 36px; /* Smaller buttons for mobile */
    height: 36px;
    background-color: rgba(0, 184, 148, 0.7); /* Slightly lighter green */
  }

  .custom-swiper-section .swiper-button-next::after,
  .custom-swiper-section .swiper-button-prev::after {
    font-size: 1rem; /* Smaller icon size */
  }
}

/* Fixed Animation for Slide Entry */
.custom-swiper-section .swiper-slide {
  opacity: 1; /* Ensure cards are visible */
  transform: translateY(0); /* Remove unwanted animations initially */
  transition: opacity 0.6s ease, transform 0.6s ease; /* Smooth transitions */
}

.custom-swiper-section .swiper-slide-active {
  opacity: 1; /* Visible */
  transform: translateY(0); /* Ensures the active slide is in the correct position */
}


/*TESTIMONIALS SECTION*/
.testimonials {
    background: linear-gradient(135deg, #c8e3db, #f5f7fa); /* Light gradient background */
    padding: 50px 0;
	}

  /* Section Heading */
  .testimonials h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
	margin-top: 40px;
	}

  .testimonials p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
  }

  /* Card Styling */
  .testimonials .card {
    border-radius: 15px;
    background: #ffffff;
    border: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
  }

  .testimonials .card:hover {
    transform: translateY(-10px);
  }

  /* Card Body Text */
  .testimonials .card-body {
    padding: 20px;
  }

  .testimonials .card-body p {
    font-size: 0.95rem;
    font-style: italic;
    color: #444;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* Quotation Icon */
  .testimonials .card-body i {
    font-size: 2.5rem;
    color: #0d6efd; /* Bootstrap Primary Color */
  }

  /* Client Info */
  .testimonials .card-body .d-flex img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #0d6efd; /* Add a border for a professional look */
  }

  .testimonials .card-body .d-flex h6 {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin: 0;
  }

  .testimonials .card-body .d-flex small {
    font-size: 0.85rem;
    color: #777;
  }

  /* Swiper Pagination */
  .swiper-pagination-bullet {
    background-color: #0d6efd;
	margin-bottom: 40px:
    opacity: 1;
  }

  .swiper-pagination-bullet-active {
    background-color: #00b894; /* Darker shade for the active bullet */
  }

  /* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
  width: 48px; /* Button size */
  height: 48px;
  border-radius: 50%; /* Circular shape */
  background-color: rgba(0, 184, 148, 0.8); /* Green background with opacity */
  color: #ffffff; /* Icon color */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease; /* Smooth animation */
  z-index: 10; /* Ensures buttons are above the slides */
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem; /* Icon size */
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #00b894; /* Solid green color on hover */
  box-shadow: 0 4px 8px rgba(0, 184, 148, 0.3); /* Shadow for depth */
  transform: scale(1.1); /* Slight zoom on hover */
}

/* Positioning */
.swiper-button-next {
  right: 10px; /* Distance from right */
}

.swiper-button-prev {
  left: 10px; /* Distance from left */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
.swiper-button-next,
.swiper-button-prev {
    width: 36px; /* Smaller buttons for mobile */
    height: 36px;
    background-color: rgba(0, 184, 148, 0.7); /* Slightly lighter green */
  }

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1rem; /* Smaller icon size */
  }
}


/*EVENT SECTION*/
/* Scoped Event Section */
.event-section .event-card {
  width: 97%;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 10px 0; /* Added margin for spacing */
  margin-top: 20px;
  margin-bottom: 40px;
}

.event-section .event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.event-section .event-card img {
  width: 100%;
  height: 100%; /* Maintain aspect ratio */
  object-fit: cover;
}

.event-section .event-info {
  padding: 20px;
}

.event-section .event-meta {
  font-size: 14px;
  color: #6c757d;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.event-section .event-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
}

.event-section .event-title {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
  color: #333;
}

.event-section .event-location {
  font-size: 14px;
  color: #6c757d;
  margin-bottom: 10px;
}

.event-section .event-description {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

/* Apply Now Button */
.event-section .apply-now {
  background-color: #00b894; /* Vibrant green */
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  padding: 10px 14px;
  transition: background-color 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.event-section .apply-now:hover {
  background-color: #019b7c; /* Slightly darker green on hover */
  transform: scale(1.05); /* Zoom effect */
}


/* Scoped Swiper adjustments */
.event-section .swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.event-section .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
}

.event-section .swiper-button-next,
.event-section .swiper-button-prev {
  color: #fff;
}

.event-section .swiper-pagination-bullet {
  background: #0d6efd;
  margin-bottom: 40px;
}

.event-section .swiper-pagination-bullet-active {
  background: #00b894;
}

/* Responsive Design Scoped */
@media screen and (max-width: 1024px) {
  .event-section .event-card {
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .event-section {
    padding: 20px 10px;
  }
  .event-section .event-title {
    font-size: 16px;
  }
  .event-section .event-description {
    font-size: 13px;
  }
  .event-section .btn-outline-primary {
    font-size: 12px;
  }
}

@media screen and (max-width: 576px) {
  .event-section .event-info {
    padding: 15px;
  }
  .event-section .event-title {
    font-size: 14px;
  }
  .event-section .event-meta {
    font-size: 12px;
  }
  .event-section .btn-outline-primary {
    padding: 5px 10px;
  }
}



/*FOOTER SECTION*/
/* Scoped Footer Styles */
.footer {
  background-color: #3b3663;
  border-top: 3px solid #00b894;
  color: #fff;
  padding: 20px 20px;
  font-family: 'Arial', sans-serif;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;  
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* Footer Information Section */
.footer-info .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  max-height: 70px; 
  width: auto;
  margin-bottom: 20px;
}

.footer-logo span {
  font-size: 20px;
  font-weight: bold;
}

.footer-info ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.footer-info ul li {
  margin-bottom: 10px;
  margin-top: 7px;
}

/* Footer Links */
.footer-links h4,
.footer-contact h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
}

.footer-links ul li {
  margin-bottom: 10px;
  margin-top: 20px;
}

.footer-links ul li a {
  color: #00b894;
  text-decoration: none;
}

.footer-links ul li a:hover {
  text-decoration: underline;
}

/* Footer Newsletter */
.footer-contact .newsletter {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer-contact input {
  padding: 10px;
  flex: 1;
  border: none;
  border-radius: 5px;
}

/* Social Icons */
.footer-contact .social-icons {
  display: flex;
  gap: 10px;
  margin-top: 20px;  /* Increased margin for space */
}

.social-icon:hover {
  color: #00b894; /* Hover effect color */
}

.footer-contact .social-icons a {
  font-size: 20px;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  font-size: 16px;
  border-top: 1px solid #7a7a7a;
  background-color: #00b894; /* Separate background color for footer bottom */
  padding: 2px 0;
  color: #fff; /* Lighter text color */
}

.footer-bottom a {
    text-decoration: none;
    color: inherit;
}

/* Media Queries */
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr; /* Stack columns on smaller screens */
  }

  .footer-info ul li {
    margin-bottom: 10px; /* Add more space for smaller screens */
  }
}

/*SCROLL TO TOP BUTTON*/
/* Universal Scroll-to-Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 20px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    width: 50px;
    height: 50px;
    background-color: #00b894; /* Vibrant green */
    color: white;
    border: none;
    border-radius: 50%; /* Circular button */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0; /* Initially hidden */
    visibility: hidden; /* Not shown initially */
    z-index: 1050; /* Keeps it on top */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    transition: all 0.3s ease-in-out; /* Smooth transitions */
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background-color: #01966f; /* Darker green on hover */
    transform: scale(1.1); /* Slight zoom */
}

.scroll-to-top i {
    font-size: 1.5rem; /* Icon size */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .scroll-to-top {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}





/*Breadcrumb Section*/
/* Breadcrumb Section Styling */
.breadcrumb-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px; /* Default height */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  border-bottom: 3px solid #00b894;
}

.breadcrumb-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark overlay for contrast */
  z-index: 1;
}

.breadcrumb-content {
  position: relative;
  z-index: 2;
}

.breadcrumb-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.breadcrumb ol {
  margin: 0;
  padding: 0;
  background: transparent;
}

.breadcrumb-item a {
  color: #00b894; /* Custom theme color */
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
  color: #fff; /* White on hover for better readability */
}

.breadcrumb-item.active {
  color: #ddd; /* Light gray for inactive breadcrumb */
}

@media (max-width: 768px) {
  .breadcrumb-section {
    height: 200px; /* Smaller height for mobile screens */
  }

  .breadcrumb-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .breadcrumb-title {
    font-size: 1.8rem; /* Smaller title for very small screens */
  }
}



/* Preloader Styles */
/* Scoped Preloader Styling */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: none; /* Background color */
    z-index: 9999; /* Highest priority */
    overflow: hidden;
}

/* Curtains */
#preloader .curtain {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: #00b894; /* Green color */
}

#preloader .curtain-left {
    left: 0;
}

#preloader .curtain-right {
    right: 0;
}

/* Logo Styling */
#preloader .preloader-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5); /* Start smaller for zoom effect */
    width: 150px; /* Adjust size */
    z-index: 10000; /* Above curtains */
    opacity: 0; /* Initially invisible */
    animation: logoFadeInZoom 1.5s ease-out forwards; /* Increased time for zoom effect */
}

/* Logo Fade-in and Zoom-in Animation */
@keyframes logoFadeInZoom {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5); /* Start small and transparent */
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1); /* End at normal size with full opacity */
    }
}

/* Curtain Animations */
@keyframes slideLeft {
    to { transform: translateX(-100%); }
}

@keyframes slideRight {
    to { transform: translateX(100%); }
}

/* Main Content Visibility */
#main-content {
    display: block;
}

/* Safe Bootstrap Integration */
body {
    overflow-y: auto; /* Allow scrolling */
}



/* INSTRUCTOR SECTION*/
 /* Scoped Custom Styles for Course Instructors */
        .course-instructors {
            font-family: 'Arial', sans-serif;
            background-color: #f9f9f9;
            padding: 60px 0;
            overflow: hidden;
        }

        /* Section Title */
        .course-instructors .section-title {
            text-align: center;
            margin-bottom: 40px;
            animation: fadeInDown 1s ease-in-out;
        }

        .course-instructors .section-title h2 {
            font-weight: 700;
            color: #333;
        }

        .course-instructors .section-title .underline {
            width: 80px;
            height: 4px;
            background-color: #00bfa6;
            margin: 10px auto;
            border-radius: 10px;
        }

        /* Instructor Cards */
        .course-instructors .instructor-card {
            text-align: center;
            background-color: #ffffff;
            padding: 25px 15px;
            border-radius: 12px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease-in-out;
            animation: fadeInUp 1s ease-in-out;
            transform-origin: center;
			margin-top: 70px;
        }

        .course-instructors .instructor-card:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        }

        .course-instructors .instructor-card img {
            width: 148px;
            height: 177px;
            border-radius: 10%;
            object-fit: cover;
            margin-bottom: 15px;
			margin-top: -70px;
            transition: transform 0.4s ease;
			border: 2px solid #00b894;
        }

        .course-instructors .instructor-card:hover img {
            transform: scale(1.05);
        }

        .course-instructors .instructor-card h5 {
            font-weight: 600;
            margin-bottom: 8px;
            color: #333;
        }

        .course-instructors .instructor-card p {
            font-size: 14px;
            color: #666;
        }

        /* Keyframe Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
		
/*MODAL CSS*/
/* Keyframes for Shake Effect */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }
    20%, 60% {
        transform: translateX(-10px);
    }
    40%, 80% {
        transform: translateX(10px);
    }
}

/* Modal Backdrop */
.custom-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

/* Custom Modal */
.custom-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8); /* Zoom-out as initial state */
    width: 90%;
    max-width: 600px;
    background-color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1051;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Header Styling */
.custom-modal-header {
    padding: 15px;
    border-bottom: 1px solid #ddd;
    background-color: #00b894;
    color: white;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

/* Footer Styling */
.custom-modal-footer {
    border-top: 1px solid #ddd;
    padding: 15px;
}

.custom-modal-body {
    padding: 20px;
}

.custom-modal-header h5 {
    margin: 0;
}

/* Show State: Zoom-In */
.custom-modal.show {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1); /* Fully zoomed in */
}

/* Backdrop Show State */
.custom-modal-backdrop.show {
    opacity: 1;
    visibility: visible;
}

/* Close State: Dropdown and Shake */
.custom-modal.closing {
    animation: shake 0.4s ease, dropdown 0.4s ease forwards;
}

/* Keyframes for Dropdown */
@keyframes dropdown {
    to {
        transform: translate(-50%, 100%) scale(0.8); /* Moves modal downward */
        opacity: 0;
    }
}

/* Close Button */
.close-modal-btn {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: white;
}

/* Common Button Styling */
.custom-modal-footer button {
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
}

/* Close Button Styling */
#closeFooterBtn {
    background-color: #d63031; /* Red for close button */
    color: white;
    transition: background-color 0.3s ease;
}

#closeFooterBtn:hover {
    background-color: #b71c1c; /* Darker red on hover */
}

/* Save Changes Button Styling */
.custom-modal-footer .btn-primary {
    background-color: #00b894; /* Green for save changes button */
    color: white;
    transition: background-color 0.3s ease;
}

.custom-modal-footer .btn-primary:hover {
    background-color: #009b74; /* Darker green on hover */
}





/*IMAGE GALLERY*/
/* Gallery Styling */
/* Gallery Section */
.gallery-section .gallery-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-section img {
  width: 100%;
  border-radius: 10px;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-section .gallery-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 184, 148, 0.8); /* Vibrant green with transparency */
  color: #fff;
  text-align: center;
  padding: 0.5rem 0;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-section .gallery-img-wrapper:hover .gallery-title {
  transform: translateY(0); /* Show title on hover */
}

.gallery-section .gallery-img-wrapper:hover img {
  transform: scale(1.1); /* Zoom effect */
}

/* Lightbox Styling */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9); /* Dark overlay */
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1050;
}

.lightbox-content {
  position: relative;
  text-align: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.lightbox-title {
  color: #fff;
  margin-top: 10px;
  font-size: 1.2rem;
  background: #00b894;
}

/* Navigation Buttons */
.lightbox-nav {
  position: absolute;
  top: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: background 0.3s ease;
}

.lightbox-nav.prev {
  left: 5px;
}

.lightbox-nav.next {
  right: 5px;
}

.lightbox-nav:hover {
  background: #00b894; /* Highlight green on hover */
}

.lightbox-close {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s ease, background-color 0.3s ease, transform 0.3s ease;
  background: rgba(0, 0, 0, 0.6); /* Background for the circle */
  width: 40px; /* Circle size */
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%; /* Makes it circular */
  z-index: 10;
}

.lightbox-close:hover {
  color: #00b894; /* Highlight green on hover */
  background-color: rgba(0, 184, 148, 0.8); /* Vibrant green background on hover */
  transform: scale(1.1); /* Slight zoom on hover */
}


/* Lightbox Image Fade-In */
.lightbox-img.show {
  opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .gallery-section .gallery-title {
    font-size: 0.9rem; /* Adjust font size */
    padding: 0.4rem 0;
  }

  .lightbox-nav {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .lightbox-close {
    font-size: 1.8rem;
    top: 5px;
    right: 5px;
  }

  .lightbox-title {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .gallery-section .gallery-img-wrapper {
    border-radius: 8px; /* Smaller corner radius */
  }

  .gallery-section img {
    border-radius: 8px;
  }

  .lightbox-img {
    max-width: 100%;
    max-height: 70vh;
  }

  .lightbox-nav {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .lightbox-title {
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .gallery-section .gallery-title {
    font-size: 1rem; /* Smaller title text */
    padding: 0.3rem 0;
  }

  .lightbox-img {
    max-width: 100%;
    max-height: 60vh;
  }

  .lightbox-close {
    font-size: 1.5rem;
    top: 5px;
    right: 5px;
  }

  .lightbox-nav {
    width: 50px;
    height: 50px;
    font-size: 0.9rem;
  }
}


