:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;
    --secondary: #7e22ce;
    --dark: #1e293b;
    --gray: #64748b;
    --light-gray: #f1f5f9;
    --white: #ffffff;
    --success: #10b981;
    --border: #e2e8f0;
    --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



body {
    font-family: "Exo 2", Sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
}


@media only screen and (max-width: 768px) {
    body {
        overflow-x: hidden;
    }
}


/* Improved Navbar */
.navbar {
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.navbar-brand i {
    margin-right: 0.5rem;
    font-size: 1.75rem;
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: calc(100% - 2rem);
}

.btn-primary-custom {
    background: var(--primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
}

.btn-primary-custom:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
    color: honeydew;
}

.btn-outline-custom {
    border: 1.5px solid var(--primary);
    color: var(--primary);
    font-weight: 600;
    padding: 0.75rem 1.75rem;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: transparent;
}

.btn-outline-custom:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

/* Enhanced Hero Section */
.hero-section {
    padding: 2rem 0 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-section .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-section .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(37, 99, 235, 0.2);
    z-index: -1;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 2rem;
}

.hero-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow);
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--success);
    margin-right: 0.5rem;
}

/* Enhanced Stats Section */
.stats-section {
    padding: 4rem 0;
    background: var(--white);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-value {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

/* Enhanced Section Headers */
.section-header {
    margin-bottom: 2rem;
    position: relative;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Enhanced Cards */
.card-clean {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    background: var(--white);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.card-clean::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.card-clean:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
    transform: translateY(-8px);
}

.card-clean:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.card-clean:hover .card-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.card-text {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* Enhanced Course Cards */
.course-card-home {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    background: var(--white);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.course-card:hover::before {
    transform: scaleX(1);
}

.course-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
}

.price-period {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 500;
}

/* Enhanced Testimonials */
.testimonial-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    background: var(--white);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.5rem;
    left: 2rem;
    font-size: 4rem;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.author-role {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Enhanced Contact Form */
.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control,
.form-select {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 0.85rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Enhanced Footer */
footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 5rem 0 2rem;
    margin-top: 2rem;
}

.footer-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary);
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 0.85rem;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.footer-link i {
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 4rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* Utilities */
.section-padding {
    padding: 2rem 0;
}

.bg-light-custom {
    background: var(--light-gray);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.75rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .stat-value {
        font-size: 2.5rem;
    }

    .hero-section::before {
        display: none;
    }
}

/* Enhanced Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-spinner {
    width: 60px;
    height: 60px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loader-text {
    margin-top: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Enhanced Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* Enhanced Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible,
.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger Animation */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    color: var(--gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.feature-list li i {
    color: var(--success);
    margin-right: 0.75rem;
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 0;
    border-radius: 20px;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-light-custom {
    background: white;
    color: var(--primary);
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    border: none;
    transition: all 0.3s ease;
}

.btn-light-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-ripple {
    position: relative;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}


.btn {
    position: relative;
}

.scroll-to-top::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.scroll-to-top:hover::after {
    width: 300px;
    height: 300px;
}


/* Auth Section Styles */
.auth-section {
    padding: 2rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
}

.auth-container {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    position: relative;
}

.auth-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
}

.auth-header h1 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.auth-header p {
    opacity: 0.9;
    font-size: 0.95rem;
}

.auth-body {
    padding: 2.5rem 2rem;
}

.auth-tabs {
    display: flex;
    background: var(--light-gray);
    border-radius: 12px;
    padding: 4px;
    margin-bottom: 2rem;
    position: relative;
}

.auth-tab {
    flex: 1;
    text-align: center;
    padding: 0.75rem 1rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray);
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    z-index: 1;
}

.auth-tab.active {
    color: var(--primary);
}

.auth-tab-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: calc(50% - 4px);
    height: calc(100% - 8px);
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.auth-tab-slider.signup {
    transform: translateX(100%);
}

.auth-form {
    display: none;
}

.auth-form.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: block;
}

.form-control {
    border: 1.5px solid var(--border);
    border-radius: 10px;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.password-input {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--gray);
    cursor: pointer;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.remember-me input {
    width: 16px;
    height: 16px;
}

.forgot-password {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-auth-primary {
    background: var(--primary);
    border: none;
    color: white;
    font-weight: 600;
    padding: 0.85rem 1.5rem;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.3);
    margin-bottom: 1.5rem;
}

.btn-auth-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.4);
}

.divider {
    text-align: center;
    position: relative;
    margin: 1.5rem 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--border);
    z-index: 1;
}

.divider span {
    background: var(--white);
    padding: 0 1rem;
    position: relative;
    z-index: 2;
}

.social-login {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    background: var(--white);
    color: var(--dark);
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.social-btn:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-btn.google {
    color: #db4437;
}

.social-btn.facebook {
    color: #4267B2;
}

.auth-footer {
    text-align: center;
    font-size: 0.9rem;
    color: var(--gray);
}

.auth-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* Hero Section for Courses */
.courses-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.courses-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
}

.courses-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
}

.courses-hero .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.courses-hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(37, 99, 235, 0.2);
    z-index: -1;
}

