
        :root {
            --primary-color: #0d6efd;
            --secondary-color: #2575fc;
            --accent-color: orange;
            --dark-green: #4caf50;
            --text-color: #333;
            --light-bg: #f8f9fa;
            --dark-overlay: rgba(0, 0, 0, 0.6);
        }

        body {
            font-family: 'Poppins', sans-serif;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
            margin: 0;
            color: var(--text-color);
            background: url('../images/bg2.jpg') no-repeat center center/cover fixed;
            position: relative;
        }
        body::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            backdrop-filter: blur(5px);
            z-index: -1;
        }

        /* Global Transitions */
        a, button, .nav-link {
            transition: all 0.3s ease-in-out;
        }

        /* Header Top */
        .header-top {
            background-color: var(--primary-color);
            color: white;
            padding: 10px 20px;
            font-size: 0.85rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        .header-top a {
            color: white;
            margin-right: 15px;
            text-decoration: none;
            padding: 5px 0;
        }
        .header-top a:hover {
            color: rgba(255, 255, 255, 0.8);
            transform: translateY(-2px);
        }
        .header-top-left, .header-top-right {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
        }
        .header-top-right {
            margin-left: auto;
        }
        .header-top .icon {
            margin-right: 5px;
        }


        /* Header Middle */
        .header-middle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 20px;
            background-color: white;
            border-bottom: 3px solid var(--secondary-color);
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            flex-wrap: wrap;
            gap: 15px;
        }
        .logo img {
            height: 60px;
            max-width: 100%;
            animation: fadeInDown 1s ease-out;
        }
        .contact-info {
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
        }
        .contact-info span {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
            color: var(--text-color);
        }
        .contact-info i {
            color: var(--primary-color);
            font-size: 1.1rem;
        }
        .btn-login {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 8px rgba(255, 165, 0, 0.3);
            animation: pulse 2s infinite;
        }
        .btn-login:hover {
            background-color: darkorange;
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(255, 165, 0, 0.4);
            animation: none;
        }

        /* Navigation Bar */
        .navbar {
            background-color: var(--dark-green);
            box-shadow: 0 2px 5px rgba(0,0,0,0.15);
        }
        .navbar-nav .nav-link {
            color: white !important;
            font-weight: 500;
            padding: 12px 20px;
            position: relative;
            text-transform: uppercase;
            font-size: 0.95rem;
        }
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 50%;
            width: 0;
            height: 2px;
            background-color: white;
            transition: all 0.3s ease-in-out;
            transform: translateX(-50%);
        }
        .navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after {
            width: calc(100% - 20px);
        }
        .navbar-nav .nav-link:hover {
            background-color: #388e3c;
            border-radius: 5px;
            transform: translateY(-2px);
        }
        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.5);
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Welcome Section */
        .welcome-section {
            text-align: center;
            margin-top: 80px;
            margin-bottom: 80px;
            color: white;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 20px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.5);
        }
        .welcome-section h1 {
            font-size: 3.5rem;
            margin-bottom: 30px;
            font-weight: 700;
            line-height: 1.2;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInSlideUp 1s ease-out forwards;
            animation-delay: 0.5s;
        }
        .welcome-section h1 span {
            color: var(--accent-color); /* Highlight institute name */
        }
        .welcome-section nav {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
        }
        .welcome-section nav a {
            display: inline-block;
            text-decoration: none;
            font-size: 1.1rem;
            background: #fff;
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 600;
            color: var(--primary-color);
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInSlideUp 1s ease-out forwards;
        }
        .welcome-section nav a:nth-child(1) { animation-delay: 1s; }
        .welcome-section nav a:nth-child(2) { animation-delay: 1.2s; }
        .welcome-section nav a:nth-child(3) { animation-delay: 1.4s; }

        .welcome-section nav a:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 8px 15px rgba(0,0,0,0.3);
        }

        /* Animations */
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInSlideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        /* Responsive Design */
        @media (max-width: 992px) {
            .header-top {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }
            .header-top-left, .header-top-right {
                justify-content: center;
                width: 100%;
            }
            .header-top-right {
                margin-left: 0;
            }
            .header-middle {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            .contact-info {
                flex-direction: column;
                gap: 10px;
            }
            .navbar-nav .nav-link {
                padding: 10px 15px;
                text-align: center;
            }
            .navbar-collapse {
                background-color: var(--dark-green);
                border-radius: 5px;
                margin-top: 10px;
            }
            .navbar-nav {
                width: 100%;
            }
            .navbar-nav .nav-item {
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            .navbar-nav .nav-item:last-child {
                border-bottom: none;
            }
        }

        @media (max-width: 768px) {
            .header-top {
                font-size: 0.75rem;
                padding: 8px 15px;
            }
            .header-top a {
                margin: 0 8px;
                padding: 3px 0;
            }
            .header-middle {
                padding: 10px 15px;
            }
            .logo img {
                height: 50px;
            }
            .contact-info span {
                font-size: 0.85rem;
            }
            .btn-login {
                padding: 8px 15px;
                font-size: 0.9rem;
            }
        }
        @media (max-width: 576px) {
            .header-top > div:first-child {
                display: flex;
                flex-direction: column;
                gap: 5px;
            }
            .header-top > div:last-child {
                font-size: 0.75rem;
            }
        }

/* Index Page Styles */
        /* Hero Section */
        .hero-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #0d6efd 0%, #2575fc 100%);
            color: white;
            position: relative;
            overflow: hidden;
        }
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../images/pattern.png');
            opacity: 0.1;
        }
        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        .hero-title span {
            color: #ffc107;
        }
        .hero-subtitle {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        .hero-image {
            position: relative;
        }
        .floating-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: white;
            color: #0d6efd;
            padding: 10px 15px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            animation: float 3s ease-in-out infinite;
        }

        /* Stats Section */
        .stats-section {
            background: white;
        }
        .stat-card {
            padding: 30px 20px;
            border-radius: 10px;
            background: #f8f9fa;
            transition: transform 0.3s ease;
        }
        .stat-card:hover {
            transform: translateY(-10px);
            background: #0d6efd;
            color: white;
        }
        .stat-card:hover i {
            color: white;
        }
        .stat-card i {
            color: #0d6efd;
        }
        .stat-card h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0;
        }

        /* Courses Section */
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 10px;
        }
        .section-subtitle {
            color: #666;
            font-size: 1.1rem;
        }
        .index-page .course-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
            position: relative;
        }
        .index-page .course-card:hover {
            transform: translateY(-10px);
        }
        .index-page .course-card.featured {
            border: 2px solid #0d6efd;
        }
        .course-badge {
            position: absolute;
            top: -10px;
            right: 20px;
            background: #0d6efd;
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        .course-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #0d6efd 0%, #2575fc 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: white;
            font-size: 2rem;
        }
        .index-page .course-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #333;
        }
        .course-duration {
            color: #666;
            margin-bottom: 20px;
        }
        .index-page .course-features {
            list-style: none;
            padding: 0;
            margin-bottom: 25px;
        }
        .index-page .course-features li {
            margin-bottom: 8px;
            color: #555;
        }
        .index-page .course-features i {
            color: #4caf50;
            margin-right: 10px;
        }
        .index-page .course-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 20px;
            border-top: 1px solid #eee;
        }
        .course-fee {
            font-size: 1.5rem;
            font-weight: 700;
            color: #0d6efd;
        }
        .btn-enroll {
            color: #0d6efd;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .btn-enroll:hover {
            color: #2575fc;
        }

        /* Franchise Section */
        .franchise-section {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        .franchise-benefits {
            margin: 30px 0;
        }
        .benefit-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }
        .benefit-item i {
            font-size: 1.5rem;
            color: #ffc107;
            background: rgba(255,255,255,0.1);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .benefit-item h4 {
            margin: 0;
            color: white;
        }
        .benefit-item p {
            margin: 5px 0 0;
            opacity: 0.9;
        }
        .franchise-form {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.2);
            color: #333;
        }
        .franchise-form h3 {
            color: #333;
            margin-bottom: 20px;
        }

        /* Testimonials */
        .testimonial-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
        }
        .testimonial-content {
            font-style: italic;
            color: #555;
            margin-bottom: 20px;
            position: relative;
            padding-left: 20px;
        }
        .testimonial-content::before {
            content: '"';
            position: absolute;
            left: 0;
            top: -10px;
            font-size: 3rem;
            color: #0d6efd;
            opacity: 0.3;
        }
        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        .testimonial-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
        }
        .testimonial-author h5 {
            margin: 0;
            color: #333;
        }
        .testimonial-author span {
            color: #666;
            font-size: 0.9rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('../images/pattern2.png');
            opacity: 0.1;
        }
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        .cta-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        /* Animations */
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            .section-title {
                font-size: 2rem;
            }
            .hero-buttons .btn {
                display: block;
                width: 100%;
                margin-bottom: 10px;
            }
            .cta-buttons .btn {
                display: block;
                width: 100%;
                margin-bottom: 10px;
            }
        }

