  :root{
            --navy: #0F172A; /* Deeper navy */
            --accent-gold: #FFD700; /* Bright gold */
            --light-sky: #F0F9FF; /* Very light blue */
            --dark-text: #1F2937; /* Dark gray for text on light backgrounds */
            --mid-gray-text: #4B5563; /* Medium gray for muted text */
            --gradient-dark-blue: linear-gradient(180deg, #102A43 0%, #243B53 100%);
        }
        body {
            font-family: 'Poppins', sans-serif;
            background: var(--light-sky);
            color: var(--dark-text);
            overflow-x: hidden;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            color: var(--navy);
        }

        /* Header */
         .site-header {
                       background: linear-gradient(to right, white, white, skyblue, skyblue);

            padding: 1rem 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.2);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .logo-wrap img{ height:68px; filter: drop-shadow(0 0 5px var(--accent-white)); }
        .site-header .navbar-brand { font-weight: bold; font-size: 1.5rem; color: #0A192F !important; }
        .site-header .nav-link {
            color: #0A192F !important;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 0.5rem;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        .site-header .nav-link:hover, .site-header .nav-link.active {
            color: var(--accent-gold) !important;
            background-color: #0A192F;
        }
        .btn-outline-light {
            border-color: #0A192F;
            color: #0A192F;
            transition: background-color 0.3s ease, color 0.3s ease;
        }
        .btn-outline-light:hover {
            background-color: var(--accent-gold);
            color: var(--navy);
            border-color: var(--accent-gold);
        }

        /* Hero section for Exams Page */
        .hero-exams {
            background: linear-gradient(135deg, var(--navy) 0%, #2A6093 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            border-bottom: 5px solid var(--accent-gold);
        }
        .hero-exams h1 {
            font-size: clamp(2.5rem, 5vw, 4rem);
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
            text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
        }
        .hero-exams p {
            font-size: 1.15rem;
            max-width: 800px;
            margin: 0 auto;
            color: #B0D9EE;
        }

        /* Exam Features Section (Cards) */
        .exam-features-section {
            padding: 5rem 0;
            background-color: white;
        }
        .feature-card {
            background-color: #f8f9fa;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.1);
            padding: 40px;
            text-align: center;
            height: 100%; /* Ensure consistent height */
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            transition: all 0.3s ease;
        }
        .feature-card:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 12px 30px rgba(0,0,0,0.15);
        }
        .feature-card i {
            font-size: 4rem;
            color: var(--accent-gold);
            margin-bottom: 25px;
            transition: transform 0.3s ease;
        }
        .feature-card:hover i {
            transform: scale(1.1);
        }
        .feature-card h3 {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--navy);
            margin-bottom: 15px;
        }
        .feature-card p {
            color: var(--dark-text);
            font-size: 1rem;
            flex-grow: 1; /* Allows text to take available space */
            margin-bottom: 25px;
        }
        .feature-card .btn-feature {
            background: linear-gradient(90deg, #3B82F6, #60A5FA);
            border: none;
            color: white;
            padding: 0.75rem 2rem;
            border-radius: 999px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(59,130,246,0.2);
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            align-self: center;
        }
        .feature-card .btn-feature:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(59,130,246,0.3);
        }


        /* Footer */
        footer {
            background: linear-gradient(to right, white, white, skyblue, skyblue);
            color: #111;
            padding: 40px 0;
        }
        footer h5 {
            color: #111;
            margin-bottom: 20px;
        }
        footer a {
            color: #111;
            text-decoration: none;
        }
        footer a:hover {
            color: #FFD700;
        }
        .copyright {
            background: #111;
            padding: 10px;
            text-align: center;
            color: #777;
            font-size: 0.9rem;
        }

        /* Responsive adjustments */
        @media (max-width: 767px) {
            .hero-exams { padding: 50px 0; }
            .hero-exams h1 { font-size: 2rem; }
            .hero-exams p { font-size: 1rem; }
            .exam-features-section { padding: 3rem 0; }
            .feature-card { padding: 25px; }
            .feature-card i { font-size: 3rem; }
            .feature-card h3 { font-size: 1.5rem; }
            .feature-card p { font-size: 0.9rem; }
            .feature-card .btn-feature { padding: 0.6rem 1.5rem; }
        }
         /* Social Media Icons */
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            padding: 1rem 0;
        }
        .social-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            font-size: 1.5rem;
            color: #fff;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            position: relative;
            overflow: hidden;
        }
        .social-icons a:hover {
            transform: translateY(-4px) rotate(10deg);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }
        .social-icons a::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }
        .social-icons a:hover::before {
            left: 100%;
        }
        .social-icons .icon-instagram {
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        }
        .social-icons .icon-facebook {
            background: #1877F2;
        }
        .social-icons .icon-linkedin {
            background: #0077B5;
        }
        .social-icons .icon-twitter {
            background: #000000;
        }
        /* Bouncing Animation for Social Icons */
        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-8px); }
        }
        .social-icons a:nth-child(1) { animation: bounce 2s ease infinite 0.2s; }
        .social-icons a:nth-child(2) { animation: bounce 2s ease infinite 0.4s; }
        .social-icons a:nth-child(3) { animation: bounce 2s ease infinite 0.6s; }
        .social-icons a:nth-child(4) { animation: bounce 2s ease infinite 0.8s; }
        /* Responsive Adjustments for Social Icons */
        @media (max-width: 640px) {
            .social-icons a {
                width: 40px;
                height: 40px;
                font-size: 1.25rem;
            }
        }