
        :root {
            --primary: #0C055B;
            --secondary: #FFF34F;
            --light: #f5f5f5;
            --dark: #333;
            --success: #28a745;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #444;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
           
        }
        
        /* Navbar */
        .navbar {
            padding: 8px 0;
            transition: all 0.3s ease;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            backdrop-filter: blur(10px);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.6rem;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover {
            transform: scale(1.05);
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 8px;
            color: var(--dark) !important;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 12px !important;
            border-radius: 6px;
            font-size: 14px;
        }
        
        .nav-link:hover {
            color: var(--primary) !important;
            background-color: rgba(12, 5, 91, 0.05);
        }
        
        .nav-link.active {
            color: var(--primary) !important;
            background-color: rgba(12, 5, 91, 0.1);
        }
        
        /* Enhanced Dropdown Styling */
        .dropdown-menu {
            border: none;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            border-radius: 12px;
            padding: 8px 0;
            margin-top: 8px;
            background: white;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(0, 0, 0, 0.08);
            min-width: 220px;
            animation: dropdownFadeIn 0.3s ease;
        }
        
        @keyframes dropdownFadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .dropdown-item {
            padding: 12px 20px;
            font-weight: 500;
            color: var(--dark);
            transition: all 0.3s ease;
            border-radius: 8px;
            margin: 2px 8px;
            position: relative;
            overflow: hidden;
        }
        
        .dropdown-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(12, 5, 91, 0.1), transparent);
            transition: left 0.5s;
        }
        
        .dropdown-item:hover::before {
            left: 100%;
        }
        
        .dropdown-item:hover {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            transform: translateX(5px);
            box-shadow: 0 4px 15px rgba(12, 5, 91, 0.2);
        }
        
        .dropdown-item:active {
            background: var(--primary);
        }
        
        /* Dropdown toggle arrow styling */
        .dropdown-toggle::after {
            transition: transform 0.3s ease;
        }
        
        .dropdown-toggle[aria-expanded="true"]::after {
            transform: rotate(180deg);
        }
        
        /* School Portal Button Enhancement */
        .nav-link.nagies-primary-button {
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border: none;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(12, 5, 91, 0.2);
            color: #fff !important;
        }
        
        .nav-link.nagies-primary-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(12, 5, 91, 0.3);
            background: linear-gradient(135deg, var(--secondary), var(--primary));
        }
        
        /* Hero Section */
        .hero {
            background:  url('/assets/media/school-compound.webp') no-repeat center center;
            background-size: cover;
            background-position: center;
            color: white;
            padding: 120px 0 100px;
            position: relative;
            overflow: hidden;
            height: 90vh;
        }
        
        /* Curved bottom for hero section */
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 80px;
            background: white;
            clip-path: ellipse(100% 100% at 50% 100%);
            z-index: 1;
        }
        .hero::before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.3);
            z-index: 1;
        }
        
        /* Alternative wave design - uncomment to use instead */
        /*
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 60px;
            background: white;
            clip-path: polygon(0 30px, 25% 0, 50% 30px, 75% 0, 100% 30px, 100% 100%, 0% 100%);
            z-index: 1;
        }
        */
        
        /* SVG Wave alternative - more fluid curve */
        /*
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100px;
            background: white;
            clip-path: path('M0,60 C150,120 350,0 500,60 C650,120 850,0 1000,60 C1150,120 1350,0 1500,60 L1500,200 L0,200 Z');
            z-index: 1;
        }
        */
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }
        
        .hero p {
            font-size: 1.25rem;
            margin-bottom: 30px;
            animation: fadeInUp 1.5s ease;
        }
        
        .hero-btn {
            animation: fadeInUp 2s ease;
        }
        
        /* Animated Elements */
        .animated-element {
            position: absolute;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .element-1 {
            width: 80px;
            height: 80px;
            top: 20%;
            left: 10%;
            animation: float 8s infinite ease-in-out;
        }
        
        .element-2 {
            width: 50px;
            height: 50px;
            bottom: 30%;
            right: 15%;
            animation: float 6s infinite ease-in-out;
        }
        
        .element-3 {
            width: 100px;
            height: 100px;
            top: 60%;
            left: 15%;
            animation: float 10s infinite ease-in-out;
        }
        
        /* Features Section */
        .features {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
            position: relative;
            overflow: hidden;
        }
        
        /* Decorative background elements */
        .features::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 300px;
            height: 300px;
            background: linear-gradient(45deg, rgba(12, 5, 91, 0.05), rgba(248, 163, 27, 0.05));
            border-radius: 50%;
            transform: rotate(45deg);
            z-index: 0;
        }
        
        .features::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, rgba(248, 163, 27, 0.03), rgba(12, 5, 91, 0.03));
            border-radius: 50%;
            z-index: 0;
        }
        
        .features .container {
            position: relative;
            z-index: 1;
        }
        
        .features h2 {
            font-size: 2.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }
        
        .features .lead {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 3rem;
            font-weight: 400;
        }
        
        .feature-card {
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
            border: none;
            height: 100%;
            background: white;
            position: relative;
            padding: 0;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .feature-card:hover::before {
            opacity: 1;
        }
        
        .feature-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
        }
        
        .feature-card .card-body {
            padding: 3rem 2rem;
            position: relative;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .feature-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }
        
        .feature-card:hover .feature-icon::before {
            left: 100%;
        }
        
        .feature-icon i {
            font-size: 2.2rem;
            color: white;
            z-index: 1;
            position: relative;
        }
        
        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 10px 25px rgba(12, 5, 91, 0.3);
        }
        
        .feature-card h4 {
            font-size: 1.4rem;
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 1rem;
            transition: color 0.3s ease;
        }
        
        .feature-card:hover h4 {
            color: var(--primary);
        }
        
        .feature-card p {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 0;
        }
        
        /* Staggered animation for cards */
        .feature-card:nth-child(1) {
            animation-delay: 0.1s;
        }
        
        .feature-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        .feature-card:nth-child(3) {
            animation-delay: 0.3s;
        }
        
        .feature-card:nth-child(4) {
            animation-delay: 0.4s;
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .feature-card {
            animation: fadeInUp 0.6s ease forwards;
            opacity: 0;
        }
        
        /* Responsive design for features section */
        @media (max-width: 992px) {
            .features h2 {
                font-size: 2.4rem;
            }
            
            .feature-card .card-body {
                padding: 2.5rem 1.5rem;
            }
            
            .feature-icon {
                width: 70px;
                height: 70px;
            }
            
            .feature-icon i {
                font-size: 2rem;
            }
        }
        
        /* Responsive Navbar Styles */
        @media (max-width: 992px) {
            .navbar {
                padding: 6px 0;
            }
            
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .nav-link {
                margin: 0 5px;
                padding: 6px 10px !important;
            }
            
            .dropdown-menu {
                min-width: 200px;
            }
        }
        
        @media (max-width: 768px) {
            .navbar {
                padding: 5px 0;
            }
            
            .navbar-brand {
                font-size: 1.4rem;
            }
            
            .navbar-collapse {
                background: white;
                border-radius: 10px;
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
                margin-top: 10px;
                padding: 15px;
            }
            
            .nav-link {
                margin: 2px 0;
                padding: 10px 15px !important;
                border-radius: 8px;
            }
            
            .nav-link:hover {
                background-color: rgba(12, 5, 91, 0.08);
            }
            
            .dropdown-menu {
                box-shadow: none;
                border: 1px solid rgba(0, 0, 0, 0.1);
                margin-top: 5px;
                background: #f8f9fa;
            }
            
            .dropdown-item {
                margin: 1px 4px;
                padding: 8px 15px;
            }
            
            .nav-link.nagies-primary-button {
                margin-top: 10px;
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            .features {
                padding: 60px 0;
            }
            
            .features h2 {
                font-size: 2rem;
                margin-bottom: 0.8rem;
            }
            
            .features .lead {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }
            
            .feature-card .card-body {
                padding: 2rem 1.5rem;
            }
            
            .feature-icon {
                width: 60px;
                height: 60px;
                border-radius: 15px;
            }
            
            .feature-icon i {
                font-size: 1.8rem;
            }
            
            .feature-card h4 {
                font-size: 1.2rem;
            }
            
            .feature-card:hover {
                transform: translateY(-8px) scale(1.01);
            }
        }
        
        @media (max-width: 576px) {
            .features::before,
            .features::after {
                display: none;
            }
            
            .feature-card .card-body {
                padding: 1.5rem 1rem;
            }
            
            .feature-card {
                margin-bottom: 1.5rem;
            }
            
            .features h2 {
                font-size: 1.8rem;
            }
        }
        
        /* News Section */
        .news {
            background-color: #f9f9f9;
            padding: 80px 0;
        }
        
        .news-card {
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        .top-header{
            background-color: var(--primary);
            color: white;
            padding: px 0;
            text-align: center;
        }
        
        .news-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        /* Testimonials */
        .testimonials {
            padding: 80px 0;
            background: linear-gradient(to right, #1a4f8b, #2c6bb3);
            color: white;
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            backdrop-filter: blur(10px);
            height: 100%;
        }
        
        /* Footer */
        .footer {
            background-color: #2c3e50;
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-title {
            font-weight: 600;
            margin-bottom: 25px;
            font-size: 1.2rem;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: all 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons {
            margin-top: 20px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            color: white;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--secondary);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: #bbb;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }

        /* Partner Logos Slider */
        .partners-slider {
            overflow: hidden;
            white-space: nowrap;
            position: relative;
            margin: 0 auto;
            max-width: 100%;
        }

        .partners-track {
            display: inline-flex;
            animation: slide 30s linear infinite;
            align-items: center;
        }

        .partner-item {
            flex: 0 0 auto;
            margin: 0 40px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .partner-item img {
            max-height: 60px;
            max-width: 120px;
            object-fit: contain;
            filter: grayscale(1) opacity(0.7);
            transition: all 0.3s ease;
        }

        .partners-slider:hover .partners-track {
            animation-play-state: paused;
        }

        .partner-item:hover img {
            filter: grayscale(0) opacity(1);
            transform: scale(1.1);
        }

        @keyframes slide {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        /* Welcome Message Section */
        .welcome-message {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .welcome-content {
            position: relative;
            z-index: 2;
        }

        .welcome-text {
            line-height: 1.8;
            color: #444;
        }

        .welcome-text p {
            text-align: justify;
            margin-bottom: 1.5rem;
        }

        .welcome-text .lead {
            font-size: 1.2rem;
            font-weight: 500;
            color: #2c3e50;
        }

        .highlight-box {
            border-left: 4px solid var(--primary);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .highlight-box:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
        }

        .conclusion-box {
            background: linear-gradient(135deg, var(--primary) 0%, #0a0456 100%);
            border: none;
            position: relative;
            overflow: hidden;
        }
        .nagies-primary-color{
            color: #0a0456;
        }
        .nagies-primary-button{
            background-color: var(--primary);
            color: white;
        }

        .conclusion-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg);
            transition: all 0.3s ease;
        }

        .conclusion-box:hover::before {
            right: -40%;
        }

        .principal-card {
            border: 2px solid #f8f9fa;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .principal-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s ease;
        }

        .principal-card:hover::before {
            left: 100%;
        }

        .principal-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
            border-color: var(--primary);
        }

        .principal-image-wrapper {
            position: relative;
        }

        .principal-image-wrapper::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            right: -10px;
            bottom: -10px;
            border: 2px solid var(--secondary);
            border-radius: 50%;
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.3s ease;
        }

        .principal-card:hover .principal-image-wrapper::after {
            opacity: 1;
            transform: scale(1);
        }

        .principal-quote {
            border-left: 3px solid var(--primary);
            font-style: italic;
            position: relative;
        }

        .welcome-text h4 {
            position: relative;
            padding-bottom: 10px;
        }

        .welcome-text h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary);
            border-radius: 2px;
        }

        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1rem;
            }

            .partner-item {
                margin: 0 20px;
                height: 60px;
            }

            .partner-item img {
                max-height: 45px;
                max-width: 90px;
            }

            .welcome-message .display-4 {
                font-size: 2.5rem;
            }

            .welcome-text p {
                text-align: left;
            }

            .principal-card {
                margin-top: 2rem;
            }

            .highlight-box,
            .conclusion-box {
                margin: 1rem 0;
            }
        }

        @media (max-width: 576px) {
            .welcome-message .display-4 {
                font-size: 2rem;
            }

            .welcome-text .lead {
                font-size: 1.1rem;
            }

            .principal-card {
                padding: 1.5rem !important;
            }
        }

        /* Vision & Mission Page Styles */
        .vision-mission {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .header-divider {
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            border-radius: 2px;
            margin-top: 1rem;
        }

        .vision-card,
        .mission-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .vision-card::before,
        .mission-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: left 0.4s ease;
        }

        .vision-card:hover::before {
            left: 0;
        }

        .mission-card::before {
            background: linear-gradient(90deg, var(--secondary), var(--primary));
        }

        .mission-card:hover::before {
            left: 0;
        }

        .vision-card:hover,
        .mission-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
            border-color: var(--primary);
        }

        .icon-wrapper {
            position: relative;
            display: inline-block;
        }

        .icon-wrapper::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 80px;
            height: 80px;
            background: rgba(12, 5, 91, 0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.3s ease;
        }

        .vision-card:hover .icon-wrapper::after,
        .mission-card:hover .icon-wrapper::after {
            transform: translate(-50%, -50%) scale(1);
        }

        .vision-text,
        .mission-text {
            font-style: italic;
            position: relative;
            padding: 1rem;
            background: rgba(12, 5, 91, 0.05);
            border-radius: 10px;
            border-left: 4px solid var(--primary);
        }

        .vision-points li,
        .mission-points li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .vision-points li:hover,
        .mission-points li:hover {
            background: rgba(12, 5, 91, 0.05);
            padding-left: 1rem;
            border-radius: 5px;
        }

        .vision-points li:last-child,
        .mission-points li:last-child {
            border-bottom: none;
        }

        /* Core Values Section */
        .core-values-section {
            margin-top: 4rem;
            padding: 3rem 0;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .value-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .value-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(12, 5, 91, 0.1) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.4s ease;
        }

        .value-card:hover::before {
            transform: scale(1);
        }

        .value-card:hover {
            transform: translateY(-10px) rotateY(5deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
            border-color: var(--primary);
        }

        .value-icon {
            transition: all 0.3s ease;
        }

        .value-card:hover .value-icon {
            transform: scale(1.2) rotateY(360deg);
        }

        .value-title {
            position: relative;
        }

        .value-title::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .value-card:hover .value-title::after {
            width: 60px;
        }

        /* Commitment Section */
        .commitment-section {
            padding: 3rem 0;
        }

        .commitment-item {
            padding: 1rem;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .commitment-item:hover {
            background: rgba(12, 5, 91, 0.05);
            transform: translateX(10px);
        }

        .commitment-icon {
            transition: all 0.3s ease;
        }

        .commitment-item:hover .commitment-icon {
            transform: scale(1.1) rotateY(360deg);
        }

        .quote-box {
            background: linear-gradient(135deg, var(--primary) 0%, #0a0456 100%) !important;
            position: relative;
            overflow: hidden;
        }

        .quote-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg);
            transition: all 0.4s ease;
        }

        .quote-box:hover::before {
            right: -30%;
        }

        /* Responsive Design for Vision & Mission */
        @media (max-width: 768px) {
            .vision-mission .display-4 {
                font-size: 2.5rem;
            }

            .vision-card,
            .mission-card {
                margin-bottom: 2rem;
            }

            .core-values-section {
                margin-top: 2rem;
                padding: 2rem 1rem;
            }

            .value-card:hover {
                transform: translateY(-5px);
            }

            .commitment-item:hover {
                transform: translateX(5px);
            }
        }

        @media (max-width: 576px) {
            .vision-mission .display-4 {
                font-size: 2rem;
            }

            .vision-text,
            .mission-text {
                font-size: 1rem;
            }

            .commitment-content {
                margin-bottom: 2rem;
            }
        }

        /* Campus & Location Page Styles */
        .campus-location {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .campus-overview {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .stat-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
            border-color: var(--primary);
        }

        .campus-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            margin-bottom: 2rem;
        }

        .campus-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: left 0.4s ease;
        }

        .campus-card:hover::before {
            left: 0;
        }

        .campus-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
            border-color: var(--primary);
        }

        .campus-icon {
            transition: all 0.3s ease;
        }

        .campus-card:hover .campus-icon {
            transform: scale(1.1) rotateY(360deg);
        }

        .detail-item {
            padding: 0.75rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .detail-item:hover {
            background: rgba(12, 5, 91, 0.05);
            transform: translateX(5px);
        }

        .feature-badge {
            background: linear-gradient(135deg, var(--primary) 0%, #0a0456 100%);
            color: white;
            padding: 0.5rem 0.75rem;
            border-radius: 20px;
            font-size: 0.875rem;
            font-weight: 500;
            text-align: center;
            transition: all 0.3s ease;
            margin-bottom: 0.5rem;
        }

        .feature-badge:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(12, 5, 91, 0.3);
        }

        .feature-badge-secondary {
            background: linear-gradient(135deg, var(--secondary) 0%, #e89b00 100%);
        }

        .feature-badge-secondary:hover {
            box-shadow: 0 5px 15px rgba(248, 163, 27, 0.3);
        }

        .map-container {
            position: relative;
        }

        .map-frame {
            position: relative;
            overflow: hidden;
            border: 3px solid var(--primary);
            transition: all 0.3s ease;
        }

        .map-frame:hover {
            border-color: var(--secondary);
            transform: scale(1.02);
        }

        .map-frame iframe {
            transition: all 0.3s ease;
        }

        .map-actions .btn {
            transition: all 0.3s ease;
        }

        .map-actions .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .transport-card,
        .accessibility-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .transport-card::before,
        .accessibility-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(12, 5, 91, 0.05) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.4s ease;
        }

        .transport-card:hover::before,
        .accessibility-card:hover::before {
            transform: scale(1);
        }

        .transport-card:hover,
        .accessibility-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
            border-color: var(--primary);
        }

        .transport-icon,
        .accessibility-icon {
            transition: all 0.3s ease;
        }

        .transport-card:hover .transport-icon,
        .accessibility-card:hover .accessibility-icon {
            transform: scale(1.2) rotateY(360deg);
        }

        .detail-row {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        }

        .detail-row:last-child {
            border-bottom: none;
        }

        .feature-item {
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            transform: translateX(5px);
            color: var(--primary);
        }

        /* Campus Location Responsive Design */
        @media (max-width: 768px) {
            .campus-location .display-4 {
                font-size: 2.5rem;
            }

            .campus-overview {
                padding: 1.5rem;
                margin-bottom: 2rem;
            }

            .campus-card {
                padding: 1.5rem !important;
                margin-bottom: 1.5rem;
            }

            .map-frame {
                margin-bottom: 1rem;
            }

            .map-actions .btn {
                display: block;
                width: 100%;
                margin: 0.25rem 0;
            }

            .campus-card:hover {
                transform: translateY(-2px);
            }

            .transport-card:hover,
            .accessibility-card:hover {
                transform: translateY(-5px);
            }
        }

        @media (max-width: 576px) {
            .campus-location .display-4 {
                font-size: 2rem;
            }

            .campus-header h2 {
                font-size: 1.5rem;
            }

            .feature-badge {
                font-size: 0.75rem;
                padding: 0.4rem 0.6rem;
            }

            .detail-item {
                flex-direction: column;
                text-align: center;
            }

            .detail-item i {
                margin: 0 0 0.5rem 0 !important;
            }
        }

        /* Curriculum Page Styles */
        .curriculum-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .curriculum-intro {
            position: relative;
        }

        .intro-content {
            border-left: 4px solid var(--primary);
            transition: all 0.3s ease;
        }

        .intro-content:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
        }

        .intro-icon {
            transition: all 0.3s ease;
        }

        .intro-content:hover .intro-icon {
            transform: scale(1.1) rotateY(360deg);
        }

        .highlight-item {
            padding: 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .highlight-item:hover {
            background: rgba(12, 5, 91, 0.05);
            transform: translateY(-2px);
        }

        .highlight-item i {
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .highlight-item:hover i {
            transform: scale(1.2);
        }

        .curriculum-mission {
            margin: 3rem 0;
        }

        .mission-box {
            background: linear-gradient(135deg, var(--primary) 0%, #0a0456 100%) !important;
            position: relative;
            overflow: hidden;
        }

        .mission-box::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 200%;
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(45deg);
            transition: all 0.4s ease;
        }

        .mission-box:hover::before {
            right: -30%;
        }

        .curriculum-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .curriculum-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: left 0.4s ease;
        }

        .curriculum-card:hover::before {
            left: 0;
        }

        .curriculum-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
            border-color: var(--primary);
        }

        .card-icon {
            transition: all 0.3s ease;
        }

        .curriculum-card:hover .card-icon {
            transform: scale(1.1) rotateY(360deg);
        }

        .curriculum-features li {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .curriculum-features li:hover {
            background: rgba(12, 5, 91, 0.03);
            padding-left: 1rem;
            border-radius: 5px;
        }

        .curriculum-features li:last-child {
            border-bottom: none;
        }

        .program-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .program-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(12, 5, 91, 0.1) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.4s ease;
        }

        .program-card:hover::before {
            transform: scale(1);
        }

        .program-card:hover {
            transform: translateY(-10px) rotateY(5deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
            border-color: var(--primary);
        }

        .program-icon {
            transition: all 0.3s ease;
        }

        .program-card:hover .program-icon {
            transform: scale(1.2) rotateY(360deg);
        }

        .program-card h4 {
            position: relative;
        }

        .program-card h4::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .program-card:hover h4::after {
            width: 60px;
        }

        /* Age Group Styling */
        .card-header p {
            background: rgba(12, 5, 91, 0.1);
            padding: 0.25rem 0.75rem;
            border-radius: 15px;
            font-size: 0.875rem;
            font-weight: 500;
        }

        /* Special Programs Section */
        .special-programs {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            padding: 3rem 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        /* Curriculum Responsive Design */
        @media (max-width: 768px) {
            .curriculum-section .display-4 {
                font-size: 2.5rem;
            }

            .curriculum-card {
                margin-bottom: 2rem;
            }

            .card-header {
                flex-direction: column;
                text-align: center;
            }

            .card-header .card-icon {
                margin: 0 0 1rem 0 !important;
            }

            .special-programs {
                padding: 2rem 1rem;
                margin-top: 2rem;
            }

            .program-card:hover {
                transform: translateY(-5px);
            }

            .curriculum-features li:hover {
                transform: translateX(5px);
            }
        }

        @media (max-width: 576px) {
            .curriculum-section .display-4 {
                font-size: 2rem;
            }

            .mission-box {
                padding: 2rem 1.5rem !important;
            }

            .curriculum-card {
                padding: 1.5rem !important;
            }

            .intro-content {
                padding: 1.5rem !important;
            }

            .highlight-item {
                padding: 0.75rem;
                margin-bottom: 1rem;
            }
        }

        /* Co-curricular Activities Page Styles */
        .co-curricular-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .activity-intro {
            position: relative;
        }

        .activity-intro .intro-content {
            border-left: 4px solid var(--primary);
            transition: all 0.3s ease;
        }

        .activity-intro .intro-content:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
        }

        .activity-intro .intro-icon {
            transition: all 0.3s ease;
        }

        .activity-intro .intro-content:hover .intro-icon {
            transform: scale(1.1) rotateY(360deg);
        }

        .activity-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .activity-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: left 0.4s ease;
        }

        .activity-card:hover::before {
            left: 0;
        }

        .activity-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
            border-color: var(--primary);
        }

        .activity-icon {
            transition: all 0.3s ease;
        }

        .activity-card:hover .activity-icon {
            transform: scale(1.1) rotateY(360deg);
        }

        .activity-features .feature-item {
            padding: 0.5rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .activity-features .feature-item:hover {
            background: rgba(12, 5, 91, 0.03);
            padding-left: 1rem;
            border-radius: 5px;
        }

        .activity-features .feature-item:last-child {
            border-bottom: none;
        }

        .activity-features .feature-item i {
            transition: all 0.3s ease;
        }

        .activity-features .feature-item:hover i {
            transform: scale(1.2);
        }

        /* Benefits Section */
        .benefits-section {
            background: rgba(255, 255, 255, 0.8);
            border-radius: 20px;
            padding: 3rem 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .benefit-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(12, 5, 91, 0.1) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.4s ease;
        }

        .benefit-card:hover::before {
            transform: scale(1);
        }

        .benefit-card:hover {
            transform: translateY(-10px) rotateY(5deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
            border-color: var(--primary);
        }

        .benefit-icon {
            transition: all 0.3s ease;
        }

        .benefit-card:hover .benefit-icon {
            transform: scale(1.2) rotateY(360deg);
        }

        .benefit-card h5 {
            position: relative;
        }

        .benefit-card h5::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .benefit-card:hover h5::after {
            width: 60px;
        }

        /* Activity Card Header Styling */
        .card-header {
            position: relative;
        }

        .card-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--secondary);
            transition: width 0.3s ease;
        }

        .activity-card:hover .card-header::after {
            width: 100%;
        }

        /* Co-curricular Responsive Design */
        @media (max-width: 768px) {
            .co-curricular-section .display-4 {
                font-size: 2.5rem;
            }

            .activity-card {
                margin-bottom: 2rem;
            }

            .card-header {
                flex-direction: column;
                text-align: center;
            }

            .card-header .activity-icon {
                margin: 0 0 1rem 0 !important;
            }

            .benefits-section {
                padding: 2rem 1rem;
                margin-top: 2rem;
            }

            .benefit-card:hover {
                transform: translateY(-5px);
            }

            .activity-features .feature-item:hover {
                transform: translateX(5px);
            }
        }

        @media (max-width: 576px) {
            .co-curricular-section .display-4 {
                font-size: 2rem;
            }

            .activity-card {
                padding: 1.5rem !important;
            }

            .activity-intro .intro-content {
                padding: 1.5rem !important;
            }

            .feature-item {
                padding: 0.75rem 0;
                font-size: 0.9rem;
            }

            .benefit-card {
                margin-bottom: 1rem;
            }
        }

        /* Gallery Page Styles */
        .gallery-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .gallery-filters {
            margin-bottom: 2rem;
        }

        .filter-btn {
            transition: all 0.3s ease;
            border-radius: 25px;
            padding: 0.5rem 1.5rem;
        }

        .filter-btn:hover,
        .filter-btn.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-2px);
        }

        .gallery-grid {
            position: relative;
        }

        .gallery-item {
            transition: all 0.3s ease;
        }

        .gallery-card {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .gallery-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .gallery-card img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(12, 5, 91, 0.8), rgba(248, 163, 27, 0.8));
            opacity: 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .gallery-card:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-card:hover img {
            transform: scale(1.1);
        }

        .overlay-content {
            text-align: center;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .gallery-card:hover .overlay-content {
            transform: translateY(0);
        }

        .gallery-stats {
            background: rgba(255, 255, 255, 0.9);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .stat-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
            border-color: var(--primary);
        }

        .stat-card i {
            transition: all 0.3s ease;
        }

        .stat-card:hover i {
            transform: scale(1.2) rotateY(360deg);
        }

        /* Contact Page Styles */
        .contact-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
        }

        .contact-info {
            position: relative;
        }

        .contact-item {
            border-left: 4px solid var(--primary);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
        }

        .contact-icon {
            transition: all 0.3s ease;
        }

        .contact-item:hover .contact-icon {
            transform: scale(1.1) rotateY(360deg);
        }

        .detail-row {
            display: flex;
            align-items: center;
            padding: 0.5rem 0;
        }

        .detail-row i {
            width: 20px;
            text-align: center;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: var(--secondary);
            color: white;
            transform: scale(1.1) rotateY(360deg);
        }

        .contact-form-container {
            border: 2px solid transparent;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .contact-form-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transition: left 0.4s ease;
        }

        .contact-form-container:hover::before {
            left: 0;
        }

        .contact-form-container:hover {
            border-color: var(--primary);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15) !important;
        }

        .form-control,
        .form-select {
            border: 2px solid #e9ecef;
            border-radius: 8px;
            padding: 0.75rem;
            transition: all 0.3s ease;
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(12, 5, 91, 0.25);
        }

        .quick-contact-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .quick-contact-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(12, 5, 91, 0.1) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.4s ease;
        }

        .quick-contact-card:hover::before {
            transform: scale(1);
        }

        .quick-contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2) !important;
            border-color: var(--primary);
        }

        .quick-icon {
            transition: all 0.3s ease;
        }

        .quick-contact-card:hover .quick-icon {
            transform: scale(1.2) rotateY(360deg);
        }

        /* Modal Enhancements */
        .modal-content {
            border: none;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .modal-header {
            border-bottom: 2px solid var(--primary);
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        /* Gallery and Contact Responsive Design */
        @media (max-width: 768px) {
            .gallery-section .display-4,
            .contact-section .display-4 {
                font-size: 2.5rem;
            }

            .gallery-card img {
                height: 200px;
            }

            .gallery-filters {
                margin-bottom: 1.5rem;
            }

            .filter-btn {
                font-size: 0.875rem;
                padding: 0.4rem 1rem;
                margin: 0.25rem;
            }

            .contact-form-container {
                margin-top: 2rem;
            }

            .contact-item {
                margin-bottom: 1.5rem;
            }

            .quick-contact-card:hover {
                transform: translateY(-5px);
            }

            .social-links {
                justify-content: center;
            }

            .gallery-stats {
                padding: 1.5rem;
            }
        }

        @media (max-width: 576px) {
            .gallery-section .display-4,
            .contact-section .display-4 {
                font-size: 2rem;
            }

            .gallery-card img {
                height: 180px;
            }

            .contact-form-container {
                padding: 1.5rem !important;
            }

            .contact-item {
                padding: 1rem !important;
            }

            .stat-card {
                margin-bottom: 1rem;
            }

            .social-link {
                width: 45px;
                height: 45px;
            }

            .quick-contact {
                margin-top: 3rem;
            }
        }

/* Admissions Page Styling */
.admissions-section {
    background: linear-gradient(135deg, #f8f9ff 0%, #e8efff 100%);
    min-height: 100vh;
    padding: 80px 0;
}

.header-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #6f42c1);
    border-radius: 2px;
    margin: 20px auto;
}

.contact-info-section {
    margin-bottom: 60px;
}

.contact-card {
    background: white;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,123,255,0.1);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #6f42c1);
    transition: all 0.4s ease;
}

.contact-card:hover::before {
    left: 0;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,123,255,0.15);
    border-color: rgba(0,123,255,0.2);
}

