/* =========================
   Top Bar Start
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}
/* =========================
   Opening Popup Start
========================= */
body.popup-open {
    overflow: hidden;
}

.site-popup-overlay {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100dvh;
    background: rgba(0, 0, 0, 0.82);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 999999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-popup-overlay.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.site-popup-box {
    position: relative;
    width: 100%;
    max-width: 720px;
    max-height: calc(100dvh - 40px);
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
    transform: scale(0.92);
    transition: transform 0.35s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-popup-overlay.show .site-popup-box {
    transform: scale(1);
}

.site-popup-link {
    display: block;
    width: 100%;
    text-decoration: none;
    line-height: 0;
}

.site-popup-link img {
    width: 100%;
    height: auto;
    max-height: calc(100dvh - 40px);
    display: block;
    object-fit: contain;
    background: #ffffff;
}

.site-popup-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.78);
    color: #ffffff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.site-popup-close:hover {
    background: #1d4d2f;
    transform: rotate(90deg);
}

/* =========================
   Tablet
========================= */
@media (max-width: 991px) {
    .site-popup-overlay {
        padding: 16px;
    }

    .site-popup-box {
        max-width: 92%;
        max-height: calc(100dvh - 32px);
        border-radius: 16px;
    }

    .site-popup-link img {
        max-height: calc(100dvh - 32px);
    }

    .site-popup-close {
        width: 38px;
        height: 38px;
        font-size: 24px;
        top: 8px;
        right: 8px;
    }
}

/* =========================
   Mobile
========================= */
@media (max-width: 767px) {
    .site-popup-overlay {
        padding: 12px;
        align-items: center;
        justify-content: center;
    }

    .site-popup-box {
        width: 100%;
        max-width: 100%;
        max-height: calc(100dvh - 24px);
        border-radius: 14px;
    }

    .site-popup-link {
        width: 100%;
    }

    .site-popup-link img {
        width: 100%;
        height: auto;
        max-height: calc(100dvh - 24px);
        object-fit: contain;
    }

    .site-popup-close {
        width: 34px;
        height: 34px;
        font-size: 22px;
        top: 6px;
        right: 6px;
    }
}

/* =========================
   Small Mobile
========================= */
@media (max-width: 480px) {
    .site-popup-overlay {
        padding: 10px;
    }

    .site-popup-box {
        max-height: calc(100dvh - 20px);
        border-radius: 12px;
    }

    .site-popup-link img {
        max-height: calc(100dvh - 20px);
    }

    .site-popup-close {
        width: 30px;
        height: 30px;
        font-size: 20px;
        top: 5px;
        right: 5px;
    }
}
/* =========================
   Opening Popup End
========================= */

.top-bar {
    background-color: #000000;
    color: #ffffff;
    width: 100%;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.top-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-left a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.top-left a:hover {
    color: #f4b400;
}

.top-left i {
    font-size: 14px;
}

.top-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.top-right a {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s ease;
}

.top-right a:hover {
    background-color: #f4b400;
    border-color: #f4b400;
    color: #000000;
}

/* =========================
   Responsive
========================= */
@media (max-width: 991px) {
    .top-bar {
        padding: 12px 0;
    }

    .top-bar-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .top-left {
        gap: 12px;
    }

    .top-left a {
        font-size: 13px;
    }

    .top-right {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }

    .top-bar {
        font-size: 12px;
        padding: 10px 0;
    }

    .top-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        width: 100%;
    }

    .top-left a {
        width: 100%;
        line-height: 1.5;
    }

    .top-left span {
        word-break: break-word;
    }

    .top-right {
        gap: 10px;
    }

    .top-right a {
        width: 32px;
        height: 32px;
        font-size: 13px;
    }
}

/* =========================
   Top Bar End
========================= */

