/* Card Styling */
.topic-card {
  border: 2px solid #2196f3;
  border-radius: 10px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background-color: #f0f9ff;
}

.topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.15);
  border-color: #1565c0;
}

.topic-card .card-body {
  color: #1565c0;
}

.topic-card .card-title {
  font-size: 1.25rem;
  font-weight: bold;
}

.topic-card .btn {
  margin-top: 10px;
  background-color: #1565c0;
  border-color: #1565c0;
}

.topic-card .btn:hover {
  background-color: #0d47a1;
  border-color: #0d47a1;
}

.topic-card i {
  color: #2196f3;
  transition: transform 0.3s ease;
}

.topic-card:hover i {
  transform: scale(1.2);
}





/* Style for the topic card links */
.topic-card {
  display: block;
  padding: 10px;
  margin: 10px 0;
  background-color: #f7f7f7;
  border-radius: 10px;
  border: 2px solid #ddd;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: start;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.topic-card:hover {
  background-color: #e3f2fd;
  border-color: #2196f3;
  color: #2196f3;
  transform: translateY(-5px); /* Hover effect - lift the card */
}

.topic-card i {
  margin-right: 10px; /* Add some space between the icon and text */
  font-size: 24px;
  color: #2196f3;
  transition: transform 0.3s ease;
}

/* Icon Hover Animation */
.topic-card:hover i {
  transform: scale(1.2); /* Zoom in effect for icon */
}

/* Add animation for when the page loads */
.topic-card {
  animation: fadeInUp 0.5s ease-out;
}

/* Keyframes for fadeInUp animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Add a bit of spacing for the modal body */
.modal-body {
  padding: 20px;
}





.custom-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #0d6efd;
}

.custom-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(13, 110, 253, 0.4);
  background: linear-gradient(to bottom right, #f0f8ff, #e6f0ff);
}

.custom-card .card-body {
  padding: 1.5rem;
}

.custom-card h5 {
  font-size: 1.4rem;
  font-weight: 600;
}

.custom-card p {
  color: #333;
  margin-bottom: 1rem;
}


.list-group-item ul {
  padding-left: 20px;
}

a.link-primary:hover {
  text-decoration: underline;
}

.card-title {
  font-weight: bold;
  font-size: 1.25rem;
}


.modal-header {
  background: linear-gradient(to right, #0d6efd, #6610f2);
  color: white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.modal-header h5 {
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

.modal-header .btn-close {
  background-color: #fff;
  opacity: 0.8;
}

.modal-header .btn-close:hover {
  opacity: 1;
}


/* Modal Backdrop Enhancement */
.modal-content {
    background: linear-gradient(135deg, #ffffff, #e0f7fa);
    border-radius: 12px;
  border: 2px solid #0d6efd;
   
    box-shadow: 0 10px 30px rgba(0, 188, 212, 0.3);
    padding: 25px;
    animation: zoomIn 0.4s ease;
}



.modal-title {
    font-size: 24px;
    color: #0d6efd;
    font-weight: 600;
}

.modal-body {
    padding: 10px 25px;
}

/* Numbered list styling */
.modal-body ol {
    list-style: decimal;
    padding-left: 20px;
}

.modal-body li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    transition: 0.3s ease;
}

.modal-body li a {
    text-decoration: none;
    color: #007bff;
    font-weight: 500;
}

.modal-body li a:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Close button */
.btn-close {
    background-color: #0d6efd;
    border-radius: 50%;
    opacity: 1;
}
.btn-close:hover {
    background-color: #084298;
}

/* Zoom in animation */
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}






.page-heading {
    text-align: center;
    margin: 30px 0;
    color: #0d6efd;
    font-size: 36px;
    font-weight: 700;
}

.sim-card {
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid #00bcd4;
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.2);
    position: relative;
    overflow: hidden;
}

.sim-card:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 188, 212, 0.35);
    background: linear-gradient(to top right, #e0f7fa, #ffffff);
}