.courses-hero .lead {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Filter Section */
.filter-section {
    background: var(--white);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

.filter-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    align-items: center;
}

.filter-group {
    display: flex;
    flex-direction: column;
    min-width: 180px;
}

.filter-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.filter-select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: var(--white);
    cursor: pointer;
}

.filter-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 300px;
}

.search-input {
    width: 100%;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.filter-actions {
    display: flex;
    gap: 1rem;
}

/* Courses Section */
.courses-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.courses-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.courses-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
}

.results-count {
    color: var(--gray);
    font-size: 0.95rem;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.course-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;

    transform: translateY(20px);
}

.course-card.animate-in {
    animation: cardSlideUp 0.6s ease forwards;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.course-image {
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.05);
}

.course-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    align-self: flex-start;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.course-card:hover .course-badge {
    transform: scale(1);
    background: var(--primary);
    color: white;
}

.course-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.course-description {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex: 1;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--gray);
}

.course-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.course-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark);
}

.price-period {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    grid-column: 1 / -1;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease 0.3s forwards;
}

.empty-state i {
    font-size: 4rem;
    color: var(--border);
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.empty-state p {
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Enrollment Hero Section */
.enroll-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.enroll-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
}

.enroll-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
}

.enroll-hero .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.enroll-hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(37, 99, 235, 0.2);
    z-index: -1;
}

.enroll-hero .lead {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Enrollment Process Section */
.enroll-process {
    padding: 4rem 0;
    background: var(--white);
}

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

.process-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--border);
    z-index: 1;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.process-step.active .step-number {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: scale(1.1);
}

.process-step.completed .step-number {
    background: var(--success);
    border-color: var(--success);
    color: white;
}

.step-label {
    font-weight: 600;
    color: var(--gray);
    font-size: 0.9rem;
    text-align: center;
}

.process-step.active .step-label {
    color: var(--primary);
}

.process-step.completed .step-label {
    color: var(--success);
}

.process-content {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 2.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.process-content.active {
    opacity: 1;
    transform: translateY(0);
}

.form-section {
    display: none;
}

.form-section.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: block;
}

.form-control,
.form-select {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.form-text {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

.course-summary {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.course-summary h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.1rem;
}

.payment-methods {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.payment-method {
    flex: 1;
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.payment-method:hover {
    border-color: var(--primary);
}

.payment-method.selected {
    border-color: var(--primary);
    background: var(--primary-light);
}

.payment-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--gray);
}

.payment-method.selected .payment-icon {
    color: var(--primary);
}

.payment-label {
    font-weight: 600;
    color: var(--dark);
}

.card-element {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0.85rem 1.25rem;
    margin-bottom: 1.5rem;
}

.process-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

/* Success Section */
.success-section {
    text-align: center;
    padding: 4rem 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    display: none;
}

.success-section.active {
    opacity: 1;
    transform: translateY(0);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.success-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
}

.success-text {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* About Hero Section */
.about-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
}

.about-hero .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.about-hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(37, 99, 235, 0.2);
    z-index: -1;
}

.about-hero .lead {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Section Common Styles */
.section-padding {
    padding: 2rem 0;
}

.section-header {
    margin-bottom: 2rem;
    position: relative;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Our Story Section */
.our-story {
    background: var(--white);
}

.story-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.story-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--primary-light);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 3rem;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -40px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -40px;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.timeline-description {
    color: var(--gray);
    line-height: 1.7;
}

/* Mission & Values Section */
.mission-values {
    background: var(--light-gray);
}

.mission-card {
    background: var(--white);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.mission-card:hover .mission-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.mission-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.mission-text {
    color: var(--gray);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    background: var(--white);
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-content {
    padding: 1.5rem;
}

.team-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    gap: 0.75rem;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light-gray);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

/* Achievements Section */
.achievements-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 0;
}

.achievement-item {
    text-align: center;
    padding: 1.5rem;
}

.achievement-value {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.achievement-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* CTA Section */
.cta-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-light-custom {
    background: white;
    color: var(--primary);
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    border: none;
    transition: all 0.3s ease;
}

.btn-light-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Hero Section */
.contact-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
}

.contact-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
}

.contact-hero .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.contact-hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(37, 99, 235, 0.2);
    z-index: -1;
}

