@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/*@import 'bootstrap/dist/css/bootstrap.min.css';*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Rubik:ital,wght@0,300..900;1,300..900&display=swap');



   * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Montserrat", sans-serif;
    }


    @media (max-width: 768px) {
        .banner {

            padding: 10px;

        }
    }

    /* Achievements Section - Premium Design */
    .achievements-section {
        padding: 1rem 2rem;
        background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
        position: relative;
        overflow: hidden;
    }

    /* Animated Background Elements */
    .achievements-section::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -10%;
        width: 80%;
        height: 200%;
        background: radial-gradient(circle, rgba(66, 133, 244, 0.03) 0%, transparent 70%);
        animation: floatBg 20s ease-in-out infinite;
        pointer-events: none;
    }

    @keyframes floatBg {

        0%,
        100% {
            transform: translate(0, 0) rotate(0deg);
        }

        33% {
            transform: translate(-2%, -2%) rotate(1deg);
        }

        66% {
            transform: translate(2%, 2%) rotate(-1deg);
        }
    }

    /* Section Header */
    .section-header {
        text-align: center;
        margin-bottom: 3rem;
        position: relative;
        z-index: 2;
    }

    .section-subtitle {
        display: inline-block;
        font-size: 1rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: #4285f4;
        background: linear-gradient(135deg, rgba(66, 133, 244, 0.1) 0%, rgba(66, 133, 244, 0.05) 100%);
        padding: 0.5rem 1.5rem;
        border-radius: 30px;
        margin-bottom: 1.5rem;
        backdrop-filter: blur(10px);
    }

    .section-title {
        font-size: 3rem;
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    .section-title2 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .title-gradient {
        background: linear-gradient(135deg, #1a237e 0%, #4285f4 50%, #34a853 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .section-description {
        font-size: 1.2rem;
        color: #5f6368;
        max-width: 600px;
        margin: 0 auto 1.5rem;
    }

    .highlight {
        color: #4285f4;
        font-weight: 600;
        position: relative;
        display: inline-block;
    }

    .highlight::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, #4285f4, transparent);
    }

    .title-decoration {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .title-decoration .line {
        width: 50px;
        height: 2px;

        background: linear-gradient(135deg, #1a237e 0%, #4285f4 50%, #34a853 100%);
    }

    .title-decoration i {
        color: #f4ae42;
        font-size: 1.2rem;
        animation: spin 4s linear infinite;
    }

    @keyframes spin {
        from {
            transform: rotate(0deg);
        }

        to {
            transform: rotate(360deg);
        }
    }

    /* Stats Bar */
    .achievement-stats {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        margin-bottom: 3rem;
        padding: 2rem;
        background: white;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        width: auto;
        margin-left: auto;
        margin-right: auto;
        position: relative;
        z-index: 2;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .stat-item {
        text-align: center;
    }

    .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, #1a237e, #4285f4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.5rem;
    }

    .stat-number-1 {
        font-size: 2.5rem;
        font-weight: 700;
        background: linear-gradient(135deg, #1a237e, #4285f4);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 0.5rem;
    }

    .stat-label {
        color: #5f6368;
        font-size: 1rem;
        font-weight: 500;
        text-transform: capitalize;
        letter-spacing: 1px;
    }

    .stat-divider {
        width: 1px;
        height: 40px;
        background: linear-gradient(180deg, transparent, #e0e0e0, transparent);
    }

    /* Filter Tabs */
    .filter-tabs {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-bottom: 3rem;
        flex-wrap: wrap;
    }

    .filter-btn {
        padding: 0.8rem 2rem;
        border: none;
        background: white;
        color: #5f6368;
        font-weight: 600;
        border-radius: 30px;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
        border: 1px solid transparent;
    }

    .filter-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 25px rgba(66, 133, 244, 0.15);
        color: #4285f4;
    }

    .filter-btn.active {
        background: linear-gradient(135deg, #4285f4, #34a853);
        color: white;
        box-shadow: 0 10px 25px rgba(66, 133, 244, 0.3);
    }

    /* Achievements Grid */
    .achievements-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 2rem;
        max-width: 1400px;
        margin: 0 auto;
        position: relative;
        z-index: 2;
    }

    /* Achievement Card */
    .achievement-card-wrapper {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.6s ease forwards;
    }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .achievement-card {
        background: white;
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        height: 100%;
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        position: relative;
    }

    .achievement-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 30px 60px rgba(66, 133, 244, 0.2);
    }

    /* Card Media */
    .card-media {
        position: relative;
        overflow: hidden;
        aspect-ratio: 4/3;
    }

    .main-image {
        width: 100%;
        height: 100%;
        position: relative;
    }

    .main-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

    .achievement-card:hover .main-image img {
        transform: scale(1.1);
    }

    /* Gallery Toggle */
    .gallery-toggle {
        position: absolute;
        bottom: 1rem;
        right: 1rem;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(10px);
        color: white;
        border: none;
        padding: 0.5rem 1rem;
        border-radius: 30px;
        font-size: 0.9rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
        z-index: 2;
    }

    .gallery-toggle:hover {
        background: #4285f4;
        transform: scale(1.05);
    }

    /* Thumbnail Strip */
    .thumbnail-strip {
        display: flex;
        gap: 0.5rem;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        transform: translateY(100%);
        transition: transform 0.3s ease;
    }

    .achievement-card:hover .thumbnail-strip {
        transform: translateY(0);
    }

    .thumbnail {
        width: 60px;
        height: 60px;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        border: 2px solid transparent;
        transition: all 0.3s ease;
        position: relative;
    }

    .thumbnail:hover {
        border-color: #4285f4;
        transform: scale(1.1);
        z-index: 2;
    }

    .thumbnail img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .thumbnail.more {
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(5px);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-weight: 600;
        border: 2px solid rgba(255, 255, 255, 0.3);
    }

    /* Media Placeholder */
    .media-placeholder {
        width: 100%;
        height: 100%;
        position: relative;
        background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    }

    .media-placeholder img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 0.5;
    }

    .placeholder-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(3px);
    }

    .placeholder-overlay i {
        font-size: 3rem;
        color: white;
        opacity: 0.8;
    }

    /* Achievement Badge */
    .achievement-badge {
        position: absolute;
        top: 1rem;
        left: 1rem;
        padding: 0.5rem 1rem;
        border-radius: 30px;
        font-weight: 600;
        font-size: 0.9rem;
        z-index: 3;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .achievement-badge.top-rank {
        background: linear-gradient(135deg, #f9a825, #f57c00);
        color: white;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {

        0%,
        100% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.05);
        }
    }

    .achievement-badge.general {
        background: linear-gradient(135deg, #4285f4, #34a853);
        color: white;
    }

    /* Card Content */
    .card-content {
        padding: 1.5rem;
        flex: 1;
        display: flex;
        flex-direction: column;
    }

    .student-info {
        margin-bottom: 1rem;
    }

    .student-name {
        font-size: 1.3rem;
        font-weight: 700;
        color: #1a237e;
        margin-bottom: 0.5rem;
    }

    .student-detail {
        display: flex;
        align-items: center;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .exam-badge {
        padding: 0.3rem 0.8rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .exam-badge.neet {
        background: rgba(52, 168, 83, 0.1);
        color: #34a853;
    }

    .exam-badge.jee {
        background: rgba(66, 133, 244, 0.1);
        color: #4285f4;
    }

    .score {
        font-weight: 600;
        color: #f9a825;
    }

    /* Student Message */
    .student-message {
        background: linear-gradient(135deg, #f8f9fa, #ffffff);
        padding: 1rem;
        border-radius: 12px;
        margin-bottom: 1rem;
        position: relative;
        border-left: 3px solid #4285f4;
    }

    .student-message i {
        color: #4285f4;
        opacity: 0.3;
        font-size: 1.2rem;
        margin-right: 0.5rem;
    }

    .student-message p {
        color: #5f6368;
        font-style: italic;
        line-height: 1.6;
        margin: 0;
    }

    /* Card Footer */
    .card-footer {
        margin-top: auto;
        border-top: 1px solid #eef2f6;
        padding-top: 1rem;
    }

    .action-buttons {
        display: flex;
        align-items: center;
        gap: 1rem;
    }

    .btn-like,
    .btn-share {
        background: none;
        border: none;
        padding: 0.5rem;
        border-radius: 50%;
        cursor: pointer;
        transition: all 0.3s ease;
        color: #5f6368;
        display: flex;
        align-items: center;
        gap: 0.3rem;
    }

    .btn-like:hover {
        color: #ea4335;
        background: rgba(234, 67, 53, 0.1);
        transform: scale(1.1);
    }

    .btn-like.liked {
        color: #ea4335;
    }

    .btn-like.liked i {
        font-weight: 900;
    }

    .btn-share:hover {
        color: #4285f4;
        background: rgba(66, 133, 244, 0.1);
        transform: scale(1.1);
    }

    .btn-view {
        margin-left: auto;
        padding: 0.5rem 1rem;
        background: linear-gradient(135deg, #4285f4, #34a853);
        color: white;
        text-decoration: none;
        border-radius: 20px;
        font-size: 0.9rem;
        font-weight: 500;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        transition: all 0.3s ease;
    }

    .btn-view:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(66, 133, 244, 0.3);
    }

    /* View All Button */
    .view-all-container {
        text-align: center;
        margin-top: 4rem;
    }

    .btn-view-all {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        padding: 1rem 2.5rem;
        background: white;
        color: #1a237e;
        text-decoration: none;
        border-radius: 50px;
        font-weight: 600;
        font-size: 1.1rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
        border: 2px solid transparent;
    }

    .btn-view-all:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(66, 133, 244, 0.2);
        border-color: #4285f4;
        color: #4285f4;
    }

    .btn-view-all i {
        transition: transform 0.3s ease;
    }

    .btn-view-all:hover i {
        transform: translateX(5px);
    }

    /* Gallery Modal */
    .gallery-modal {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        z-index: 9999;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .gallery-modal.active {
        display: block;
        opacity: 1;
    }

    .modal-content {
        position: relative;
        width: 100%;
        height: 100%;
    }

    .modal-close {
        position: absolute;
        top: 2rem;
        right: 2rem;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: white;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 10;
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .modal-close:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: rotate(90deg);
    }

    .modal-body {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 4rem;
    }

    .gallery-container {
        max-width: 1200px;
        max-height: 80vh;
        margin: 0 auto;
    }

    .gallery-container img {
        width: 100%;
        height: auto;
        max-height: 80vh;
        object-fit: contain;
        border-radius: 8px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }

    .gallery-controls {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        display: flex;
        justify-content: space-between;
        padding: 0 2rem;
        pointer-events: none;
    }

    .gallery-prev,
    .gallery-next {
        pointer-events: auto;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: white;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        font-size: 1.5rem;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(5px);
    }

    .gallery-prev:hover,
    .gallery-next:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }

    .gallery-caption {
        position: absolute;
        bottom: 2rem;
        left: 0;
        right: 0;
        text-align: center;
        color: white;
        font-size: 1rem;
        padding: 1rem;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .achievements-section {
            padding: 1rem 1rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .achievement-stats {
            flex-direction: column;
            gap: 1.5rem;
            padding: 1.5rem;
        }

        .stat-divider {
            width: 50px;
            height: 1px;
        }

        .achievements-grid {
            grid-template-columns: 1fr;
        }

        .filter-tabs {
            flex-direction: column;
            padding: 0 1rem;
        }

        .filter-btn {
            width: 100%;
        }

        .modal-body {
            padding: 1rem;
        }

        .gallery-prev,
        .gallery-next {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
    }

    /* Loading Animation */
    .skeleton-loader {
        background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
        background-size: 200% 100%;
        animation: loading 1.5s infinite;
    }

    @keyframes loading {
        0% {
            background-position: 200% 0;
        }

        100% {
            background-position: -200% 0;
        }
    }

    /* Print Styles */
    @media print {

        .filter-tabs,
        .action-buttons,
        .gallery-toggle,
        .view-all-container {
            display: none;
        }
    }


    .trophy {
        position: relative;
        display: inline-block;
        font-size: 3rem;
    }

    /* Trophy gradient text */
    .text {
        font-weight: bold;
        background: linear-gradient(135deg, #FFD700, #FFA500, #FFD700);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        font-size: 2.5rem;
    }

    .text-trophy {
        font-weight: bold;
        background: linear-gradient(135deg, #1a237e, #4285f4);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
    }

    /* Sparkle stars */
    .sparkle {
        position: absolute;
        font-size: 1rem;
        animation: sparkle 2s infinite ease-in-out;
    }

    /* Star positions */
    .s1 {
        top: -10px;
        left: -10px;
    }

    .s2 {
        top: -5px;
        right: -10px;
        animation-delay: .5s;
    }

    .s3 {
        bottom: -10px;
        left: 40%;
        animation-delay: 1s;
    }

    /* Animation */
    @keyframes sparkle {
        0% {
            opacity: 0;
            transform: scale(0.5) rotate(0deg);
        }

        50% {
            opacity: 1;
            transform: scale(1.2) rotate(180deg);
        }

        100% {
            opacity: 0;
            transform: scale(0.5) rotate(360deg);
        }
    }

body {
    background-image: url('../icon/9.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
      font-family: 'Montserrat';
}



.air1-text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.text-air {
    font-size: 3rem;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    justify-content: end;
    align-items: end;
    display: flex;
}

.text-air .one {
    font-size: 11rem;
    color: #0B6BB0;
    font-family: "Playfair Display" !important;
    position: relative;
    top: 34px;
    /* -webkit-text-stroke: #fff; */
    /* -webkit-text-stroke-width: 3px; */
}

h4.air-back {
    position: relative;
    right: -77px;
    font-size: 28px;
    bottom: -192px;
}

.air-toppers {
    /* -webkit-text-stroke: #fff; */
    /* -webkit-text-stroke-width: 3px; */
    font-family: Rubik !important;
    color: #0B6BB0;
}

hr.air-hr {
    width: 29%;
    height: 15px;
    background: #0B6BB0;
    /* Main line color */
    border: none;
    /* White border (like a stroke) */
    /* border-radius: 5px; */
    /* Optional: rounded edges */
    margin: -13px auto;
    /* Add space around it */
    z-index: 0;
}

.home-of-toppers {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* align-items: center; */
    height: auto;
    width: 90%;
    margin: 120px auto;
}

/* Section Wrapper */
.toppers-section {
    width: 100%;
    max-width: 1300px;
    margin: auto;
    text-align: center;
    position: relative;
    top: 15px;
}

.banner {
    width: 100%;
    min-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 0;
    text-align: center;
    gap: 272px;
}

.banner .student {
    position: relative;
    text-align: center;

    margin: auto;
    display: flex;
}

.banner .student2 {
    position: relative;
    text-align: center;

    margin: auto;
    display: flex;
}

.banner .student img {
    width: 312px;
    height: auto;
    max-width: 100%;
}

.banner .student2 img {
    width: 312px;
    height: auto;
    max-width: 100%;
}

.banner .info {
    margin-top: 263px;
}

.banner .info h2 {
    font-size: 50px;
    color: #0B6BB0;
    font-weight: 800;
    margin-bottom: -9px;
}

.banner .info p {
    font-size: 24px;
    color: #000;
    font-weight: 500;
}

/* Center heading section */
.center-heading {
    flex: 1 1 400px;
    text-align: center;
    margin: 20px 0;
}

.center-heading h3 {
    font-size: 26px;
    color: #000;
    font-weight: 600;
    line-height: 1.3;
}

.center-heading .num {
    font-size: 64px;
    color: #0B6BB0;
    font-weight: 900;
    vertical-align: middle;
}

.center-heading .bold {
    color: #0B6BB0;
    font-weight: 800;
}

.center-heading .underline {
    width: 140px;
    height: 4px;
    background-color: #0B6BB0;
    margin: 10px auto 0;
    border-radius: 3px;
}

.air1-text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: -37px;
}

h4.air-back {
    position: relative;
    right: -78px;
    font-size: 28px;
    bottom: -259px;
    font-weight: 500;
}

.text-air {
    font-size: 3rem;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    justify-content: end;
    align-items: end;
    display: flex;
    font-weight: 700;
}

.text-air .one {
    font-size: 12rem;
    color: #0B6BB0;
    font-family: "Playfair Display" !important;
    position: relative;
    top: 70px;
}


.air-toppers {

    font-family: Rubik !important;
    color: #0B6BB0;
}

hr.air-hr {
    width: 100%;
    height: 15px;
    background: #0B6BB0;
    border: none;
    /* border-radius: 5px; */
    margin: -9px auto;
    z-index: 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .banner {
        flex-direction: column;
        text-align: center;
    }

    .center-heading {
        order: -1;
        margin-bottom: 30px;
    }

    .center-heading h3 {
        font-size: 22px;
    }

    .center-heading .num {
        font-size: 50px;
    }

    .banner .student img {
        width: 229px;
        height: fit-content;
        position: relative;
        top: 61px;
                top: 9px;
    }
.banner .info p {
    font-size: 15px;
}
    .banner .student2 img {
        width: 220px;
          height: fit-content;
        position: relative;
        top: 30px;
    }

    .banner .info h2 {
     font-size: 29px;
        letter-spacing: 1px;
    }
    .toppers-section {
  
    top: 25px;
}
}

@media (max-width: 576px) {
    .center-heading h3 {
        font-size: 18px;
    }

    .center-heading .num {
        font-size: 42px;
    }
.banner .info p {
    font-size: 15px;
}
    .banner .info h2 {
       font-size: 29px;
        letter-spacing: 1px;
    }
        .toppers-section {
  
    top: 25px;
}

}


/* Achievements */
.achievements {
    background: none;
    padding: 40px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.achievements h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.achievement-cards {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: marquee 70s linear infinite;
}


.achievement-cards::after {
    content: '';
    display: flex;
}

.card {
    width: fit-content;
    height: auto;
    border-radius: 16px;
    background: none;
 
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: #0b6bb0;
    font-weight: 600;
}






    .card .single-photo,
    .card .multiple-photos,
    .card .no-photo {
    display: flex;
    gap: 31px;
    position: relative;
}

    .card-img {        
           max-width: calc(335 / 20 * 1rem);
    height: calc(369 / 20 * 1rem);
    border: 1px solid #000;
    border-radius: 20px;
    position: relative;
    object-fit: cover;
    }

    .card .multiple-photos img {
           max-width: calc(335 / 20 * 1rem);
    height: calc(369 / 20 * 1rem);
    border: 1px solid #000;
    border-radius: 20px;
    position: relative;
    object-fit: cover;
    }
    
    


@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


@media (max-width: 768px) {
    .card {
        min-width: 180px;
        height: 120px;
        font-size: 14px;
    }

    .achievement-cards {
        animation: marquee 20s linear infinite;
    }
        .toppers-section {
  
    top: 25px;
}
.magazine-list {
    display: flex;
 flex-direction: column;   
}

.text-air {
        font-size: 2rem;   
        position: relative;
        top: 173px;
    }

    h4.air-back {
    position: relative;
    right: -65px;
    font-size: 19px;
    bottom: -447px;
    font-weight: 500;
}

.text-air .one {
    font-size: 12rem;
    color: #0B6BB0;
    font-family: "Playfair Display" !important;
    position: relative;
    top: 72px;
}
.air1-text {
   
    position: absolute;
    top: 27px;
}

hr.air-hr {

    margin: 167px auto;
  
}

.banner .student2 {
    position: relative;

    bottom: 29px;
}

.banner .info {
    margin-top: 263px;
    margin-left: 15px;

    position: relative;
    left: -7px;
}

}


@media (max-width: 1200px) {
    .card {
        min-width: 180px;
      
        font-size: 14px;
    }

    .achievement-cards {
        animation: marquee 20s linear infinite;
    }
        .toppers-section {
  
    top: 25px;
}

.text-air {
        font-size: 2rem;   
        position: relative;
        top: 173px;
    }

    h4.air-back {
    position: relative;
    right: -65px;
    font-size: 19px;
    bottom: -447px;
    font-weight: 500;
}

.text-air .one {
    font-size: 12rem;
    color: #0B6BB0;
    font-family: "Playfair Display" !important;
    position: relative;
    top: 72px;
}
.air1-text {
   
    position: absolute;
    top: 27px;
}

hr.air-hr {

    margin: 167px auto;
  
}

.banner .student2 {
    position: relative;

    bottom: 29px;
}

.banner .info {
    margin-top: 263px;
    margin-left: 15px;

    position: relative;
    left: -7px;
}

}
/* Results Section */
.results {
    margin-top: 50px;
    padding: 25px;
}

.results h3 {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 20px;
}

.results-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.result-box {
    background: #f8faff;
    border-radius: 8px;
    width: 348px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    /* padding: 15px 0; */
}

.result-box h4 {
    background: #C5D8EC;
    color: #002d72;
    font-weight: 600;
    padding: 10px 0;
    border-radius: 4px 4px 0 0;
    font-size: 19px;
}

.result-box ul {
    list-style: none;
    margin-top: 10px;
    padding: 0;
}

.result-box li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 20px;
    font-size: 14px;
    border-bottom: 1px solid #ddd;
}

.result-box li i {
    color: #e31b23;
}

.result-box li:last-child {
    border-bottom: none;
}

img.pdf {
    width: 28px;
}

.achievements-text {
    font-size: 30px;
    margin: 16px auto;
    font-weight: 400;
}

.achievements-hr {
    width: 66%;
    height: 3px;
    border: none;
    border-radius: 5px;
    margin: -11px auto 20px;
    z-index: 0;
    background: linear-gradient(to right, #00c6ff, #0072ff);
}

.results-hr {
    width: 66%;
    height: 3px;
    border: none;
    border-radius: 5px;
    margin: -11px auto 20px;
    z-index: 0;
    background: linear-gradient(to right, #00c6ff, #0072ff);
}


/* Responsive */
@media (max-width: 768px) {

    .card {
        width: auto;
        height: auto;
    }

    .result-box {
        width: 90%;
    }

.results h3 {
    font-size: 22px;
    padding: 5px;
}

.achievements-text {
    font-size: 22px;
}
.title {
    font-size: 27px;
    font-weight: 400;
    margin-top: 77px;
    text-align: center;
}

.magazine-list {
    display: flex;
 flex-direction: column;   
}



}



.container-end {
    width: 90%;
    max-width: 1200px;
 
    padding: 20px 30px;
    border-radius: 5px;
  
    text-align: center;
    margin: auto;
    margin-bottom: 50px;
}

.title {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 30px;
    text-align: center;
    margin-top: 50px;
    
}

.magazine-list {
    display: flex;
    margin: auto;
 
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.magazine-item {
    position: relative;
    width: 200px;
    border-radius: 8px;
    overflow: hidden;
    /* background: #f5f5f5; */
    transition: transform 0.3s ease;
}

.magazine-item:hover {
    transform: scale(1.05);
}

.pdf-icon {
    position: absolute;
  
    width: 19px;
}
.magazine-img {
    width: 50%;
    height: auto;
    object-fit: cover;
}

.magazine-title {
    padding: 10px 0;
    font-size: 16px;
    font-weight: 600;
    /* background: none !important; */
}

.results-hr-darpan{

     width: 40%;
    height: 3px;
    border: none;
    border-radius: 5px;
    margin: -11px auto 20px;
    z-index: 0;
    background: linear-gradient(to right, #00c6ff, #0072ff);

}

    /* Modal styles for document preview */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.8);
        }

        .modal-content {
            background-color: #fefefe;
            margin: 5% auto;
            padding: 20px;
            border: 1px solid #888;
            width: 90%;
            height: 90%;
            position: relative;
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            position: absolute;
            right: 20px;
            top: 10px;
            z-index: 1001;
        }

        .close:hover,
        .close:focus {
            color: black;
            text-decoration: none;
            cursor: pointer;
        }

        .pdf-preview {
            width: 100%;
            height: 100%;
            border: none;
        }

        .result-link {
            cursor: pointer;
            color: #007bff;
          text-decoration: none !important;
        }

        .result-link:hover {
            color: #0056b3;
        }


/* ===== GALLERY STYLES ===== */
.gk-gallery {
    margin-bottom: 50px;
}

.gk-gallery-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 30px;
}

.gk-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gk-gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gk-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

.gk-gallery-card {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.gk-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gk-gallery-item:hover .gk-gallery-img {
    transform: scale(1.1);
}

.gk-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    height: 100%;
}

.gk-photo-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gk-no-photo {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gk-no-photo i {
    font-size: 48px;
    color: #94a3b8;
}

.gk-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gk-gallery-item:hover .gk-gallery-overlay {
    opacity: 1;
}

.gk-view-btn {
    background: white;
    color: #4f46e5;
    border: none;
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.gk-view-btn:hover {
    background: #4f46e5;
    color: white;
    transform: scale(1.05);
}

.gk-gallery-caption {
    padding: 15px;
    font-weight: 600;
    color: #334155;
    text-align: center;
}



/* ===== RESULTS STYLES ===== */
.gk-results {
    margin-bottom: 50px;
}

.gk-results-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 30px;
}

.gk-results-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.gk-result-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gk-result-header {
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
}

.gk-result-header.neet {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gk-result-header.jee {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gk-result-header i {
    font-size: 24px;
}

.gk-result-header h4 {
    font-size: 18px;
    font-weight: 600;
}

.gk-result-list {
    max-height: 300px;
    overflow-y: auto;
    padding: 10px;
}

.gk-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    border-bottom: 1px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gk-result-item:hover {
    background: #f1f5f9;
    padding-left: 20px;
}

.gk-result-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.gk-result-info i {
    color: #ef4444;
    font-size: 20px;
}

.gk-result-info span {
    color: #334155;
    font-weight: 500;
}

.gk-result-item i:last-child {
    color: #94a3b8;
    font-size: 14px;
}

.gk-result-empty {
    text-align: center;
    padding: 30px;
    color: #94a3b8;
    font-style: italic;
}

/* ===== MAGAZINE STYLES ===== */
.gk-magazine {
    margin-bottom: 50px;
}

.gk-magazine-title {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    text-align: center;
    margin-bottom: 30px;
}

.gk-magazine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 25px;
}

.gk-magazine-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gk-magazine-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.15);
}

.gk-magazine-cover {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.gk-magazine-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gk-magazine-item:hover .gk-magazine-cover img {
    transform: scale(1.1);
}

.gk-magazine-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gk-magazine-item:hover .gk-magazine-overlay {
    opacity: 1;
}

.gk-read-btn {
    background: white;
    color: #4f46e5;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.gk-magazine-item:hover .gk-read-btn {
    transform: translateY(0);
}

.gk-magazine-info {
    padding: 15px;
    text-align: center;
}

.gk-magazine-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #334155;
    margin-bottom: 5px;
}

.gk-magazine-info span {
    font-size: 14px;
    color: #64748b;
}

/* ===== MODAL STYLES ===== */
.gk-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.gk-modal.active {
    display: flex;
}

.gk-modal-content {
    background: white;
    width: 90%;
    max-width: 900px;
    height: 80vh;
    border-radius: 20px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gk-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.gk-modal-header h3 {
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
}

.gk-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.2s ease;
}

.gk-modal-close:hover {
    color: #ef4444;
    transform: scale(1.1);
}

.gk-modal-body {
    height: calc(100% - 80px);
}

.gk-modal-body iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1024px) {
    .gk-banner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .gk-topper-card.right {
        flex-direction: row;
    }
    
    .gk-banner-center {
        order: -1;
    }
    
    .gk-magazine-cover img{
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .gk-title {
        font-size: 36px;
    }

    .gk-magazine-cover img{
        object-fit: contain;
    }
    
    .gk-banner-title {
        font-size: 48px;
    }
    
    .gk-number {
        font-size: 64px;
    }
    
    .gk-stats-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gk-results-row {
        grid-template-columns: 1fr;
    }
    
    .gk-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gk-magazine-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .gk-gallery-grid {
        grid-template-columns: 1fr;
    }

    
    .gk-magazine-cover img{
        object-fit: contain;
    }
    
    .gk-magazine-grid {
        grid-template-columns: 1fr;
    }
    
    .gk-topper-card {
        flex-direction: column !important;
        text-align: center;
    }
    
    .gk-topper-stats {
        justify-content: center;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.gk-stat-box,
.gk-gallery-item,
.gk-result-card,
.gk-magazine-item {
    animation: fadeInUp 0.5s ease forwards;
}

/* Scrollbar Styling */
.gk-result-list::-webkit-scrollbar {
    width: 6px;
}

.gk-result-list::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.gk-result-list::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.gk-result-list::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}