.sim-card h5 {
    font-size: 22px;
    color: #007ba7;
    font-weight: bold;
}

.sim-card p {
    color: #666;
    font-size: 14px;
    margin-top: 10px;
}

.sim-card::before {
    content: "📘";
    font-size: 40px;
    position: absolute;
    top: 20px;
    right: 20px;
    opacity: 0.2;
}

.sim-topic a {
    display: block;
    color: #333;
    margin-bottom: 12px;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 6px;
    transition: 0.2s ease-in-out;
}
.sim-topic a:hover {
    color: #0d6efd;
    background-color: #e3f2fd;
}
.modal-title {
    color: #0d6efd;
    font-weight: bold;
}


/* Add this CSS to your styles.css or inside <style> tag in header.php */

/* Style for the "Explore Topics" dropdown item */
.highlight-nav-item {
    position: relative;
    font-weight: bold;
    animation: zoomColorChange 3s ease-in-out infinite; /* Apply the animation */
}

/* Keyframes for the animation */
@keyframes zoomColorChange {
    0% {
        color: #007bff; /* Initial color */
        transform: scale(1); /* Normal size */
    }
    50% {
        color: #ff5733; /* Color change to orange at the middle */
        transform: scale(1.1); /* Zoom in effect */
    }
    100% {
        color: #007bff; /* Return to the original color */
        transform: scale(1); /* Back to normal size */
    }
}