.contact-icon {
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon i {
    transform: scale(1.1);
    animation: pulse 1.5s infinite;
}

.contact-details p {
    transition: all 0.3s ease;
}

.contact-card:hover .contact-details p {
    color: #007bff !important;
}

.admission-process-section {
    margin-bottom: 60px;
}

.process-card {
    background: white;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007bff, #28a745);
    transition: all 0.4s ease;
}

.process-card:hover::before {
    left: 0;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.process-icon {
    transition: all 0.3s ease;
}

.process-card:hover .process-icon i {
    transform: scale(1.1) rotate(5deg);
}

.admission-steps {
    position: relative;
}

.step-item {
    position: relative;
    transition: all 0.3s ease;
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
}

.step-item:hover {
    background: rgba(0,123,255,0.02);
    transform: translateX(5px);
}

.step-number {
    position: relative;
    z-index: 2;
}

.step-number .badge {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.step-item:hover .step-number .badge {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,123,255,0.3);
}

.step-content h5 {
    color: #2c3e50;
    transition: all 0.3s ease;
}

.step-item:hover .step-content h5 {
    color: #007bff;
}

.image-container {
    position: relative;
}

.image-container img {
    transition: all 0.4s ease;
    border-radius: 15px;
}

.image-container:hover img {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.image-caption {
    transition: all 0.3s ease;
}

.image-container:hover .image-caption h5 {
    transform: translateY(-5px);
}

.requirements-section {
    padding: 60px 0;
    background: white;
    border-radius: 30px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.requirements-card {
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid rgba(0,123,255,0.1);
    position: relative;
    overflow: hidden;
}

.requirements-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    transition: all 0.4s ease;
}

.requirements-card:hover::before {
    left: 0;
}

.requirements-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,123,255,0.1);
    background: white;
}

.requirements-icon {
    transition: all 0.3s ease;
}

.requirements-card:hover .requirements-icon i {
    transform: scale(1.1);
    animation: bounce 1s infinite;
}

.requirements-card ul li {
    transition: all 0.3s ease;
    padding: 8px 0;
    border-radius: 8px;
    margin: 5px 0;
}

.requirements-card:hover ul li {
    background: rgba(40,167,69,0.05);
    padding: 8px 12px;
    transform: translateX(5px);
}

.requirements-card ul li i {
    transition: all 0.3s ease;
}

.requirements-card:hover ul li i {
    transform: scale(1.2);
}

/* Additional animations */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0,123,255,0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0,123,255,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0,123,255,0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Responsive adjustments for admissions */
@media (max-width: 768px) {
    .admission-process-section .row {
        flex-direction: column-reverse;
    }
    
    .step-item {
        padding: 10px;
    }
    
    .step-number .badge {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .process-card {
        margin-bottom: 30px;
    }
    
    .contact-card {
        margin-bottom: 20px;
    }
}

/* News Details Page Styles */
.news-details {
    background-color: #f8f9fa;
}

.article-detail {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.article-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
}

.article-meta {
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

.article-meta .badge {
    font-size: 0.85rem;
    padding: 8px 12px;
}

.article-summary {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    border-left: 4px solid var(--primary);
    padding-left: 20px;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.article-content h2,
.article-content h3,
.article-content h4 {
    color: var(--primary);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.article-content p {
    margin-bottom: 1.5rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.article-content ul,
.article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-tags .badge {
    font-size: 0.8rem;
    padding: 6px 10px;
    margin-right: 8px;
    margin-bottom: 8px;
}

.article-share h6 {
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 15px;
}

.share-buttons .btn {
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb-item a:hover {
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Responsive Design for News Details */
@media (max-width: 768px) {
    .article-detail {
        padding: 25px 20px;
        margin: 15px;
        border-radius: 10px;
    }
    
    .article-title {
        font-size: 2rem;
    }
    
    .article-image img {
        height: 250px;
    }
    
    .article-summary {
        font-size: 1.1rem;
        padding-left: 15px;
    }
    
    .article-content {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .share-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .share-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
}

@media (max-width: 576px) {
    .article-detail {
        padding: 20px 15px;
        margin: 10px;
    }
    
    .article-title {
        font-size: 1.8rem;
    }
    
    .share-buttons .btn {
        font-size: 0.9rem;
        padding: 8px 12px;
    }
}

/* News Page Styles */
.news-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.news-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dee2e6" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.news-hero .container {
    position: relative;
    z-index: 1;
}

.category-filters .filter-btn {
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-filters .filter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.category-filters .filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(12, 5, 91, 0.3);
}

.search-container .input-group {
    max-width: 400px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    overflow: hidden;
}

.search-container .form-control {
    border: none;
    padding: 12px 20px;
    border-radius: 25px 0 0 25px;
}

.search-container .btn {
    border-radius: 0 25px 25px 0;
    padding: 12px 20px;
}

.all-news {
    background-color: #fff;
}

.results-summary {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--primary);
}

.results-summary h3 {
    color: var(--primary);
    margin-bottom: 5px;
}

.sort-options select {
    max-width: 200px;
    border-radius: 8px;
}

.news-card {
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    overflow: hidden;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.news-card .card-img-top {
    transition: transform 0.3s ease;
}

.news-card:hover .card-img-top {
    transform: scale(1.05);
}

.news-card .badge {
    font-size: 0.8rem;
    padding: 6px 10px;
    border-radius: 15px;
}

.news-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    line-height: 1.3;
    margin-bottom: 10px;
}

.news-card .card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

.news-card .btn {
    border-radius: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.news-card .btn:hover {
    transform: translateX(5px);
}

#loadMoreBtn {
    border-radius: 25px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(12, 5, 91, 0.2);
}

#loadMoreBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 5, 91, 0.3);
}

#loadMoreBtn:disabled {
    transform: none;
    opacity: 0.6;
}

.spinner-border {
    width: 3rem;
    height: 3rem;
}

#noResultsState i {
    color: #dee2e6;
}

#endOfResults {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    margin-top: 20px;
}

/* Loading animation for news cards */
@keyframes newsCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.news-card {
    animation: newsCardFadeIn 0.5s ease forwards;
}

/* Stagger animation for multiple cards */
.news-card:nth-child(1) { animation-delay: 0.1s; }
.news-card:nth-child(2) { animation-delay: 0.2s; }
.news-card:nth-child(3) { animation-delay: 0.3s; }
.news-card:nth-child(4) { animation-delay: 0.4s; }
.news-card:nth-child(5) { animation-delay: 0.5s; }
.news-card:nth-child(6) { animation-delay: 0.6s; }

/* Responsive Design */
@media (max-width: 768px) {
    .news-hero h1 {
        font-size: 2rem;
    }
    
    .category-filters {
        text-align: center;
    }
    
    .category-filters .filter-btn {
        font-size: 0.9rem;
        padding: 8px 15px;
    }
    
    .search-container .input-group {
        max-width: 100%;
    }
    
    .results-summary {
        padding: 15px;
    }
    
    .results-summary .d-flex {
        flex-direction: column;
        gap: 15px;
    }
    
    .sort-options select {
        max-width: 100%;
    }
    
    .news-card .card-title {
        font-size: 1rem;
    }
    
    .news-card .card-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .news-hero {
        padding: 40px 0;
    }
    
    .news-hero h1 {
        font-size: 1.8rem;
    }
    
    .news-hero .lead {
        font-size: 1rem;
    }
    
    .category-filters .filter-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin-bottom: 8px;
    }
    
    .results-summary {
        padding: 12px;
    }
    
    #loadMoreBtn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}

/* Video Management Styles */
.video-card {
    transition: all 0.3s ease;
    border: 1px solid #dee2e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.video-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.video-card .card-header {
    background-color: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
}

.video-card .card-header h6 {
    color: var(--primary);
    font-weight: 600;
}

.video-preview {
    position: relative;
    max-height: 200px;
    overflow: hidden;
    border-radius: 6px;
}

.video-preview iframe {
    width: 100%;
    height: 180px;
    border: none;
    border-radius: 6px;
}

.video-preview .ratio {
    --bs-aspect-ratio: 56.25%;
}

#videosView .empty-state {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border: 2px dashed #dee2e6;
}

#videosView .empty-state i {
    color: #6c757d;
}

.video-modal .video-preview-container {
    max-height: 300px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
}

/* Gallery Video Styles */
.gallery-card.video-card {
    position: relative;
}

.video-thumbnail-container {
    position: relative;
    overflow: hidden;
}

.video-thumbnail-container img {
    transition: transform 0.3s ease;
}

.gallery-card.video-card:hover .video-thumbnail-container img {
    transform: scale(1.05);
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.gallery-card.video-card:hover .video-play-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-overlay i {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Video Modal Styles */
#videoModal .modal-dialog {
    max-width: 90vw;
}

#videoModal .ratio iframe {
    border-radius: 8px;
}
    
    