/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Glacial Indifference', sans-serif;
}

body {
    background-color: #0a0a1a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0a0a1a;
}

::-webkit-scrollbar-thumb {
    background: #1a3a8f;
    border-radius: 4px;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a3a8f 100%);
    padding: 1rem 2rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo span {
    color: #4a90e2;
}

.auth-buttons {
    display: flex;
    gap: 1rem;
}


.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: 2rem 0;
}

.footer-links a {
    color: #b8c2d8;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4a90e2;
}

.btn {
    padding: 0.6rem 1.2rem;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-outline {
    background: transparent;
    border: 1px solid #4a90e2;
    color: #4a90e2;
}

.btn-outline:hover {
    background: #4a90e2;
    color: #ffffff;
}

.btn-primary {
    background: #4a90e2;
    color: #ffffff;
}

.btn-primary:hover {
    background: #3a7bc8;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -250px;
    width: 250px;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a3a8f 100%);
    z-index: 2000;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .auth-buttons {
    flex-direction: column;
    margin-top: 2rem;
    gap: 1rem;
}

.close-menu-btn {
    align-self: flex-start;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 2rem;
}

/* Hero Section */
.hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a3a 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #4a90e2, #6a5acd);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
    color: #b8c2d8;
}

/* Exam Cards */
.exam-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.exam-card {
    background: rgba(26, 58, 143, 0.2);
    border: 1px solid #1a3a8f;
    border-radius: 10px;
    padding: 2rem;
    width: 300px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.exam-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(26, 58, 143, 0.3);
    background: rgba(26, 58, 143, 0.4);
}

.exam-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #4a90e2;
}

.exam-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.exam-card p {
    color: #b8c2d8;
    margin-bottom: 1.5rem;
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background: #0e0e24;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(26, 58, 143, 0.1);
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(26, 58, 143, 0.2);
}

.feature-card i {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #b8c2d8;
}

/* Footer */
footer {
    background: #0a0a1a;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid #1a1a3a;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: #b8c2d8;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #4a90e2;
}

.copyright {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Overlay for mobile menu */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .auth-buttons.desktop {
        display: none;
    }
    .footer-links {
        gap: 1rem;
        font-size: 0.9rem;
    }
    .mobile-menu-btn {
        display: block;
    }

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

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

    .exam-cards {
        flex-direction: column;
        align-items: center;
    }

    .exam-card {
        width: 100%;
        max-width: 350px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

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

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


/* Counsellor Section */
.counsellor-section {
    background: linear-gradient(135deg, #0e0e24 0%, #1a1a3a 100%);
    padding: 5rem 2rem;
    border-top: 1px solid #1a3a8f;
    border-bottom: 1px solid #1a3a8f;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.counsellor-profile {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
    background: rgba(26, 58, 143, 0.1);
    padding: 2rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid #1a3a8f;
}

.counsellor-photo {
    flex: 0 0 300px;
}

.counsellor-photo img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 00px 20px rgb(149, 147, 147); /*rgba(0, 0, 0, 0.2);*/
}

.counsellor-info {
    flex: 1;
}

.counsellor-info h3 {
    font-size: 2rem;
    color: #4a90e2;
    margin-bottom: 0.5rem;
}

.designation {
    color: #b8c2d8;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.bio {
    color: #b8c2d8;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #ffffff;
}

.contact-item i {
    color: #4a90e2;
    font-size: 1.2rem;
}

.counsellor-section .social-links {
    display: flex;
    gap: 1.5rem;
}

.counsellor-section .social-links a {
    color: #b8c2d8;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.counsellor-section .social-links a:hover {
    color: #4a90e2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .counsellor-profile {
        flex-direction: column;
    }
    
    .counsellor-photo {
        flex: 0 0 auto;
        width: 80%;
        max-width: 300px;
    }
    
    .contact-info {
        flex-direction: column;
    }
}