/* Optional: Remove underline or text decoration on animation */
.highlight-nav-item {
    text-decoration: none;
}





     .map-container {
        position: relative;
        width: 100%;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
        max-width: 100%;
    }
    .map-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }
 
 
 
 .faculty-card img {
        height: 220px;
        width: 220px;
        object-fit: cover;
        border-radius: 50%;
        margin: 0 auto;
        transition: transform 0.3s ease-in-out;
    }

    .faculty-card img:hover {
        transform: scale(1.05);
    }

    .faculty-card .social-icons a {
        margin: 0 5px;
        color: #555;
        font-size: 1.2rem;
        transition: color 0.3s;
    }

    .faculty-card .social-icons a:hover {
        color: #007bff;
    }
    
        /* Custom styles for cohesive theme (blue, green, white) */
        :root {
            --primary-blue: #007BFF;
            --primary-green: #28A745;
            --primary-white: #FFFFFF;
        }

      

        .timing-section {
            padding: 60px 0;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
            color: var(--primary-white);
        }

        .timing-card {
            background: var(--primary-white);
            color: #333;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .timing-card:hover {
            transform: translateY(-10px);
        }

        .animated-icon {
            font-size: 2rem;
            margin-right: 10px;
            color: var(--primary-blue);
            display: inline-block;
            transition: transform 0.3s ease;
        }

        .animated-icon:hover {
            transform: scale(1.2) rotate(10deg);
        }

        .download-btn {
            background-color: var(--primary-green);
            border: none;
            padding: 10px 20px;
            font-size: 1.1rem;
            transition: background-color 0.3s ease, transform 0.2s ease;
        }

        .download-btn:hover {
            background-color: #218838;
            transform: scale(1.05);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .timing-card {
                margin-bottom: 20px;
            }
            .timing-section {
                padding: 40px 0;
            }
        }
    
    .uniform-section {
        padding: 60px 20px;
        background: #f9f9f9;
        position: relative;
    }
    .uniform-title {
        text-align: center;
        font-size: 2.5rem;
        font-weight: bold;
        margin-bottom: 30px;
        color: #003366;
        text-shadow: 2px 2px #ccc;
    }
    .uniform-subtitle {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }
    .uniform-card {
        background: #fff;
        border-radius: 15px;
        box-shadow: 0 0 12px rgba(0,0,0,0.1);
        padding: 20px;
        margin-bottom: 30px;
        transition: transform 0.3s ease;
    }
    .uniform-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    .uniform-card img {
        width: 100%;
        max-height: 350px;
        object-fit: cover;
        border-radius: 10px;
    }
    .uniform-details {
        margin-top: 15px;
        text-align: center;
    }
    .uniform-details h4 {
        font-size: 1.5rem;
        font-weight: bold;
    }
    .uniform-details p {
        font-size: 1.1rem;
        color: #555;
    }
    .classwise-heading {
        font-size: 1.75rem;
        margin-top: 50px;
        text-align: center;
        color: #003366;
    }



  /* Title and Subtitle */
        .title {
            text-align: center;
            font-size: 3rem;
            color: #1d3c6d; /* Blue */
            margin-top: 40px;
            font-weight: bold;
        }

        .subtitle {
            text-align: center;
            font-size: 1.2rem;
            color: #28a745; /* Green */
            margin-bottom: 40px;
        }

        .category h2 {
            text-align: center;
            font-size: 2.5rem;
            color: #1d3c6d; /* Blue */
            margin-bottom: 30px;
        }

        .student-img {
            border-radius: 50%;
            border: 5px solid #f0c040; /* Golden Border */
            width: 150px;
            height: 150px;
            object-fit: cover;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.7);
        }

        .student .details {
            text-align: center;
            margin-top: 15px;
        }

        .student .details p {
            margin: 5px;
            color: #333;
        }

        .student .details .name {
            font-size: 1.2rem;
            font-weight: bold;
        }

        .student .details .class,
        .student .details .rollno {
            font-size: 1rem;
        }

        .student .details .competition {
            font-size: 1.1rem;
            color: #28a745; /* Green */
        }

        /* Overlay */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(255, 255, 255, 0.8);
            z-index: 999;
            display: none;
        }

        /* Add Animation Effect for Paper Sprinkle */
        @keyframes paper-sprinkle {
            0% {
                transform: translateY(-100%);
                opacity: 0;
            }

            100% {
                transform: translateY(100%);
                opacity: 1;
            }
        }

        .paper-sprinkle {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            pointer-events: none;
            z-index: 1000;
            animation: paper-sprinkle 2s ease-in-out;
            overflow: hidden;
        }

        .paper-sprinkle div {
            position: absolute;
            width: 15px;
            height: 15px;
            background-color: #ff6347; /* Random color for paper sprinkle */
            opacity: 0.7;
            animation: drop 1.5s infinite ease-in-out;
        }

        @keyframes drop {
            0% {
                top: -15px;
                left: 50%;
                transform: translateX(-50%);
                opacity: 0;
            }

            100% {
                top: 100%;
                opacity: 1;
                transform: translateX(-50%);
            }
        }

        /* Colorful Background Effect on Page Load */
        .category {
            margin-bottom: 40px;
        }

        /* Responsive Grid */
        .category .student {
            display: inline-block;
            margin: 20px;
            text-align: center;
        }

        @media (max-width: 767px) {
            .category .student {
                margin: 10px;
            }

            .student-img {
                width: 120px;
                height: 120px;
            }
        }



.admission-form {
    margin-top: 20px;
}

.admission-form .form-group {
    margin-bottom: 15px;
}

.admission-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

.admission-form input,
.admission-form select,
.admission-form textarea {
    width: 100%;
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

.btn-submit {
    background-color: #007bff;
    color: #fff;
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #0056b3;
}




/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}
/* Change dropdown item hover background color */
.dropdown-menu .dropdown-item:hover {
    background-color: #cce5ff; /* Light blue */
    color: #000; /* Optional: keep text readable */
}

 .chalkboard {
            background-color: #2e4d1d;
            color: #ffffff;
            border: 15px solid #8b5a2b; /* wooden color */
            border-radius: 10px;
            padding: 40px;
            max-width: 800px;
            margin: 50px auto;
            box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.3);
            position: relative;
        }
        .chalk-title {
            font-family: 'Gloria Hallelujah', cursive;
            font-size: 48px;
            text-align: center;
            margin-bottom: 30px;
            color: #fff;
            text-shadow: 2px 2px 0 #000;
        }
        .notice-title {
            font-size: 28px;
            margin-bottom: 10px;
        }
        .notice-date {
            font-size: 14px;
            color: #ccc;
            margin-bottom: 20px;
        }
        .notice-content {
            font-size: 18px;
            line-height: 1.6;
        }
        .download-btn {
            margin-top: 20px;
        }