.contact-hero .lead {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: var(--white);
}

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

.section-header {
    margin-bottom: 2rem;
    position: relative;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Contact Methods */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 1.75rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.contact-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.contact-info {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-action {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.contact-action:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

/* Contact Form & Info */
.contact-form-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 5rem;
}

.form-container {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: block;
}

.form-control,
.form-select,
.form-textarea {
    border: 1.5px solid var(--border);
    border-radius: 8px;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    width: 100%;
}

.form-control:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    outline: none;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.info-container {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 2.5rem;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.info-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.info-content {
    flex: 1;
}

.info-heading {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.info-text {
    color: var(--gray);
    line-height: 1.6;
}

/* FAQ Section */
.faq-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

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

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-question {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--primary-light);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

/* Map Section */
.map-section {
    padding: 0 0 5rem;
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    height: 400px;
    background: var(--light-gray);
    position: relative;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    color: var(--dark);
}

.map-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.map-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 0;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-light-custom {
    background: white;
    color: var(--primary);
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    border: none;
    transition: all 0.3s ease;
}

.btn-light-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Privacy Hero Section */
.privacy-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
}

.privacy-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
}

.privacy-hero .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.privacy-hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(37, 99, 235, 0.2);
    z-index: -1;
}

.privacy-hero .lead {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Privacy Content Section */
.privacy-content {
    padding: 5rem 0;
    background: var(--white);
}

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

.last-updated {
    background: var(--primary-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.last-updated i {
    font-size: 1.5rem;
    color: var(--primary);
}

.last-updated strong {
    color: var(--primary);
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

.section-header {
    margin-bottom: 2rem;
    position: relative;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.privacy-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

.privacy-text {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.privacy-list {
    list-style-type: none;
    padding-left: 0;
}

.privacy-list li {
    padding: 0.75rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 2rem;
}

.privacy-list li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

.info-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary);
}

.info-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--gray);
    margin-bottom: 0;
}

.table-of-contents {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.toc-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toc-title i {
    color: var(--primary);
}

.toc-list {
    list-style-type: none;
    padding-left: 0;
}

.toc-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.toc-list li:last-child {
    border-bottom: none;
}

.toc-list a {
    color: var(--gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.toc-list a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.toc-list a i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-light);
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    background: var(--light-gray);
    padding: 5rem 0;
}

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

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border);
}

.faq-question {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--primary-light);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 500px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 5rem 0;
}

.cta-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.btn-light-custom {
    background: white;
    color: var(--primary);
    font-weight: 700;
    padding: 0.85rem 2rem;
    border-radius: 10px;
    border: none;
    transition: all 0.3s ease;
}

.btn-light-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Terms Hero Section */
.terms-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.terms-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
}

.terms-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
}

.terms-hero .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.terms-hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(37, 99, 235, 0.2);
    z-index: -1;
}

