
/* =============================
     Site Footer (Reference Style)
     ============================= */
.site-footer {
    background: linear-gradient(180deg, #1e3264 0%, #142046 100%);
    color: #e0e6f6;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border-top: 2px solid #2e437a;
}
.footer-main {
    padding: 40px 40px;
    max-width: 100%;
    margin: 0;
}
.footer-header {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.footer-logo {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #fff;
    line-height: 1.1;
}
.footer-social-header {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-social-label {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}
.footer-social-icons {
    display: flex;
    gap: 12px;
}
.footer-social {
    color: #fff;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    transition: all 0.2s;
    border: 1px solid rgba(255,255,255,0.15);
}
.footer-social:hover {
    background: #ffd600;
    color: #1e3264;
    transform: scale(1.1);
    border-color: #ffd600;
}
.footer-divider {
    border: none;
    border-top: 2px solid #2e437a;
    margin: 20px 0;
    width: 100%;
    opacity: 0.7;
}
.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 48px;
    padding: 20px 0;
}
.footer-col {
    display: flex;
    flex-direction: column;
}
.footer-heading {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: 0.5px;
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li {
    margin-bottom: 8px;
}
.footer-list a {
    color: #e0e6f6;
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
    line-height: 1.6;
}
.footer-list a:hover {
    color: #ffd600;
    text-decoration: underline;
}
.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    align-items: flex-start;
}
.footer-contact-timing {
    font-size: 0.9em;
    color: #b3c2e0;
    margin-top: 2px;
}
.footer-icon {
    font-size: 1.1em;
    color: #ffd600;
    min-width: 1.2em;
    text-align: center;
    margin-top: 2px;
}
.footer-bottom-bar {
    background: #0074c9;
    padding: 0;
    margin: 0;
    border-top: 1.5px solid #0074c9;
}
.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
    font-size: 0.95rem;
    color: #b3c2e0;
}
.footer-copyright {
    color: #e0e6f6;
}
.footer-privacy {
    color: #ffd600;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-privacy:hover {
    color: #fff;
    text-decoration: underline;
}
@media (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}
@media (max-width: 992px) {
    .footer-main {
        padding: 32px 24px;
    }
    .footer-header {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
        margin-bottom: 16px;
    }
    .footer-social-header {
        width: 100%;
        justify-content: space-between;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}
@media (max-width: 600px) {
    .footer-main {
        padding: 24px 16px;
    }
    .footer-header {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .footer-logo {
        text-align: center;
        font-size: 2.4rem;
    }
    .footer-social-header {
        flex-direction: column;
        gap: 8px;
        align-items: center;
        width: 100%;
    }
    .footer-social-icons {
        justify-content: center;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .footer-bottom-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
        padding: 12px 16px;
    }
}

    background: #10162b;
    padding: 0;
    margin: 0;
    border-top: 1.5px solid #2e437a;
}
.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 10px 0;
    font-size: 1rem;
    color: #b3c2e0;
}
.footer-privacy {
    color: #ffd600;
    text-decoration: none;
    font-weight: 500;
    margin-left: 16px;
    transition: color 0.2s;
}
.footer-privacy:hover {
    color: #fff;
    text-decoration: underline;
}
@media (max-width: 1024px) {
    .footer-row {
        flex-wrap: wrap;
        gap: 32px 24px;
    }
    .footer-social-col {
        align-items: flex-start;
        margin-top: 24px;
        width: 100%;
    }
}
@media (max-width: 800px) {
    .footer-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px 0;
    }
    .footer-col {
        flex: 1 1 45%;
        min-width: 180px;
        margin-bottom: 18px;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
@media (max-width: 600px) {
    .footer-row {
        flex-direction: column;
        gap: 0;
        padding: 0 12px;
    }
    .footer-col, .footer-logo-col {
        min-width: 0;
        width: 100%;
        margin-bottom: 18px;
    }
    .footer-logo {
        text-align: center;
        font-size: 2.2rem;
    }
    .footer-divider {
        margin: 12px auto 0 auto;
        width: 60%;
    }
    .footer-social-col {
        align-items: center;
        margin-bottom: 18px;
        width: 100%;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 10px 0 8px 0;
    }
}
/* =============================

/* =============================
     Site Footer Styles (Scoped)
     ============================= */
.site-footer {
    width: 100%;
    /* Removed margin-left and transform to prevent horizontal scroll */
    background: linear-gradient(180deg, #1e3264 0%, #142046 100%);
    color: #fff;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: footer-fade-in 1.2s ease 0.2s forwards;
    z-index: 10;
}

@keyframes footer-fade-in {
    from { opacity: 0; transform: translateY(40px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.footer-top {
    padding: 48px 0 24px 0;
    position: relative;
}

.footer-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px 48px;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.footer-col {
    flex: 1 1 200px;
    min-width: 180px;
    margin-bottom: 24px;
}

.footer-logo-col {
    max-width: 260px;
}
.footer-logo {
    font-size: 3.2rem;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.1;
}
.footer-divider {
    border: none;
    border-top: 2px solid #2e437a;
    margin: 16px 0 0 0;
    width: 80%;
    opacity: 0.5;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: 0.5px;
}
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list li {
    margin-bottom: 8px;
}
.footer-list a {
    color: #e0e6f6;
    text-decoration: none;
    transition: color 0.2s, text-decoration 0.2s;
    font-size: 1rem;
    display: inline-block;
    border-radius: 2px;
    padding: 2px 0;
}
.footer-list a:hover {
    color: #ffd600;
    text-decoration: underline;
}

.footer-courses-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-institutes {
    margin-top: 8px;
}

.footer-contact-col {
    font-style: normal;
    font-size: 1rem;
}
.footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    line-height: 1.5;
}
.footer-contact-timing {
    display: block;
    font-size: 0.98em;
    color: #b3c2e0;
    margin-top: 2px;
}
.footer-icon {
    font-size: 1.2em;
    margin-right: 4px;
    color: #ffd600;
    min-width: 1.5em;
    text-align: center;
}

/* Social Section */
.footer-social-col {
    position: absolute;
    top: 24px;
    right: 0;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
}
.footer-social-label {
    font-size: 1.15rem;
    font-weight: 600;
    margin-right: 8px;
    color: #fff;
}
.footer-social-icons {
    display: flex;
    gap: 12px;
}
.footer-social {
    color: #fff;
    font-size: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    text-align: center;
}
.footer-social:hover {
    background: #ffd600;
    color: #1e3264;
    transform: translateY(-2px) scale(1.08);
}

/* Font Awesome fallback for icons if not loaded */
.footer-social i {
    font-style: normal;
}

/* Footer Bottom Bar */
.footer-bottom {
    background: #10162b;
    padding: 0;
    margin: 0;
    border-top: 1.5px solid #2e437a;
}
.footer-bottom-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 10px 0;
    font-size: 1rem;
    color: #b3c2e0;
}
.footer-privacy {
    color: #ffd600;
    text-decoration: none;
    font-weight: 500;
    margin-left: 16px;
    transition: color 0.2s;
}
.footer-privacy:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .footer-container {
        flex-wrap: wrap;
        gap: 32px 24px;
    }
    .footer-social-col {
        position: static;
        margin-bottom: 24px;
        justify-content: flex-end;
        width: 100%;
    }
}
@media (max-width: 800px) {
    .footer-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px 0;
    }
    .footer-col {
        flex: 1 1 45%;
        min-width: 180px;
        margin-bottom: 18px;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
@media (max-width: 600px) {
    .footer-container {
        flex-direction: column;
        gap: 0;
        padding: 0 12px;
    }
    .footer-col, .footer-logo-col {
        min-width: 0;
        width: 100%;
        margin-bottom: 18px;
    }
    .footer-logo {
        text-align: center;
        font-size: 2.2rem;
    }
    .footer-divider {
        margin: 12px auto 0 auto;
        width: 60%;
    }
    .footer-social-col {
        justify-content: center;
        margin-bottom: 18px;
        width: 100%;
    }
    .footer-bottom-container {
        flex-direction: column;
        gap: 6px;
        text-align: center;
        padding: 10px 0 8px 0;
    }
}
/* =========================
     Contact & Call Back Section Styles
     ========================= */
.contact-callback-section {
    background: #f5f6f7;
    padding: 48px 0 48px 0;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
}
.cc-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: flex-start;
    background: transparent;
    box-sizing: border-box;
    padding: 0 32px;
}
.cc-left, .cc-right {
    flex: 1 1 0;
    min-width: 340px;
    max-width: 600px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 6px 32px 0 rgba(60,72,88,0.10);
    padding: 40px 32px 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
}
.cc-left {
    border-radius: 32px 0 0 32px;
    min-width: 320px;
    max-width: 540px;
    border-right: 1px solid #f0f1f3;
}
.cc-right {
    border-radius: 0 32px 32px 0;
    position: relative;
    min-width: 320px;
    max-width: 540px;
    overflow: hidden;
}
.cc-institute {
    font-size: 1.18rem;
    font-weight: 700;
    color: #1a3a4f;
    margin-bottom: 10px;
}
.cc-desc {
    font-size: 1rem;
    color: #6b7a8f;
    margin-bottom: 8px;
}
.cc-address {
    font-size: 0.98rem;
    color: #4a5a6a;
    margin-bottom: 18px;
    line-height: 1.5;
}
.cc-status-contact {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 10px;
}
.cc-status {
    font-size: 0.98rem;
    color: #1aaf5d;
    font-weight: 500;
    display: flex;
    align-items: center;
}
.cc-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #1aaf5d;
    border-radius: 50%;
    margin-right: 7px;
}
.cc-close {
    color: #6b7a8f;
    font-weight: 400;
    margin-left: 6px;
}
.cc-phone {
    color: #1a3a4f;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}
.cc-icon.cc-phone-icon::before {
    content: '\260E';
    font-size: 1.1em;
    margin-right: 4px;
    color: #1a3a4f;
}
.cc-ratings {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
}
.cc-google-icon {
    width: 22px;
    height: 22px;
    vertical-align: middle;
}
.cc-reviews {
    color: #4a5a6a;
    font-size: 0.98rem;
    margin-right: 4px;
}
.cc-stars {
    color: #fbbc04;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
.cc-actions {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
}
.cc-btn {
    font-family: inherit;
    font-size: 1rem;
    border-radius: 8px;
    border: none;
    padding: 10px 18px;
    cursor: pointer;
    transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s, transform 0.18s;
    font-weight: 500;
    outline: none;
}
.cc-btn-outline {
    background: #fff;
    color: #1a3a4f;
    border: 1.5px solid #dbe2ea;
    box-shadow: 0 1px 4px 0 rgba(60,72,88,0.06);
}
.cc-btn-outline:hover, .cc-btn-outline:focus {
    background: #f5f6fa;
    color: #0a2540;
    border-color: #b5c6e0;
    transform: translateY(-2px) scale(1.03);
}
.cc-btn-call {
    background: #1769ff;
    color: #fff;
    width: 100%;
    margin-top: 8px;
    box-shadow: 0 2px 8px 0 rgba(23,105,255,0.10);
}
.cc-btn-call:hover, .cc-btn-call:focus {
    background: #1256cc;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}
.cc-form-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #1a3a4f;
    margin-bottom: 18px;
    z-index: 2;
}
.cc-form {
    width: 100%;
    z-index: 2;
}
.cc-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 18px;
    margin-bottom: 16px;
}
.cc-form-group {
    width: 100%;
}
.cc-form-group input,
.cc-form-group select {
    width: 100%;
    padding: 10px 12px;
    border-radius: 7px;
    border: 1.5px solid #dbe2ea;
    background: #f7f8fa;
    font-size: 1rem;
    color: #1a3a4f;
    transition: border 0.18s, box-shadow 0.18s;
    outline: none;
}
.cc-form-group input:focus,
.cc-form-group select:focus {
    border-color: #1769ff;
    box-shadow: 0 0 0 2px #1769ff22;
}
.cc-form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}
.cc-checkbox {
    font-size: 0.97rem;
    color: #4a5a6a;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    cursor: pointer;
    user-select: none;
}
.cc-checkbox input[type="checkbox"] {
    accent-color: #1769ff;
    margin-right: 6px;
    margin-top: 2px;
}
.cc-whatsapp {
    color: #25d366;
    font-weight: 500;
}
.cc-btn-submit {
    background: #1769ff;
    color: #fff;
    font-weight: 600;
    padding: 12px 0;
    width: 160px;
    box-shadow: 0 2px 8px 0 rgba(23,105,255,0.10);
    margin-top: 4px;
}
.cc-btn-submit:hover, .cc-btn-submit:focus {
    background: #1256cc;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
}
/* Abstract blue shape */
.cc-form-bg-shape {
    position: absolute;
    top: -40px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle at 60% 40%, #1769ff 60%, #e3f0ff 100%);
    opacity: 0.18;
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}
@media (max-width: 1200px) {
    .cc-container {
        gap: 20px;
        padding: 0 10px;
    }
}
@media (max-width: 900px) {
    .cc-container {
        flex-direction: column;
        gap: 24px;
        max-width: 98vw;
        padding: 0 2vw;
    }
    .cc-left, .cc-right {
        max-width: 100%;
        min-width: 0;
        border-radius: 18px;
        padding: 28px 12px 28px 12px;
        box-shadow: 0 4px 18px 0 rgba(60,72,88,0.10);
    }
}
@media (max-width: 700px) {
    .contact-callback-section {
        padding: 18px 0 18px 0;
    }
    .cc-container {
        flex-direction: column;
        gap: 16px;
        border-radius: 0;
        margin: 0;
        width: 100vw;
        max-width: 100vw;
        padding: 0 1vw;
    }
    .cc-left, .cc-right {
        border-radius: 10px;
        padding: 14px 2vw 14px 2vw;
        box-shadow: 0 2px 8px 0 rgba(60,72,88,0.10);
    }
    .cc-form-title {
        font-size: 1.05rem;
    }
    .cc-form-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .cc-btn-submit {
        width: 100%;
    }
    .cc-form-bg-shape {
        width: 90px;
        height: 90px;
        top: -10px;
        right: -15px;
    }
}
/* =========================
     Latest Videos Modal Styles
     ========================= */
.lv-modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(30,40,60,0.55);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}
.lv-modal {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 40px 0 rgba(60,72,88,0.18);
    max-width: 720px;
    width: 96vw;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    animation: lvModalIn 0.22s cubic-bezier(.4,1.6,.6,1) 1;
}
@keyframes lvModalIn {
    0% { transform: scale(0.92) translateY(40px); opacity: 0; }
    100% { transform: scale(1) translateY(0); opacity: 1; }
}
.lv-modal-content {
    width: 100%;
    aspect-ratio: 16/9;
    background: #e3e6ea;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.lv-modal-content iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 0 0 20px 20px;
    background: #000;
}
.lv-modal-close {
    position: absolute;
    top: 10px;
    right: 16px;
    background: #f7f8fa;
    border: none;
    border-radius: 50%;
    width: 38px;
    height: 38px;
    font-size: 2rem;
    color: #1a3a4f;
    cursor: pointer;
    box-shadow: 0 2px 8px 0 rgba(60,72,88,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.18s, transform 0.18s;
    z-index: 2;
}
.lv-modal-close:hover {
    background: #e3e6ea;
    transform: scale(1.08);
}
@media (max-width: 700px) {
    .lv-modal {
        max-width: 99vw;
        border-radius: 10px;
    }
    .lv-modal-content {
        border-radius: 0 0 10px 10px;
    }
    .lv-modal-close {
        width: 32px;
        height: 32px;
        font-size: 1.3rem;
        top: 6px;
        right: 8px;
    }
}
/* =========================
     Latest Videos Section
     (Scoped styles: .latest-videos-section, .lv-*)
     ========================= */
.latest-videos-section {
    background: #f5f6f7;
    padding: 24px 0 32px 0; /* reduced top and bottom padding */
    display: flex;
    justify-content: center;
}
.lv-container {
    background: #fff;
    border-radius: 32px;
    box-shadow: 0 6px 32px 0 rgba(60,72,88,0.10);
    max-width: 1160px;
    margin: 0 auto;
    padding: 40px 32px 48px 32px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.lv-title {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-size: 2.3rem;
    font-weight: 600;
    color: #1a3a4f;
    text-align: center;
    margin-bottom: 10px;
}
.lv-subtitle {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    font-size: 1.08rem;
    color: #6b7a8f;
    text-align: center;
    margin-bottom: 36px;
    font-weight: 400;
    max-width: 600px;
}
.lv-carousel-wrapper {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
    justify-content: center;
    gap: 20px;
}
.lv-carousel-inner {
    flex: 1;
    max-width: 1000px;
}
.lv-arrow {
    background: #f7f8fa;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px 0 rgba(60,72,88,0.10);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #1a3a4f;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    position: relative;
    z-index: 2;
}
.lv-arrow:hover {
    background: #e3e6ea;
    transform: scale(1.08);
}
.lv-arrow-left {
    margin-right: 18px;
}
.lv-arrow-right {
    margin-left: 18px;
}
.lv-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    min-height: 260px;
}
.lv-video-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 12px 0 rgba(60,72,88,0.08);
    overflow: hidden;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    transition: box-shadow 0.2s;
}
.lv-video-card:hover {
    box-shadow: 0 6px 24px 0 rgba(60,72,88,0.16);
}
.lv-thumbnail-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    background: #e3e6ea;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}
.lv-thumbnail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}
.lv-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255,255,255,0.92);
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px 0 rgba(60,72,88,0.10);
    transition: background 0.2s, transform 0.2s;
    z-index: 1;
}
.lv-play-btn:hover {
    background: #e3e6ea;
    transform: translate(-50%, -50%) scale(1.08);
}
.lv-play-icon {
    font-size: 2.2rem;
    color: #1a3a4f;
    margin-left: 6px;
}
@media (max-width: 1024px) {
    .lv-container {
        padding: 32px 8px 36px 8px;
    }
    .lv-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .lv-video-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }
}
@media (max-width: 700px) {
    .latest-videos-section {
        padding: 32px 0 24px 0;
    }
    .lv-container {
        border-radius: 18px;
        padding: 18px 2vw 24px 2vw;
    }
    .lv-title {
        font-size: 1.5rem;
    }
    .lv-subtitle {
        font-size: 0.98rem;
        margin-bottom: 18px;
    }
    .lv-carousel {
        grid-template-columns: 1fr;
        gap: 8px;
        min-height: 180px;
    }
    .lv-video-card {
        width: 100%;
        min-width: 0;
        max-width: 100%;
        border-radius: 12px;
    }
    .lv-arrow {
        width: 38px;
        height: 38px;
        font-size: 1.3rem;
    }
}
/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Top Bar */
.top-bar {
    background: linear-gradient(135deg, #0078D4 0%, #0063B1 100%);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 30px;
}

.phone-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.3s;
}