/* Login Page Styles */
    .login-page {
        min-height: calc(100vh - 300px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        position: relative;
        overflow: hidden;
    }

    .login-container {
        width: 100%;
        max-width: 1000px;
        margin: 0 auto;
    }

    .login-card {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        display: flex;
        min-height: 550px;
        position: relative;
        animation: fadeInUp 0.8s ease-out;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Left Panel - Login Form */
    .login-form-section {
        flex: 1;
        padding: 50px 40px;
        background: white;
        position: relative;
        z-index: 1;
        /* Desktop: Form on left, Features on right */
        order: 1;
    }

    .login-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .login-logo {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: white;
        font-size: 2rem;
        animation: float 3s ease-in-out infinite;
    }

    .login-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 10px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .login-subtitle {
        color: #666;
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    /* Form Elements */
    .form-group {
        margin-bottom: 25px;
        position: relative;
    }

    .form-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #444;
        font-size: 0.95rem;
    }

    .form-input {
        width: 100%;
        padding: 15px 20px;
        border: 2px solid #e1e5e9;
        border-radius: 10px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: #f8fafc;
    }

    .form-input:focus {
        border-color: var(--primary-color);
        background: white;
        box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
        outline: none;
    }

    .form-input::placeholder {
        color: #94a3b8;
    }

    .input-with-icon {
        position: relative;
    }

    .input-icon {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #64748b;
        font-size: 1.1rem;
    }

    .input-with-icon .form-input {
        padding-left: 45px;
    }

    .password-toggle {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #64748b;
        cursor: pointer;
        font-size: 1.1rem;
        transition: color 0.3s ease;
    }

    .password-toggle:hover {
        color: var(--primary-color);
    }

    .remember-forgot {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 25px;
    }

    .remember-me {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .remember-me input[type="checkbox"] {
        width: 18px;
        height: 18px;
        accent-color: var(--primary-color);
    }

    .remember-me label {
        color: #555;
        font-size: 0.95rem;
        cursor: pointer;
    }

    .forgot-password {
        color: var(--primary-color);
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 500;
        transition: color 0.3s ease;
    }

    .forgot-password:hover {
        color: var(--secondary-color);
        text-decoration: underline;
    }

    .login-button {
        width: 100%;
        padding: 16px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 25px;
        position: relative;
        overflow: hidden;
    }

    .login-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
    }

    .login-button:active {
        transform: translateY(0);
    }

    .login-button::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 5px;
        height: 5px;
        background: rgba(255, 255, 255, 0.5);
        opacity: 0;
        border-radius: 100%;
        transform: scale(1, 1) translate(-50%);
        transform-origin: 50% 50%;
    }

    .login-button:focus:not(:active)::after {
        animation: ripple 1s ease-out;
    }

    .divider {
        text-align: center;
        margin: 30px 0;
        position: relative;
    }

    .divider::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        height: 1px;
        background: #e2e8f0;
    }

    .divider span {
        background: white;
        padding: 0 15px;
        color: #64748b;
        font-size: 0.9rem;
        position: relative;
    }

    .quick-login {
        display: flex;
        gap: 15px;
        margin-bottom: 25px;
    }

    .social-login {
        flex: 1;
        padding: 12px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        background: white;
        color: #444;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .social-login:hover {
        border-color: var(--primary-color);
        transform: translateY(-2px);
    }

    .social-login.google:hover {
        background: #f8fafc;
    }

    .social-login.microsoft:hover {
        background: #f8fafc;
    }

    /* Right Panel - Welcome Section */
    .login-welcome-section {
        flex: 0.8;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        padding: 50px 40px;
        color: white;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Desktop: Features on right */
        order: 2;
    }

    .welcome-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('../images/login-bg.jpg') center/cover;
        opacity: 0.1;
    }

    .welcome-content {
        position: relative;
        z-index: 1;
        text-align: center;
    }

    .welcome-icon {
        font-size: 4rem;
        margin-bottom: 20px;
        animation: bounce 2s infinite;
    }

    .welcome-title {
        font-size: 2.2rem;
        font-weight: 700;
        margin-bottom: 15px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

    .welcome-subtitle {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .features-list {
        text-align: left;
        margin: 30px 0;
    }

    .feature-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 15px;
        font-size: 0.95rem;
    }

    .feature-item i {
        color: var(--accent-color);
        font-size: 1.2rem;
    }

    .register-button {
        display: inline-block;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        color: white;
        padding: 15px 40px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        margin-top: 20px;
    }

    .register-button:hover {
        background: white;
        color: var(--primary-color);
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    /* Footer Links */
    .login-footer {
        text-align: center;
        margin-top: 30px;
        color: #64748b;
        font-size: 0.9rem;
    }

    .login-footer a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
    }

    .login-footer a:hover {
        text-decoration: underline;
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes bounce {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-15px);
        }
    }

    @keyframes ripple {
        0% {
            transform: scale(0, 0);
            opacity: 1;
        }
        20% {
            transform: scale(25, 25);
            opacity: 1;
        }
        100% {
            opacity: 0;
            transform: scale(40, 40);
        }
    }

    /* ===== RESPONSIVE DESIGN ===== */

    /* Desktop: Keep original layout (Form on left, Features on right) */
    @media (min-width: 993px) {
        .login-form-section {
            order: 1; /* Form first */
        }
        .login-welcome-section {
            order: 2; /* Features second */
        }
    }

    /* Tablet and Mobile: Stack vertically */
    @media (max-width: 992px) {
        .login-card {
            flex-direction: column;
            min-height: auto;
        }
        
        .login-form-section,
        .login-welcome-section {
            padding: 40px 30px;
        }
        
        /* Mobile: Form should appear ABOVE features */
        .login-form-section {
            order: 1; /* Form first */
        }
        
        .login-welcome-section {
            order: 2; /* Features second */
        }
        
        .quick-login {
            flex-direction: column;
        }
    }

    /* Mobile Small: Further adjustments */
    @media (max-width: 576px) {
        .login-page {
            padding: 20px 15px;
        }
        
        .login-form-section,
        .login-welcome-section {
            padding: 30px 20px;
        }
        
        /* Ensure form appears above features */
        .login-form-section {
            order: 1;
        }
        
        .login-welcome-section {
            order: 2;
        }
        
        .login-title,
        .welcome-title {
            font-size: 1.8rem;
        }
        
        .login-subtitle,
        .welcome-subtitle {
            font-size: 1rem;
        }
        
        .remember-forgot {
            flex-direction: column;
            gap: 15px;
            align-items: flex-start;
        }
        
        .welcome-icon {
            font-size: 3rem;
        }
        
        .features-list {
            margin: 20px 0;
        }
        
        .feature-item {
            margin-bottom: 12px;
            font-size: 0.9rem;
        }
        
        .register-button {
            padding: 12px 30px;
            font-size: 1rem;
        }
    }

    /* Extra Small Mobile */
    @media (max-width: 375px) {
        .login-form-section,
        .login-welcome-section {
            padding: 25px 15px;
        }
        
        .login-title,
        .welcome-title {
            font-size: 1.6rem;
        }
        
        .login-subtitle,
        .welcome-subtitle {
            font-size: 0.95rem;
        }
        
        .form-input {
            padding: 12px 15px;
            font-size: 0.95rem;
        }
        
        .login-button {
            padding: 14px;
            font-size: 1rem;
        }
        
        .welcome-icon {
            font-size: 2.5rem;
        }
        
        .features-list {
            margin: 15px 0;
        }
    }

    /* Landscape Mobile */
    @media (max-height: 600px) and (orientation: landscape) {
        .login-page {
            padding: 20px;
            min-height: auto;
        }
        
        .login-card {
            min-height: 500px;
        }
        
        .login-form-section,
        .login-welcome-section {
            padding: 25px 20px;
        }
        
        .login-form-section {
            order: 1;
        }
        
        .login-welcome-section {
            order: 2;
        }
    }

    /* Decorative Elements */
    .floating-shapes {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
        z-index: 0;
    }

    .shape {
        position: absolute;
        background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(37, 117, 252, 0.1));
        border-radius: 50%;
        animation: float 20s infinite linear;
    }

    .shape:nth-child(1) {
        width: 80px;
        height: 80px;
        top: 10%;
        left: 5%;
        animation-delay: 0s;
    }

    .shape:nth-child(2) {
        width: 120px;
        height: 120px;
        bottom: 10%;
        right: 5%;
        animation-delay: -5s;
        animation-duration: 25s;
    }

    .shape:nth-child(3) {
        width: 60px;
        height: 60px;
        top: 50%;
        left: 10%;
        animation-delay: -10s;
    }

