* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #d52027;
    --secondary-color: #ce5757;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #d52027 0%, #191919 100%);
    --gradient-2: linear-gradient(135deg, #ffd700 0%, #ffffff 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.top-bar {
    background: var(--gradient-1);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-content span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-content span a, .latest-update-section .latest-update-title {
    color: var(--white);
    text-decoration: none;
    /* display: flex; */
    align-items: center;
    gap: 8px;
    animation: colorChange 3s infinite;
}

@keyframes colorChange {
    0% { color: #ffffff; }
    25% { color: #FFD700; }
    50% { color: #FFA500; }
    75% { color: #FFD700; }
    100% { color: #ffffff; }
}

.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 0;
}

.logo h2 {
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 15px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 25px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 30px;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.user-menu {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.user-icon {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    transition: all 0.3s ease;
}

.user-icon i {
    font-size: 24px;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.user-icon:hover {
    background: var(--primary-color);
}

.user-icon:hover i {
    color: var(--white);
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 15px;
    border: 1px solid rgba(0, 102, 204, 0.1);
}

.user-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid var(--white);
}

.user-menu:hover .user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    margin-bottom: 8px;
    background: transparent;
    border: 2px solid transparent;
}

.user-dropdown a:last-child {
    margin-bottom: 0;
}

.user-dropdown a i {
    font-size: 20px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.user-dropdown a:hover {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, rgba(0, 73, 153, 0.1) 100%);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.user-dropdown a:hover i {
    transform: scale(1.1);
}

.btn {
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: #FFD700;
    color: #000;
    border-color: #FFD700;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 16px;
    padding: 14px 40px;
}

.btn-primary:hover {
    background: #FFC700;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 3px solid var(--white);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    padding: 14px 40px;
}

.btn-outline:hover {
    background: var(--white);
    color: #000;
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
    background: #000;
}

.slider-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.slide:nth-child(1) {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%),
                url('images/slider-1.svg');
    background-size: cover;
    background-position: center right;
}

.slide:nth-child(2) {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%),
                url('images/slider-2.svg');
    background-size: cover;
    background-position: center right;
}

.slide:nth-child(3) {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%),
                url('images/slider-3.svg');
    background-size: cover;
    background-position: center right;
}

.slide:nth-child(4) {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%),
                url('images/slider-4.svg');
    background-size: cover;
    background-position: center right;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    opacity: 0;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0;
    padding-left: 60px;
    text-align: left;
    animation: slideInUp 0.8s ease-out;
}

.slide.active .slide-content {
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: 64px;
    font-weight: 900;
    color: #FFD700;
    margin-bottom: 15px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.slide-subtitle {
    font-size: 32px;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-style: italic;
    letter-spacing: 1px;
}

.slide-description {
    font-size: 22px;
    color: #FFD700;
    margin-bottom: 35px;
    line-height: 1.5;
    font-weight: 600;
    max-width: 700px;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: var(--shadow-md);
}

.slider-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--primary-color);
    width: 40px;
    border-radius: 6px;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.courses-section {
    padding: 80px 0;
    background: var(--white);
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.course-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.course-icon {
    margin: 0px auto;
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
    color: var(--white);
}

.course-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.course-features {
    list-style: none;
    margin-bottom: 20px;
}

.course-features li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
}

.course-features i {
    color: var(--primary-color);
    margin-top: 4px;
}

.course-description {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 15px;
}

.why-choose {
    padding: 80px 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.results-section {
    padding: 80px 0;
    background: var(--white);
}

.results-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--gradient-2);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.stat-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.stat-card p {
    color: var(--text-light);
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

.testimonials-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.quote-icon {
    font-size: 36px;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    font-size: 48px;
    color: var(--primary-color);
}

.author-info h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
}

.admission-process {
    padding: 80px 0;
    background: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.step-card {
    flex: 1;
    min-width: 200px;
    background: var(--gradient-2);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-card p {
    font-size: 14px;
    color: var(--text-light);
}

.step-arrow {
    font-size: 24px;
    color: var(--primary-color);
}

.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.4fr 1.4fr 1.3fr 1.8fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.footer-section h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-section p {
    color: #aaa;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-section ul li a::before {
    content: '›';
    color: var(--primary-color);
    font-size: 16px;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px !important;
}

.contact-info li::before {
    display: none;
}

.contact-info i {
    margin-top: 3px;
    color: var(--primary-color);
    flex-shrink: 0;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-buttons .btn-secondary {
        display: none;
    }
}

@media (max-width: 768px) {
    .top-bar-content {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 130px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
        gap: 0;
        max-height: calc(100vh - 130px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: 15px 0;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 10px;
        display: none;
        background: var(--bg-light);
    }
    
    .dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle {
        justify-content: center;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }
    
    .nav-buttons {
        display: none;
    }
    
    .user-menu {
        display: none;
    }
    
    .hero-slider {
        height: 450px;
    }
    
    .slide-content {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .slide-title {
        font-size: 36px;
        letter-spacing: 1px;
    }
    
    .slide-subtitle {
        font-size: 20px;
    }
    
    .slide-description {
        font-size: 16px;
        max-width: 100%;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .prev-btn {
        left: 15px;
    }
    
    .next-btn {
        right: 15px;
    }
    
    .slider-dots {
        bottom: 20px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .step-arrow {
        display: none;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .step-card {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .footer-content > .footer-section:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }
    
    .slide-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .slide-title {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .slide-subtitle {
        font-size: 18px;
    }
    
    .slide-description {
        font-size: 14px;
    }
    
    .slide-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .slide-buttons .btn {
        width: auto;
        min-width: 200px;
    }
    
    .slider-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .courses-section,
    .why-choose,
    .results-section,
    .testimonials-section,
    .admission-process {
        padding: 50px 0;
    }
}

.page-hero {
    background: var(--gradient-1);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.page-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-hero-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.program-overview,
.who-should-join,
.course-structure,
.subjects-covered,
.why-foundation,
.results-overview,
.year-wise-results,
.toppers-gallery,
.faculty-overview,
.faculty-profiles,
.teaching-philosophy,
.admission-overview,
.admission-process-detailed,
.counseling-benefits,
.scholarship-section,
.inquiry-form-section,
.contact-details-section,
.contact-info-section,
.map-section {
    padding: 60px 0;
}

.program-overview {
    background: var(--bg-light);
}

.overview-text {
    text-align: center;
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
}

.feature-item {
    display: flex;
    gap: 25px;
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.feature-icon-box {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: var(--gradient-2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--primary-color);
}

.feature-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.structure-grid,
.class-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.structure-card,
.class-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.structure-card h3,
.class-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.structure-card ul,
.class-card ul {
    list-style: none;
}

.structure-card ul li,
.class-card ul li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
}

.structure-card ul li i,
.class-card ul li i {
    color: var(--primary-color);
    margin-top: 4px;
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.subject-card {
    background: var(--gradient-2);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.subject-icon {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.subject-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.subject-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.benefit-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.benefit-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    font-size: 14px;
}

.cta-section {
    background: var(--gradient-1);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.highlight-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 20px;
}

.highlight-card i {
    font-size: 36px;
    color: var(--primary-color);
}

.highlight-card h3 {
    font-size: 18px;
    color: var(--text-dark);
}

.results-year {
    margin-bottom: 50px;
}

.year-heading {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.results-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.result-stat {
    background: var(--gradient-2);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 2px solid var(--primary-color);
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.toppers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.topper-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: all 0.3s ease;
}

.topper-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.topper-image {
    width: 100px;
    height: 100px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 48px;
    color: var(--primary-color);
}

.topper-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.topper-rank {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.topper-course {
    font-size: 14px;
    color: var(--text-light);
}

.faculty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.faculty-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.faculty-image {
    width: 120px;
    height: 120px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 60px;
    color: var(--primary-color);
}

.faculty-card h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.faculty-subject,
.faculty-experience,
.faculty-qualification {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.faculty-subject {
    color: var(--primary-color);
    font-weight: 600;
}

.faculty-highlights {
    list-style: none;
    margin-top: 20px;
    text-align: left;
}

.faculty-highlights li {
    padding: 8px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.faculty-highlights i {
    color: var(--primary-color);
    margin-top: 4px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.philosophy-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: var(--primary-color);
}

.philosophy-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.philosophy-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.process-detailed {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 50px;
}

.process-step-detailed {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-icon-large {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.step-content-detailed h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.step-content-detailed p {
    color: var(--text-light);
    line-height: 1.8;
}

.scholarship-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.scholarship-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    border: 2px solid var(--primary-color);
}

.scholarship-percentage {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.scholarship-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.scholarship-card p {
    color: var(--text-light);
}

.scholarship-note {
    text-align: center;
    margin-top: 30px;
    color: var(--text-light);
    font-size: 14px;
    font-style: italic;
}

.form-container {
    max-width: 600px;
    margin: 50px auto 0;
}

.inquiry-form,
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.contact-card {
    background: var(--white);
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
}

.contact-grid-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info-box {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-info-box h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-info-box > p {
    color: var(--text-light);
    margin-bottom: 30px;
    line-height: 1.7;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-color);
}

.contact-item-content h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.contact-item-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.social-links-contact h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.social-icons-large {
    display: flex;
    gap: 15px;
}

.social-icons-large a {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    font-size: 24px;
    transition: all 0.3s ease;
}

.social-icons-large a:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-form-box {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.contact-form-box h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.map-placeholder {
    background: var(--bg-light);
    padding: 100px 20px;
    border-radius: 12px;
    text-align: center;
    margin-top: 30px;
    border: 2px dashed #ccc;
}

.map-placeholder i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 18px;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 32px;
    }
    
    .page-hero-subtitle {
        font-size: 16px;
    }
    
    .feature-item {
        flex-direction: column;
    }
    
    .process-step-detailed {
        flex-direction: column;
        text-align: center;
    }
    
    .step-icon-large {
        margin: 0 auto;
    }
    
    .contact-grid-main {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Latest Update Section */
.latest-update-section {
    background: linear-gradient(135deg, #7d1105 0%, #191919 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.latest-update-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(0, 0, 0, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.latest-update-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.update-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.update-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.update-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.update-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.update-card-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.update-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.update-card:hover .update-card-image img {
    transform: scale(1.05);
}

.update-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.update-badge {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-block;
    width: fit-content;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.update-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.3;
}

.update-desc {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
    flex: 1;
}

.update-details {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.update-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.update-detail-item i {
    font-size: 20px;
    color: var(--primary-color);
    margin-top: 3px;
}

.update-detail-item strong {
    display: block;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 3px;
}

.update-detail-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.update-btn {
    background: var(--gradient-1);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.update-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
}

.update-card.update-card-poster {
    padding: 10px 10px 0;
}

.update-poster-img {
    border-radius: 8px;
    overflow: hidden;
}

.update-poster-img img {
    width: 100%;
    height: auto;
    display: block;
}

.update-btn.update-btn-poster {
    display: block;
    margin: 10px -10px 0;
    width: calc(100% + 20px);
    padding: 18px 30px;
    border-radius: 0;
    font-size: 15px;
    letter-spacing: 2px;
    text-align: center;
    box-sizing: border-box;
}

.update-btn.update-btn-poster:hover {
    transform: none;
    box-shadow: none;
    background: linear-gradient(135deg, #b01a1f 0%, #000000 100%);
}

@media (max-width: 1024px) {
    .update-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .latest-update-section {
        padding: 40px 0;
    }
    
    .latest-update-title {
        font-size: 32px;
        margin-bottom: 30px;
        letter-spacing: 2px;
    }
    
    .update-cards-grid {
        gap: 30px;
    }
    
    .update-card-image {
        height: 200px;
    }
    
    .update-card-content {
        padding: 25px 20px;
    }
    
    .update-title {
        font-size: 20px;
    }
    
    .update-details {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .latest-update-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .update-card-image {
        height: 180px;
    }
    
    .update-card-content {
        padding: 20px 15px;
    }
    
    .update-title {
        font-size: 18px;
    }
    
    .update-desc {
        font-size: 14px;
    }
    
    .update-detail-item {
        flex-direction: row;
    }
}

/* Top Performers Carousel Section */
.top-performers-section {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.performers-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 50px;
}

.performers-text {
    flex: 1;
}

.performers-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: center;
}

.highlight-text {
    color: var(--primary-color);
}

.performers-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin: 0;
}

.carousel-controls {
    display: flex;
    gap: 15px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.performers-carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.performers-carousel {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
    padding: 20px 0;
}

.performer-card {
    flex: 0 0 280px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.performer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.performer-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    background: var(--bg-light);
    position: relative;
}

.performer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.performer-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.performer-placeholder i {
    font-size: 80px;
    color: #ccc;
}

.performer-rank {
    position: absolute;
    top: 260px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 24px;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 102, 204, 0.4);
    z-index: 2;
}

.performer-name {
    text-align: center;
    padding: 35px 20px 25px;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
    transition: opacity 0.3s ease;
}

.performer-details {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 30px 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 3;
}

.performer-card:hover .performer-details {
    transform: translateY(0);
}

.performer-card:hover .performer-image {
    transform: translateY(-25%);
}

.performer-card:hover .performer-name {
    opacity: 0;
}

.details-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 20px 0;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
}

.details-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.details-item:last-child {
    border-bottom: none;
}

.details-label {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.details-value {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
}

/* Results Listing Page Styles */
.results-listing-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.results-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Filters Sidebar */
.results-filters {
    background: var(--white);
    border-radius: 12px;
    padding: 25px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 100px;
}

.filters-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.filter-group {
    margin-bottom: 20px;
}

.filter-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: color 0.3s ease;
}

.filter-toggle:hover {
    color: var(--primary-color);
}

.filter-toggle i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.filter-toggle.active i {
    transform: rotate(180deg);
}

.filter-options {
    padding: 10px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-option {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.filter-option:hover {
    color: var(--primary-color);
}

.filter-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.filter-option span {
    flex: 1;
}

/* Results Content */
.results-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.result-card {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease;
}

.result-card:hover {
    box-shadow: var(--shadow-lg);
}

.result-header {
    text-align: center;
    margin-bottom: 35px;
}

.result-exam-title {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.result-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin: 0;
}

.result-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
}

.result-stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Toppers Showcase */
.toppers-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.topper-card-new {
    background: var(--white);
    border: 2px solid var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.topper-card-new:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.15);
}

.topper-image-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-light);
}

.topper-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.topper-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.topper-placeholder i {
    font-size: 60px;
    color: #ccc;
}

.topper-rank-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.topper-rank-badge.jee {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%);
    color: var(--white);
}

.topper-info {
    padding: 20px;
    text-align: center;
}

.topper-info h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.topper-info {
    transition: opacity 0.3s ease;
}

.topper-info p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

.topper-details-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 25px 15px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: 3;
}

.topper-card-new:hover .topper-details-overlay {
    transform: translateY(0);
}

.topper-card-new:hover .topper-image-wrapper {
    transform: translateY(-25%);
}

.topper-card-new:hover .topper-info {
    opacity: 0;
}

.overlay-name {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    margin: 0 0 15px 0;
    text-align: center;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 12px;
}

.overlay-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay-item:last-child {
    border-bottom: none;
}

.overlay-label {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.overlay-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
}

/* Responsive Styles for Results Page */
@media (max-width: 1024px) {
    .performers-title {
        font-size: 36px;
    }
    
    .performers-header {
        flex-direction: column;
        gap: 25px;
    }
    
    .results-layout {
        grid-template-columns: 1fr;
    }
    
    .results-filters {
        position: static;
    }
    
    .toppers-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .result-stats {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .top-performers-section {
        padding: 50px 0;
    }
    
    .performers-title {
        font-size: 28px;
    }
    
    .performers-subtitle {
        font-size: 16px;
    }
    
    .carousel-controls {
        display: none;
    }
    
    .performers-carousel {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }
    
    .performer-card {
        scroll-snap-align: start;
    }
    
    .results-listing-section {
        padding: 40px 0;
    }
    
    .result-card {
        padding: 25px;
    }
    
    .result-exam-title {
        font-size: 28px;
    }
    
    .result-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .toppers-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .topper-image-wrapper {
        height: 280px;
    }
}

@media (max-width: 480px) {
    .result-card {
        padding: 20px;
    }
    
    .result-exam-title {
        font-size: 24px;
    }
    
    .result-header {
        margin-bottom: 25px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .stat-label {
        font-size: 12px;
    }
}