.about-section {
  padding: 60px 20px;
  background: #f9f9f9;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2.5rem;
  color: #004aad;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  color: #333;
  line-height: 1.7;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Animation */
.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: fadeInLeft 1s ease forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeInRight 1s ease forwards;
  animation-delay: 0.3s;
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-text h2 {
    font-size: 2rem;
  }
}




/* Main container styles */
.tc-container {
  max-width: 1200px; /* Adjust width as needed */
  margin: 0 auto;
  text-align: center;
  color: #333; /* Main text color */
  position: relative;
  box-sizing: border-box;
}
/* Description text styles */
.tc-description {
  font-size: 1.3em;
  line-height: 1.8em;
  max-width: 800px; /* Control text width */
  margin: 0 auto 40px;
  color: #444; /* Description text color */
}
/* Carousel wrapper */
.tc-wrapper {
  position: relative;
  padding: 20px 0;
}
/* Carousel gallery container */
.tc-gallery {
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  max-width: 900px; /* Controls how many cards are visible */
}
/* Track that holds all slide cards */
.tc-track {
  display: flex;
  transition: transform 0.5s ease; /* Controls slide animation speed */
}
/* Individual card styling */
.tc-card {
  min-width: 250px; /* Card width */
  width: 250px;
  margin: 0 10px; /* Space between cards */
  border-radius: 12px; /* Rounded corners */
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1); /* Card shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  background-color: white;
}
/* Hover effect for cards */
.tc-card:hover {
  transform: scale(1.03); /* Slight enlargement on hover */
  box-shadow: 0 6px 20px rgba(0,0,0,0.15); /* Enhanced shadow on hover */
}
/* Image styling within cards */
.tc-card img {
  width: 100%;
  height: 150px; /* Fixed height for all images */
  object-fit: cover; /* Ensures images fill the space nicely */
  display: block;
}
/* Left gradient overlay */
.tc-gradient-left {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  z-index: 10;
}
/* Right gradient overlay */
.tc-gradient-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 100px;
  height: 100%;
  pointer-events: none;
  background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  z-index: 10;
}
/* Navigation button styling */
.tc-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  border: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5C258D; /* Button icon color - customize this */
  transition: background-color 0.2s;
}
/* Button hover effect */
.tc-btn:hover {
  background-color: #f8f8f8;
}
/* Position the previous button */
.tc-prev {
  left: 10px;
}
/* Position the next button */
.tc-next {
  right: 10px;
}
/* Mobile responsiveness */
@media (max-width: 768px) {
  .tc-gallery {
    max-width: 300px; /* Show only one card on mobile */
  }
  .tc-description {
    font-size: 1.1em;
    padding: 0 15px;
  }
  .tc-btn {
    width: 36px;
    height: 36px;
  }
}
/* Fade-in animation */
@keyframes tcFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.tc-fade-in {
  animation: tcFadeIn 0.5s forwards;
}

.quote-card {
    background-color: #1d4727;
    color: #fff;
    border-radius: 20px;
    box-shadow: inset 0 0 10px #0f0f0f, 0 8px 20px rgba(0, 0, 0, 0.4);
    padding: 40px;
    max-width: 600px;
    margin: 30px;
    text-align: center;
    font-family: 'Shadows Into Light', cursive;
    border: 3px double #ffffffaa;
    position: relative;
    animation: glowFade 4s infinite ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px; /* Ensure thereâ€™s enough height to center vertically */

   
}

.quote-title {
    font-size: 2rem;
    color: #c0ffc0;
    margin-bottom: 20px; /* Space between title and quote */
    text-shadow: 2px 2px 4px #000000;
    align-self: center; /* Center horizontally */
}

