.navbar-nav .nav-item:hover {
  background-color: #ffeb3b !important; /* bright yellow */
  border-radius: 5px; /* optional for smooth corners */
}

.navbar-nav .nav-item:hover .nav-link {
  color: #000 !important; /* black text */
}
.timeline::before {
    top: 255px!important;
}



:root {
            --primary: #1a4b8c;
            --primary-dark: #0d2b5a;
            --secondary: #e8b735;
            --secondary-light: #f8d97e;
            --accent: #d32f2f;
            --light: #f8f9fa;
            --dark: #212529;
			--magic-purple1: #9c27b0;
            --deep-blue1: #1a237e;
            --success: #28a745;
            --transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
        }        a{		text-decoration:none;		}

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        @font-face {
            font-family: 'Poppins';
            src: url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        }

        body {
            line-height: 1.7;
            color: #333;
            overflow-x: hidden;
            background-color: #f5f7fa;
        }

        .container {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--primary);
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .preloader.fade-out {
            opacity: 0;
        }

        .loader {
            width: 80px;
            height: 80px;
            border: 5px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            border-top-color: var(--secondary);
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            100% {
                transform: rotate(360deg);
            }
        }

        /* Header Styles */
        header {
             background: linear-gradient(135deg, var(--deep-blue), var(--magic-purple));
            color: white;
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            backdrop-filter: blur(10px);
        }

        header.scrolled {
            padding: 10px 0;
             background: linear-gradient(135deg, var(--deep-blue1), var(--magic-purple1));
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
        }

        .logo img {
            height: 70px;
            margin-right: 15px;
            transition: var(--transition);
        }

        header.scrolled .logo img {
            height: 50px;
        }

        .logo-text h1 {
            font-size: 1.8rem;
            margin-bottom: 5px;
            color: white;
            font-weight: 700;
            background: linear-gradient(to right, var(--secondary), #fff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: var(--transition);
        }

        header.scrolled .logo-text h1 {
            font-size: 1.5rem;
        }

        .logo-text p {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 300;
        }

        

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.8rem;
            cursor: pointer;
            transition: var(--transition);
        }

        .mobile-menu-btn:hover {
            color: var(--secondary);
        }