.terms-hero .lead {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Terms Content Section */
.terms-content {
    padding: 5rem 0;
    background: var(--white);
}

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

.last-updated {
    background: var(--primary-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.last-updated i {
    font-size: 1.5rem;
    color: var(--primary);
}

.last-updated strong {
    color: var(--primary);
}

.terms-section {
    margin-bottom: 3rem;
}

.terms-section:last-child {
    margin-bottom: 0;
}

.section-header {
    margin-bottom: 2rem;
    position: relative;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.terms-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

.terms-text {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.terms-list {
    list-style-type: none;
    padding-left: 0;
}

.terms-list li {
    padding: 0.75rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 2rem;
}

.terms-list li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

.info-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary);
}

.info-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--gray);
    margin-bottom: 0;
}

.table-of-contents {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.toc-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.toc-title i {
    color: var(--primary);
}

.toc-list {
    list-style-type: none;
    padding-left: 0;
}

.toc-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border);
}

.toc-list li:last-child {
    border-bottom: none;
}

.toc-list a {
    color: var(--gray);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.toc-list a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.toc-list a i {
    color: var(--primary);
    font-size: 0.8rem;
}

/* Quick Actions */
.quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-light);
    color: var(--primary);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.action-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Help Hero Section */
.help-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.help-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0) 70%);
    border-radius: 50%;
}

.help-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
}

.help-hero .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.help-hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(37, 99, 235, 0.2);
    z-index: -1;
}

.help-hero .lead {
    font-size: 1.2rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 2rem;
}

/* Search Section */
.search-section {
    padding: 2rem 0;
    background: var(--white);
}

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

.search-box {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-input {
    width: 100%;
    padding: 1.25rem 1.5rem 1.25rem 3rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.search-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
}

.search-suggestions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.suggestion-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.suggestion-tag:hover {
    background: var(--primary);
    color: white;
}

/* Help Categories */
.help-categories {
    padding: 4rem 0;
    background: var(--light-gray);
}

.section-header {
    margin-bottom: 2rem;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: auto;
}

.category-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--primary);
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.category-desc {
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.category-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.category-link:hover {
    gap: 0.75rem;
}

/* Popular Articles */
.popular-articles {
    padding: 5rem 0;
    background: var(--white);
}

.article-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.article-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}

.article-badge {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.article-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.article-excerpt {
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--gray);
}

.article-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Contact Options */
.contact-options {
    padding: 5rem 0;
    background: var(--light-gray);
}