.quote-text {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 1px 1px 1px #ccc;
}

.quote-author {
    font-size: 1.2rem;
    color: #a9f5a9;
    margin-bottom: 30px;
    text-shadow: 1px 1px 1px #444;
}

.copy-btn {
    padding: 10px 25px;
    font-size: 1rem;
    background-color: #28a745;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.copy-btn:hover {
    background-color: #218838;
}



.notice-card {
            border-left: 5px solid #007bff;
            background: white;
            transition: transform 0.2s;
        }
        .notice-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        .latest-notice {
            background-color: #e6fff2;
            border-left: 5px solid #28a745;
            padding: 20px;
            margin-bottom: 30px;
        } 
        
        /* Carousel Styling */
        .carousel {
            margin-bottom: 30px;
        }

        .carousel-item {
            height: 75vh;
            min-height: 400px;
            background: no-repeat center center/cover;
            position: relative;
        }

        /* Glassmorphism Overlay for Caption 
        .carousel-caption {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(8px);
            border-radius: 12px;
            padding: 20px 30px;
            bottom: 20%;
            text-align: center;
            max-width: 80%;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .carousel-caption h1 {
            font-size: 2.8rem;
            font-weight: 700;
            font-family: 'Poppins', sans-serif;
            color: #ffffff;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
            margin-bottom: 15px;
            animation: fadeInUp 0.6s ease-out;
        }

        .carousel-caption p {
            font-size: 1.25rem;
            font-weight: 400;
            font-family: 'Poppins', sans-serif;
            color: #e6f0fa;
            margin-bottom: 20px;
            animation: fadeInUp 0.8s ease-out;
        }

        .carousel-caption .btn {
            background-color: #004aad;
            border: none;
            padding: 12px 25px;
            font-size: 1rem;
            font-weight: 500;
            font-family: 'Poppins', sans-serif;
            transition: background-color 0.3s ease, transform 0.3s ease;
            animation: fadeInUp 1s ease-out;
        }

        .carousel-caption .btn:hover {
            background-color: #002966;
            transform: scale(1.05);
        }

        .carousel-caption .btn i {
            margin-left: 8px;
        }

        /* Animation Keyframes */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Carousel Controls */
        .carousel-control-prev,
        .carousel-control-next {
            width: 6%;
            background: rgba(0, 0, 0, 0.3);
            transition: background 0.3s ease;
        }

        .carousel-control-prev:hover,
        .carousel-control-next:hover {
            background: rgba(0, 0, 0, 0.6);
        }

        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            font-size: 1.8rem;
        }

     /* Carousel Indicators - Circular Style */
/* Force circular indicators */
.carousel-indicators [data-bs-target] {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background-color: #ffffff !important;
  border: 2px solid #004aad !important;
  margin: 0 5px;
  opacity: 0.7;
  transition: all 0.3s ease;
}

