/* Base Styles */
        :root {
            --primary: #0a4a8a;
            --secondary: #e67e22;
            --accent: #e74c3c;
            --light: #f9f9f9;
            --dark: #333;
            --gray: #777;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: var(--dark);
            overflow-x: hidden;
        }
        
        @font-face {
            font-family: 'Poppins';
            src: url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        }
        
        h1, h2, h3, h4 {
            font-weight: 600;
            line-height: 1.2;
        }
        
        a {
            text-decoration: none;
            color: inherit;
        }
        
        ul {
            list-style: none;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: 4px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .btn:hover {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
            transform: translateY(-3px);
        }
        
        .btn-secondary {
            background: var(--secondary);
            border-color: var(--secondary);
        }
        
        .btn-secondary:hover {
            color: var(--secondary);
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 15px;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 3px;
            background: var(--secondary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 0 auto;
        }
        
        /* Header Styles */
        .top-bar {
            background: var(--primary);
            color: white;
            padding: 10px 0;
            font-size: 14px;
        }
        
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .top-contact span {
            margin-right: 20px;
        }
        
        .top-contact i {
            color: var(--secondary);
            margin-right: 5px;
        }
        
        .social-icons a {
            color: white;
            margin-left: 15px;
            font-size: 16px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--secondary);
            transform: translateY(-3px);
        }
        
        .main-header {
            padding: 0;
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
            padding: 0 20px;
        }
        
        .logo {
            display: flex;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo img {
            height: 80px;
            margin-right: 15px;
            animation: pulse 2s infinite;
        }
        
        .logo-text h1 {
            color: var(--primary);
            font-size: 28px;
            margin-bottom: 5px;
        }
        
        .logo-text p {
            color: var(--gray);
            font-size: 14px;
        }
        
        .main-header nav {
            display: flex;
            align-items: center;
            gap: 18px;
        }
        
        .nav-menu {
            display: flex;
            align-items: center;
            gap: 0 !important;
            margin: 0;
            padding: 0;
            list-style: none;
        }
        
        .nav-menu > li {
            position: relative;
        }
        
        .nav-menu > li > a {
            color: var(--dark);
            padding: 25px 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
            font-size: 15px;
            letter-spacing: 0.5px;
        }
        
        .nav-menu > li > a:hover {
            color: var(--primary);
            background: rgba(10, 74, 138, 0.05);
        }
        
        .nav-menu > li > a::after {
            content: '';
            height: 3px;
            bottom: 0;
            left: 0;
            width: 0;
            background: var(--primary);
            position: absolute;
            transition: width 0.3s ease;
        }
        
        .nav-menu > li:hover > a::after {
            width: 100%;
        }
        
        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            width: 240px;
            border-radius: 0 0 8px 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            border-top: none;
            padding: 10px 0;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            transition: all 0.3s ease;
            z-index: 999;
        }
        
        .nav-menu > li:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-menu li a {
            color: var(--dark);
            padding: 12px 25px;
            font-size: 14px;
            color: #555;
            transition: all 0.2s ease;
            border-bottom: 1px solid rgba(0, 0, 0, 0.03);
        }
        
        .dropdown-menu li a:hover {
            background: #f8f9fa;
            color: var(--primary);
            padding-left: 30px;
            border-left: 3px solid var(--primary);
        }
        
        .dropdown-menu li:last-child a {
            border-bottom: none;
        }
        
        .nav-menu > li > a .dropdown-icon {
            margin-left: 5px;
            font-size: 12px;
            transition: transform 0.3s;
        }
        
        .nav-menu > li:hover > a .dropdown-icon {
            transform: rotate(180deg);
        }
        
        .nav-enquiry-btn {
            margin-left: 20px;
            padding: 10px 25px !important;
            font-weight: 600;
            border-radius: 4px;
            transition: all 0.3s ease;
            border: 2px solid var(--primary) !important;
            background: var(--primary) !important;
            color: white !important;
        }
        
        .nav-enquiry-btn:hover {
            background: transparent !important;
            color: var(--primary) !important;
        }
        
        .mobile-menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: var(--primary);
        }
        
        /* Hero Slider */
        .hero-slider {
            position: relative;
            width: 100%;
            min-height: 60vh;
            overflow: hidden;
            margin-bottom: 0 !important;
            padding-bottom: 0 !important;
            border-bottom: none !important;
        }
        
        .hero-slide {
            position: relative;
            min-height: 60vh;
            background-size: cover;
            background-position: center;
            display: flex !important;
            align-items: center;
            justify-content: center;
        }
        
        .hero-slide::before {
            content: "";
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
            color: #fff;
            text-align: center;
            max-width: 700px;
            margin: 0 auto;
            padding: 40px 20px;
        }
        
        .hero-content h1 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.4);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }
        
        .hero-btns {
            display: flex;
            gap: 15px;
            justify-content: center;
        }
        
        .hero-btns .btn {
            padding: 12px 32px;
            font-size: 1rem;
            border-radius: 25px;
            border: none;
            background: #0072bb;
            color: #fff;
            transition: background 0.3s;
            text-decoration: none;
            font-weight: 600;
        }
        
        .hero-btns .btn-secondary {
            background: #fff;
            color: #0072bb;
            border: 2px solid #0072bb;
        }
        
        .hero-btns .btn:hover,
        .hero-btns .btn-secondary:hover {
            background: #005fa3;
            color: #fff;
        }
        
        .slick-dots {
            bottom: 25px;
        }
        
        .slick-dots li button:before {
            font-size: 14px;
            color: #fff;
            opacity: 0.8;
        }
        
        .slick-dots li.slick-active button:before {
            color: #0072bb;
            opacity: 1;
        }
        
        /* About Section */
        .about {
            background: white;
            position: relative;
        }
        
        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
        }
        
        .about-flex {
            display: flex;
            align-items: stretch;
            gap: 48px;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }
        
        .about-img {
            flex: 1 1 420px;
            min-width: 320px;
            max-width: 500px;
            position: relative;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0,0,0,0.10);
        }
        
        .about-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 340px;
            display: block;
            border-radius: 18px;
        }
        
        .about-img-overlay {
            position: absolute;
            left: 0; right: 0; bottom: 0;
            background: linear-gradient(0deg, #0a3570e0 60%, transparent 100%);
            color: #fff;
            padding: 24px 0 18px 0;
            text-align: center;
            border-radius: 0 0 18px 18px;
        }
        
        .about-img-text {
            font-size: 1.2rem;
            font-weight: 600;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
        }
        
        .about-img-text i {
            font-size: 2.2rem;
            margin-bottom: 4px;
            color: #ffe600;
        }
        
        .about-content {
            flex: 2 1 480px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 18px 0;
        }
        
        .about-content h2 {
            font-size: 2.3rem;
            font-weight: 700;
            color: #0a3570;
            margin-bottom: 12px;
        }
        
        .about-highlight {
            color: #c8005a;
        }
        
        .about-lead {
            font-size: 1.18rem;
            color: #444;
            margin-bottom: 18px;
            font-weight: 500;
        }
        
        .about-list {
            list-style: none;
            padding: 0;
            margin: 0 0 22px 0;
        }
        
        .about-list li {
            font-size: 1.08rem;
            color: #222;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .about-list i {
            color: #1fa12e;
            font-size: 1.1rem;
        }
        
        .about-features {
            display: flex;
            gap: 18px;
            margin: 22px 0 18px 0;
            flex-wrap: wrap;
        }
        
        .feature-item {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(0,0,0,0.06);
            padding: 18px 16px;
            flex: 1 1 180px;
            min-width: 160px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }
        
        .feature-icon {
            font-size: 2rem;
            color: #0a3570;
            margin-right: 6px;
            flex-shrink: 0;
        }
        
        .feature-text h4 {
            font-size: 1.08rem;
            font-weight: 700;
            margin-bottom: 2px;
            color: #c8005a;
        }
        
        .feature-text p {
            font-size: 0.98rem;
            color: #444;
            margin: 0;
        }
        
        .about-btn {
            margin-top: 18px;
            background: #c8005a;
            color: #fff;
            padding: 12px 32px;
            border-radius: 24px;
            font-size: 1.08rem;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 2px 12px rgba(200,0,90,0.08);
            transition: background 0.2s;
            display: inline-block;
        }
        
        .about-btn:hover {
            background: #0a3570;
            color: #ffe600;
        }
        
        @media (max-width: 900px) {
            .about-flex {
                flex-direction: column;
                gap: 28px;
                padding: 0 10px;
            }
            .about-img {
                max-width: 100%;
                min-width: 0;
            }
            .about-content {
                padding: 0;
            }
            .about-features {
                flex-direction: column;
                gap: 12px;
            }
        }
        
        /* Courses Section */
        .courses {
            background: var(--light);
        }
        
        .courses-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .course-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        
        .course-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .course-img {
            height: 200px;
            overflow: hidden;
        }
        
        .course-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .course-card:hover .course-img img {
            transform: scale(1.1);
        }
        
        .course-content {
            padding: 25px;
        }
        
        .course-content h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .course-content p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .course-meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray);
            font-size: 14px;
            margin-bottom: 20px;
        }
        
        /* Counter Section */
        .counter {
            position: relative;
            color: white;
            text-align: center;
            padding: 100px 0;
            overflow: hidden;
        }
        .counter video.counter-bg-video {
            position: absolute;
            top: 0; left: 0;
            width: 100%; height: 100%;
            object-fit: cover;
            z-index: 0;
            opacity: 0.6;
            pointer-events: none;
        }
        .counter::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(rgba(10, 74, 138, 0.85), rgba(10, 74, 138, 0.85));
            z-index: 1;
        }
        .counter-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        .counter-item {
            padding: 30px;
            position: relative;
        }
        .counter-item::after {
            content: '';
            position: absolute;
            width: 1px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            right: 0;
            top: 50%;
            transform: translateY(-50%);
        }
        .counter-item:last-child::after {
            display: none;
        }
        .counter-item i {
            font-size: 40px;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        .counter-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
        }
        .counter-text {
            font-size: 18px;
            opacity: 0.9;
        }
        /* Gallery Section with Zoom Effect */
        .gallery {
            background: var(--light);
        }
        
        .gallery-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            height: 250px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.1);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 74, 138, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        .gallery-overlay i {
            color: white;
            font-size: 40px;
        }
        
        /* News Section */
        .news {
            background: white;
        }
        
        .news-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .news-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        
        .news-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .news-img {
            height: 200px;
            overflow: hidden;
        }
        
        .news-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .news-card:hover .news-img img {
            transform: scale(1.1);
        }
        
        .news-content {
            padding: 25px;
        }
        
        .news-date {
            color: var(--secondary);
            font-size: 14px;
            margin-bottom: 10px;
            display: block;
        }
        
        .news-content h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .news-content p {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        /* Contact CTA */
        .contact-cta {
            background: linear-gradient(rgba(10, 74, 138, 0.9), rgba(10, 74, 138, 0.9)), url('https://images.unsplash.com/photo-1581056771107-24ca5f033842?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            text-align: center;
            color: white;
            padding: 100px 0;
        }
        
        .contact-cta h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .contact-cta p {
            max-width: 700px;
            margin: 0 auto 30px;
            font-size: 18px;
        }
        
        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding-top: 80px;
        }
        
        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-col h3 {
            font-size: 22px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3::after {
            content: '';
            position: absolute;
            width: 50px;
            height: 2px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
        }
        
        .footer-about p {
            margin-bottom: 20px;
            color: #bbb;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links a {
            color: #bbb;
            transition: all 0.3s;
            display: block;
        }
        
        .footer-links a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }
        
        .footer-contact li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
            color: #bbb;
        }
        
        .footer-contact i {
            margin-right: 10px;
            color: var(--secondary);
        }
        
        .footer-newsletter p {
            color: #bbb;
            margin-bottom: 20px;
        }
        
        .newsletter-form {
            display: flex;
        }
        
        .newsletter-form input {
            width: 100%;
            padding: 12px;
            border: none;
            border-radius: 4px 0 0 4px;
        }
        
        .newsletter-form button {
            background: var(--secondary);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .newsletter-form button:hover {
            background: #d35400;
        }
        
        .footer-bottom {
            text-align: center;
            padding: 20px 0;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #bbb;
            font-size: 14px;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }
        
        /* Study Options Section */
        .study-options {
            margin: 0;
            padding: 0;
            font-family: inherit;
        }
        .study-options-row {
            display: flex;
            flex-wrap: wrap;
            min-height: 500px;
        }
        .study-options-img {
            flex: 1 1 50%;
            min-width: 300px;
            background: #eee;
            display: flex;
            align-items: stretch;
        }
        .study-options-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 500px;
        }
        .study-options-content {
            flex: 1 1 50%;
            background: #0a3570;
            color: #fff;
            padding: 40px 30px 30px 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .study-options-content h2 {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 18px;
            letter-spacing: 1px;
        }
        .study-options-content p {
            font-size: 1.3rem;
            margin-bottom: 28px;
        }
        .study-options-icons {
            display: flex;
            gap: 40px;
            margin-top: 20px;
        }
        .study-options-icons .option {
            text-align: center;
            flex: 1;
        }
        .study-options-icons .option i {
            font-size: 3.5rem;
            margin-bottom: 16px;
            color: #fff;
        }
        .study-options-icons .option h4 {
            font-size: 1.35rem;
            font-weight: 500;
            margin: 0;
            line-height: 1.3;
        }
        .study-options-actions {
            display: flex;
            flex-wrap: wrap;
            background: #c8005a;
            min-height: 120px; /* Increase this value as needed */
            align-items: stretch; /* Ensures all .action items fill the height */
        }
        .study-options-actions .action {
            flex: 1 1 25%;
            min-width: 220px;
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 55px 50px; /* Increase top/bottom padding for more height */
            color: #fff;
            font-size: 1.1rem;
            cursor: pointer;
            transition: background 0.2s;
        }
        .study-options-actions .action.apply,
        .study-options-actions .action.fees {
            background: #c8005a;
        }
        .study-options-actions .action.download,
        .study-options-actions .action.call {
            background: #1fa12e;
        }
        .study-options-actions .action i {
            font-size: 2rem;
        }
        .study-options-actions .action strong {
            display: block;
            font-size: 1.05rem;
            margin-bottom: 3px;
        }
        .study-options-actions .action span {
            font-size: 0.95rem;
            opacity: 0.9;
        }
        .study-options-actions .action:hover {
            filter: brightness(0.95);
        }
        .whatsapp-float {
            position: fixed;
            right: 30px;
            bottom: 30px;
            background: #25d366;
            color: #fff;
            border-radius: 50%;
            width: 56px;
            height: 56px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            box-shadow: 0 4px 16px rgba(0,0,0,0.18);
            z-index: 999;
            transition: background 0.2s;
            text-decoration: none;
        }
        .whatsapp-float:hover {
            background: #128c7e;
        }
        @media (max-width: 900px) {
            .study-options-row {
                flex-direction: column;
            }
            .study-options-img, .study-options-content {
                min-width: 100%;
                width: 100%;
            }
            .study-options-content {
                padding: 30px 15px;
            }
            .study-options-icons {
                gap: 15px;
            }
            .study-options-actions .action {
                min-width: 160px;
                font-size: 1rem;
                padding: 18px 10px;
            }
        }
        
        @media (max-width: 992px) {
            .about-container {
                flex-direction: column;
            }
            
            .about-img, .about-content {
                width: 100%;
            }
            
            .about-img::after {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: block;
            }
            
            .nav-menu {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: white;
                flex-direction: column;
                padding: 80px 30px;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                transition: all 0.5s;
                z-index: 999;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .nav-menu li {
                margin-bottom: 15px;
            }
            
            .dropdown-menu {
                position: static;
                width: 100%;
                box-shadow: none;
                opacity: 1;
                visibility: visible;
                display: none;
                margin-top: 10px;
                border-top: none;
                border-radius: 5px;
            }
            
            .nav-menu li:hover .dropdown-menu {
                display: block;
            }
            
            .hero-content h1 {
                font-size: 1.5rem;
            }
            .hero-content p {
                font-size: 1rem;
            }
            .hero-slider, .hero-slide {
                min-height: 40vh;
            }
        }
        
        @media (max-width: 576px) {
            .top-bar .container {
                flex-direction: column;
                gap: 10px;
            }
            
            .hero-slide h1 {
                font-size: 30px;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .gallery-container {
                grid-template-columns: 1fr;
            }
        }
        
        /* News Ticker Styles */
.news-ticker {
    width: 100%;
    background: #0a3570;
    color: #fff;
    display: flex;
    align-items: center;
    font-family: inherit;
    font-size: 1.1rem;
    overflow: hidden;
    height: 48px;
    border-bottom: 2px solid #c8005a;
    z-index: 100;
    position: relative;
    margin-bottom: 0;
}
.news-ticker-label {
    background: #c8005a;
    color: #fff;
    padding: 0 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    height: 100%;
    font-size: 1.1rem;
    letter-spacing: 1px;
}
.news-ticker-label i {
    margin-right: 8px;
    font-size: 1.2rem;
}
.news-ticker-wrap {
    flex: 1;
    overflow: hidden;
    height: 48px;
    display: flex;
    align-items: center;
}
.news-ticker-list {
    display: flex;
    animation: ticker-scroll 28s linear infinite;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.news-ticker-list li {
    white-space: nowrap;
    padding: 0 40px;
    display: inline-block;
    font-size: 1.08rem;
}
.news-ticker-list a {
    color: #ffe600;
    text-decoration: underline;
    font-weight: 500;
}
@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100%); }
}
@media (max-width: 600px) {
    .news-ticker-label {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    .news-ticker-list li {
        padding: 0 18px;
        font-size: 0.98rem;
    }
}

/* Remove padding from the section below the slider if needed */
.hero-slider + .news-ticker {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
}

.slick-slider {
    margin-bottom: 0 !important;
}

/* Remove margin from container if present */
.hero-slider .container,
.news-ticker .container {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
.testimonials {
    background: #f9f9f9;
}

.testimonials-slider {
    margin-top: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-align: center;
    margin: 0 15px;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-card h4 {
    font-size: 18px;
    color: var(--primary);
    font-weight: 600;
}

.testimonial-card h4 span {
    display: block;
    font-size: 14px;
    color: #999;
    font-weight: normal;
}

/* Add or update this for the About section background */
.about.section-padding {
    position: relative;
    background: linear-gradient(120deg, #eaf6ff 0%, #fdf6fa 100%);
    overflow: hidden;
    z-index: 1;
}
.about.section-padding::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #c8005a22 0%, transparent 80%);
    z-index: 0;
}
.about.section-padding::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #0a357022 0%, transparent 80%);
    z-index: 0;
}
.about-flex,
.about-content,
.about-img {
    position: relative;
    z-index: 2;
}

/* Show close button only on mobile */
.mobile-close-btn {
    display: none;
}
@media (max-width: 768px) {
    .mobile-close-btn {
        display: block !important;
        width: 100%;
        text-align: right;
        margin-bottom: 10px;
    }
    .mobile-close-btn button {
        background: none;
        border: none;
        font-size: 2rem;
        color: var(--primary);
        cursor: pointer;
        padding: 10px 0 10px 0;
    }
}
/* 404 Page Styles */
.not-found {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9f5ff 100%);
    text-align: center;
    padding: 80px 0;
}

.not-found-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.not-found-image {
    max-width: 500px;
    margin-bottom: 30px;
}

.not-found-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.not-found-text h1 {
    font-size: 120px;
    color: var(--primary);
    margin-bottom: 0;
    line-height: 1;
}

.not-found-text h2 {
    font-size: 36px;
    color: var(--dark);
    margin-bottom: 20px;
}

.not-found-text p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto 30px;
}

.not-found-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.not-found-btns .btn {
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 30px;
}

.not-found-btns .btn i {
    margin-right: 8px;
}

@media (max-width: 768px) {
    .not-found-text h1 {
        font-size: 80px;
    }
    
    .not-found-text h2 {
        font-size: 28px;
    }
    
    .not-found-text p {
        font-size: 16px;
    }
    
    .not-found-btns {
        flex-direction: column;
        gap: 10px;
    }
    
    .not-found-btns .btn {
        width: 100%;
    }
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(10, 74, 138, 0.8), rgba(10, 74, 138, 0.8)), 
                url('/assets/images/slider/slider1.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s;
}

.breadcrumb {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb span {
    color: var(--secondary);
    font-weight: 500;
}

.contact-container {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.contact-form h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 74, 138, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-text p {
    color: var(--gray);
    margin-bottom: 5px;
}

.map-section {
    padding: 0;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    margin-top: 50px;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    background: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--primary);
    transition: all 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    background: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: var(--gray);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-hero {
        padding: 80px 0;
    }
    
    .contact-hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .contact-hero h1 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .contact-info-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-icon {
        margin-bottom: 15px;
    }
}
/* About Hero */
.about-hero {
    background: linear-gradient(rgba(10, 74, 138, 0.8), rgba(10, 74, 138, 0.8)), 
                url('/assets/images/slider/slider3.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.breadcrumb {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb span {
    color: var(--secondary);
    font-weight: 500;
}

/* About Institute */
.about-institute {
    position: relative;
    background: linear-gradient(120deg, #eaf6ff 0%, #fdf6fa 100%);
    overflow: hidden;
    z-index: 1;
}

.about-flex {
    display: flex;
    align-items: stretch;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.about-img {
    flex: 1 1 420px;
    min-width: 320px;
    max-width: 500px;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 340px;
    display: block;
    border-radius: 18px;
}

.about-img-overlay {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    background: linear-gradient(0deg, #0a3570e0 60%, transparent 100%);
    color: #fff;
    padding: 24px 0 18px 0;
    text-align: center;
    border-radius: 0 0 18px 18px;
}

.about-img-text {
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.about-img-text i {
    font-size: 2.2rem;
    margin-bottom: 4px;
    color: #ffe600;
}

.about-content {
    flex: 2 1 480px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
}

.about-content h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #0a3570;
    margin-bottom: 12px;
}

.about-highlight {
    color: #c8005a;
}

.about-lead {
    font-size: 1.18rem;
    color: #444;
    margin-bottom: 18px;
    font-weight: 500;
}

.about-features {
    display: flex;
    gap: 18px;
    margin: 22px 0 18px 0;
    flex-wrap: wrap;
}

.feature-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    padding: 18px 16px;
    flex: 1 1 180px;
    min-width: 160px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    font-size: 2rem;
    color: #0a3570;
    margin-right: 6px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.08rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: #c8005a;
}

.feature-text p {
    font-size: 0.98rem;
    color: #444;
    margin: 0;
}

/* Leadership */
.leadership-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.leader-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.leader-img {
    height: 250px;
    overflow: hidden;
}

.leader-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-content {
    padding: 25px;
}

.leader-content h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.leader-position {
    color: var(--secondary);
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

.leader-content p {
    color: var(--gray);
    font-style: italic;
}

/* Mission Section */
.mission-flex {
    display: flex;
    gap: 50px;
    align-items: center;
}

.mission-content {
    flex: 1;
}

.mission-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-img img {
    width: 100%;
    height: auto;
    display: block;
}

.mission-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mission-text h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.text-left {
    text-align: left;
}

.text-left h2::after {
    left: 0;
    transform: none;
}

/* Student Life */
.life-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.life-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.life-img {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.life-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.life-item:hover .life-img img {
    transform: scale(1.1);
}

.life-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
}

.life-overlay h3 {
    margin: 0;
}

.life-content {
    padding: 20px;
}

/* Training Section */
.training-container {
    display: flex;
    gap: 50px;
    margin-top: 50px;
}

.training-content {
    flex: 1;
}

.training-img {
    flex: 1;
    position: relative;
}

.training-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.training-quote {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.training-quote blockquote {
    font-style: italic;
    color: var(--gray);
    position: relative;
    padding-left: 20px;
}

.training-quote blockquote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: var(--secondary);
    opacity: 0.3;
}

.training-quote cite {
    display: block;
    margin-top: 10px;
    font-style: normal;
    color: var(--primary);
    font-weight: 500;
}

.training-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.training-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.training-text h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

/* Scholarship */
.scholarship-flex {
    display: flex;
    gap: 50px;
    align-items: center;
}

.scholarship-img {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.scholarship-img img {
    width: 100%;
    height: auto;
    display: block;
}

.scholarship-content {
    flex: 1;
}

.scholarship-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.scholarship-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

.scholarship-content p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.btn-light {
    background: white;
    color: var(--primary);
}

.btn-light:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* CTA */
.about-cta {
    background: linear-gradient(rgba(10, 74, 138, 0.9), rgba(10, 74, 138, 0.9)), 
                url('/assets/images/slider/slider1.webp');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    padding: 80px 0;
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Utility Classes */
.bg-light {
    background-color: #f9f9f9;
}

.bg-primary {
    background-color: var(--primary);
}

.text-white {
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .mission-flex,
    .training-container,
    .scholarship-flex {
        flex-direction: column;
    }
    
    .mission-img,
    .training-img,
    .scholarship-img {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
    }
    
    .cta-btns {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-btns .btn {
        width: 100%;
    }
}
/* Gallery Hero Section */
.gallery-hero {
    background: linear-gradient(rgba(10, 74, 138, 0.8), rgba(10, 74, 138, 0.8)), 
                url('/assets/images/slider/slider1.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.gallery-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s;
}

/* Gallery Filter */
.gallery-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    background: rgba(10, 74, 138, 0.1);
}

.filter-btn.active {
    background: var(--primary);
    color: white;
}

/* Main Gallery Section */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 74, 138, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: white;
    font-size: 40px;
    transition: transform 0.3s ease;
}

.gallery-overlay:hover i {
    transform: scale(1.2);
}

/* Video Gallery Section */
.video-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.video-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-item h3 {
    padding: 20px;
    margin: 0;
    font-size: 18px;
    color: var(--primary);
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-hero {
        padding: 80px 0;
    }
    
    .gallery-hero h1 {
        font-size: 2.2rem;
    }
    
    .gallery-container {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
    
    .video-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .gallery-hero {
        padding: 60px 0;
    }
    
    .gallery-hero h1 {
        font-size: 1.8rem;
    }
    
    .filter-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
    
    .gallery-container {
        grid-template-columns: 1fr;
    }
    
    .gallery-item {
        height: 220px;
    }
}
/* Enquiry Hero Section */
.enquiry-hero {
    background: linear-gradient(rgba(10, 74, 138, 0.8), rgba(10, 74, 138, 0.8)), 
                url('/assets/images/slider/slider1.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.enquiry-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s;
}

.breadcrumb {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb span {
    color: var(--secondary);
    font-weight: 500;
}

/* Enquiry Section */
.enquiry-container {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.enquiry-info {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.enquiry-info h2 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.enquiry-info h2::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 3px;
    background: var(--secondary);
    bottom: 0;
    left: 0;
}

.enquiry-info p {
    color: var(--gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-method {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-details p {
    color: var(--gray);
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
}

.enquiry-form {
    flex: 1;
    min-width: 300px;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.05);
}

.enquiry-form h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 30px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(10, 74, 138, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #0c5da0;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}

.faq-question {
    background: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--primary);
    transition: all 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    background: #f9f9f9;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 20px;
    margin: 0;
    color: var(--gray);
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .enquiry-hero {
        padding: 80px 0;
    }
    
    .enquiry-hero h1 {
        font-size: 2.2rem;
    }
    
    .enquiry-container {
        flex-direction: column;
    }
    
    .enquiry-info, .enquiry-form {
        width: 100%;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .enquiry-hero {
        padding: 60px 0;
    }
    
    .enquiry-hero h1 {
        font-size: 1.8rem;
    }
    
    .enquiry-form {
        padding: 25px;
    }
    
    .contact-method {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-icon {
        margin-bottom: 15px;
    }
}
/* Facilities Hero */
.facilities-hero {
    background: linear-gradient(rgba(10, 74, 138, 0.8), rgba(10, 74, 138, 0.8)), 
                url('/assets/images/slider/slider1.webp');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.facilities-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s;
}

.facilities-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s;
}

.breadcrumb {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.breadcrumb span {
    color: var(--secondary);
    font-weight: 500;
}

/* Facilities Overview */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.facility-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.facility-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.facility-card:hover .facility-icon {
    background: var(--secondary);
    transform: rotate(15deg) scale(1.1);
}

.facility-card h3 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* Labs Section */
.lab-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.lab-container.reverse {
    flex-direction: row-reverse;
}

.lab-content {
    flex: 1;
}

.lab-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.lab-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.lab-image img {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
}

.lab-content h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.lab-features {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.lab-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.lab-features i {
    color: var(--secondary);
    margin-top: 3px;
}

/* Library Section */
.library-flex {
    display: flex;
    align-items: center;
    gap: 50px;
}

.library-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.library-image img {
    width: 100%;
    height: auto;
    display: block;
    cursor: zoom-in;
}

.library-content {
    flex: 1;
}

.library-content h2 {
    font-size: 2.3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.library-lead {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.library-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.library-features .feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.library-features .feature-item i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-top: 5px;
}

.library-features .feature-item h4 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.library-features .feature-item p {
    font-size: 0.95rem;
    color: var(--gray);
    margin: 0;
}

/* Hostel Section */
.hostel-container {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.hostel-slider {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
}

.hostel-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hostel-features {
    flex: 1;
    padding: 20px;
}

.hostel-features h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.hostel-features ul {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.hostel-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.hostel-features i {
    color: var(--secondary);
    margin-top: 3px;
}

/* Sports Section */
.sports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.sport-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.sport-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.sport-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.sport-card h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 15px 20px 10px;
}

.sport-card p {
    color: var(--gray);
    margin: 0 20px 20px;
    font-size: 0.95rem;
}

/* Facilities CTA */
.facilities-cta {
    background: linear-gradient(rgba(10, 74, 138, 0.9), rgba(10, 74, 138, 0.9)), 
                url('/assets/images/slider/slider2.webp');
    background-size: cover;
    background-position: center;
    text-align: center;
    color: white;
    padding: 80px 0;
}

.facilities-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.facilities-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

/* Background Utility Classes */
.bg-light {
    background-color: #f9f9f9;
}

.bg-primary {
    background-color: var(--primary);
}

.text-white {
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .lab-container,
    .library-flex,
    .hostel-container {
        flex-direction: column;
    }
    
    .lab-container.reverse {
        flex-direction: column;
    }
    
    .lab-image,
    .library-image {
        margin-bottom: 30px;
    }
    
    .hostel-slider {
        order: -1;
    }
}

@media (max-width: 768px) {
    .facilities-hero {
        padding: 80px 0;
    }
    
    .facilities-hero h1 {
        font-size: 2.2rem;
    }
    
    .facilities-hero p {
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .facilities-hero {
        padding: 60px 0;
    }
    
    .facilities-hero h1 {
        font-size: 1.8rem;
    }
    
    .lab-content h3,
    .library-content h2,
    .hostel-features h3 {
        font-size: 1.5rem;
    }
}
  /* Notice Hero Section */
        .notice-hero {
            background: linear-gradient(rgba(10, 74, 138, 0.8), rgba(10, 74, 138, 0.8)), 
                        url('/assets/images/slider/slider2.webp');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
            position: relative;
        }
        
        .notice-hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            animation: fadeInDown 1s;
        }
        
        .notice-hero p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: fadeInUp 1s;
        }
        
        /* Notice Section */
        .notice-container {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .notice-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            display: flex;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        
        .notice-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }
        
        .notice-date {
            background: var(--primary);
            color: white;
            padding: 20px;
            min-width: 80px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .notice-date .day {
            font-size: 2rem;
            font-weight: 700;
            line-height: 1;
        }
        
        .notice-date .month {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 5px 0;
        }
        
        .notice-date .year {
            font-size: 1rem;
        }
        
        .notice-content {
            padding: 20px;
            flex: 1;
        }
        
        .notice-content h3 {
            color: var(--primary);
            margin-bottom: 10px;
            font-size: 1.3rem;
        }
        
        .notice-content p {
            color: var(--gray);
            margin-bottom: 15px;
        }
        
        .notice-meta {
            display: flex;
            justify-content: space-between;
            color: var(--gray);
            font-size: 0.9rem;
        }
        
        .notice-meta a {
            color: var(--secondary);
            transition: all 0.3s;
        }
        
        .notice-meta a:hover {
            color: var(--primary);
            text-decoration: underline;
        }
        
        /* Important Notice Section */
        .important-notice-card {
            background: white;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
            border-left: 4px solid var(--accent);
        }
        
        .urgent-badge {
            position: absolute;
            top: 15px;
            right: 0;
            background: var(--accent);
            color: white;
            padding: 5px 15px;
            font-weight: 600;
            border-radius: 20px 0 0 20px;
        }
        
        .important-notice-content {
            padding: 30px;
        }
        
        .important-notice-content h3 {
            color: var(--accent);
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 40px;
            gap: 5px;
        }
        
        .pagination a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            background: white;
            color: var(--primary);
            border-radius: 4px;
            transition: all 0.3s;
            border: 1px solid #ddd;
        }
        
        .pagination a:hover, 
        .pagination a.active {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .notice-hero h1 {
                font-size: 2.2rem;
            }
            
            .notice-hero p {
                font-size: 1rem;
            }
            
            .notice-card {
                flex-direction: column;
            }
            
            .notice-date {
                flex-direction: row;
                justify-content: center;
                gap: 15px;
                align-items: center;
                padding: 10px;
            }
            
            .notice-date .day,
            .notice-date .month,
            .notice-date .year {
                display: inline-block;
            }
            
            .notice-date .day {
                font-size: 1.5rem;
            }
            
            .important-notice-content {
                padding: 20px 15px;
            }
            
            .important-notice-content h3 {
                font-size: 1.3rem;
                padding-top: 15px;
            }
        }

        .nav-menu a.active {
   color: var(--primary);
            background: rgba(10, 74, 138, 0.05);
            border-bottom: 2px solid var(--primary);
    /* Add your highlight styles */
}