.contact-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--primary);
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.contact-desc {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.contact-info {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.contact-info strong {
    color: var(--dark);
}

/* Resources Section */
.resources-section {
    padding: 5rem 0;
    background: var(--white);
}

.resource-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.resource-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.resource-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.resource-desc {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* NEET Hero Section */
.neet-hero {
    padding: 7rem 0 5rem;
    background: linear-gradient(135deg, #0f766e 0%, #134e4a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.neet-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.neet-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.neet-hero .highlight {
    color: #fbbf24;
    position: relative;
    display: inline-block;
}

.neet-hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(251, 191, 36, 0.3);
    z-index: -1;
}

.neet-hero .lead {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* NEET Info Section */
.neet-info {
    padding: 5rem 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 2rem;
    position: relative;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: auto;
}

.neet-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.neet-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.neet-card-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--primary);
}

.neet-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.neet-card-desc {
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.neet-card-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.neet-card-list li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.neet-card-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Program Features */
.program-features {
    padding: 5rem 0;
    background: var(--light-gray);
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-desc {
    color: var(--gray);
}

/* Course Structure */
.course-structure {
    padding: 5rem 0;
    background: var(--white);
}

.subject-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary);
    height: 100%;
}

.subject-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.subject-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
}

.subject-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.subject-topics {
    list-style-type: none;
    padding-left: 0;
}

.subject-topics li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.subject-topics li::before {
    content: '•';
    color: var(--secondary);
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

/* Batch Schedule */
.batch-schedule {
    padding: 5rem 0;
    background: var(--light-gray);
}

.schedule-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.schedule-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.schedule-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.schedule-desc {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.schedule-features {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.schedule-features li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.schedule-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.schedule-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.schedule-period {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Faculty Section */
.faculty-section {
    padding: 5rem 0;
    background: var(--white);
}

.faculty-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    text-align: center;
}

.faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.faculty-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--secondary-light);
}

.faculty-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.faculty-subject {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.faculty-exp {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.faculty-desc {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Success Stories */
.success-stories {
    padding: 5rem 0;
    background: var(--light-gray);
}

.success-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.success-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
}

.success-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--secondary-light);
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    line-height: 1;
    z-index: 0;
}

.success-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.success-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.success-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.success-details p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.success-rank {
    display: inline-block;
    background: #2c5c8a;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* Refund Content Section */
.refund-content {
    padding: 5rem 0;
    background: var(--white);
}

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

.last-updated {
    background: var(--primary-light);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.last-updated i {
    font-size: 1.5rem;
    color: var(--primary);
}

.last-updated strong {
    color: var(--primary);
}

.refund-section {
    margin-bottom: 3rem;
}

.refund-section:last-child {
    margin-bottom: 0;
}

.section-header {
    margin-bottom: 2rem;
    position: relative;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.refund-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-light);
}

.refund-text {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.refund-list {
    list-style-type: none;
    padding-left: 0;
}

.refund-list li {
    padding: 0.75rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 2rem;
}

.refund-list li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

.info-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    border-left: 4px solid var(--primary);
}

.warning-card {
    background: #fef3c7;
    border-left: 4px solid var(--warning);
}

.success-card {
    background: #d1fae5;
    border-left: 4px solid var(--success);
}

.danger-card {
    background: #fee2e2;
    border-left: 4px solid var(--danger);
}

.info-card h5 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.info-card p {
    color: var(--gray);
    margin-bottom: 0;
}

.table-of-contents {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 3rem;
}

/* JEE Hero Section */
.jee-hero {
    padding: 7rem 0 5rem;
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.jee-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
}

.jee-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.jee-hero .highlight {
    color: #fbbf24;
    position: relative;
    display: inline-block;
}

.jee-hero .highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(251, 191, 36, 0.3);
    z-index: -1;
}

.jee-hero .lead {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.7;
    font-weight: 400;
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* JEE Info Section */
.jee-info {
    padding: 5rem 0;
    background: var(--white);
}

.section-header {
    margin-bottom: 2rem;
    position: relative;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 600px;
    margin: auto;
}

.jee-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.jee-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.jee-card-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    color: var(--primary);
}

.jee-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.jee-card-desc {
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.jee-card-list {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.jee-card-list li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.jee-card-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Program Features */
.program-features {
    padding: 5rem 0;
    background: var(--light-gray);
}

.feature-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: var(--primary);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-desc {
    color: var(--gray);
}

/* Course Structure */
.course-structure {
    padding: 5rem 0;
    background: var(--white);
}

.subject-card {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
    height: 100%;
}

.subject-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.subject-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.subject-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.subject-topics {
    list-style-type: none;
    padding-left: 0;
}

.subject-topics li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.subject-topics li::before {
    content: '•';
    color: var(--primary);
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

/* Batch Schedule */
.batch-schedule {
    padding: 5rem 0;
    background: var(--light-gray);
}

.schedule-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.schedule-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.schedule-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.schedule-desc {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.schedule-features {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.schedule-features li {
    padding: 0.5rem 0;
    color: var(--gray);
    position: relative;
    padding-left: 1.5rem;
}

.schedule-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.schedule-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.schedule-period {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* Faculty Section */
.faculty-section {
    padding: 5rem 0;
    background: var(--white);
}

.faculty-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    text-align: center;
}

.faculty-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.faculty-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary-light);
}

.faculty-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.faculty-subject {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.faculty-exp {
    color: var(--gray);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.faculty-desc {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Success Stories */
.success-stories {
    padding: 5rem 0;
    background: var(--light-gray);
}

.success-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    border: 1px solid var(--border);
    height: 100%;
    position: relative;
}

.success-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.success-quote {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 1.5rem;
    position: relative;
}

.success-quote::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-light);
    position: absolute;
    top: -1.5rem;
    left: -1rem;
    line-height: 1;
    z-index: 0;
}

.success-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.success-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.success-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.success-details p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.success-rank {
    display: inline-block;
    background: #2c5c8a;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 0.5rem;
    background: #2c5c8a;
}



/* UPSC-specific styling */
.upsc-hero {
    background: #2c5c8a;
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.upsc-hero .highlight {
    color: #ffcc00;
}

.upsc-hero .hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.upsc-hero .hero-stat {
    text-align: center;
}

.upsc-hero .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.upsc-hero .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.upsc-info {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.upsc-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.upsc-card:hover {
    transform: translateY(-5px);
}

.upsc-card-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.upsc-card-icon i {
    color: white;
    font-size: 1.8rem;
}

.upsc-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a3a5f;
}

.upsc-card-desc {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.upsc-card-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.upsc-card-list li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.upsc-card-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5c8a;
    font-weight: bold;
}

.program-features {
    padding: 80px 0;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    color: white;
    font-size: 1.8rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a3a5f;
}

.feature-desc {
    color: #666;
    line-height: 1.6;
}

.course-structure {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.subject-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

.subject-card:hover {
    transform: translateY(-5px);
}

.subject-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.subject-icon i {
    color: white;
    font-size: 2rem;
}

.subject-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a3a5f;
}

.subject-topics {
    list-style: none;
    padding: 0;
    text-align: left;
}

.subject-topics li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    position: relative;
    padding-left: 25px;
}

.subject-topics li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5c8a;
    font-weight: bold;
    font-size: 1.2rem;
}

.subject-topics li:last-child {
    border-bottom: none;
}

.batch-schedule {
    padding: 80px 0;
}

.schedule-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    position: relative;
    transition: transform 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-5px);
}

.schedule-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: #ffcc00;
    color: #1a3a5f;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.schedule-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #1a3a5f;
}

.schedule-desc {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.schedule-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.schedule-features li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
}

.schedule-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5c8a;
    font-weight: bold;
}

