

    /* Subject Cards Styling */
    .subject-card {
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        margin-bottom: 20px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    .subject-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }
    
    .subject-category {
        font-weight: 700;
        font-size: 1.1rem;
        color: #7a0eee;
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 2px solid #f0f0f0;
    }
    
    .subject-card .card-body {
        padding: 20px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .subject-card ul {
        flex-grow: 1;
    }
    
    .subject-card li {
        padding: 6px 0;
        display: flex;
        align-items: center;
    }
    
    /* Why Choose Cards Styling */
    .feature-box {
        height: 100%;
        padding: 25px;
        margin-bottom: 20px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .feature-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #7a0eee 0%, #ee0e82 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        color: white;
        font-size: 24px;
    }
    
    .feature-box h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        color: #333;
    }
    
    .feature-box p {
        color: #666;
        line-height: 1.6;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .top-bar {
            padding: 20px 0;
            text-align:center;
        }
        
        .top-bar .container > div {
            flex-direction: column;
        }
        
        .top-contact-info, .top-auth-links {
            margin-bottom:5px;
        }
        
        .top-bar a {
            display:block;
            margin:20px 0;
        }
        
        .btn-register {
            display: inline-block;
            margin-top:5px;
        }
        
        .subject-card, .feature-box {
            margin-bottom: 15px;
        }
    }
        /* Maintain consistent branding with main site */
        top-bar {
            background-color: #EE0E82;
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        top-bar a {
            color: white;
            text-decoration: none;
            margin-right: 15px;
            padding:50px;
        }
        .navbar {
            background-color: #060270;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            margin-top: 10px;
        }
        .navbar-brand img {
            height: 70px;
        }
        .nav-link {
            color: #FE9900;
            font-weight: 500;
        }
        
        /* AS & A Level Hero Section */
        .alevel-hero {
            background: linear-gradient(rgba(0, 51, 102, 0.1), rgba(0, 51, 102, 0.1)), 
                        url('https://media.istockphoto.com/id/172745115/photo/abstract-background-in-blue-and-yellow.jpg?s=612x612&w=0&k=20&c=x0UIP9ahWu48gWMzskRt-Mrp6AI2oWI4cKTnlASFK10=');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-top:20px;
        }
        .alevel-hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        .alevel-hero p.lead {
            font-size: 1.4rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        .alevel-badge {
            background-color: #ff9900;
            color: white;
            padding: 10px 95px;
            border-radius:20px;
            font-weight: 600;
            display: inline-block;
            margin-bottom: 20px;
        }
        
        /* Subject Cards */
        .subject-card {
            border: none;
            border-radius:8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
            margin-bottom:10px;
            height:100%;
            border-top: 4px solid #003366;
            background-image: linear-gradient(to right top, #a0f2f2, #8ef4f1, #7af6f0, #63f7ed, #46f9ea);
        }
        .subject-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        .subject-card .card-body {
            padding: 25px;
        }
        .subject-category {
            font-weight: 600;
            color: #003366;
            margin-bottom: 15px;
        }
        
        /* Features Section */
        .feature-section {
             background-image: linear-gradient(to bottom, #ebf2a0, #ffe8b1, #ffe5d0, #ffe9ea, #f8f1f4);
            padding: 90px 0;
        }
        .feature-box {
            background-image: linear-gradient(to bottom, #ebf2a0, #ffc76d, #ff8c71, #ff49a8, #e146f9);
            padding:10px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            height: 100%;
            text-align: center;
        }
        .feature-icon {
            font-size: 40px;
            color: #003366;
            margin-bottom:20px;
        }
        
        /* Testimonials */
        .testimonial-card {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            height: 100%;
        }
        .testimonial-quote {
            font-style: italic;
            position: relative;
            padding-left: 20px;
            border-left: 3px solid #ff9900;
        }
        
        /* Alternating Banner Layout */
        .alternating-section {
            padding: 80px 0;
        }
        .alternating-section:nth-child(even) {
            background-color: #f5f9ff;
        }
        .banner-img {
            border-radius: 8px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        /* Enquiry Form */
        .enquiry-form {
            background-color: white;
            padding: 40px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .form-control {
            margin-bottom: 20px;
        }
        
        /* Consistent with main site */
        footer {
            background-color: #060270;
            color: white;
            padding: 20px 0 20px;
        }
        footer h5 {
            color: #ff9900;
            margin-bottom:5px;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            display: block;
            margin-bottom:5px;
        }
        footer a:hover {
            color: white;
        }
        .social-icons a {
            display: inline-block;
            margin-right: 15px;
            font-size: 20px;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 15px;
            margin-top: 10px;
            text-align: center;
        }
        .section-title {
            color: #003366;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #ff9900;
        }
        .btn-primary {
            background-color: #003366;
            border-color: #003366;
        }
        .btn-outline-primary {
            color: #003366;
            border-color: #003366;
        }
        .btn-outline-primary:hover {
            background-color: #003366;
            color: white;
        }
        /* Enquiry Form with Image */
        .enquiry-container {
            display: flex;
            flex-wrap:wrap;
        }
        .enquiry-form {
            background-color: #A8E5F0;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            flex: 1;
            min-width:300px;
            
        }
        .form-banner {
            flex: 1;
            min-width: 30%;
            height: 100%;
            border-radius:8px;
            overflow: hidden;
            margin-left:15px;
        }
        .form-banner img {
            width:100%;
            height:100%;
            object-fit:cover;
        }
        @media (max-width:768px) {
            .form-banner {
                margin-left: 10px;
                margin-top:  10px;
                height: 100px;
            }
        }
