* {

    margin: 0px;
    padding: 0px;

}

body {

    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #f8fafc;
    color: #1f2937;
    width: 100%;
    height: 1000%;
    box-sizing: border-box;
    top: 0px !important;

}

a {
    text-decoration: none;

}

h2 {
    font-weight: bold;
}

iframe {
    display: none;
}


/* =============google translate============ */


/* Remove Google top translate bar */
iframe.goog-te-banner-frame {
    display: none !important;
}


/* Sometimes Google adds this */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}


#google_translate_element {
    visibility: hidden;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}



/* Prevent extra page height */
html,
body {
    height: auto !important;
    min-height: auto !important;
}






/* =============google css ============= */
.goog-logo-link,
.goog-te-gadget span {
    display: none !important;
}

.goog-te-gadget {
    font-size: 0;
}

.goog-te-combo {
    padding: 6px;
    border-radius: 6px;
}


/* ==============shining button============= */

.btn {
    color: white;



    background: #32CD32;
    border-radius: 10px;

    transition: 0.3s !important;
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12) !important;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;

    &:hover {
        background: #eb9743 !important;
        box-shadow: 0px 6px 5px -2px rgba(0, 0, 0, 0.2), 0px 4px 4px 0px rgba(0, 0, 0, 0.14), 0px 3px 10px 0px rgba(0, 0, 0, 0.12) !important;
    }
}

.btn:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100px;
    background-image: linear-gradient(120deg, rgba(239, 239, 239, 0) 30%, rgba(239, 239, 239, .5), rgba(239, 239, 239, 0) 70%);
    animation: shine 5s infinite linear;
}

@keyframes shine {
    0% {
        left: -100px
    }

    20% {
        left: 100%
    }

    100% {
        left: 100%
    }
}



/* ================= NAVBAR ================= */
nav .navbar-brand {
    color: #1e3a8a;
}

nav .nav-item {
    color: #374151 !important;
}

nav .nav-link:hover {
    color: #2563eb !important;
}

nav a p {
    margin: 0px;
    font-size: 16px;


}

nav .navbar-nav .nav-item .underline:hover::after {
    width: 100%;
}

nav .navbar-nav .nav-item .underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: #2563eb;
    transition: width 0.35s ease;
}

nav .navbar-nav .nav-item a {
    font-weight: 500;
    position: relative;
    text-decoration: none;
    color: #222;
    font-weight: 600;
    padding-bottom: 5px;

}