.schedule-price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a3a5f;
    margin-bottom: 5px;
}

.schedule-period {
    color: #666;
    margin-bottom: 20px;
}

.faculty-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faculty-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    text-align: center;
    transition: transform 0.3s ease;
}

.faculty-card:hover {
    transform: translateY(-5px);
}

.faculty-img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 5px solid #f0f0f0;
}

.faculty-name {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a3a5f;
}

.faculty-subject {
    color: #2c5c8a;
    font-weight: 500;
    margin-bottom: 5px;
}

.faculty-exp {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

.faculty-desc {
    color: #666;
    line-height: 1.6;
}

.success-stories {
    padding: 80px 0;
}

.success-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.success-quote {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
    padding-left: 20px;
}

.success-quote:before {
    content: "";
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 3rem;
    color: #2c5c8a;
    font-family: Georgia, serif;
}

.success-info {
    display: flex;
    align-items: center;
}

.success-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.success-details h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
    color: #1a3a5f;
}

.success-details p {
    margin: 0 0 5px;
    color: #666;
    font-size: 0.9rem;
}

.success-rank {
    color: #fff;
    font-weight: 500;
    font-size: 0.9rem;
    background: #2c5c8a;
}

.cta-section {
    padding: 80px 0;
    background: var(--primary);
    color: white;
}