/* Highlight active indicator */
.carousel-indicators .active {
  background-color: #004aad !important;
  opacity: 1 !important;
}

        /* Scroll Down Indicator */
        .scroll-down {
            position: absolute;
            bottom: 25px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
        }

        .scroll-down a {
            color: #ffffff;
            font-size: 2rem;
            animation: bounce 2s infinite;
            text-decoration: none;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-12px);
            }
            60% {
                transform: translateY(-6px);
            }
        }

        /* Accessibility */
        .carousel-caption a:focus {
            outline: 2px solid #e6f0fa;
            outline-offset: 2px;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .carousel-item {
                height: 60vh;
                min-height: 350px;
            }

            .carousel-caption {
                bottom: 15%;
                max-width: 90%;
                padding: 15px;
            }

            .carousel-caption h1 {
                font-size: 2rem;
            }

            .carousel-caption p {
                font-size: 1rem;
            }

            .carousel-caption .btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }
        }

        @media (max-width: 576px) {
            .carousel-caption h1 {
                font-size: 1.6rem;
            }

            .carousel-caption p {
                font-size: 0.9rem;
            }

            .carousel-caption .btn {
                padding: 8px 15px;
                font-size: 0.85rem;
            }
        }

        
        /* Footer Styling */
        footer {
            background-color: #004aad; /* Blue to match logo style */
            color: #ffffff;
            padding: 40px 0 20px;
            font-family: 'Poppins', sans-serif;
        }

        /* Footer Headings */
        footer h5 {
            font-weight: 600;
            margin-bottom: 20px;
            color: #e6f0fa;
        }

        /* Footer Links */
        footer a {
            color: #ffffff;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: #e6f0fa;
            text-decoration: underline;
        }

        /* Social Media Icons */
        .social-icons a {
            font-size: 1.5rem;
            margin: 0 10px;
            color: #ffffff;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: #e6f0fa;
        }

        /* Contact Info */
        .contact-info p {
            margin-bottom: 10px;
            font-size: 0.95rem;
        }

        /* Copyright Section */
        .copyright {
            background-color: #002966; /* Darker blue for contrast */
            padding: 15px 0;
            text-align: center;
            font-size: 0.9rem;
        }

        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            background-color: #004aad;
            color: #ffffff;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            cursor: pointer;
            z-index: 1000;
        }

        .scroll-to-top.show {
            opacity: 1;
        }

        .scroll-to-top:hover {
            background-color: #002966;
        }

        /* Accessibility and Contrast */
        footer a:focus,
        .scroll-to-top:focus {
            outline: 2px solid #e6f0fa;
            outline-offset: 2px;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            footer h5 {
                margin-top: 20px;
            }

            .social-icons a {
                margin: 0 8px;
                font-size: 1.3rem;
            }

            .contact-info p {
                font-size: 0.9rem;
            }
        }
 
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }

        /* Sticky Header */
        .sticky-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: #ffffff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        .school-logo img {
            max-height: 60px;
        }

        .school-name {
            font-size: 2rem;
            font-weight: 600;
            color: #004aad;
            text-align: center;
            flex-grow: 1;
        }

        /* Navigation */
        .navbar {
            padding: 0;
        }

        .navbar-nav .nav-link {
            color: #004aad;
            font-weight: 500;
            padding: 10px 15px;
            transition: background-color 0.3s, color 0.3s;
        }

        .navbar-nav .nav-link:hover {
            background-color: #e6f0fa;
            color: #002966;
            border-radius: 5px;
        }

        .dropdown-menu {
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .dropdown-item {
            color: #004aad;
            transition: background-color 0.3s;
        }

        .dropdown-item:hover {
            background-color: #e6f0fa;
            color: #002966;
        }

        /* Custom Burger Icon */
        .navbar-toggler {
            border: none;
            padding: 10px;
        }

        .navbar-toggler-icon {
            background-image: none;
            width: 30px;
            height: 30px;
            position: relative;
        }

        .navbar-toggler-icon::before {
            content: '\f0c9'; /* Font Awesome bars icon */
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: #004aad;
            font-size: 24px;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /* Accessibility */
        img {
            max-width: 100%;
            height: auto;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .school-name {
                font-size: 1.5rem;
                margin: 0 auto;
            }

            .school-logo img {
                max-height: 50px;
            }

            .header-top {
                flex-direction: column;
                align-items: center;
                padding: 10px 0;
            }

            .school-logo {
                margin-bottom: 10px;
            }

            .navbar-nav {
                text-align: center;
            }

            .navbar-nav .nav-link {
                padding: 12px;
                font-size: 1.1rem;
                border-bottom: 1px solid #e6f0fa;
            }

            .navbar-nav .nav-item:last-child .nav-link {
                border-bottom: none;
            }

            .dropdown-menu {
                text-align: center;
                border: none;
                background-color: #f8f9fa;
            }

            .navbar-collapse {
                background-color: #ffffff;
                border-top: 1px solid #e6f0fa;
                margin-top: 10px;
                border-radius: 8px;
            }
        }