.phone-link:hover {
    opacity: 0.8;
}

.phone-link i {
    font-size: 16px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 32px;
    height: 32px;
    background-color: #1a3a6b;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.social-icons a:hover {
    transform: translateY(-2px);
    background-color: #2a4a7b;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
    transition: opacity 0.3s;
    white-space: nowrap;
}

.top-link:hover {
    opacity: 0.8;
}

.top-link i {
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .top-bar {
        font-size: 13px;
    }
    
    .top-bar-right {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        gap: 15px;
        padding: 10px 15px;
    }
    
    .top-bar-left,
    .top-bar-right {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .top-bar-right {
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 12px;
    }
    
    .social-icons a {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    .top-link {
        font-size: 11px;
    }
}

/* Navigation Bar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo h1 {
    color: #2e4a9e;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: 2px;
    margin: 0;
    font-family: 'Arial Black', sans-serif;
}

.test-zone {
    background-color: white;
    border: 3px dotted #2e4a9e;
    padding: 8px 20px;
    border-radius: 8px;
}

.test-zone span {
    color: #2e4a9e;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover {
    color: #2e4a9e;
}

.nav-menu a.active {
    color: #f5a623;
}

.nav-menu .dropdown .fa-chevron-down {
    font-size: 11px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    padding: 10px 0;
    margin-top: 10px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: #333;
    font-weight: 500;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #2e4a9e;
}

.admission-btn {
    background: linear-gradient(135deg, #f5a623 0%, #e89b0d 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.admission-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.admission-btn i {
    font-size: 14px;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    color: #2e4a9e;
    cursor: pointer;
}

/* Responsive Navigation */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    .logo h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }
    
    .nav-menu.active {
        max-height: 500px;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu a {
        padding: 15px 20px;
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 0;
        background: #f9f9f9;
    }
    
    .nav-right {
        display: none;
    }
    
    .logo h1 {
        font-size: 32px;
    }
    
    .test-zone span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 28px;
    }
    
    .test-zone {
        padding: 6px 12px;
    }
    
    .test-zone span {
        font-size: 11px;
    }
    
    .nav-left {
        gap: 12px;
    }
}