.cta-card {
    text-align: center;
    padding: 50px 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header {
    margin-bottom: 2rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a3a5f;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.btn-primary-custom {
    background: var(--primary);
    border: none;
    color: white;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 58, 95, 0.3);
}

.btn-outline-custom {
    border: 2px solid #1a3a5f;
    color: #1a3a5f;
    background: transparent;
    padding: 10px 23px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-custom:hover {
    background: #1a3a5f;
    color: white;
}

.btn-light-custom {
    background: white;
    color: #1a3a5f;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-light-custom:hover {

    transform: translateY(-2px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 30px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.upsc-hero .stat-label {
    color: #fff;
}

@media (max-width: 768px) {
    .upsc-hero {
        padding: 80px 0 60px;
    }

    .upsc-hero .hero-stats {
        gap: 20px;
    }

    .upsc-hero .stat-number {
        font-size: 1.6rem;
    }

    .blog-card {
        width: 100% !important;
    }
}

.jee-hero .stat-label {
    color: #fff;
}

.neet-hero .stat-label {
    color: #fff;
}

/* Hero Section */
.blog-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.blog-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.search-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-container input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-container button {
    position: absolute;
    right: 5px;
    top: 5px;
    border: none;
    color: var(--primary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-container button:hover {
    background: #ffd633;
}

/* Blog Content */
.blog-content {
    padding: 80px 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

/* Blog Cards */
.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 0px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
    max-width: 410px;
    margin: 10px;
}

.blog-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 15px;
}

.blog-category {
    display: inline-block;
    background: rgba(26, 58, 95, 0.1);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-card-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
    line-height: 1.4;
}

.blog-card-excerpt {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.blog-meta {
    display: flex;
    align-items: center;
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.blog-meta span {
    margin-right: 10px;
}

.read-more {
    color: #ffffff;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}


.read-more:hover i {
    transform: translateX(5px);
}

/* Featured Post */
.featured-post {
    margin-bottom: 60px;
}

.featured-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;

    transform: translateY(30px);
}

.featured-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.featured-card .row {
    align-items: center;
}

.featured-img {
    height: 400px;
    overflow: hidden;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.featured-card:hover .featured-img img {
    transform: scale(1.05);
}

.featured-content {
    padding: 40px;
}

.featured-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary);
    padding: 5px 15px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.featured-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.3;
}

.featured-excerpt {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Categories */
.categories-section {
    padding: 60px 0;
    background-color: var(--light);
}

.category-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    max-width: 410px;
    margin: 10px;
    transform: translateY(30px);
}

.category-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.category-icon i {
    color: white;
    font-size: 1.8rem;
}

.category-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--dark);
}

.category-count {
    color: var(--gray);
    font-size: 0.9rem;
}

/* Newsletter */
.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
}

.newsletter-card {
    text-align: center;
    padding: 50px 30px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    max-width: 700px;
    margin: 0 auto;

    transform: translateY(30px);
    transition: all 0.5s ease;
}

.newsletter-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.newsletter-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.newsletter-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 50px 0 0 50px;
    font-size: 1rem;
}

.newsletter-form button {

    border: none;
    color: var(--primary);
    padding: 15px 25px;
    border-radius: 0 50px 50px 0;
    font-weight: 600;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #ffd633;
}


/* Apply hover effects to all images */
img {
    transition: transform 0.5s ease, filter 0.5s ease, box-shadow 0.5s ease;
    display: block;
    max-width: 100%;
    height: auto;
}

img:hover {
    transform: rotate(-3deg) scale(1.05);
}

.back-to-login {
    text-align: center;
    margin-top: 20px;
}

.back-to-login a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.back-to-login a:hover {
    text-decoration: underline;
}

.sitemap-section {
    padding: 80px 0 40px;
}

.sitemap-header {
    text-align: center;
    margin-bottom: 60px;
}

.sitemap-category {
    margin-bottom: 40px;
}

.sitemap-category h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #3498db;
}

.sitemap-list {
    list-style: none;
    padding-left: 0;
}

.sitemap-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.sitemap-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.sitemap-list a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s;
}

.sitemap-list a:hover {
    color: #3498db;
}

.sitemap-subcategory {
    margin-top: 15px;
    padding-left: 20px;
}

.sitemap-subcategory li {
    margin-bottom: 8px;
}

.sitemap-subcategory li:before {
    content: "•";
    color: #7f8c8d;
}

.breadcrumb {
    background-color: transparent;
    padding: 15px 0;
    margin-bottom: 0;
}

.sitemap-section .fas {
    color: #2762ea;
}

@media (min-width: 992px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm {
        max-width: 95%;
    }

    .btn-outline-custom {
        padding: 10px 10px;
    }

    .nav-link {
        padding: 0.5rem 0.7rem !important;
    }
}

/* Fix Blog Cards Alignment */
.blog-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 0;
    background: var(--white);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    /* Remove fixed max-width and let Bootstrap handle it */
    max-width: 100%;
    margin: 0;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.blog-card-img {
    height: 220px;
    overflow: hidden;
    width: 100%;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: calc(100% - 220px);
    /* Adjust based on image height */
}

.blog-category {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    align-self: flex-start;
}

.blog-card-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
    flex-grow: 1;
}

.blog-card-excerpt {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--gray);
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-meta i {
    color: var(--primary);
    font-size: 0.8rem;
}