        body {
    font-family: 'Poppins', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
}

.logo a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #3c1053;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}
        .logo {
            font-size: 24px;
            font-weight: bold;
			padding-right: 50px;
			color: white;
        }
        nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
        }
        nav ul li {
            margin: 0 15px;
        }
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 18px;
        }
.login-button {
    background: #ff6600; 
    color: white;
    border: none;
    cursor: pointer;
    display: inline-block;
    padding: 8px 12px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    margin-right: 15px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    padding: 5px 10px;
}

.feature {
    padding: 20px;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.feature:hover {
    transform: scale(1.05);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

.feature:not(:hover) {
    transform: scale(1);
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .login-button {
        background: #ff6600; 
        padding: 10px 12px;
        font-size: 0;
        border-radius: 5px;
        border: none;
        cursor: pointer;
    }

	
    header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
    }
    nav ul {
        display: none;
        flex-direction: column;
        background: #3c1053;
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    }
    nav ul.show {
        display: flex;
    }
    nav ul li {
        margin: 10px 0;
    }
    .menu-toggle {
        display: block;
    }
}
        .hero {
            text-align: center;
            padding: 120px 50px;
            background: linear-gradient(rgba(60, 16, 83, 0.85), rgba(60, 16, 83, 0.5)), url('https://i.ibb.co/B5b3dy92/Success01.jpg') no-repeat center center/cover;
            color: white;
			background-position: right center;
        }
        .hero-content h1 {
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}
        .hero-content p {
    font-size: 24px;
    max-width: 700px;
    margin: auto;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}
        .cta-button {
    animation: pulse 1.5s infinite;
    display: inline-block;
    margin-top: 20px;
    padding: 18px 35px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 22px;
    transition: background 0.3s ease, transform 0.2s, box-shadow 0.3s;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
    font-weight: bold;
}
        .cta-button:hover {
    background-color: #e65c00;
    transform: scale(1.08);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.3);
}
        .content-section {
            padding: 80px 50px;
            text-align: center;
            background: white;
            margin: 40px auto;
            border-radius: 12px;
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
            max-width: 80%;
        }
        .pricing-table {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 30px;
        }
        .pricing-option {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
            width: 300px;
            text-align: center;
        }
        .pricing-option h3 {
            margin-bottom: 10px;
        }
        .pricing-option p {
            font-size: 18px;
        }
        footer {
            text-align: center;
            padding: 20px;
            background-color: #3c1053;
            color: white;
        }
        .social-icons a {
            margin: 0 10px;
            color: white;
            font-size: 20px;
            text-decoration: none;
        }
        .content-section {
        opacity: 0;
        transform: translateY(50px);
        transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    }
    .visible {
        opacity: 1;
        transform: translateY(0);
    }
@keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
            .testimonial-dots {
                display: flex;
                justify-content: center;
                margin-top: 10px;
            }
            .dot {
                width: 12px;
                height: 12px;
                margin: 5px;
                background-color: #d1b3e0;
                border-radius: 50%;
                cursor: pointer;
                transition: background-color 0.3s;
            }
            .dot.active {
                background-color: #3c1053;
            }
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}
.pulse-button {
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* Login Page Styling */
.login-container {
    width: 350px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    text-align: center;
    margin: 100px auto;
}

h2 {
    color: #3c1053;
    font-size: 26px;
    margin-bottom: 15px;
}

.error-msg {
    color: red;
    font-size: 16px;
    margin-bottom: 10px;
}

.login-tabs {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
}

.login-tabs button {
    background: none;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.login-tabs .active {
    border-bottom: 3px solid #ff6600;
    font-weight: bold;
    color: #ff6600;
}

.login-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.login-form button {
    width: 100%;
    padding: 12px;
    background-color: #ff6600;
    color: white;
    font-size: 18px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.login-form button:hover {
    background-color: #e65c00;
}

.login-form p {
    margin-top: 10px;
}

.login-form a {
    color: #3c1053;
    text-decoration: none;
    font-weight: bold;
}

.login-form a:hover {
    text-decoration: underline;
}
.login-box {
    display: flex;
    flex-direction: column; /* Ensures elements stack vertically */
    align-items: center;
    width: 100%;
    max-width: 400px;
    margin: auto;
}

.login-box input, .login-box button {
    width: 90%; /* Ensures inputs and buttons stretch properly */
    margin: 8px 0; /* Adds space between elements */
}

.login-tagline {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    text-align: center;
    max-width: 70%; /* Adjust the width */
	margin: 0 auto;  /* Center the element itself */
    display: block;  /* Ensure it behaves as a block for centering */
}

/* Dashboard Page Styling */
.dashboardcontainer {
    max-width: 85%;
    margin: auto;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
}

.dashboard-header {
    text-align: center;
    margin-bottom: 20px;
}

.dashboard-header h1 {
    font-size: 28px;
    color: #3c1053;
	margin-top: 80px;
}

.dashboard-subtext {
    font-size: 16px;
    color: #666;
}

.dashboard-alert {
    background-color: #ffcc00;
    padding: 12px;
    border-radius: 6px;
    text-align: center;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: bold;
}

.dashboard-sections {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.dashboard-card {
    display: flex;
    flex-direction: column;
    min-height: 400px; /* Ensures uniform height for all cards */
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.dashboard-card-content {
    flex-grow: 1; /* Allows content to take up available space */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dashboard-action {
    background-color: #FF6700; /* Keep the strong orange */
    color: white;
    padding: 12px 18px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px; /* Slightly rounded corners */
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    display: inline-block;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15); /* Subtle shadow */
	margin-top: auto; 
}

.dashboard-action:hover {
    background-color: #E65C00; /* Darker orange on hover */
    transform: scale(1.05); /* Slightly enlarge on hover */
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2); /* More depth on hover */
}

.dashboard-action a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.dashboard-action:active {
    transform: scale(0.98); /* Slight shrink when clicked */
}


.dashboard-card:hover {
    transform: scale(1.02);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
}

.dashboard-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px; /* Adds space between cards */
    justify-content: space-between;
    align-items: stretch;
    padding: 20px;
}

.dashboard-highlight {
    background: #3c1053;
    color: #fff;
    text-align: center;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.dashboard-table th, .dashboard-table td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.dashboard-table th {
    background: #f4f4f4;
}

.dashboard-list {
    list-style: none;
    padding: 0;
}

.dashboard-list li {
    padding: 8px;
    border-bottom: 1px solid #ddd;
}

.dashboard-cta-button {
    background-color: #ff6600;
    color: white;
    font-size: 18px;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease-in-out, transform 0.2s ease-in-out;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
	animation: pulse 1.5s infinite;
}

.dashboard-cta-button:hover {
    background-color: #e65c00;
    transform: scale(1.05);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3);
}

.section-subtitle1 {
    font-size: 14px;
    color: #666;
    margin-top: -5px;
    margin-bottom: 10px; /* Reduce bottom margin */
    text-align: left;
    line-height: 1.2; /* Ensure consistent spacing */
    min-height: 40px; /* Forces equal height across all cards */
}

.section-subtitle2 {
    font-size: 14px;
    color: white;
    margin-top: -5px;
    margin-bottom: 15px;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .dashboardcontainer {
        padding: 20px;
    }
    
    .dashboard-sections {
        display: flex; /* Use flexbox for a cleaner mobile layout */
        flex-direction: column; /* Stack items on top of each other */
        align-items: center; /* Center align items */
        width: 100%; /* Ensure full width */
        display: block !important; /* Override any existing grid rules */
    }
	
	.dashboard-card {
        width: 90% !important; /* Forces full width */
        max-width: 90% !important; /* Prevents excessive stretching */
        margin: 10px auto; /* Ensures spacing and centering */
        display: block !important;
    }
}

/* User Drop Down when logged in */
.user-menu {
    position: relative;
    display: inline-block;
}

.user-dropdown {
    background-color: #ff6600;
    color: white;
    padding: 10px 15px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

.user-dropdown:hover {
    background-color: #e65c00;
}

.user-dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 150px;
    border-radius: 5px;
    z-index: 1000;
    right: 0; /* Aligns it to the right by default */
    white-space: nowrap;
    overflow: hidden;
}

.user-dropdown-content a {
    display: block;
    color: #333;
    padding: 10px;
    text-decoration: none;
    border-bottom: 1px solid #ddd;
}

.user-dropdown-content a:last-child {
    border-bottom: none;
}

.user-dropdown-content a:hover {
    background-color: #f4f4f4;
}

.user-menu:hover .user-dropdown-content {
    display: block;
}

/* Prevents menu from going off-screen */
.user-menu.open-left .user-dropdown-content {
    left: 0;
    right: auto;
}

.recommended-heading {
    color: white;
}

.recommended-heading i {
    color: white; /* Matches branding */
    margin-right: 10px; /* Space between icon and text */
    font-size: 22px; /* Adjust size */
    vertical-align: middle; /* Aligns neatly with text */
}



@media (max-width: 768px) {
    .dashboardcontainer {
        padding: 20px;
    }

    .dashboard-card {
        padding: 20px;
        margin: 10px; /* Ensures enough spacing between cards */
    }
}

.student-switcher {
    margin-top: 10px;
    text-align: center;
}

.student-switcher label {
    font-weight: bold;
    color: #3c1053;
    margin-right: 5px;
}

.student-switcher select {
    padding: 8px;
    font-size: 16px;
    border: 2px solid #3c1053;
    border-radius: 5px;
    background-color: white;
    color: #3c1053;
    cursor: pointer;
}

.subscription-alert {
    background-color: #FFD700; /* Gold color for a more premium feel */
    color: #000; /* Black text for better contrast */
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    width: 80%; /* Slightly reduce width to center the message */
    margin: 20px auto; /* Center horizontally */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.subscription-alert i {
    font-size: 20px;
}