nav a img {
    height: 48px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed !important;
    z-index: 999;
    backdrop-filter: blur(15px) saturate(200%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    background-color: rgb(5 5 5 / 0%);

}

.navbar-expand-lg .navbar-nav {
    gap: 26px !important;
}


nav .second_div{
    display: flex;
    flex-direction: row;
    width: 100%;

}

nav .container{
    flex-direction: column;
}



/* ==================hero section=============== */


.hero {
    position: relative;
    background-image: url('./images/banner_image.jpeg');

    /* background-repeat: no-repeat; */
    background-position: right;
    background-size: cover;
    padding-top: 100px;

}



/* Overlay gradient for readability */
.hero .hero-overlay {
    position: absolute;
    max-width: 1280px;
    width: 100%;
    inset: 0;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(255, 255, 255, 0.85) 40%,
            rgba(255, 255, 255, 0.2) 70%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

/* Content */
.hero .hero-content {
    position: relative;
    /* max-width: 520px; */
    /* z-index: 2; */
    /* left: 10%; */
    /* top: 50%; */
    /* transform: translateY(-50%); */
    padding: 100px 0;
    z-index: 2;
}

.hero .hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
    font-weight: bold;
}

.hero .subtitle {
    font-size: 18px;
    color: #475569;
    margin-bottom: 24px;
}

/* Feature list */
.hero .features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.hero .features li {
    font-size: 16px;
    color: #334155;
    margin-bottom: 10px;
    padding-left: 26px;
    position: relative;
}

.hero .features li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

/* Buttons */
.hero-buttons {
    display: flex;
    gap: 16px;

}


.hero .btn-primary {
    background: #2563eb;
    color: #fff;
    padding: 14px 26px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.hero .btn-primary:hover {
    background: #c17b35;
}


.btn:hover {
    background-color: red;
}

.hero .btn-secondary {
    background: #ffffff;
    color: #2563eb;
    padding: 14px 26px;
    border-radius: 10px;
    border: 1px solid #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.hero .btn-secondary:hover {
    background: #2563eb;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 40px 10px;
        background-position: center;
    }

    .hero .hero-content h1 {
        font-size: 30px;
        font-weight: 900;
        letter-spacing: 1.1px;


    }

nav .second_div {
   justify-content: center;

}
    .hero .subtitle {
        color: black;
        font-weight: bold;
        letter-spacing: 0.9px;
    }

    .navbar-expand-lg .navbar-nav {
        margin-top: 16px;
    }

    .hero .features {
        color: black;
        font-weight: bold;
    }

    .hero .features li {
        color: black;
        font-weight: bold;
    }




    .infrastructure-section .icon {
        min-width: 44px;
    }











}












/* ===========about-section================= */




.about-section {
    padding: 80px 20px 30px 20px;
}

.about-section .about-container {
    max-width: 1100px;
    margin: auto;
}

.about-section .about-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.about-section .about-text {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    max-width: 820px;
    margin-bottom: 40px;
}

/* Cards */
.about-section .about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.about-section .about-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    background: #fff;
}

.about-section .about-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 16px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);

    transition: all 0.35s ease;
    overflow: hidden;
    cursor: pointer;


}

.about-section .about-card h4 {
    margin: 0;
    font-size: 18px;
    color: #0f172a;
}

.about-section .about-card span {
    font-size: 14px;
    color: #64748b;
}

.about-section .icon {
    width: 46px;
    height: 46px;
    background: #e0edff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* Responsive */
@media (max-width: 600px) {
    .about-section .about-container h2 {
        font-size: 26px;
    }
}


/* ==============.department-section=============== */


.department-section {
    padding: 30px 20px;
    background: #f8fafc;
    font-family: "Inter", sans-serif;
}


.department-section .department-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.department-section .department-subtitle {
    font-size: 16px;
    color: #475569;
    max-width: 700px;
    margin-bottom: 40px;
}

/* Grid */
.department-section .department-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

/* Card */
.department-section .department-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.department-section .department-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.department-section .department-card h3 {
    font-size: 18px;
    color: #0f172a;
    margin-bottom: 8px;
}

.department-section .department-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* Icons */
.department-section .dept-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
}

.department-section .dept-icon.medical {
    background: #fee2e2;
}

.department-section .dept-icon.engineering {
    background: #e0e7ff;
}

.department-section .dept-icon.business {
    background: #dcfce7;
}

.department-section .dept-icon.humanities {
    background: #fef3c7;
}

/* Responsive */
@media (max-width: 600px) {
    .department-section .department-container h2 {
        font-size: 26px;
    }
}



/* ===============.infrastructure-section================ */

.infrastructure-section {
    padding: 90px;
    background: #f8fafc;
    font-family: "Inter", sans-serif;
}

.infrastructure-section .infra-container {
    max-width: 1200px;
    margin: auto;
    display: flex;

    gap: 50px;
    align-items: center;
}

/* Images */
.infrastructure-section .infra-images {
    display: flex;
    gap: 20px;
    flex-direction: column;
}