/* =========================
   Navbar Start
========================= */
.main-header {
    width: 100%;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar {
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar a,
.navbar button,
.navbar * {
    -webkit-tap-highlight-color: transparent;
}

.navbar a:focus,
.navbar a:active,
.navbar button:focus,
.navbar button:active {
    outline: none;
    box-shadow: none;
}

/* =========================
   Brand (Desktop Gap Controlled Here)
========================= */
.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    margin-left: 28px;
    /* desktop gap between nav and logo */
}

.nav-brand img {
    width: 62px;
    height: 62px;
    object-fit: contain;
    display: block;
}

.brand-text h1 {
    font-size: 22px;
    line-height: 1.2;
    color: #1d4d2f;
    font-weight: 700;
    margin: 0;
}

.brand-text span {
    display: block;
    font-size: 12px;
    color: #444444;
    margin-top: 2px;
    font-weight: 500;
}

/* =========================
   Left Nav
========================= */
.nav-left {
    display: flex;
    align-items: center;
    padding-left: 200px;
    flex: 1;
    min-width: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-links>li {
    position: relative;
}

.nav-links>li>a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 32px 9px;
    text-decoration: none;
    color: #111111;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    white-space: nowrap;
}

.nav-links>li>a:hover {
    color: #1d4d2f;
}

.nav-links>li>a i {
    font-size: 11px;
}

/* =========================
   Dropdown
========================= */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 99;
    border-top: 3px solid #f4b400;
}

.dropdown-menu li a {
    display: block;
    padding: 11px 18px;
    text-decoration: none;
    color: #222222;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #f8f8f8;
    color: #1d4d2f;
    padding-left: 24px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* =========================
   Mobile Toggle
========================= */
.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: none;
    background-color: #1d4d2f;
    border-radius: 10px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
    flex-shrink: 0;
    outline: none;
    box-shadow: none;
}

.menu-toggle span {
    width: 22px;
    height: 2px;
    background-color: #ffffff;
    display: block;
    border-radius: 2px;
    transition: 0.3s ease;
}

/* =========================
   Large Laptop
========================= */
@media (max-width: 1300px) {
    .nav-links>li>a {
        padding: 30px 7px;
        font-size: 13px;
    }

    .nav-brand {
        margin-left: 20px;
    }

    .brand-text h1 {
        font-size: 20px;
    }

    .brand-text span {
        font-size: 11px;
    }

    .nav-brand img {
        width: 56px;
        height: 56px;
    }
}

/* =========================
   Medium Laptop / Small Desktop
========================= */
@media (max-width: 1150px) {
    .nav-links>li>a {
        padding: 28px 5px;
        font-size: 12px;
    }

    .nav-brand {
        margin-left: 14px;
    }

    .brand-text h1 {
        font-size: 18px;
    }

    .brand-text span {
        font-size: 10px;
    }

    .nav-brand img {
        width: 50px;
        height: 50px;
    }
}