/* Hero Banner */
.hero-banner {
    background: #000;
    padding: 0;
    overflow: hidden;
    position: relative;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Carousel Navigation */
.carousel-arrow {
    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;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.carousel-arrow:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.prev {
    left: 20px;
}

.carousel-arrow.next {
    right: 20px;
}

.carousel-arrow i {
    font-size: 20px;
    color: #c41e3a;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    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;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: #f5a623;
    border-color: white;
    transform: scale(1.2);
}

/* Responsive Carousel */
@media (max-width: 992px) {
    .carousel-container {
        height: 300px;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow i {
        font-size: 16px;
    }
    
    .carousel-arrow.prev {
        left: 10px;
    }
    
    .carousel-arrow.next {
        right: 10px;
    }
}

@media (max-width: 768px) {
    .carousel-container {
        height: 250px;
    }
    
    .carousel-arrow {
        width: 35px;
        height: 35px;
    }
    
    .carousel-arrow i {
        font-size: 14px;
    }
    
    .dot {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 480px) {
    .carousel-container {
        height: 200px;
    }
}

/* Three Column Info Section */
.info-section {
    background-color: #f5f5f5;
    padding: 50px 0;
}

.container-full {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.three-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.column {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.column-header {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 20px;
    text-align: center;
}

.column-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.column-header p {
    font-size: 12px;
    line-height: 1.4;
    opacity: 0.95;
}

.news-header {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

.column-content {
    padding: 15px;
    max-height: 500px;
    overflow-y: auto;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s;
}

.info-item:hover {
    background-color: #f9f9f9;
}

.info-date {
    background: linear-gradient(135deg, #0088cc 0%, #0099dd 100%);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    min-width: 60px;
    flex-shrink: 0;
}

.date-day {
    display: block;
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.date-month {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    margin-top: 2px;
}

.info-details {
    flex: 1;
}

.info-details h4 {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
    margin: 0;
    font-weight: 600;
}

.info-btn {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s;
    flex-shrink: 0;
}

.info-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.3);
}

.view-more-btn {
    display: block;
    text-align: center;
    padding: 15px;
    background-color: white;
    color: #0088cc;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    border-top: 2px solid #f0f0f0;
    transition: all 0.3s;
}

.view-more-btn:hover {
    background-color: #f9f9f9;
    color: #0066aa;
}

/* Quick Links Column */
.quick-links-column {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: transparent;
    box-shadow: none;
}

.quick-link-item {
    background: white;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.quick-link-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.quick-link-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
}

.entrance-news::before { background: #0088cc; }
.elearning-app::before { background: #27ae60; }
.tuition::before { background: #9b59b6; }
.test-series::before { background: #e67e22; }
.screening-test::before { background: #e74c3c; }
.repeaters::before { background: #f39c12; }
.question-papers::before { background: #34495e; }

.quick-link-content {
    flex: 1;
}

.quick-link-content h3 {
    font-size: 14px;
    color: #2c3e50;
    margin: 0 0 3px 0;
    font-weight: 700;
}

.quick-link-content p {
    font-size: 11px;
    color: #7f8c8d;
    margin: 0;
    line-height: 1.3;
}

.quick-link-icon {
    font-size: 28px;
    color: #bdc3c7;
}

.entrance-news .quick-link-icon { color: #0088cc; }
.elearning-app .quick-link-icon { color: #27ae60; }
.tuition .quick-link-icon { color: #9b59b6; }
.test-series .quick-link-icon { color: #e67e22; }
.screening-test .quick-link-icon { color: #e74c3c; }
.repeaters .quick-link-icon { color: #f39c12; }
.question-papers .quick-link-icon { color: #34495e; }

.quick-link-btn {
    background: linear-gradient(135deg, #0088cc 0%, #0099dd 100%);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.3s;
}

.quick-link-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0, 136, 204, 0.3);
}

/* Responsive Three Columns */
@media (max-width: 1200px) {
    .three-columns {
        grid-template-columns: 1fr 1fr;
    }
    
    .quick-links-column {
        grid-column: 1 / -1;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .quick-link-item {
        flex: 1;
        min-width: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .three-columns {
        grid-template-columns: 1fr;
    }
    
    .quick-link-item {
        min-width: 100%;
    }
    
    .column-content {
        max-height: 400px;
    }
    
    .info-item {
        flex-wrap: wrap;
    }
    
    .info-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 480px) {
    .info-section {
        padding: 30px 0;
    }
    
    .column-header h2 {
        font-size: 18px;
    }
    
    .info-date {
        min-width: 50px;
        padding: 8px 10px;
    }
    
    .date-day {
        font-size: 20px;
    }
    
    .info-details h4 {
        font-size: 12px;
    }
    
    .quick-link-content h3 {
        font-size: 13px;
    }
    
    .quick-link-icon {
        font-size: 24px;
    }
}

/* Courses Section with Tabs */
.courses-section {
    background: #ffffff;
    padding: 40px 0;
}

.courses-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
    background: #f0f0f0;
    border-radius: 50px;
    padding: 5px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tab-btn {
    flex: 1;
    padding: 15px 40px;
    border: none;
    background: transparent;
    color: #333;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 50px;
}

.tab-btn:hover {
    color: #e74c3c;
}

.tab-btn.active {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

.tab-content {
    display: none;
    animation: fadeInContent 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.courses-grid {
    display: flex;
    gap: 25px;
    overflow-x: auto;
    padding: 10px 5px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
}

.courses-grid::-webkit-scrollbar {
    height: 10px;
}

.courses-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.courses-grid::-webkit-scrollbar-thumb {
    background: #c0392b;
    border-radius: 10px;
}

.courses-grid::-webkit-scrollbar-thumb:hover {
    background: #e74c3c;
}

.course-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
    min-width: calc(33.333% - 17px);
    flex-shrink: 0;
    scroll-snap-align: start;
}

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

.card-content {
    padding: 20px;
    position: relative;
    z-index: 2;
}

.course-name {
    color: #e74c3c;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 4px 0;
}

.course-title {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 900;
    margin: 0 0 8px 0;
}

.course-class {
    color: #7f8c8d;
    font-size: 14px;
    margin: 0 0 10px 0;
}

.admission-badge {
    display: inline-block;
    border: 2px solid #e74c3c;
    color: #e74c3c;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.batch-date-box {
    display: inline-block;
    border: 2px solid #e74c3c;
    padding: 7px 16px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.date-label {
    display: block;
    color: #7f8c8d;
    font-size: 10px;
    margin-bottom: 2px;
}

.date-value {
    display: block;
    color: #e74c3c;
    font-size: 14px;
    font-weight: 700;
}

.target-year {
    color: #7f8c8d;
    font-size: 12px;
    margin: 0 0 15px 0;
}

.explore-btn {
    display: inline-block;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 9px 28px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.explore-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    margin-top: auto;
}

.image-bg {
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    opacity: 0.5;
}

.purple-bg {
    background: linear-gradient(135deg, #a78bcc 0%, #b39ddb 100%);
}

.yellow-bg {
    background: linear-gradient(135deg, #ffd966 0%, #ffe699 100%);
}

.blue-bg {
    background: linear-gradient(135deg, #7c99be 0%, #95afd1 100%);
}

.card-image img {
    position: absolute;
    right: 20px;
    bottom: 0;
    height: 100%;
    width: auto;
    object-fit: cover;
    z-index: 1;
}

/* Responsive Courses */
@media (max-width: 1024px) {
    .course-card {
        min-width: calc(50% - 13px);
    }
}

@media (max-width: 768px) {
    .courses-section {
        padding: 40px 0;
    }
    
    .courses-tabs {
        max-width: 100%;
        flex-wrap: wrap;
    }
    
    .tab-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .courses-grid {
        gap: 20px;
    }
    
    .course-card {
        min-width: calc(100% - 10px);
    }
    
    .card-content {
        padding: 25px;
    }
    
    .course-name {
        font-size: 20px;
    }
    
    .course-title {
        font-size: 30px;
    }
    
    .card-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .courses-tabs {
        padding: 3px;
    }
    
    .tab-btn {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .course-card {
        min-width: calc(100% - 10px);
    }
    
    .course-name {
        font-size: 18px;
    }
    
    .course-title {
        font-size: 26px;
    }
    
    .card-image {
        height: 250px;
    }
    
    .image-bg {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .students-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .banner-right {
        padding: 20px 15px;
    }
    
    .student-card img {
        border-radius: 6px;
    }
    
    .rank-badge {
        font-size: 10px;
        padding: 3px 6px;
    }
    
    .student-name {
        font-size: 10px;
    }
}

/* Meet Our Stars Section */
.stars-section {
    padding: 80px 0;
    background: #ffffff;
}

.stars-section .container {
    display: block;
    max-width: 1400px;
}

.stars-heading {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 30px 0;
    padding: 0;
    text-align: left;
}

.stars-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.stars-tab {
    padding: 12px 30px;
    border: 2px solid #d0d0d0;
    background: white;
    color: #2c3e50;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 8px;
}

.stars-tab:hover {
    border-color: #5a9fd4;
}

.stars-tab.active {
    border-color: #5a9fd4;
    color: #2c3e50;
    background: white;
}

.stars-cards-wrapper {
    position: relative;
}

.stars-cards-container {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.stars-cards-container::-webkit-scrollbar {
    height: 8px;
}

.stars-cards-container::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 4px;
}

.stars-cards-container::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 4px;
}

.star-card {
    min-width: calc(20% - 16px);
    max-width: calc(20% - 16px);
    background: #dce7f5;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
    overflow: hidden;
    scroll-snap-align: start;
}

.star-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.star-badge {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 10px 12px;
    font-size: 13px;
    font-weight: 700;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}

.star-image-circle {
    width: 100%;
    height: 220px;
    overflow: hidden;
    margin: 0;
    background: #dce7f5;
    position: relative;
}

.star-image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.star-name {
    font-size: 17px;
    font-weight: 700;
    color: #2c3e50;
    margin: 15px 15px 5px 15px;
    text-align: left;
}

.star-course {
    font-size: 13px;
    color: #888;
    margin: 0 15px 15px 15px;
    text-align: left;
}

.star-result {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 15px 18px 15px;
}

.result-value {
    font-size: 22px;
    font-weight: 800;
    color: #5a9fd4;
}

.result-arrow {
    width: 30px;
    height: 30px;
    background: #5a9fd4;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.result-arrow:hover {
    background: #4a8fc4;
    transform: translateX(3px);
}

.star-card.hidden {
    display: none;
}

.stars-loading,
.stars-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem;
    color: #999;
    font-size: 1.1rem;
    width: 100%;
}

/* Responsive -->
@media (max-width: 768px) {
    .stars-section {
        padding: 60px 0;
    }
    
    .stars-heading {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .stars-tabs {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .stars-tab {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .star-card {
        min-width: 240px;
    }
    
    .star-image-circle {
        width: 100px;
        height: 100px;
        margin: 25px 0 15px 0;
    }
    
    .star-name {
        font-size: 16px;
    }
    
    .result-value {
        font-size: 20px;
    }
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    top: -100px;
    left: -100px;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    bottom: -150px;
    right: -150px;
}

.why-choose-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.why-choose-left {
    flex: 0 0 60%;
    max-width: 60%;
}

.why-choose-label {
    color: #f39c12;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose-title {
    color: white;
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.why-choose-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.7;
    margin: 0 0 40px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-box {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    transition: all 0.3s;
}

.feature-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: #f39c12;
    transform: translateY(-5px);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.feature-icon i {
    font-size: 32px;
    color: #f39c12;
}

.feature-title {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.why-choose-right {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.student-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.orange-circle {
    position: absolute;
    width: 380px;
    height: 420px;
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    border-radius: 45% 55% 60% 40% / 50% 45% 55% 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    z-index: 1;
}

.orange-circle::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 340px;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    border-radius: 50% 40% 45% 55% / 55% 50% 50% 45%;
    top: -30px;
    right: -40px;
    opacity: 0.6;
    z-index: -1;
}

.orange-circle::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 280px;
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
    border-radius: 40% 60% 55% 45% / 60% 40% 60% 40%;
    bottom: -20px;
    left: -50px;
    opacity: 0.5;
    z-index: -1;
}

.student-image {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: auto;
    z-index: 2;
    display: block;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-choose-content {
        gap: 40px;
    }
    
    .why-choose-left {
        flex: 0 0 55%;
        max-width: 55%;
    }
    
    .why-choose-right {
        flex: 0 0 45%;
        max-width: 45%;
    }
    
    .why-choose-title {
        font-size: 30px;
    }
    
    .orange-circle {
        width: 320px;
        height: 360px;
    }
    
    .orange-circle::before {
        width: 250px;
        height: 280px;
    }
    
    .orange-circle::after {
        width: 200px;
        height: 230px;
    }
}

@media (max-width: 768px) {
    .why-choose-section {
        padding: 60px 0;
    }
    
    .why-choose-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .why-choose-left,
    .why-choose-right {
        flex: 1;
        max-width: 100%;
    }
    
    .why-choose-title {
        font-size: 26px;
    }
    
    .why-choose-description {
        font-size: 14px;
    }
    
    .features-grid {
        gap: 15px;
    }
    
    .feature-box {
        padding: 20px 15px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .feature-icon i {
        font-size: 28px;
    }
    
    .feature-title {
        font-size: 15px;
    }
    
    .orange-circle {
        width: 280px;
        height: 320px;
    }
    
    .orange-circle::before {
        width: 220px;
        height: 250px;
    }
    
    .orange-circle::after {
        width: 180px;
        height: 210px;
    }
    
    .student-image {
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .why-choose-section {
        padding: 40px 0;
    }
    
    .why-choose-title {
        font-size: 22px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .orange-circle {
        width: 250px;
        height: 250px;
    }
    
    .student-image {
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .stars-section {
        padding: 40px 0;
    }
    
    .stars-heading {
        font-size: 22px;
    }
    
    .stars-tab {
        flex: 1;
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .star-card {
        min-width: 220px;
    }
}

/* Our Magic Number Section */
.magic-number-section {
    padding: 60px 0 50px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.magic-bg-circles {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 1200px;
    height: 400px;
    z-index: 0;
    pointer-events: none;
}

.magic-bg-circles .circle {
    position: absolute;
    border-radius: 50%;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.magic-bg-circles .circle-1 {
    width: 640px;
    height: 640px;
    background: #fff7e6;
    opacity: 0.7;
}

.magic-bg-circles .circle-2 {
    width: 440px;
    height: 440px;
    background: #fff3d1;
    opacity: 0.7;
}

.magic-bg-circles .circle-3 {
    width: 240px;
    height: 240px;
    background: #fff0b3;
    opacity: 0.7;
}

.magic-number-section .container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
}

.magic-number-title {
    text-align: left;
    font-size: 32px;
    font-weight: 700;
    color: #222;
    margin-bottom: 40px;
    display: block;
    width: 100%;
    opacity: 0;
    transform: translateY(-30px);
    animation: fadeInDown 0.8s ease forwards;
    animation-delay: 0.2s;
}

.stats-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 32px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    width: 100%;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(50px) scale(0.9);
    animation: fadeInUpScale 0.8s ease forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 180px;
}

.stat-item:nth-child(1) {
    animation-delay: 0.4s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.6s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.8s;
}

.stat-item:nth-child(4) {
    animation-delay: 1s;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #1155cc;
    margin-bottom: 5px;
    line-height: 1;
    font-family: 'Arial', sans-serif;
    letter-spacing: -1px;
    display: block;
}

.stat-item:nth-child(1) .stat-number::after {
    content: 'K+';
    font-size: 48px;
}

.stat-item:nth-child(3) .stat-number::after {
    content: 'K+';
    font-size: 48px;
}

.stat-label {
    font-size: 17.6px;
    color: #444;
    font-weight: 400;
    margin: 0;
    margin-top: 5px;
    display: block;
}

/* Keyframe Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUpScale {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-20px);
    }
}

/* Responsive Design for Magic Number Section */
@media (max-width: 1024px) {
    .magic-number-section {
        padding: 50px 0 40px 0;
    }
    
    .magic-number-title {
        font-size: 28px;
        margin-bottom: 35px;
    }
    
    .stats-wrapper {
        gap: 25px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .stat-item:nth-child(1) .stat-number::after,
    .stat-item:nth-child(3) .stat-number::after {
        font-size: 42px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .magic-number-section {
        padding: 40px 0 35px 0;
    }
    
    .magic-number-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .stats-wrapper {
        gap: 20px;
        justify-content: center;
    }
    
    .stat-item {
        min-width: 140px;
    }
    
    .stat-number {
        font-size: 38px;
    }
    
    .stat-item:nth-child(1) .stat-number::after,
    .stat-item:nth-child(3) .stat-number::after {
        font-size: 38px;
    }
    
    .stat-label {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .magic-number-section {
        padding: 35px 0 30px 0;
    }
    
    .magic-number-title {
        font-size: 22px;
        margin-bottom: 25px;
    }
    
    .stats-wrapper {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .stat-item {
        min-width: auto;
    }
    
    .stat-number {
        font-size: 40px;
    }
    
    .stat-item:nth-child(1) .stat-number::after,
    .stat-item:nth-child(3) .stat-number::after {
        font-size: 40px;
    }
    
    .stat-label {
        font-size: 15px;
    }
}

/* About Section */
.about-section {
    padding: 0;
    background: #fff;
    overflow: hidden;
}

.about-content {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 100vw;
    margin: 0;
}

.about-left {
    flex: 1;
    min-width: 320px;
    position: relative;
    overflow: hidden;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 10px;
    padding: 20px;
}

.about-circle {
    border-radius: 50%;
    width: 100%;
    height: 100%;
    min-width: 80px;
    min-height: 80px;
}

.about-circle.blue {
    background: #4a7ba7;
}

.about-circle.tan {
    background: #b8a390;
}

.about-right {
    flex: 1;
    min-width: 320px;
    background: #0a223a;
    color: #fff;
    padding: 50px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-title {
    font-size: 35px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
    color: #fff;
}

.about-description {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 35px;
    color: #fff;
}

.about-btn {
    background: #e53935;
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    padding: 16px 35px;
    font-size: 18px;
    box-shadow: 0 2px 8px rgba(229, 57, 53, 0.1);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.about-btn:hover {
    background: #d32f2f;
    box-shadow: 0 4px 16px rgba(229, 57, 53, 0.25);
    transform: translateY(-2px);
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .about-right {
        padding: 40px 35px;
    }
    
    .about-title {
        font-size: 30px;
    }
    
    .about-description {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .about-btn {
        padding: 14px 30px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
    }
    
    .about-left,
    .about-right {
        min-width: 100%;
        max-width: 100%;
    }
    
    .about-image-wrapper {
        min-height: 350px;
    }
    
    .about-circles {
        grid-template-columns: repeat(3, 1fr);
        padding: 15px;
        gap: 8px;
    }
    
    .about-right {
        padding: 35px 25px;
    }
    
    .about-title {
        font-size: 26px;
    }
    
    .about-description {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .about-image-wrapper {
        min-height: 300px;
    }
    
    .about-circles {
        grid-template-columns: repeat(2, 1fr);
        padding: 10px;
        gap: 6px;
    }
    
    .about-circle {
        min-width: 60px;
        min-height: 60px;
    }
    
    .about-right {
        padding: 30px 20px;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .about-description {
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .about-btn {
        padding: 12px 25px;
        font-size: 15px;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f8f9fd;
}

.testimonials-wrapper {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.testimonials-left {
    width: 100%;
}

.testimonials-header {
    text-align: left;
    margin-bottom: 0;
}

.testimonials-label {
    color: #e53935;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    padding-bottom: 8px;
    border-bottom: 2px solid #e53935;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 800;
    margin: 20px 0 15px 0;
    color: #0a223a;
    line-height: 1.2;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #e53935 60%, #ffc107 100%);
    margin: 0;
    border-radius: 2px;
}

.testimonials-right {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonials-carousel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 35px 28px 30px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    opacity: 1;
    transform: translateY(0);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 32px rgba(33, 150, 243, 0.15);
    background: #1155cc;
}

.testimonial-card:hover .testimonial-text {
    color: #fff;
}

.testimonial-card:hover .student-name {
    color: #fff;
}

.testimonial-card:hover .student-info {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.student-profile {
    position: relative;
    margin-bottom: 15px;
}

.student-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid #ffc107;
    object-fit: cover;
}

.achievement-badge {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffc107;
    color: #000;
    border-radius: 15px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.stars-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    justify-content: center;
}

.star {
    color: #e53935;
    font-size: 18px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    color: #555;
}5px;
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    color: #555;
}

.student-info {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 20px;
    width: 100%;
}

.student-name {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: #0a223a;
}

.student-achievement {
    font-size: 14
.testimonials-dots {
    display: flex;
    justify-content: flex-end;
    align-0px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #e53935;
    width: 14px;
    height: 14px;
}

/* Responsive Design for Testimonials Section */
@media (max-width: 1200px) {
    .testimonials-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-wrapper {
        gap: 40px;
    }
    
    .testimonials-title {
        font-size: 38px;
    }
    
    .testimonials-carousel {
        gap: 20px;
    }
    
    .testimonial-card {
        padding: 30px 25px 28px 25px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 50px 0;
    }
    
    .testimonials-wrapper {
        gap: 35px;
    }
    
    .testimonials-title {
        font-size: 36px;
    }
    
    .testimonials-carousel {
        grid-template-columns: 1fr;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
    
    .testimonials-dots {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonials-label {
        font-size: 13px;
    }
    
    .testimonials-title {
        font-size: 30px;
    }
    
    .testimonial-card {
        padding: 25px 20px 22px 20px;
    }
    
    .student-avatar {
        width: 75px;
        height: 75px;
    }
    
    .star {
        font-size: 16px;
    }
    
    .student-name {
        font-size: 17px;
    }
}


}