.infrastructure-section .img-large {
    width: 60%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.infrastructure-section .img-small {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Content */
.infrastructure-section .infra-label {
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.infrastructure-section .infra-content h2 {
    font-size: 34px;
    color: #0f172a;
    margin: 10px 0;
    font-weight: bold;
}

.infrastructure-section .infra-desc {
    font-size: 16px;
    color: #475569;
    margin-bottom: 30px;
    max-width: 520px;
}

/* Cards */
.infrastructure-section .infra-points {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.infrastructure-section .infra-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    display: flex;
    gap: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.infrastructure-section .infra-card h4 {
    font-size: 16px;
    margin-bottom: 6px;
    color: #0f172a;
}

.infrastructure-section .infra-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

.infrastructure-section .icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #e0edff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 900px) {
    .infrastructure-section .infra-container {
        grid-template-columns: 1fr;
    }

    .infrastructure-section .infra-images {
        justify-content: center;
    }
}




/* ================stats-section =============== */


.stats-section {
    background: #1f6feb;
    /* Blue */
    padding: 50px 20px;
    font-family: "Inter", sans-serif;
}


.stats-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}


.stat-item h3 {
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
}

.stat-item p {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Responsive */
@media (max-width: 600px) {
    .stat-item h3 {
        font-size: 28px;
    }
}





/* ===================alumni-section=============== */



.alumni-section {
    padding: 90px;

    font-family: "Inter", sans-serif;



}

.alumni-container {
    max-width: 1200px;
    margin: auto;

}


.alumni-container h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 50px;
}

/* Grid */
.alumni-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card */
.alumni-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;

}

.alumni-card:hover {
    transform: translateY(-6px);
}

.stars {
    color: #fbbf24;
    font-size: 18px;
    margin-bottom: 14px;
}

.quote {
    font-size: 14px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Alumni info */
.alumni-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.alumni-info img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.alumni-info h4 {
    margin: 0;
    font-size: 15px;
    color: #0f172a;
}

.alumni-info span {
    font-size: 13px;
    color: #2563eb;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 600px) {
    .alumni-container h2 {
        font-size: 26px;
    }
}



/* ===============.cta-section================ */


.cta-section {
    padding: 0px 20px 80px 20px;
    background: #f8fafc;
    font-family: "Inter", sans-serif;
}

.cta-box {
    max-width: 1100px;
    margin: auto;
    background: linear-gradient(135deg, #0b1220, #111827);
    border-radius: 24px;
    padding: 70px 20px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Soft decorative circle (optional) */
.cta-box::after {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

/* Text */
.cta-box h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 16px;
    color: #cbd5f5;
    max-width: 620px;
    margin: 0 auto 36px;
    line-height: 1.6;
}

/* Buttons */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #2563eb;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #1e40af;
}

.btn-outline {
    background: transparent;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 600px) {
    .cta-box h2 {
        font-size: 26px;
    }

    .cta-box {
        padding: 50px 16px;
    }
}





/* =============footer============== */

.footer {
    padding: 20px;
    background: #ffffff;
    text-align: center;
    font-family: "Inter", sans-serif;
    border-top: 1px solid #e5e7eb;
}

.footer p {
    margin: 0;
    font-size: 13px;
    color: #64748b;
}

/* =====( end )==footer=========== */


.admission-section {
    padding: 90px 20px;
    background: #f8fafc;
    font-family: "Inter", sans-serif;
}


/* Header */
.admission-header {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.small-label {
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.header-left h2 {
    font-size: 34px;
    color: #0f172a;
    margin: 10px 0;
}

.header-left p {
    color: #475569;
    max-width: 520px;
    line-height: 1.6;
}

/* Info Box */
.header-right {
    background: #eef4ff;
    border-left: 4px solid #2563eb;
    padding: 20px;
    border-radius: 12px;
    max-width: 420px;
    display: flex;
    gap: 14px;
}

.info-tag {
    background: #2563eb;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 10px;
    border-radius: 8px;
    height: fit-content;
}

.header-right h4 {
    margin: 0 0 6px;
    font-size: 15px;
    color: #0f172a;
}

.header-right p {
    font-size: 14px;
    color: #475569;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.steps::before {
    content: "";
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    height: 2px;
    background: #dbeafe;
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #2563eb;
    background: #fff;
    margin-bottom: 14px;
}

.circle.active {
    background: #2563eb;
    color: #fff;
}

.step h4 {
    font-size: 16px;
    color: #0f172a;
    margin-bottom: 6px;
}

.step p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
    .steps {
        grid-template-columns: 1fr;
    }
}



/* =================fee-section================= */


.fee-section {
    padding: 0px 20px 80px 20px;
    background: #f8fafc;
    font-family: "Inter", sans-serif;
}


.fee-section .section-tag {
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.fee-section .fee-container h2 {
    font-size: 34px;
    margin: 10px 0;
    color: #0f172a;
}

.fee-section .fee-section .subtitle {
    color: #475569;
    margin-bottom: 40px;
}

/* Card */
.fee-section .fee-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.fee-section .fee-card table tr td th {
    text-align: center;
}

/* Table */
.fee-section table {
    width: 100%;
    border-collapse: collapse;
}

.fee-section thead {
    background: #f1f5f9;
}

.fee-section th,
td {
    padding: 18px;
    text-align: left;
    font-size: 14px;
}

.fee-section th {
    color: #0f172a;
    font-weight: 600;
    text-align: center;
}

.fee-section td {
    color: #334155;
}

.fee-section td span {
    font-size: 12px;
    color: #64748b;
}

.fee-section tbody tr:nth-child(even) {
    background: #f8fafc;
}

/* Grand Total */
.fee-section .grand-total {
    background: #2563eb;
    color: #ffffff;
    padding: 26px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.fee-section .grand-total h4 {
    margin: 0;
    font-size: 20px;
    letter-spacing: 1px;
    font-weight: bold;
}

.fee-section .grand-total p {
    margin: 4px 0 0;
    font-size: 13px;
    opacity: 0.9;
}

.fee-section .amount h3 {
    margin: 0;
    font-size: 28px;
}

.fee-section .amount span {
    font-size: 13px;
    opacity: 0.9;
}

/* Note */
.fee-section .note {
    font-size: 16px;
    color: #64748b;
    margin-top: 16px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {

    .fee-section table,
    thead,
    tbody,
    th,
    td,
    tr {
        display: block;
    }

    .fee-section th {
        display: none;
    }

    .fee-section td {
        display: flex;
        justify-content: space-between;
       

    }

    .fee-section td:nth-child(4){
    background: #d2d2d2;
  font-weight: bold;
}


    .fee-section .grand-total {
        text-align: center;
        gap: 16px;
    }


    .hero .hero-content {
        left: 0px;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 0px;
        top: -430px;
        margin-top: 44px;
        gap: 0px;
    }

    .hero .hero-content h2{
        margin: 0px;
    }

    .alumni-grid {
        grid-template-columns: unset;
        display: flex;
        overflow-x: auto;
    }

    .vik_modal .vik_modal-content {
        width: 90% !important;
        padding: 30px 0px;
    }

    .about-section {
        padding: 40px 20px;
    }

    .department-section {
        padding: 40px 20px;
    }

    .admission-section {
        padding: 80px 20px 40px 20px;
    }

    .ranking-section {
        padding: 20px !important;
    }

    .infrastructure-section {
        padding: 60px 20px;
    }

    .fee-section {
        padding: 20px 20px 50px 20px;
    }

    .alumni-section {
        padding: 50px 20px;
    }

    .cta-section {
        padding: 20px 20px;
    }

    .ranking-section tbody {
        text-align: left;
    }

    .ranking-section td {
        display: inline-block;
    }

    .hero .img_box img {
        background-position: center;
        position: relative;
        background-image: url('./images/collage_university.jpeg');
        height: 90vh;
        background-repeat: no-repeat;
        background-position: right;
        background-size: cover;
    }

    .ranking-section tbody tr:not(:last-child) {
        width: 100%;
        display: flex;
        justify-content: space-around;

    }

    .ranking-section .ranking-card table tr {
        display: flex;
        justify-content: space-around;
    }

    .alumni-card {
        min-width: 300px;
    }

    nav .nav-item .trigger {
        display: none;
    }

    nav .navbar-collapse ul .nav-item a {
        font-weight: bold;
    }

    .hero .hero-overlay {
        height: fit-content;
        width: 100%;
        background: linear-gradient(to bottom, rgb(255 255 255) 0%, rgb(255 255 255 / 53%) 40%, rgb(255 255 255 / 50%) 70%, rgb(255 255 255 / 45%) 100%);
    }

    .hero .btn-primary {
        font-weight: bold;
    }

    .hero .btn-secondary {
        font-weight: bold;
    }

   

    .hero {
        position: relative;
        background-image: url('./images/heroimage-kyrgyzstate\ \(Website\).png');
        height: 50vh;
        /* background-repeat: no-repeat; */
        background-position: right;
        background-size: cover;
        margin-top: 460px;
    }

    .infrastructure-section .infra-container {
        flex-direction: column-reverse;
    }

    .champion .glance .row {
        gap: 20px 0px;
    }

    .champion .glance .row .col-md-3 p {
        font-size: 14px;
        padding: 26px;
    }


    .champion .glance .row p span {
        font-size: 24px !important;
    }

    .fee-section .fee-card table tr .year-head {
        background-color: #2563eb;
        color: #FFF;
    }

    .fee-section .grand-total .amount {
        display: block;
        width: 100%;
    }

    nav {
        top: 0px;
    }


    .vik_modal .vik_modal-content input {
        padding: 10px 10px;
    }


}


.ranking-section {
    padding: 20px 90px 80px 90px;
    background: linear-gradient(180deg, #f8fbff, #ffffff);
    font-family: "Inter", sans-serif;
}

.ranking-section .ranking-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: center;
}

/* Left */
.ranking-section .ranking-left h2 {
    font-size: 34px;
    color: #0f172a;
    margin: 16px 0 10px;
    font-weight: bold;
}

.ranking-section .ranking-left p {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
    max-width: 420px;
}

.ranking-section .ranking-badge {
    width: 100px;
}

/* Table Card */
.ranking-section .ranking-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.ranking-section table {
    width: 100%;
    border-collapse: collapse;
}

.ranking-section thead {
    background: #f1f5f9;

}

.ranking-section th,
td {
    padding: 16px 18px;
    font-size: 14px;
    text-align: left;
    text-align: center;
}

.ranking-section th {
    color: #0f172a;
    font-weight: 600;
}

.ranking-section td {
    color: #334155;
    text-align: center;
}

.ranking-section td i {
    font-size: 18px;
}

.ranking-section tbody tr:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}

.ranking-section td strong {
    font-size: 16px;
    color: #2563eb;
}

/* Responsive */
@media (max-width: 900px) {
    .ranking-section .ranking-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ranking-section .ranking-left p {
        margin: auto;
    }
}



/* ==================language=============== */


.hero .country_language {

    align-items: center;
    gap: 20px;
    padding: 0px;
}

.hero .country_language li {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.hero .country_language li a {
    display: flex;
    align-items: center;
    gap: 8px;
    /* font-weight: 600; */
    color: black;
    cursor: pointer;
    font-weight: 600;
}

.country_language li img {
    width: 40px;
    height: 30px;
    object-fit: contain;

}

/* <!-- ===========gallery============= --> */

.gallery {
    margin: 60px 0px 0px 0px;
    text-align: center;
}

.gallery .heading {
    margin-bottom: 40px;
}

.gallery .heading h2 {}

.gallery .gallery_boxes {
    gap: 20px 0px;
}

.gallery .gallery_boxes .gallery_box {}

.gallery .gallery_boxes .gallery_box img {
    width: 100%;
    object-fit: cover;

}


.gallery h2 {
    text-align: center;

    font-weight: 700;
}


.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.swiper-button-prev {}

.swiper-button-prev::after {}

.swiper-button-next {}

.swiper-button-next::after {}




/* ===================swiper================ */


.swiper {
    padding: 30px 50px;
}

.swiper-slide {
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
}


.swiper-slide p {
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    background: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    color: #000;
}

/* Pagination */
.swiper-pagination-bullet {
    background: #000;
    opacity: 0.4;
}

.swiper-pagination-bullet-active {
    opacity: 1;
}




/* =============Champion================== */

.champion {
    position: relative;
    background: #f7f9fc;
    overflow: hidden;
}

.champion .glance {
    text-align: center;
    flex-direction: column;
}

.champion .glance p {
    font-size: 20px;
    font-weight: 400;
}

.champion .glance h2 {
    margin-bottom: 15px;
}

.champion .glance p {}

.champion .glance {
    text-align: center;
    margin: 60px 0px;
}

.champion .glance h2 {}

.champion .glance .sub_heading {
    font-weight: bold;
    color: #4e4e4e;
}



.champion .glance .row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
}

.champion .glance .row .col-md-3 p:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    background: #fff;



}

.champion .glance .row .col-md-3 p {
    transition: all 0.35s ease;
    overflow: hidden;
    cursor: pointer;
}

.champion .glance .row p {
    margin: 0px;
    color: #64748bde;
    /* font-weight: bold; */
    font-size: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 20px 10px;
    border-radius: 20px;
}

.champion .btn {
    width: 100%;
    font-size: 20px;
}

.champion .btn a {
    background: red;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 16px;
}






/* BACKDROP */
.offer_modal{
    position:fixed;
    inset:0;
    display:flex;
    justify-content:center;
    align-items:center;
    opacity:0;
    visibility:hidden;
    transition:.35s;
    z-index:99999;
}

.offer_modal.show-modal{
    opacity:1;
    visibility:visible;
}

/* BOX */
.offer_box{

    width:420px;              /* ⭐ smaller */
    max-width:92%;

    padding:30px;
    border-radius:18px;

    background:#2563eb;
    color:white;
    text-align:center;
    position:relative;

    box-shadow:0 30px 70px rgba(0,0,0,.35);
}

/* CLOSE */
.offer_close{
    position:absolute;
    right:14px;
    top:8px;
    font-size:28px;
    cursor:pointer;
}

/* TIMER */
.offer_timer{
    font-size:14px;
    opacity:.9;
}

/* WHITE CARD */
.offer_card{

    background:white;
    color:#222;
    border-radius:14px;
    padding:20px;
    margin:18px 0;
}

/* TEXT */
.upto{
    font-size:16px;
}

.price{
    font-size:48px;   /* smaller but powerful */
    color:#ff9933;
    font-weight:800;
    margin:5px 0;
    line-height: 0.5;

}

.subsidy{
    margin:0;
}

.cashback{
    font-size:13px;
    opacity:.6;
}

/* BUTTON */
.claim_btn{

    width:100%;
    padding:13px;
    border:none;
    border-radius:10px;

    background:#ff9933;
    font-weight:700;
    font-size:16px;
color: #fff;
    cursor:pointer;
    transition:.25s;
}

.claim_btn:hover{
    transform:translateY(-3px);
}

/* TRUST */
.offer_trust{
    margin-top:14px;
    font-size:13px;
    opacity:.85;
}





/* ========================== news_marque ====================== */

.news_marque {
  
       width: 100%;
    text-align: center;
    align-items: center;
    margin: 0 auto;
    overflow: hidden;

}

.news_marque marquee {}

.news_marque marquee a {
    color: #000;
}

.news_marque marquee a span {
    font-weight: 600;
    margin-left: 5px;
}

.news_marque marquee a img {
    width: 22px;
}