/* Registration Page Styles */
    .register-page {
        min-height: calc(100vh - 300px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
        position: relative;
        overflow: hidden;
    }

    .register-wrapper {
        width: 100%;
        max-width: 90%; /* Changed: 90% of screen width */
        margin: 0 auto;
    }

    .register-card {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
        display: flex;
        min-height: 650px;
        position: relative;
        animation: fadeInUp 0.8s ease-out;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    /* Left Panel - Registration Form */
    .register-form-section {
        flex: 1.2;
        padding: 50px 40px;
        background: white;
        position: relative;
        z-index: 1;
        min-width: 0; /* Allow flex shrinking */
    }

    .register-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .register-logo {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: white;
        font-size: 2rem;
        animation: float 3s ease-in-out infinite;
    }

    .register-title {
        font-size: 2.2rem;
        font-weight: 700;
        color: #333;
        margin-bottom: 10px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .register-subtitle {
        color: #666;
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    /* Form Layout */
    .form-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }

    .form-full-width {
        grid-column: 1 / -1;
    }

    .form-group {
        position: relative;
    }

    .form-label {
        display: block;
        margin-bottom: 8px;
        font-weight: 600;
        color: #475569;
        font-size: 0.95rem;
    }

    .required::after {
        content: ' *';
        color: #ef4444;
    }

    .form-control {
        width: 100%;
        padding: 14px 16px;
        border: 2px solid #e2e8f0;
        border-radius: 10px;
        font-size: 1rem;
        transition: all 0.3s ease;
        background: #f8fafc;
    }

    .form-control:focus {
        border-color: var(--primary-color);
        background: white;
        box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.1);
        outline: none;
    }

    .form-control::placeholder {
        color: #94a3b8;
    }

    .input-with-icon {
        position: relative;
    }

    .input-icon {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #64748b;
        font-size: 1.1rem;
    }

    .input-with-icon .form-control {
        padding-left: 45px;
    }

    .password-toggle {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        color: #64748b;
        cursor: pointer;
        font-size: 1.1rem;
        transition: color 0.3s ease;
    }

    .password-toggle:hover {
        color: var(--primary-color);
    }

    /* Password Strength */
    .password-strength {
        margin-top: 10px;
        height: 4px;
        background: #e2e8f0;
        border-radius: 2px;
        overflow: hidden;
    }

    .strength-meter {
        height: 100%;
        width: 0;
        transition: width 0.3s ease, background 0.3s ease;
    }

    .password-requirements {
        font-size: 0.85rem;
        color: #64748b;
        margin-top: 10px;
    }

    .requirement {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 4px;
    }

    .requirement.valid {
        color: var(--dark-green);
    }

    .requirement.valid::before {
        content: '✓';
        color: var(--dark-green);
    }

    /* Terms & Conditions */
    .terms-box {
        padding: 15px;
        background: #f8fafc;
        border-radius: 10px;
        margin-bottom: 25px;
        max-height: 120px;
        overflow-y: auto;
        border: 1px solid #e2e8f0;
    }

    .terms-box p {
        font-size: 0.85rem;
        color: #475569;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    .terms-checkbox {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 25px;
    }

    .terms-checkbox input[type="checkbox"] {
        margin-top: 4px;
        accent-color: var(--primary-color);
    }

    .terms-checkbox label {
        font-size: 0.9rem;
        color: #475569;
        line-height: 1.4;
    }

    .terms-checkbox a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 500;
    }

    .terms-checkbox a:hover {
        text-decoration: underline;
    }

    /* Register Button */
    .register-button {
        width: 100%;
        padding: 16px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border: none;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-bottom: 25px;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .register-button:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(13, 110, 253, 0.2);
    }

    .register-button:active {
        transform: translateY(0);
    }

    .register-button.loading {
        opacity: 0.7;
        cursor: not-allowed;
    }

    /* Right Panel - Benefits */
    .register-benefits-section {
        flex: 1;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        padding: 50px 40px;
        color: white;
        position: relative;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .benefits-background {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('../images/register-bg.jpg') center/cover;
        opacity: 0.1;
    }

    .benefits-content {
        position: relative;
        z-index: 1;
    }

    .benefits-icon {
        font-size: 4rem;
        margin-bottom: 20px;
        animation: bounce 2s infinite;
    }

    .benefits-title {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 15px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

    .benefits-subtitle {
        font-size: 1.1rem;
        opacity: 0.9;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .benefits-list {
        margin: 30px 0;
    }

    .benefit-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 20px;
        font-size: 0.95rem;
    }

    .benefit-item i {
        color: var(--accent-color);
        font-size: 1.2rem;
        background: rgba(255, 255, 255, 0.1);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Login Link */
    .login-link {
        text-align: center;
        margin-top: 20px;
        color: #64748b;
        font-size: 0.95rem;
    }

    .login-link a {
        color: var(--primary-color);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.3s ease;
    }

    .login-link a:hover {
        text-decoration: underline;
        color: var(--secondary-color);
    }

    /* Error Messages */
    .error-message {
        color: #ef4444;
        font-size: 0.85rem;
        margin-top: 5px;
        display: none;
    }

    .form-control.error {
        border-color: #ef4444;
        background: #fef2f2;
    }

    .form-control.error + .error-message {
        display: block;
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes bounce {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-15px);
        }
    }

    /* User Type Styling */
    .user-type-options {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 10px;
    }

    .user-type-option {
        padding: 15px;
        border: 2px solid #e2e8f0;
        border-radius: 10px;
        cursor: pointer;
        text-align: center;
        transition: all 0.3s ease;
        background: #f8fafc;
    }

    .user-type-option:hover {
        border-color: var(--primary-color);
        transform: translateY(-2px);
    }

    .user-type-option.selected {
        border-color: var(--primary-color);
        background: rgba(13, 110, 253, 0.05);
    }

    .user-type-icon {
        font-size: 1.5rem;
        color: var(--primary-color);
        margin-bottom: 8px;
    }

    .user-type-label {
        font-weight: 600;
        color: #1e293b;
        font-size: 0.95rem;
    }

    .user-type-description {
        font-size: 0.8rem;
        color: #64748b;
        margin-top: 5px;
    }

    /* Helper Text */
    .helper-text {
        font-size: 0.85rem;
        color: #64748b;
        margin-top: 5px;
    }

    /* ====== RESPONSIVE DESIGN ====== */

    /* Large Desktop - Keep original design */
    @media (min-width: 1400px) {
        .register-wrapper {
            max-width: 1200px;
        }
        .register-form-section {
            padding: 50px 40px;
        }
        .register-benefits-section {
            padding: 50px 40px;
        }
    }

    /* Tablet and Desktop */
    @media (max-width: 1199px) {
        .register-wrapper {
            max-width: 95%;
        }
    }

    /* Tablet */
    @media (max-width: 992px) {
        .register-card {
            flex-direction: column;
            min-height: auto;
        }
        
        .register-form-section,
        .register-benefits-section {
            padding: 40px 30px;
        }
        
        /* Default order: form first, benefits second */
        .register-benefits-section {
            order: 2;
        }
        
        .form-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    /* Mobile Large */
    @media (max-width: 768px) {
        .register-page {
            padding: 20px 15px;
        }
        
        .register-wrapper {
            max-width: 100%;
        }
        
        .register-form-section,
        .register-benefits-section {
            padding: 30px 20px;
        }
        
        .form-grid {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .register-title,
        .benefits-title {
            font-size: 1.8rem;
        }
        
        .register-subtitle,
        .benefits-subtitle {
            font-size: 1rem;
        }
        
        .user-type-options {
            grid-template-columns: 1fr;
        }
        
        .register-logo {
            width: 70px;
            height: 70px;
            font-size: 1.8rem;
        }
    }

    /* Mobile Small - Form should appear above benefits */
    @media (max-width: 576px) {
        .register-card {
            flex-direction: column;
        }
        
        /* Force form to be first on mobile */
        .register-form-section {
            order: 1;
            padding: 25px 20px;
        }
        
        .register-benefits-section {
            order: 2;
            padding: 25px 20px;
        }
        
        .register-title,
        .benefits-title {
            font-size: 1.6rem;
        }
        
        .register-subtitle,
        .benefits-subtitle {
            font-size: 0.95rem;
        }
        
        .register-logo {
            width: 60px;
            height: 60px;
            font-size: 1.5rem;
        }
        
        .benefits-icon {
            font-size: 3rem;
        }
        
        .benefit-item {
            margin-bottom: 15px;
            font-size: 0.9rem;
        }
        
        .benefit-item i {
            width: 32px;
            height: 32px;
            font-size: 1rem;
        }
    }

    /* Extra Small Mobile */
    @media (max-width: 375px) {
        .register-form-section,
        .register-benefits-section {
            padding: 20px 15px;
        }
        
        .register-title,
        .benefits-title {
            font-size: 1.4rem;
        }
        
        .form-control {
            padding: 12px 14px;
            font-size: 0.95rem;
        }
        
        .register-button {
            padding: 14px;
            font-size: 1rem;
        }
        
        .terms-box {
            padding: 12px;
            font-size: 0.8rem;
        }
    }

    /* Landscape Mobile */
    @media (max-height: 600px) and (orientation: landscape) {
        .register-page {
            padding: 20px;
            min-height: auto;
        }
        
        .register-card {
            min-height: 500px;
        }
        
        .register-form-section {
            padding: 25px 20px;
        }
        
        .register-benefits-section {
            padding: 25px 20px;
        }
        
        .form-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

/* Courses Page Styles */
    .courses-page {
        padding: 80px 20px;
        position: relative;
        overflow: hidden;
    }

    /* Hero Section */
    .courses-hero {
        text-align: center;
        padding: 60px 20px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border-radius: 20px;
        margin-bottom: 60px;
        position: relative;
        overflow: hidden;
    }

    .courses-hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('../images/courses-bg.jpg') center/cover;
        opacity: 0.1;
    }

    .courses-hero h1 {
        font-size: 3.5rem;
        font-weight: 800;
        margin-bottom: 20px;
        text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    }

    .courses-hero p {
        font-size: 1.2rem;
        max-width: 700px;
        margin: 0 auto 30px;
        opacity: 0.9;
    }

    .hero-stats {
        display: flex;
        justify-content: center;
        gap: 40px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        display: block;
        animation: countUp 2s ease-out;
    }

    .stat-label {
        font-size: 1rem;
        opacity: 0.9;
    }

    /* Filter Section */
    .courses-filter {
        max-width: 1200px;
        margin: 0 auto 50px;
        padding: 30px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .filter-title {
        font-size: 1.5rem;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 20px;
        text-align: center;
    }

    .filter-options {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 12px 25px;
        background: #f8fafc;
        border: 2px solid #e2e8f0;
        border-radius: 50px;
        font-weight: 600;
        color: #64748b;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .filter-btn:hover {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
        transform: translateY(-2px);
    }

    .filter-btn.active {
        background: var(--primary-color);
        color: white;
        border-color: var(--primary-color);
    }

    /* Courses Grid */
    .courses-grid {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-bottom: 80px;
    }

    .courses-page .course-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transition: all 0.3s ease;
        position: relative;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease-out forwards;
    }

    .courses-page .course-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

    .courses-page .course-card.featured {
        border: 3px solid var(--accent-color);
    }

    .course-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--accent-color);
        color: white;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
        z-index: 1;
    }

    .course-image {
        height: 200px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .course-image i {
        font-size: 4rem;
        color: rgba(255,255,255,0.9);
        animation: float 3s ease-in-out infinite;
    }

    .course-content {
        padding: 30px;
    }

    .course-category {
        display: inline-block;
        background: rgba(13, 110, 253, 0.1);
        color: var(--primary-color);
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .course-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 15px;
        line-height: 1.4;
    }

    .course-description {
        color: #64748b;
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .course-meta {
        display: flex;
        gap: 20px;
        margin-bottom: 25px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e2e8f0;
    }

    .meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #64748b;
        font-size: 0.9rem;
    }

    .meta-item i {
        color: var(--primary-color);
    }

    .courses-page .course-features {
        list-style: none;
        padding: 0;
        margin-bottom: 25px;
    }

    .courses-page .course-features li {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
        color: #475569;
        font-size: 0.95rem;
    }

    .courses-page .course-features li i {
        color: var(--dark-green);
        font-size: 0.9rem;
    }

    .courses-page .course-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 20px;
        border-top: 1px solid #e2e8f0;
    }

    .course-price {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-color);
    }

    .course-price .old-price {
        font-size: 1rem;
        color: #94a3b8;
        text-decoration: line-through;
        margin-right: 10px;
    }

    .courses-page .btn-enroll {
        background: var(--primary-color);
        color: white;
        padding: 12px 25px;
        border-radius: 10px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .courses-page .btn-enroll:hover {
        background: var(--secondary-color);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(13, 110, 253, 0.2);
    }

    .btn-details {
        background: white;
        color: var(--primary-color);
        padding: 12px 25px;
        border-radius: 10px;
        font-weight: 600;
        text-decoration: none;
        border: 2px solid var(--primary-color);
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .btn-details:hover {
        background: var(--primary-color);
        color: white;
        transform: translateY(-2px);
    }

    /* Professional Courses Section */
    .professional-courses {
        max-width: 1200px;
        margin: 0 auto 80px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #1e293b;
        margin-bottom: 15px;
    }

    .section-header p {
        font-size: 1.1rem;
        color: #64748b;
        max-width: 700px;
        margin: 0 auto;
    }

    .courses-tabs {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }

    .tabs-header {
        display: flex;
        background: #f8fafc;
        border-bottom: 1px solid #e2e8f0;
        overflow-x: auto;
    }

    .tab-btn {
        padding: 20px 30px;
        background: none;
        border: none;
        font-size: 1rem;
        font-weight: 600;
        color: #64748b;
        cursor: pointer;
        transition: all 0.3s ease;
        white-space: nowrap;
        border-bottom: 3px solid transparent;
    }

    .tab-btn:hover {
        background: rgba(13, 110, 253, 0.05);
        color: var(--primary-color);
    }

    .tab-btn.active {
        color: var(--primary-color);
        border-bottom: 3px solid var(--primary-color);
        background: white;
    }

    .tab-content {
        padding: 40px;
        display: none;
    }

    .tab-content.active {
        display: block;
        animation: fadeIn 0.5s ease-out;
    }

    .courses-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .short-course-card {
        background: #f8fafc;
        padding: 25px;
        border-radius: 12px;
        border-left: 4px solid var(--primary-color);
        transition: all 0.3s ease;
    }

    .short-course-card:hover {
        background: white;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .short-course-title {
        font-size: 1.2rem;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 10px;
    }

    .short-course-duration {
        color: var(--primary-color);
        font-weight: 600;
        margin-bottom: 5px;
    }

    .short-course-price {
        color: var(--dark-green);
        font-weight: 600;
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    .short-course-features {
        font-size: 0.9rem;
        color: #64748b;
        margin-bottom: 15px;
    }

    /* Why Choose MCI Section */
    .why-choose {
        max-width: 1200px;
        margin: 0 auto 80px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 60px;
        border-radius: 20px;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
        margin-top: 40px;
    }

    .feature-item {
        text-align: center;
        padding: 30px;
        background: white;
        border-radius: 15px;
        transition: all 0.3s ease;
    }

    .feature-item:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

    .feature-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
        color: white;
        font-size: 2rem;
    }

    .feature-title {
        font-size: 1.3rem;
        font-weight: 600;
        color: #1e293b;
        margin-bottom: 10px;
    }

    .feature-description {
        color: #64748b;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* CTA Section */
    .courses-page .cta-section {
        text-align: center;
        padding: 80px 40px;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        color: white;
        border-radius: 20px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .courses-page .cta-title {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .courses-page .cta-description {
        font-size: 1.2rem;
        opacity: 0.9;
        max-width: 700px;
        margin: 0 auto 40px;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .btn-cta {
        padding: 15px 35px;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .btn-cta.primary {
        background: white;
        color: var(--primary-color);
    }

    .btn-cta.primary:hover {
        background: var(--accent-color);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }

    .btn-cta.secondary {
        background: transparent;
        color: white;
        border: 2px solid white;
    }

    .btn-cta.secondary:hover {
        background: white;
        color: var(--primary-color);
        transform: translateY(-3px);
    }

    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes countUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @keyframes float {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
        }
        to {
            opacity: 1;
        }
    }

    /* Responsive Design */
    @media (max-width: 1200px) {
        .courses-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }
    }

    @media (max-width: 768px) {
        .courses-page {
            padding: 40px 15px;
        }
        
        .courses-hero {
            padding: 40px 20px;
        }
        
        .courses-hero h1 {
            font-size: 2.5rem;
        }
        
        .courses-hero p {
            font-size: 1.1rem;
        }
        
        .hero-stats {
            gap: 20px;
        }
        
        .stat-number {
            font-size: 2rem;
        }
        
        .filter-options {
            flex-direction: column;
            align-items: center;
        }
        
        .filter-btn {
            width: 100%;
            justify-content: center;
        }
        
        .courses-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .courses-page .course-card {
            margin: 0 10px;
        }
        
        .section-header h2 {
            font-size: 2rem;
        }
        
        .tab-btn {
            padding: 15px 20px;
            font-size: 0.9rem;
        }
        
        .why-choose {
            padding: 40px 20px;
        }
        
        .courses-page .cta-section {
            padding: 40px 20px;
        }
        
        .courses-page .cta-title {
            font-size: 2rem;
        }
        
        .cta-buttons {
            flex-direction: column;
        }
        
        .btn-cta {
            width: 100%;
            justify-content: center;
        }
    }

    @media (max-width: 576px) {
        .courses-hero h1 {
            font-size: 2rem;
        }
        
        .course-content {
            padding: 20px;
        }
        
        .course-title {
            font-size: 1.3rem;
        }
        
        .course-meta {
            flex-direction: column;
            gap: 10px;
        }
        
        .courses-page .course-footer {
            flex-direction: column;
            gap: 15px;
            text-align: center;
        }
        
        .courses-page .btn-enroll, .btn-details {
            width: 100%;
            justify-content: center;
        }
        
        .tabs-header {
            flex-direction: column;
        }
        
        .tab-btn {
            border-bottom: 1px solid #e2e8f0;
            border-right: none;
        }
    }

/* Verification Page Styles */
    .verification-page {
        min-height: calc(100vh - 300px);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
    }
    .verification-container {
        background: rgba(255, 255, 255, 0.95);
        padding: 40px;
        border-radius: 15px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
        width: 100%;
        max-width: 700px;
        margin: auto; /* Center the container */
        animation: fadeIn 1s ease-out;
    }

    .verification-container h2 {
        text-align: center;
        margin-bottom: 30px;
        color: var(--primary-color);
        font-weight: 700;
        font-size: 2.2rem;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
        animation: fadeInDown 0.8s ease-out;
    }

    .verification-page .form-label {
        font-weight: 600;
        color: #555;
        margin-bottom: 8px;
    }

    .verification-page .form-control {
        padding: 12px 18px;
        font-size: 1rem;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-sizing: border-box;
        transition: all 0.3s ease;
    }

    .verification-page .form-control:focus {
        outline: none;
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    }

    .btn-verify, .btn-reset {
        padding: 12px 25px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .btn-verify {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
        color: white;
    }

    .btn-verify:hover {
        background-color: var(--secondary-color);
        border-color: var(--secondary-color);
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    }

    .btn-reset {
        background-color: #6c757d; /* Bootstrap secondary color for reset */
        border-color: #6c757d;
        color: white;
        margin-left: 10px; /* Space between verify and reset */
    }

    .btn-reset:hover {
        background-color: #5a6268;
        border-color: #5a6268;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    }

    .verification-page .alert {
        margin-top: 25px;
        border-radius: 8px;
        font-weight: 500;
    }

    .verification-page .card {
        margin-top: 30px;
        border-radius: 15px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        border: none;
        opacity: 0; /* Hidden by default */
        transform: translateY(20px);
        transition: all 0.5s ease-out;
    }

    .verification-page .card.expanded {
        opacity: 1;
        transform: translateY(0);
        animation: fadeInSlideUp 0.8s ease-out forwards;
    }

    .verification-page .card-header {
        background-color: var(--primary-color);
        color: white;
        font-weight: 600;
        font-size: 1.2rem;
        border-top-left-radius: 15px;
        border-top-right-radius: 15px;
        padding: 15px 20px;
    }

    .verification-page .card-body p {
        margin-bottom: 10px;
        font-size: 1rem;
        color: var(--text-color);
    }
    .verification-page .card-body p strong {
        color: var(--primary-color);
    }

    .verification-page .btn-secondary {
        background-color: #6c757d;
        border-color: #6c757d;
        color: white;
        padding: 12px 25px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: 50px;
        margin-top: 25px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    }

    .verification-page .btn-secondary:hover {
        background-color: #5a6268;
        border-color: #5a6268;
        transform: translateY(-2px);
        box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    }
    @media (max-width: 768px) {
        .verification-container {
            padding: 30px;
            margin: 20px;
        }
        .verification-container h2 {
            font-size: 1.8rem;
        }
        .verification-page .form-control, .btn-verify, .btn-reset, .verification-page .btn-secondary {
            padding: 10px 15px;
            font-size: 0.95rem;
        }
        .btn-verify, .btn-reset, .verification-page .btn-secondary {
            width: 100%;
            margin-left: 0 !important; /* Override margin for stacked buttons */
            margin-bottom: 10px;
        }
        .verification-page .card-header {
            font-size: 1rem;
        }
        .verification-page .card-body p {
            font-size: 0.9rem;
        }
    }

    @media (max-width: 576px) {
        .verification-container {
            padding: 20px;
            border-radius: 10px;
        }
        .verification-container h2 {
            font-size: 1.5rem;
        }
    }