.nav-link {
    color: #ffffff!important;
	padding: 15px !important;
}
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1588072432836-e10032774350?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1472&q=80') no-repeat center center/cover;
            height: 100vh;
            min-height: 800px;
            display: flex;
            align-items: center;
            text-align: center;
            color: white;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            background: linear-gradient(to top, #f5f7fa, transparent);
            z-index: 1;
        }

        .hero-content {
            max-width: 900px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
            font-weight: 700;
            line-height: 1.2;
            animation: fadeInUp 1s ease forwards;
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 40px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
            font-weight: 300;
            animation: fadeInUp 1s ease 0.2s forwards;
            opacity: 0;
        }

        .btn-group {
            animation: fadeInUp 1s ease 0.4s forwards;
            opacity: 0;
        }

        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: var(--dark);
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            border: 2px solid var(--secondary);
            font-size: 1.1rem;
            margin: 0 10px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .btn:hover {
            background-color: transparent;
            color: var(--secondary);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .btn-outline {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline:hover {
            background-color: white;
            color: var(--dark);
        }

        .btn i {
            margin-left: 8px;
        }

        .jubilee-badge {
            position: absolute;
            top: 150px;
            right: 50px;
            background: linear-gradient(135deg, var(--secondary), #f8d97e);
            color: var(--primary-dark);
            padding: 15px 25px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            z-index: 3;
            animation: pulse 2s infinite;
            display: flex;
            align-items: center;
        }

        .jubilee-badge i {
            margin-right: 10px;
            font-size: 1.5rem;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
            100% {
                transform: scale(1);
            }
        }

        .scroll-down {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 2rem;
            animation: bounce 2s infinite;
            cursor: pointer;
            z-index: 2;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0) translateX(-50%);
            }
            40% {
                transform: translateY(-20px) translateX(-50%);
            }
            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .floating-element {
            position: absolute;
            background-size: contain;
            background-repeat: no-repeat;
            opacity: 0.1;
            animation: float 15s infinite linear;
        }

        .floating-element:nth-child(1) {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e8b735"><path d="M12 2L4 12l8 10 8-10z"/></svg>');
            width: 100px;
            height: 100px;
            top: 20%;
            left: 10%;
            animation-delay: 0s;
        }

        .floating-element:nth-child(2) {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e8b735"><circle cx="12" cy="12" r="10"/></svg>');
            width: 80px;
            height: 80px;
            top: 60%;
            left: 80%;
            animation-delay: 2s;
        }

        .floating-element:nth-child(3) {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e8b735"><path d="M12 2L2 7l10 5 10-5zM2 17l10 5 10-5M2 12l10 5 10-5"/></svg>');
            width: 120px;
            height: 120px;
            top: 30%;
            left: 70%;
            animation-delay: 4s;
        }

        .floating-element:nth-child(4) {
            background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23e8b735"><path d="M12 2L4 7l8 5 8-5zM4 12l8 5 8-5M4 17l8 5 8-5"/></svg>');
            width: 90px;
            height: 90px;
            top: 70%;
            left: 20%;
            animation-delay: 6s;
        }

        @keyframes float {
            0% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-50px) rotate(180deg);
            }
            100% {
                transform: translateY(0) rotate(360deg);
            }
        }

        /* Highlights Section */
        .highlights {
            padding: 100px 0;
            background-color: var(--light);
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-title h2 {
            font-size: 3rem;
            color: var(--primary);
            position: relative;
            display: inline-block;
            padding-bottom: 15px;
            font-weight: 700;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--secondary));
            border-radius: 2px;
        }

        .section-title p {
            max-width: 700px;
            margin: 20px auto 0;
            font-size: 1.2rem;
            color: #666;
        }

        .highlight-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .highlight-card {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            text-align: center;
            padding: 40px 30px;
            position: relative;
            z-index: 1;
            border-top: 5px solid var(--secondary);
        }

        .highlight-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), transparent);
            opacity: 0;
            transition: var(--transition);
            z-index: -1;
        }

        .highlight-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }

        .highlight-card:hover::before {
            opacity: 0.1;
        }

        .highlight-icon {
            font-size: 4rem;
            color: var(--primary);
            margin-bottom: 25px;
            transition: var(--transition);
        }

        .highlight-card:hover .highlight-icon {
            color: var(--secondary);
            transform: scale(1.1);
        }

        .highlight-card h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--primary);
            font-weight: 600;
            transition: var(--transition);
        }

        .highlight-card:hover h3 {
            color: var(--secondary);
        }

        .highlight-card p {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 25px;
        }

        .highlight-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .highlight-link i {
            margin-left: 8px;
            transition: var(--transition);
        }

        .highlight-card:hover .highlight-link {
            color: var(--secondary);
        }

        .highlight-card:hover .highlight-link i {
            transform: translateX(5px);
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: linear-gradient(to bottom, var(--light), white);
            position: relative;
            overflow: hidden;
        }

        .about::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%231a4b8c" opacity="0.03"><path d="M30,10 Q50,5 70,10 T90,30 Q95,50 90,70 T70,90 Q50,95 30,90 T10,70 Q5,50 10,30 T30,10"/></svg>');
            background-size: 200px;
            z-index: 0;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            transform: perspective(1000px) rotateY(-10deg);
            transition: var(--transition);
        }

        .about-image:hover {
            transform: perspective(1000px) rotateY(0deg);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(26, 75, 140, 0.3), transparent);
            z-index: 1;
        }

        .about-text {
            position: relative;
        }

        .about-text h2 {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 25px;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .about-text h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .about-text p {
            font-size: 1.1rem;
            margin-bottom: 25px;
            color: #555;
            line-height: 1.8;
        }

        .about-features {
            margin-top: 40px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            background-color: rgba(232, 183, 53, 0.1);
            padding: 15px;
            border-radius: 10px;
            transition: var(--transition);
        }

        .feature-item:hover {
            background-color: rgba(232, 183, 53, 0.2);
            transform: translateX(10px);
        }

        .feature-icon {
            color: var(--secondary);
            font-size: 1.5rem;
            margin-right: 20px;
            margin-top: 5px;
        }

        .feature-text h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            color: var(--primary);
        }

        .feature-text p {
            margin-bottom: 0;
            font-size: 1rem;
        }

        /* Timeline Section */
        .timeline {
            padding: 100px 0;
            background-color: var(--primary-dark);
            position: relative;
            color: white;
        }

        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background-color: var(--secondary);
        }

        .timeline-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .timeline-title {
            text-align: center;
            margin-bottom: 70px;
        }

        .timeline-title h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 700;
            color: white;
        }

        .timeline-title p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
            color: rgba(255, 255, 255, 0.8);
        }

        .timeline-item {
            padding: 20px 40px;
            position: relative;
            width: 50%;
            margin-bottom: 50px;
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .timeline-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-item:nth-child(odd) {
            left: 0;
        }

        .timeline-item:nth-child(even) {
            left: 50%;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 30px;
            height: 30px;
            background-color: var(--secondary);
            border-radius: 50%;
            top: 30px;
            z-index: 1;
        }

        .timeline-item:nth-child(odd)::after {
            right: -17px;
        }

        .timeline-item:nth-child(even)::after {
            left: -17px;
        }

        .timeline-content {
            padding: 30px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: var(--secondary);
        }

        .timeline-item:hover .timeline-content {
            transform: scale(1.03);
            background-color: rgba(255, 255, 255, 0.15);
        }

        .timeline-date {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 10px;
            font-size: 1.1rem;
        }

        .timeline-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .timeline-description {
            margin-bottom: 0;
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Achievements Section */
        .achievements {
            padding: 100px 0;
            background-color: white;
            position: relative;
        }

        .achievements::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%23e8b735" opacity="0.05"><path d="M50,10 Q70,10 90,30 T90,70 Q70,90 50,90 T10,70 Q10,50 30,30 T50,10"/></svg>');
            background-size: 200px;
            z-index: 0;
        }

        .achievement-stats {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            text-align: center;
            margin-bottom: 70px;
        }

        .stat-item {
            background-color: white;
            padding: 40px 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
            overflow: hidden;
            transition: var(--transition);
            border-bottom: 5px solid var(--primary);
        }

        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), transparent);
            opacity: 0;
            transition: var(--transition);
            z-index: -1;
        }

        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .stat-item:hover::before {
            opacity: 0.1;
        }

        .stat-number {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            line-height: 1;
            transition: var(--transition);
        }

        .stat-item:hover .stat-number {
            color: var(--secondary);
        }

        .stat-label {
            font-size: 1.2rem;
            color: var(--dark);
            font-weight: 500;
        }

        .achievement-slider {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .swiper {
            width: 100%;
            height: 100%;
            padding: 30px 0;
        }

        .achievement-slide {
            background-color: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            height: auto;
        }

        .achievement-image {
            height: 250px;
            overflow: hidden;
        }

        .achievement-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .achievement-slide:hover .achievement-image img {
            transform: scale(1.1);
        }

        .achievement-text {
            padding: 30px;
        }

        .achievement-text h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--primary);
            font-weight: 600;
        }

        .achievement-text p {
            margin-bottom: 20px;
            color: #666;
            line-height: 1.7;
        }

        .achievement-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .achievement-date {
            display: inline-block;
            background-color: var(--secondary-light);
            color: var(--primary-dark);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .achievement-link {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .achievement-link i {
            margin-left: 8px;
            transition: var(--transition);
        }

        .achievement-link:hover {
            color: var(--secondary);
        }

        .achievement-link:hover i {
            transform: translateX(5px);
        }

        .swiper-button-next,
        .swiper-button-prev {
            color: var(--primary);
            background-color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .swiper-button-next:hover,
        .swiper-button-prev:hover {
            color: white;
            background-color: var(--primary);
            transform: scale(1.1);
        }

        .swiper-button-next::after,
        .swiper-button-prev::after {
            font-size: 1.2rem;
            font-weight: bold;
        }

        /* Video Tour Section */
        .video-tour {
            padding: 100px 0;
            background: linear-gradient(rgba(26, 75, 140, 0.9), rgba(26, 75, 140, 0.9)), url('https://images.unsplash.com/photo-1523240795612-9a054b0db644?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
            color: white;
            text-align: center;
            position: relative;
        }

        .video-container {
            max-width: 900px;
            margin: 0 auto;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            transform: perspective(1000px) rotateX(5deg);
            transition: var(--transition);
        }

        .video-container:hover {
            transform: perspective(1000px) rotateX(0deg);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
        }

        .video-placeholder {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            background-color: #000;
        }

        .video-placeholder img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.8;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background-color: var(--secondary);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: var(--transition);
            z-index: 2;
        }

        .play-button:hover {
            transform: translate(-50%, -50%) scale(1.1);
            background-color: white;
        }

        .play-button i {
            color: var(--primary-dark);
            font-size: 2rem;
            margin-left: 5px;
        }

        .video-content {
            max-width: 700px;
            margin: 50px auto 0;
        }

        .video-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .video-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background-color: var(--light);
            position: relative;
        }

        .testimonial-slider {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .testimonial-slide {
            background-color: white;
            padding: 50px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin: 20px;
            position: relative;
        }

        .testimonial-slide::before {
            content: '"';
            position: absolute;
            top: 30px;
            left: 30px;
            font-size: 5rem;
            color: var(--secondary-light);
            font-family: serif;
            line-height: 1;
            z-index: 0;
        }

        .testimonial-content {
            position: relative;
            z-index: 1;
        }

        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 30px;
            color: #555;
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-image {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid var(--secondary);
        }

        .author-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--primary);
        }

        .author-info p {
            color: #666;
            font-size: 1rem;
        }

        .testimonial-rating {
            color: var(--secondary);
            margin-top: 5px;
        }

        /* Newsletter Section */
        .newsletter {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
            text-align: center;
        }

        .newsletter-container {
            max-width: 700px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .newsletter h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .newsletter p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 25px;
            border: none;
            font-size: 1rem;
        }

        .newsletter-form input:focus {
            outline: none;
        }

        .newsletter-form button {
            background-color: var(--secondary);
            color: var(--primary-dark);
            border: none;
            padding: 0 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .newsletter-form button:hover {
            background-color: white;
        }

        .newsletter-form button i {
            margin-left: 10px;
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 80px 0 20px;
            position: relative;
        }

        .footer-wave {
            position: absolute;
            top: -100px;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23f5f7fa" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23f5f7fa" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23f5f7fa"/></svg>');
            background-size: cover;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 40px;
            margin-bottom: 60px;
            position: relative;
            z-index: 1;
        }

        .footer-logo {
            margin-bottom: 25px;
        }

        .footer-logo img {
            height: 70px;
        }

        .footer-about p {
            margin-bottom: 25px;
            opacity: 0.8;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .social-links {
            display: flex;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            margin-right: 15px;
            color: white;
            transition: var(--transition);
            font-size: 1.1rem;
        }

        .social-links a:hover {
            background-color: var(--secondary);
            color: var(--dark);
            transform: translateY(-5px);
        }

        .footer-links h3,
        .footer-contact h3,
        .footer-newsletter h3 {
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            font-weight: 600;
        }

        .footer-links h3::after,
        .footer-contact h3::after,
        .footer-newsletter h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--secondary);
            border-radius: 2px;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links ul li {
            margin-bottom: 15px;
        }

        .footer-links ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .footer-links ul li a i {
            margin-right: 10px;
            font-size: 0.8rem;
            color: var(--secondary);
            transition: var(--transition);
        }

        .footer-links ul li a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }

        .footer-links ul li a:hover i {
            transform: translateX(-5px);
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }

        .contact-icon {
            color: var(--secondary);
            margin-right: 15px;
            margin-top: 5px;
            font-size: 1.2rem;
        }

        .contact-text {
            opacity: 0.8;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .contact-text a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }

        .contact-text a:hover {
            color: var(--secondary);
        }

        .newsletter-form {
            
            margin-bottom: 25px;
            border-radius: 5px;
            overflow: hidden;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 20px;
            border: none;
            font-size: 0.95rem;
        }

        .newsletter-form input:focus {
            outline: none;
        }

        .newsletter-form button {
            background-color: var(--secondary);
            color: var(--dark);
            border: none;
            padding: 0 20px;
            cursor: pointer;
            font-weight: 600;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }

        .newsletter-form button:hover {
            background-color: white;
        }

        .newsletter-form button i {
            margin-left: 8px;
        }

        .footer-newsletter p {
            opacity: 0.8;
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            opacity: 0.8;
            font-size: 0.9rem;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--secondary);
            color: var(--dark);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.2rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover {
            background-color: white;
            transform: translateY(-5px);
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .footer-container {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .timeline::before {
                left: 40px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 80px;
                padding-right: 20px;
            }

            .timeline-item:nth-child(even) {
                left: 0;
            }

            .timeline-item::after {
                left: 13px;
            }
        }

        @media (max-width: 992px) {
            .about-content {
                grid-template-columns: 1fr;
            }

            .about-image {
                order: -1;
                max-width: 600px;
                margin: 0 auto;
            }

            .achievement-stats {
                grid-template-columns: repeat(2, 1fr);
            }

            .highlight-cards {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }

            .footer-container {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 3.5rem;
            }

            .section-title h2,
            .about-text h2,
            .timeline-title h2,
            .video-content h2,
            .newsletter h2 {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 768px) {    
         

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .btn {
                padding: 12px 30px;
                font-size: 1rem;
            }

            .jubilee-badge {
                top: 20px;
                right: 20px;
                font-size: 1rem;
                padding: 10px 20px;
            }

            .section-title h2,
            .about-text h2,
            .timeline-title h2,
            .video-content h2,
            .newsletter h2 {
                font-size: 2.2rem;
            }

            .highlight-card,
            .stat-item {
                padding: 30px 20px;
            }

            .testimonial-slide {
                padding: 30px;
            }

            .footer-wave {
                top: -50px;
                height: 50px;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .btn-group {
                display: flex;
                flex-direction: column;
                align-items: center;
            }

            .btn-outline {
                margin-left: 0;
                margin-top: 15px;
            }

            .achievement-stats {
                grid-template-columns: 1fr;
            }

            .section-title h2,
            .about-text h2,
            .timeline-title h2,
            .video-content h2,
            .newsletter h2 {
                font-size: 2rem;
            }

            .highlight-cards {
                grid-template-columns: 1fr;
            }

            .testimonial-author {
                flex-direction: column;
                text-align: center;
            }

            .author-image {
                margin-right: 0;
                margin-bottom: 15px;
            }

            .newsletter-form {
                flex-direction: column;
                border-radius: 5px;
            }

            .newsletter-form input {
                border-radius: 5px 5px 0 0;
            }

            .newsletter-form button {
                border-radius: 0 0 5px 5px;
                padding: 12px 20px;
                justify-content: center;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @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);
            }
        }

        .animate {
            opacity: 0;
        }

        .fade-in {
            animation: fadeIn 1s ease forwards;
        }

        .fade-in-up {
            animation: fadeInUp 1s ease forwards;
        }

        .fade-in-left {
            animation: fadeInLeft 1s ease forwards;
        }

        .fade-in-right {
            animation: fadeInRight 1s ease forwards;
        }

        .delay-1 {
            animation-delay: 0.2s;
        }

        .delay-2 {
            animation-delay: 0.4s;
        }

        .delay-3 {
            animation-delay: 0.6s;
        }

        .delay-4 {
            animation-delay: 0.8s;
        }
		
		.about {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0a3d91, #1787c5, #1ca2a7);
  color: #fff;
}

.about h2,
.about p,
.about h4 {
  color: #fff;
}

.about .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.about .feature-icon {
  font-size: 30px;
  margin-right: 15px;
  color: #ffda44; /* yellow accent from the logo */
}

.about .btn {
  background: #ffda44; /* yellow button to match logo stars */
  color: #0a3d91;
  font-weight: bold;
  border-radius: 30px;
  padding: 10px 20px;
  transition: 0.3s;
}

.about .btn:hover {
  background: #fff;
  color: #0a3d91;
}
    /* Align icon neatly with text */
    .nav-link i {
      margin-left: 6px;
      font-size: 0.75rem;
      transition: transform 0.2s;
    }

    /* Rotate icon when dropdown opens */
    .nav-item.dropdown.show .nav-link i {
      transform: rotate(180deg);
    }
	
	