/* =========================
   Mobile / Tablet Menu
========================= */
@media (max-width: 991px) {
    .navbar {
        min-height: 84px;
        padding: 12px 0;
        justify-content: space-between;
    }

    .nav-brand {
        order: 1;
        margin-left: 0;
        /* remove desktop gap on mobile */
        margin-right: auto;
        gap: 10px;
    }

    .nav-brand img {
        width: 52px;
        height: 52px;
    }

    .brand-text h1 {
        font-size: 20px;
    }

    .brand-text span {
        font-size: 12px;
    }

    .menu-toggle {
        display: flex;
        order: 2;
        margin-left: auto;
    }

    .nav-left {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #ffffff;
        border-radius: 0 0 14px 14px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        max-height: 0;
        overflow: hidden;
        transition: 0.4s ease;
        display: block;
        flex: unset;
        z-index: 999;
    }

    .nav-left.active {
        max-height: 90vh;
        overflow-y: auto;
        padding: 10px 0 16px;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
    }

    .nav-links>li {
        width: 100%;
        border-bottom: 1px solid #f1f1f1;
    }

    .nav-links>li>a {
        width: 100%;
        justify-content: space-between;
        padding: 16px 18px;
        font-size: 15px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        background-color: #f8faf8;
        min-width: 100%;
        padding: 0;
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .dropdown-menu li a {
        padding: 12px 28px;
        font-size: 14px;
        border-top: 1px solid #ececec;
    }

    .dropdown-menu li a:hover {
        padding-left: 32px;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

/* =========================
   Small Mobile
========================= */
@media (max-width: 576px) {
    .navbar {
        min-height: 76px;
    }

    .nav-brand {
        gap: 8px;
    }

    .nav-brand img {
        width: 42px;
        height: 42px;
    }

    .brand-text h1 {
        font-size: 15px;
    }

    .brand-text span {
        font-size: 9px;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .nav-links>li>a {
        padding: 14px 15px;
        font-size: 14px;
    }

    .dropdown-menu li a {
        padding: 11px 22px;
        font-size: 13px;
    }
}

/* =========================
   Navbar End
========================= */

/* =========================
   Hero Section Start
========================= */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 100px 0 40px;
    background: url("Sainik-public.webp") center center / cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.78) 0%,
            rgba(0, 0, 0, 0.60) 45%,
            rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 720px;
}

.hero-badge {
    display: inline-block;
    background-color: #f4b400;
    color: #111111;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 50px;
    margin-bottom: 22px;
    box-shadow: 0 8px 20px rgba(244, 180, 0, 0.25);
}

.hero-content h2 {
    font-size: 58px;
    line-height: 1.15;
    color: #ffffff;
    font-weight: 800;
    margin: 0 0 20px;
    max-width: 900px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.92);
    max-width: 650px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 15px 28px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s ease;
}

.primary-btn {
    background-color: #1d4d2f;
    color: #ffffff;
    border: 2px solid #1d4d2f;
}

.primary-btn:hover {
    background-color: #163c24;
    border-color: #163c24;
}

.secondary-btn {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.secondary-btn:hover {
    background-color: #ffffff;
    color: #111111;
}

/* =========================
   Large Tablet / Small Laptop
========================= */
@media (max-width: 1200px) {
    .hero-section {
        min-height: 85vh;
        padding: 90px 0 35px;
    }

    .hero-content h2 {
        font-size: 48px;
    }

    .hero-content p {
        font-size: 17px;
        max-width: 620px;
    }
}

/* =========================
   Tablet
========================= */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 80px 0 35px;
        background-position: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-content h2 {
        font-size: 40px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 16px;
        line-height: 1.7;
        max-width: 100%;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-btn {
        padding: 14px 24px;
        font-size: 14px;
    }
}

/* =========================
   Mobile
========================= */
@media (max-width: 576px) {
    .hero-section {
        padding: 65px 0 30px;
        min-height: auto;
    }

    .hero-badge {
        font-size: 12px;
        padding: 8px 14px;
        margin-bottom: 16px;
    }

    .hero-content h2 {
        font-size: 28px;
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .hero-btn {
        width: 100%;
        padding: 13px 18px;
        font-size: 14px;
    }
}

/* =========================
   Hero Section End
========================= */

/* =========================
   Running Notice Ticker Start
========================= */
.notice-ticker {
    width: 100%;
    display: flex;
    align-items: center;
    background-color: #1d4d2f;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.notice-label {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f4b400;
    color: #111111;
    font-size: 14px;
    font-weight: 700;
    padding: 14px 18px;
    flex-shrink: 0;
    white-space: nowrap;
}

.notice-label i {
    font-size: 14px;
}

.notice-track-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.notice-track {
    display: flex;
    width: max-content;
    animation: scrollTicker 28s linear infinite;
}

.notice-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-left: 30px;
    white-space: nowrap;
}

.notice-content span {
    position: relative;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    white-space: nowrap;
    padding-right: 40px;
}

.notice-content span::after {
    content: "•";
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #f4b400;
    font-size: 18px;
    line-height: 1;
}

.notice-content span:last-child::after {
    content: "•";
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover (desktop) */
.notice-ticker:hover .notice-track {
    animation-play-state: paused;
}

/* =========================
   Tablet
========================= */
@media (max-width: 991px) {
    .notice-label {
        font-size: 13px;
        padding: 12px 14px;
    }

    .notice-content {
        gap: 28px;
        padding-left: 20px;
    }

    .notice-content span {
        font-size: 13px;
        padding-right: 28px;
    }
}

/* =========================
   Mobile
========================= */
@media (max-width: 576px) {
    .notice-ticker {
        flex-direction: column;
        align-items: stretch;
    }

    .notice-label {
        justify-content: center;
        width: 100%;
        font-size: 12px;
        padding: 10px 12px;
    }

    .notice-track-wrap {
        width: 100%;
    }

    .notice-track {
        animation: scrollTicker 22s linear infinite;
    }

    .notice-content {
        gap: 22px;
        padding-left: 16px;
    }

    .notice-content span {
        font-size: 12px;
        padding-right: 22px;
    }

    .notice-content span::after {
        right: 8px;
        font-size: 14px;
    }
}

/* =========================
   Running Notice Ticker End
========================= */

/* =========================
   Learning Wings Section Start
========================= */
.learning-wings-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8faf8 100%);
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 50px;
}

.section-tag {
    display: inline-block;
    background-color: rgba(244, 180, 0, 0.15);
    color: #1d4d2f;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 30px;
    margin-bottom: 16px;
}

.section-heading h2 {
    font-size: 40px;
    line-height: 1.25;
    color: #111111;
    margin: 0 0 14px;
    font-weight: 800;
}

.section-heading p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

.learning-wings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.learning-wing-card {
    position: relative;
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #f4b400;
    transition: 0.3s ease;
    overflow: hidden;
}

.learning-wing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.wing-icon {
    width: 62px;
    height: 62px;
    border-radius: 16px;
    background-color: rgba(29, 77, 47, 0.08);
    color: #1d4d2f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.wing-count {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 13px;
    font-weight: 700;
    color: #1d4d2f;
    background-color: rgba(29, 77, 47, 0.08);
    padding: 6px 10px;
    border-radius: 20px;
}

.learning-wing-card h3 {
    font-size: 26px;
    line-height: 1.3;
    color: #111111;
    margin: 0 0 8px;
    font-weight: 700;
}

.wing-classes {
    font-size: 14px;
    color: #1d4d2f;
    font-weight: 700;
    margin-bottom: 8px;
}

.wing-title-line {
    font-size: 16px;
    color: #f4b400;
    font-weight: 700;
    margin-bottom: 12px;
}

.wing-description {
    font-size: 14px;
    line-height: 1.8;
    color: #4b5563;
    margin: 0;
}

/* =========================
   Tablet
========================= */
@media (max-width: 991px) {
    .learning-wings-section {
        padding: 70px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading p {
        font-size: 15px;
    }

    .learning-wings-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .learning-wing-card {
        padding: 26px 22px;
    }

    .learning-wing-card h3 {
        font-size: 24px;
    }
}

/* =========================
   Mobile
========================= */
@media (max-width: 576px) {
    .learning-wings-section {
        padding: 55px 0;
    }

    .section-heading {
        margin-bottom: 28px;
    }

    .section-tag {
        font-size: 12px;
        padding: 7px 12px;
        margin-bottom: 12px;
    }

    .section-heading h2 {
        font-size: 24px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .section-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .learning-wing-card {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .wing-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
        border-radius: 14px;
        margin-bottom: 14px;
    }

    .wing-count {
        top: 16px;
        right: 16px;
        font-size: 11px;
        padding: 5px 8px;
    }

    .learning-wing-card h3 {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .wing-classes {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .wing-title-line {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .wing-description {
        font-size: 13px;
        line-height: 1.7;
    }
}

/* =========================
   Learning Wings Section End
========================= */

/* =========================
   Our Inspirators Section Start
========================= */
.inspirators-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.inspirators-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.inspirator-card {
    background-color: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.inspirator-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.inspirator-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.inspirator-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
    transition: 0.4s ease;
}

.inspirator-card:hover .inspirator-image img {
    transform: scale(1.05);
}

.inspirator-content {
    padding: 24px 22px 26px;
}

.inspirator-role {
    display: inline-block;
    background-color: rgba(244, 180, 0, 0.15);
    color: #1d4d2f;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 12px;
    border-radius: 30px;
    margin-bottom: 12px;
}

.inspirator-content h3 {
    font-size: 24px;
    line-height: 1.3;
    color: #111111;
    margin: 0 0 12px;
    font-weight: 700;
}

.inspirator-content p {
    font-size: 14px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.inspirator-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #1d4d2f;
    color: #ffffff;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.inspirator-btn:hover {
    background-color: #163c24;
}

/* =========================
   Tablet
========================= */
@media (max-width: 991px) {
    .inspirators-section {
        padding: 70px 0;
    }

    .inspirators-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .inspirator-image {
        height: 360px;
    }

    .inspirator-content {
        padding: 22px 20px 24px;
    }

    .inspirator-content h3 {
        font-size: 22px;
    }
}

/* =========================
   Mobile
========================= */
@media (max-width: 576px) {
    .inspirators-section {
        padding: 55px 0;
    }

    .inspirator-card {
        border-radius: 18px;
    }

    .inspirator-image {
        height: 260px;
    }

    .inspirator-content {
        padding: 18px 16px 20px;
    }

    .inspirator-role {
        font-size: 11px;
        padding: 6px 10px;
        margin-bottom: 10px;
    }

    .inspirator-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .inspirator-content p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .inspirator-btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 13px;
    }
}

/* =========================
   Our Inspirators Section End
========================= */

/* =========================
   News Section Start
========================= */
.news-section {
    padding: 90px 0;
    background-color: #f8faf8;
}

.news-box {
    background-color: #ffffff;
    border-radius: 22px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.news-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(90deg, #1d4d2f 0%, #245f3a 100%);
}

.news-header h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
}

.news-header h3 i {
    color: #f4b400;
}

.news-ticker {
    height: 380px;
    /* approx 5 items visible */
    overflow: hidden;
    position: relative;
}

.news-track {
    display: flex;
    flex-direction: column;
    animation: verticalNewsScroll 10s linear infinite;
}

.news-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 18px 24px;
    border-bottom: 1px solid #eef1ef;
    min-height: 76px;
    background-color: #ffffff;
}

.news-date {
    flex-shrink: 0;
    min-width: 95px;
    font-size: 12px;
    font-weight: 700;
    color: #1d4d2f;
    background-color: rgba(29, 77, 47, 0.08);
    padding: 8px 10px;
    border-radius: 8px;
    text-align: center;
}

.news-item a {
    text-decoration: none;
    font-size: 15px;
    line-height: 1.7;
    color: #1f2937;
    font-weight: 500;
    transition: 0.3s ease;
}

.news-item a:hover {
    color: #1d4d2f;
}

.news-ticker:hover .news-track {
    animation-play-state: paused;
}

@keyframes verticalNewsScroll {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

/* =========================
   Tablet
========================= */
@media (max-width: 991px) {
    .news-section {
        padding: 70px 0;
    }

    .news-header {
        padding: 18px 20px;
    }

    .news-header h3 {
        font-size: 20px;
    }

    .news-ticker {
        height: 400px;
    }

    .news-item {
        padding: 16px 20px;
        gap: 14px;
    }

    .news-item a {
        font-size: 14px;
    }
}

/* =========================
   Mobile
========================= */
@media (max-width: 576px) {
    .news-section {
        padding: 55px 0;
    }

    .news-box {
        border-radius: 18px;
    }

    .news-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 16px;
    }

    .news-header h3 {
        font-size: 18px;
    }

    .view-all-news {
        padding: 9px 14px;
        font-size: 12px;
    }

    .news-ticker {
        height: 420px;
    }

    .news-item {
        flex-direction: column;
        gap: 10px;
        padding: 14px 16px;
        min-height: auto;
    }

    .news-date {
        min-width: auto;
        font-size: 11px;
        padding: 7px 10px;
    }

    .news-item a {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* =========================
   News Section End
========================= */

/* =========================
   Our Streams Section Start
========================= */
.streams-section {
    padding: 90px 0;
    background-color: #ffffff;
}

.streams-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto;
}

.stream-box {
    position: relative;
    border-radius: 24px;
    padding: 28px 28px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
    transition: 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.stream-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.stream-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.stream-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.65);
    color: #111111;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 12px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.stream-class {
    font-size: 13px;
    font-weight: 700;
    color: #1d4d2f;
    background-color: rgba(255, 255, 255, 0.55);
    padding: 8px 12px;
    border-radius: 30px;
}

.stream-box h3 {
    font-size: 32px;
    line-height: 1.2;
    color: #111111;
    margin: 0 0 8px;
    font-weight: 800;
}

.stream-line {
    font-size: 16px;
    color: #1d4d2f;
    font-weight: 700;
    margin-bottom: 14px;
}

.stream-description {
    font-size: 15px;
    line-height: 1.8;
    color: #374151;
    max-width: 780px;
    margin: 0;
}

/* Different backgrounds */
.stream-science {
    background: linear-gradient(135deg, #f5fff8 0%, #e9f8ee 100%);
}

.stream-commerce {
    background: linear-gradient(135deg, #fffdf3 0%, #fff5cf 100%);
}

.stream-humanities {
    background: linear-gradient(135deg, #f8f9ff 0%, #edf0ff 100%);
}

/* =========================
   Tablet
========================= */
@media (max-width: 991px) {
    .streams-section {
        padding: 70px 0;
    }

    .streams-grid {
        gap: 18px;
    }

    .stream-box {
        padding: 24px 22px;
        border-radius: 20px;
    }

    .stream-box h3 {
        font-size: 26px;
    }

    .stream-line {
        font-size: 15px;
    }

    .stream-description {
        font-size: 14px;
        line-height: 1.7;
    }
}

/* =========================
   Mobile
========================= */
@media (max-width: 576px) {
    .streams-section {
        padding: 55px 0;
    }

    .streams-grid {
        gap: 16px;
    }

    .stream-box {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .stream-top {
        gap: 10px;
        margin-bottom: 14px;
    }

    .stream-badge,
    .stream-class {
        font-size: 11px;
        padding: 7px 10px;
    }

    .stream-box h3 {
        font-size: 22px;
        margin-bottom: 6px;
    }

    .stream-line {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .stream-description {
        font-size: 13px;
        line-height: 1.7;
    }
}

/* =========================
   Our Streams Section End
========================= */

/* =========================
   School Infrastructure Section Start
========================= */
.infrastructure-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #f8faf8 0%, #ffffff 100%);
}

.infrastructure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.infra-card {
    position: relative;
    height: 340px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

.infra-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s ease;
}

.infra-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.18) 35%,
            rgba(0, 0, 0, 0.78) 100%);
    z-index: 1;
}

.infra-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 22px 20px;
    z-index: 2;
}

.infra-overlay h3 {
    font-size: 24px;
    line-height: 1.3;
    color: #ffffff;
    margin: 0 0 10px;
    font-weight: 700;
}

.infra-overlay p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
}

.infra-card:hover img {
    transform: scale(1.08);
}

/* =========================
   Tablet
========================= */
@media (max-width: 991px) {
    .infrastructure-section {
        padding: 70px 0;
    }

    .infrastructure-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .infra-card {
        height: 300px;
        border-radius: 18px;
    }

    .infra-overlay {
        padding: 18px 16px;
    }

    .infra-overlay h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .infra-overlay p {
        font-size: 13px;
        line-height: 1.6;
    }
}

/* =========================
   Mobile
========================= */
@media (max-width: 576px) {
    .infrastructure-section {
        padding: 55px 0;
    }

    .infrastructure-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .infra-card {
        height: 260px;
        border-radius: 16px;
    }

    .infra-overlay {
        padding: 16px 14px;
    }

    .infra-overlay h3 {
        font-size: 18px;
        margin-bottom: 6px;
    }

    .infra-overlay p {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* =========================
   School Infrastructure Section End
========================= */

/* =========================
   Shining Stars Section Start
========================= */
.shining-stars-section {
    padding: 90px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8faf8 100%);
    overflow: hidden;
}

.stars-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.stars-track {
    display: flex;
    align-items: stretch;
    gap: 20px;
    width: max-content;
    animation: starsScroll 28s linear infinite;
}

.star-card {
    width: 280px;
    flex-shrink: 0;
    background-color: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: 0.3s ease;
}

.star-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
}

.star-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.star-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    display: block;
}

.star-content {
    padding: 18px 16px 20px;
    text-align: center;
}

.star-content h3 {
    font-size: 20px;
    line-height: 1.3;
    color: #111111;
    margin: 0 0 8px;
    font-weight: 700;
}

.star-class {
    display: inline-block;
    background-color: rgba(29, 77, 47, 0.08);
    color: #1d4d2f;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 12px;
    border-radius: 30px;
    margin-bottom: 10px;
}

.star-content p {
    font-size: 13px;
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.stars-marquee:hover .stars-track {
    animation-play-state: paused;
}

@keyframes starsScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================
   Tablet
========================= */
@media (max-width: 991px) {
    .shining-stars-section {
        padding: 70px 0;
    }

    .stars-track {
        gap: 16px;
        animation-duration: 24s;
    }

    .star-card {
        width: 240px;
        border-radius: 18px;
    }

    .star-image {
        height: 210px;
    }

    .star-content h3 {
        font-size: 18px;
    }
}

/* =========================
   Mobile
========================= */
@media (max-width: 576px) {
    .shining-stars-section {
        padding: 55px 0;
    }

    .stars-track {
        gap: 14px;
        animation-duration: 20s;
    }

    .star-card {
        width: 210px;
        border-radius: 16px;
    }

    .star-image {
        height: 180px;
    }

    .star-content {
        padding: 14px 12px 16px;
    }

    .star-content h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .star-class {
        font-size: 11px;
        padding: 6px 10px;
        margin-bottom: 8px;
    }

    .star-content p {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* =========================
   Shining Stars Section End
========================= */

/* =========================
   Footer Start
========================= */
.main-footer {
    background-color: #111111;
    color: #ffffff;
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 30px;
    padding: 70px 0 45px;
}

.footer-column h4 {
    font-size: 20px;
    line-height: 1.3;
    color: #ffffff;
    margin: 0 0 18px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    background-color: #f4b400;
    border-radius: 10px;
}

/* Footer Brand */
.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 18px;
}

.footer-brand img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.footer-brand-text h3 {
    font-size: 22px;
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    font-weight: 700;
}

.footer-brand-text span {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 3px;
}

.footer-about p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 22px;
}

/* Footer Social */
.footer-socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-socials a:hover {
    background-color: #f4b400;
    color: #111111;
}

/* Footer Links */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    line-height: 1.6;
    transition: 0.3s ease;
}

.footer-links li a:hover {
    color: #f4b400;
    padding-left: 4px;
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
}

.footer-contact li i {
    color: #f4b400;
    font-size: 14px;
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-contact li span,
.footer-contact li a {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: 0.3s ease;
    word-break: break-word;
}

.footer-contact li a:hover {
    color: #f4b400;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
    background-color: #0a0a0a;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.footer-bottom-inner p {
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

/* =========================
   Tablet
========================= */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 55px 0 35px;
    }

    .footer-brand-text h3 {
        font-size: 20px;
    }
}

/* =========================
   Mobile
========================= */
@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 45px 0 28px;
    }

    .footer-column h4 {
        font-size: 18px;
        margin-bottom: 14px;
        padding-bottom: 8px;
    }

    .footer-brand {
        gap: 10px;
        margin-bottom: 14px;
    }

    .footer-brand img {
        width: 48px;
        height: 48px;
    }

    .footer-brand-text h3 {
        font-size: 18px;
    }

    .footer-brand-text span {
        font-size: 10px;
    }

    .footer-about p,
    .footer-links li a,
    .footer-contact li span,
    .footer-contact li a {
        font-size: 13px;
    }

    .footer-socials a {
        width: 36px;
        height: 36px;
    }

    .footer-bottom {
        padding: 14px 0;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .footer-bottom-inner p {
        font-size: 12px;
    }
}

/* =========================
   Footer End
========================= */