 :root {
            --sttar-blue: #162F53;
            --sttar-orange: #ED5525;
            --sttar-white: #FFFFFF;
            --bg-color: #F6F5F5;
            --gold-accent: #F7E6CA;
            --card-bg: #EBE8E8;
            --text-dark: #162F53;
            --black-text: #000000;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        body {
            font-family: 'Nunito Sans', 'Montserrat', sans-serif;
            background: var(--bg-color);
            color: var(--text-dark);
            overflow-x: hidden;
        }

        /* ===== PAGE LOADER ===== */
        .page-loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #162F53;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .page-loader.loaded {
            opacity: 0;
            visibility: hidden;
        }

        .loader-logo {
            width: 120px;
            height: auto;
        }

        .loader-logo svg {
            width: 100%;
            height: auto;
        }

        .loader-logo svg path {
            fill: none;
            stroke: #ED5525;
            stroke-width: 0.8;
            stroke-dasharray: 100;
            stroke-dashoffset: 100;
            animation: drawPath 2s ease-in-out forwards;
        }

        .loader-logo svg .draw1 {
            animation-delay: 0s;
        }

        .loader-logo svg .draw2 {
            animation-delay: 0.3s;
        }

        .loader-logo svg .draw3 {
            animation-delay: 0.6s;
        }

        @keyframes drawPath {
            0% {
                stroke-dashoffset: 100;
                opacity: 0;
            }
            50% {
                opacity: 1;
            }
            100% {
                stroke-dashoffset: 0;
                opacity: 1;
            }
        }

        /* ===== TOP BAR ===== */
        .top-bar {
            background: var(--sttar-blue);
            height: 76px;
            display: flex;
            align-items: center;
            padding: 0 20px;
            position: sticky;
            top: 0;
            z-index: 1000;
            width: 100%;
        }

        .top-bar .container-fluid {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1440px;
            margin: 0 auto;
            width: 100%;
            padding: 0 20px;
        }

        .top-bar-logo img {
            height: 60px;
            width: auto;
        }

        .top-bar-center {
            color: var(--sttar-white);
            font-family: 'Nunito Sans', sans-serif;
            font-size: 21px;
            font-weight: 400;
            text-align: center;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        .top-bar-menu {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            color: var(--sttar-white);
            font-family: 'Nunito Sans', sans-serif;
            font-size: 18px;
            font-weight: 400;
        }

        .top-bar-menu .menu-icon {
            display: flex;
            flex-direction: column;
            gap: 5px;
            width: 18px;
        }

        .top-bar-menu .menu-icon span {
            width: 100%;
            height: 2px;
            background: var(--sttar-white);
            border-radius: 2px;
        }

        /* ===== OFFCANVAS NAV ===== */
        .nav-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1035;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .offcanvas-menu {
            position: fixed;
            top: 0;
            right: 0;
            width: 300px;
            height: 100vh;
            background: var(--sttar-blue);
            padding: 100px 30px 30px;
            transform: translateX(100%);
            transition: transform 0.4s ease-in-out;
            z-index: 1040;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
        }

        .offcanvas-menu.open {
            transform: translateX(0) !important;
        }

        .offcanvas-menu .nav-item {
            margin-bottom: 5px;
            opacity: 0;
            transform: translateX(20px);
            transition: opacity 0.4s ease, transform 0.4s ease;
        }

        .offcanvas-menu.open .nav-item {
            opacity: 1;
            transform: translateX(0);
        }

        .offcanvas-menu.open .nav-item:nth-child(1) {
            transition-delay: 0.1s;
        }

        .offcanvas-menu.open .nav-item:nth-child(2) {
            transition-delay: 0.15s;
        }

        .offcanvas-menu.open .nav-item:nth-child(3) {
            transition-delay: 0.2s;
        }

        .offcanvas-menu.open .nav-item:nth-child(4) {
            transition-delay: 0.25s;
        }

        .offcanvas-menu.open .nav-item:nth-child(5) {
            transition-delay: 0.3s;
        }

        .offcanvas-menu.open .nav-item:nth-child(6) {
            transition-delay: 0.35s;
        }

        .offcanvas-menu.open .nav-item:nth-child(7) {
            transition-delay: 0.4s;
        }

        .offcanvas-menu.open .nav-item:nth-child(8) {
            transition-delay: 0.45s;
        }

        .offcanvas-menu .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-size: 1.05rem;
            font-weight: 500;
            padding: 12px 15px !important;
            border-radius: 8px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 12px;
                width: 100%;
                

        }

        .offcanvas-menu .nav-link i {
            width: 24px;
            text-align: center;
            font-size: 1.15rem;
            color: #ED5525;
        }

        .offcanvas-menu .nav-link:hover {
            background: rgba(237, 85, 37, 0.15);
            color: #fff !important;
            padding-left: 20px !important;
        }

        /* Submenu styles */
        .offcanvas-menu .nav-item .submenu {
            list-style: none;
            padding-left: 0;
            margin: 6px 0 14px 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.28s ease;
        }

        .offcanvas-menu .nav-item .submenu li a {
            padding: 8px 12px !important;
            font-size: 0.95rem;
            color: rgba(255,255,255,0.85) !important;
            display: block;
            padding-left: 34px !important;
        }

        .offcanvas-menu .nav-item .submenu-toggle {
            margin-left: auto;
            background: transparent;
            border: none;
            color: rgba(255,255,255,0.85);
            font-size: 1rem;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
        }

        .offcanvas-menu .nav-item.submenu-open .submenu {
            max-height: 400px;
        }

        .offcanvas-menu .nav-item .submenu-toggle .bi {
            transition: transform 0.25s ease;
        }

        .offcanvas-menu .nav-item.submenu-open .submenu-toggle .bi {
            transform: rotate(90deg);
        }

        .nav-divider {
            height: 1px;
            background: rgba(255, 255, 255, 0.1);
            margin: 8px 0;
        }

        .menu-close-btn {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            border: none;
            border-radius: 50%;
            color: #fff;
            font-size: 1.3rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
            z-index: 1050;
        }

        .menu-close-btn:hover {
            background: var(--sttar-orange);
        }

        body.menu-open {
            overflow: hidden;
        }

        /* ===== HERO SECTION ===== */
        .hero-section {
            position: relative;
            width: 100%;
            height: 810px;
            background: url('images/figma/hero-bg.png') center/cover no-repeat;
            overflow: hidden;
        }

        .hero-bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
            pointer-events: none;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--sttar-blue);
            opacity: 0.89;
            z-index: 2;
        }

        .hero-arrow-right {
            position: absolute;
            top: 0;
            right: 0;
            width: 120px;
            height: 100%;
            z-index: 5;
            pointer-events: none;
            overflow: hidden;
        }

        .hero-arrow-right::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 120px 810px 0;
            border-color: transparent #ED5525 transparent transparent;
            opacity: 0.6;
        }

        .hero-arrow-right::after {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 0;
            height: 0;
            border-style: solid;
            border-width: 0 60px 810px 0;
            border-color: transparent #ED5525 transparent transparent;
            opacity: 0.9;
        }

        .hero-content {
            position: relative;
            z-index: 10;
            height: 100%;
            display: flex;
            align-items: center;
            padding: 0 80px;
            max-width: 1440px;
            margin: 0 auto;


        }

        .btn-watch-video-hero {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: var(--sttar-white);
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 10px;
            padding: 15px 35px;
            font-family: 'Nunito Sans', sans-serif;
            font-size: 18px;
            font-weight: 400;
            line-height: 32px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-watch-video-hero:hover {
            background: var(--sttar-orange);
            border-color: var(--sttar-orange);
            color: var(--sttar-white);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(237, 85, 37, 0.4);
        }

        .btn-watch-video-hero i {
            font-size: 24px;
            color: var(--sttar-orange);
            transition: color 0.3s ease;
        }

        .btn-watch-video-hero:hover i {
            color: var(--sttar-white);
        }

        .hero-premier {
            opacity: 0;
            transform: translateY(18px);
            animation: heroPremierIn 1s ease-out forwards;
            animation-delay: 0.3s;
            line-height: 32px;
            text-align: left;
            margin-bottom: 10px;
            color: var(--Sttar-Orange, #ED5525);
            font-size: 22px;
            font-style: normal;
            font-weight: 400;
            line-height: 32px;
            /* 145.455% */
        }

        .hero-heading {
            opacity: 0;
            transform: translateY(22px);
            animation: heroHeadingIn 1s ease-out forwards;
            animation-delay: 0.55s;
            color: var(--sttar-white);
            font-family: 'Montserrat', sans-serif;
            font-size: 60px;
            font-weight: 700;
            line-height: 1.21em;
            text-align: left;
            margin-bottom: 40px;
        }

        .hero-buttons {
            opacity: 0;
            transform: translateY(24px);
            animation: heroButtonsIn 1s ease-out forwards;
            animation-delay: 0.8s;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        @keyframes heroPremierIn {
            0% {
                opacity: 0;
                transform: translateY(18px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes heroHeadingIn {
            0% {
                opacity: 0;
                transform: translateY(22px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes heroButtonsIn {
            0% {
                opacity: 0;
                transform: translateY(24px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .page-animate {
            opacity: 0;
            transform: translateY(24px);
        }

        .page-animate.visible {
            animation: pageFadeUp 0.9s ease-out forwards;
            animation-delay: var(--anim-delay, 0s);
        }

        @keyframes pageFadeUp {
            from {
                opacity: 0;
                transform: translateY(24px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .btn-explore-programme {
            background: var(--sttar-orange);
            color: var(--sttar-white);
            border: none;
            border-radius: 10px;
            padding: 15px 40px;
            font-family: 'Nunito Sans', sans-serif;
            font-size: 18px;
            font-weight: 400;
            line-height: 32px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .btn-explore-programme:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(237, 85, 37, 0.4);
            color: #fff;
        }

        .btn-learn-more {
            background: transparent;
            color: var(--sttar-white);
            border: 2px solid var(--sttar-white);
            border-radius: 10px;
            padding: 15px 40px;
            font-family: 'Nunito Sans', sans-serif;
            font-size: 18px;
            font-weight: 400;
            line-height: 32px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            transition: transform 0.3s ease, background 0.3s ease;
        }

        .btn-learn-more:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        .arrow-icon {
            display: inline-flex;
            align-items: center;
        }

        .arrow-icon svg {
            width: 20px;
            height: 8px;
        }

        /* ===== ACCOMPLISHMENTS ===== */
        .accomplishments-section {
            padding: 80px 0;
            background: var(--bg-color);
        }

        .section-heading {
            font-family: 'Nunito Sans', sans-serif;
            font-size: 39px;
            font-weight: 400;
            line-height: 32px;
            text-align: center;
            color: var(--sttar-blue);
            margin-bottom: 60px;
                animation: heroPremierIn 1s ease-out forwards;
        }

        .section-heading-left {
            text-align: left;
            font-size: 32px;
        }

        .stat-number {
            font-size: 40px;
            font-weight: 400;
            color: var(--sttar-orange);
            line-height: 1.2;
            margin-bottom: 5px;
        }

        .stat-label {
            font-family: 'Nunito Sans', sans-serif;
            font-size: 22px;
            font-weight: 400;
            line-height: 32px;
            color: var(--text-dark);
        }

        .milestone-line {
            width:100%;
            height: 1px;
            background: var(--sttar-orange);
            margin: 0 auto 20px;
        }

        .milestone-text {
            font-family: 'Nunito Sans', sans-serif;
            font-size: 18px;
            font-weight: 400;
            line-height: 1.79em;
            color: var(--black-text);
            text-align: center;
            margin-bottom: 30px;
        }

        .btn-apply-now {
            background: var(--sttar-orange);
            color: var(--sttar-white);
            border: none;
            border-radius: 10px;
            padding: 12px 40px;
            font-family: 'Nunito Sans', sans-serif;
            font-size: 16px;
            font-weight: 400;
            line-height: 32px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .btn-apply-now:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(237, 85, 37, 0.4);
            color: #fff;
        }

        /* ===== ABOUT STTAR ===== */
        .about-section {
            padding: 80px 0;
            background: var(--sttar-white);
        }

        .about-label {
            font-family: 'Nunito Sans', sans-serif;
            font-size: 24px;
            font-weight: 500;
            line-height: 1.21em;
            color: var(--sttar-orange);
            margin-bottom: 10px;
        }

        .about-heading {
            font-family: 'Nunito Sans', sans-serif;
            font-size: 39px;
            font-weight: 400;
            line-height: 32px;
            color: var(--sttar-blue);
            margin-bottom: 20px;
        }

        .about-heading span {
            color: var(--sttar-blue);
        }

        .about-divider {
            width: 100px;
            height: 3px;
            background: var(--sttar-orange);
            margin-bottom: 30px;
        }

        .about-text {
            font-family: 'Nunito Sans', sans-serif;
            font-size: 18px;
            font-weight: 400;
            line-height: 1.79em;
            color: var(--black-text);
        }

        .about-image-wrap {
            border-radius: 26px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .about-image-wrap img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* ===== PROGRAMMES ===== */
        .programmes-section {
            padding: 80px 0;
            background: var(--sttar-white);
        }

        .program-card {
            background: var(--card-bg);
            border-radius: 0;
            overflow: hidden;
            height: 100%;
            display: flex;
            flex-direction: column;
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
        }

        .program-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
        }

        .program-card-img {
            width: 100%;
            height: 189px;
            object-fit: cover;
        }

        .program-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .program-card-title {
            font-family: 'Nunito Sans', sans-serif;
            font-size: 20px;
            font-weight: 400;
            line-height: 1.79em;
            color: var(--sttar-orange);
            margin-bottom: 15px;
        }

        .program-list {
            list-style: none;
            padding: 0;
            margin: 0;
            flex-grow: 1;
        }

        .program-list li {
            font-family: 'Nunito Sans', sans-serif;
            font-size: 15px;
            font-weight: 400;
            line-height: 1.29em;
            color: var(--sttar-blue);
            padding: 8px 0;
            display: flex;
            align-items: flex-start;
            gap: 8px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        .program-list li:last-child {
            border-bottom: none;
        }

        .program-arrow {
            color: var(--sttar-orange);
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* ===== OLYMPIAD SECTION ===== */
        .olympiad-section {
            padding: 80px 0;
            background: var(--sttar-white);
        }

        .olympiad-content {
            display: flex;
            align-items: center;
            gap: 40px;
            max-width: 1159px;
            margin: 0 auto;
        }

        .olympiad-text {
            flex: 1;
        }

        .olympiad-subtitle {
            font-family: 'Nunito Sans', sans-serif;
            font-size: 20px;
            font-weight: 500;
            line-height: 1.21em;
            color: var(--sttar-orange);
            text-align: center;
            margin-bottom: 5px;
        }

       .olympiad-title {
 
    margin-bottom: 30px;
    color: var(--STTAR-Blue, #162F53);
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}

        .olympiad-chevrons {
            display: flex;
            justify-content: center;
            gap: 4px;
            margin-bottom: 30px;
        }

        .olympiad-chevrons span {
            color: var(--sttar-orange);
            font-size: 18px;
        }

        .olympiad-chevrons span.blue {
            color: var(--sttar-blue);
        }

        .olympiad-logo-area {
            text-align: center;
            margin-bottom: 30px;
        }

        .olympiad-logo-icon {
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .olympiad-logo-icon svg {
            height: 40px;
        }

        .olympiad-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 30px;
            font-weight: 300;
            line-height: 1.2em;
            color: var(--sttar-blue);
        }

        .olympiad-name strong {
            font-weight: 600;
        }

        .olympiad-event-name {
            font-family: 'Nunito Sans', sans-serif;
            font-size: 22px;
            font-weight: 400;
            line-height: 32px;
            color: var(--sttar-blue);
            text-align: center;
            margin-bottom: 20px;
        }

        .olympiad-test-date {
            font-family: 'Nunito Sans', sans-serif;
            font-size: 17px;
            font-weight: 400;
            line-height: 32px;
            letter-spacing: 0.04em;
            text-align: right;
            color: var(--black-text);
        }

        .olympiad-test-date strong {
            font-weight: 500;
        }

        .olympiad-image-wrap {
            flex: 1;
            border-radius: 26px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .olympiad-image-wrap img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* ===== EDUCATORS SECTION ===== */
        .educators-section {
            padding: 80px 0;
            background: var(--bg-color);
            position: relative;
        }

        .educator-card {
            background: var(--sttar-white);
            border-radius: 28px;
            overflow: visible;
            border: 1px solid rgba(22, 47, 83, 0.08);
            box-shadow: 0 18px 50px rgba(22, 47, 83, 0.08);
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin: 10px;
            display: flex;
            flex-direction: column;
            min-height: 520px;
            position: relative;
        }

        .educator-card::before {
            content: '';
            position: absolute;
            top: -1px;
            left: -1px;
               width: 100px;
    height: 100px;
            border-top: 3px solid var(--sttar-orange);
            border-left: 3px solid var(--sttar-orange);
            border-top-left-radius: 28px;
            z-index: 6;
            pointer-events: none;
        }

      

        .educator-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 24px 62px rgba(22, 47, 83, 0.14);
        }

        .educator-img-wrap {
            position: relative;
            width: 100%;
            height: 285px;
            overflow: hidden;
            border-top-left-radius: 28px;
            border-top-right-radius: 28px;
        }

        .educator-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: relative;
            z-index: 2;
            display: block;
        }

        .educator-img-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 96px;
            height: 32px;
          
            border-bottom-right-radius: 26px;
            z-index: 3;
            box-shadow: 0 18px 40px rgba(237, 85, 37, 0.2);
        }

        .educator-img-bg::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 34px;
            height: 34px;
            border-radius: 0 0 0 50%;
            background: rgba(255, 255, 255, 0.18);
        }

        .educator-avatar {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background: var(--sttar-orange);
            border: 4px solid var(--sttar-white);
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            bottom: 130px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 5;
            color: var(--sttar-white);
            font-size: 1.5rem;
        }

        .educator-info {
            padding: 50px 15px 20px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            position: relative;
        }

        .educator-name {
            font-family: 'Montserrat', sans-serif;
            font-size: 18px;
            font-weight: 600;
            line-height: 1.4em;
            letter-spacing: -0.03em;
            color: var(--sttar-blue);
            margin-bottom: 8px;
        }

        .educator-designation {
            font-family: 'Nunito Sans', sans-serif;
            font-size: 15px;
            font-weight: 400;
            line-height: 1.4em;
            color: var(--sttar-blue);
        }

       

      
        /* Owl Carousel Custom Styles */
        .educators-carousel .owl-nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
        }

        .educators-carousel .owl-nav button {
            width: 50px !important;
            height: 50px !important;
            border-radius: 50% !important;
            background: var(--sttar-white) !important;
            border: none !important;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1) !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            color: var(--text-dark) !important;
            font-size: 1.5rem !important;
            cursor: pointer !important;
            transition: all 0.3s ease !important;
        }

        .educators-carousel .owl-nav button:hover {
            background: var(--sttar-orange) !important;
            color: #fff !important;
        }

        .educators-carousel .owl-nav button span {
            display: block;
            font-size: 24px;
            line-height: 1;
        }

        .educators-carousel .owl-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .educators-carousel .owl-dots .owl-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #ddd;
            cursor: pointer;
            transition: background 0.3s ease;
            border: none;
            outline: none;
        }

        .educators-carousel .owl-dots .owl-dot.active {
            background: var(--sttar-orange);
        }

        /* ===== LEADERS/MENTORS ===== */
        .leaders-section {
            padding: 80px 0;
            background: var(--bg-color);
        }

        .mentor-card {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--sttar-white);
            box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
            height: 287px;
            max-width: 370px;
            margin: 0 auto;
        }

        .mentor-card:hover {
            transform: translateY(-5px);
        }

        .mentor-card img {
            width: 100%;
            height: 100%;
          
        }

        .mentor-card .gradient-overlay {
            position: absolute;
            bottom: 0;
            left: 2px;
            right: 2px;
            height: 127px;
            background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, #000000 100%);
            border-radius: 0 0 20px 20px;
        }

        .mentor-info {
            position: absolute;
            bottom: 64px;
            left: 19px;
            right: 70px;
            color: var(--sttar-white);
            z-index: 2;
        }

        .mentor-info h4 {
            font-family: 'Montserrat', sans-serif;
            font-size: 19px;
            font-weight: 600;
            line-height: 1.2em;
            letter-spacing: -0.03em;
            margin-bottom: 2px;
            color: var(--sttar-white);
        }

        .mentor-info p {
            font-family: 'Nunito Sans', sans-serif;
            font-size: 12px;
            font-weight: 400;
            line-height: 14px;
            margin-bottom: 0;
            color: var(--sttar-white);
        }

        .play-btn {
            position: absolute;
            bottom: 19px;
            right: 29px;
            width: 41px;
            height: 41px;
            border-radius: 50%;
            border: 1px solid var(--sttar-white);
            background: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--sttar-white);
            font-size: 1.5rem;
            cursor: pointer;
            z-index: 3;
            transition: all 0.3s ease;
        }

        .play-btn:hover {
            background: var(--sttar-orange);
            border-color: var(--sttar-orange);
        }

        /* ===== VIDEO MODAL ===== */
        .video-modal .modal-content {
            background: transparent;
            border: none;
            box-shadow: none;
        }

        .video-modal .modal-body {
            padding: 0;
            position: relative;
        }

        .video-modal .modal-body .close-modal-btn {
            position: absolute;
            top: -40px;
            right: 0;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: #fff;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background 0.3s ease;
            z-index: 10;
        }

        .video-modal .modal-body .close-modal-btn:hover {
            background: var(--sttar-orange);
        }

        .video-modal .modal-body .video-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            border-radius: 12px;
            overflow: hidden;
        }

        .video-modal .modal-body .video-wrapper iframe,
        .video-modal .modal-body .video-wrapper video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 12px;
        }

        /* Darker backdrop for video modal */
        .video-modal.modal {
            z-index: 1060;
        }

        .video-modal .modal-backdrop {
            background: rgba(0, 0, 0, 0.85) !important;
        }

        .video-modal .modal-dialog {
            max-width: 900px;
        }

        /* ===== PARTNERS ===== */
        .partners-section {
            padding: 60px 0;
            background: var(--sttar-white);
        }

        .partner-card {
            background: var(--sttar-white);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            height: 100%;
        }

        .partner-card h3 {
            font-family: 'Nunito Sans', sans-serif;
            font-size: 24px;
            font-weight: 500;
            line-height: 1.21em;
            text-align: center;
            color: var(--sttar-blue);
            margin-bottom: 30px;
        }

        .partner-logos-wrap {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .partner-logos-wrap img {
            max-height: 85px;
            width: auto;
            object-fit: contain;
        }

        .schools-engaged-carousel {
            margin-top: 20px;
        }

        .school-logo-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 20px;
            border-radius: 18px;
          
            min-height: 150px;
            text-align: center;
        }

        .school-logo-item img {
            max-height: 70px;
            width: auto;
            max-width: 100%;
            object-fit: contain;
        }

        .school-logo-name {
            font-size: 0.95rem;
            font-weight: 600;
            color: var(--sttar-blue);
            margin: 0;
            line-height: 1.3;
            max-width: 140px;
        }

        .schools-banner {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 10px;
        }

        /* ===== FOOTER CTA ===== */
        .footer-cta {
            background: var(--sttar-orange);
            padding: 40px 0;
        }

        .footer-cta-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 80px;
        }

        .footer-cta-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .footer-cta-icon-wrap {
            width: 101px;
            height: 101px;
            border-radius: 50%;
            background: var(--sttar-white);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-cta-text h3 {
            font-family: 'Nunito Sans', sans-serif;
            font-size: 24px;
            font-weight: 500;
            line-height: 1.64em;
            color: var(--sttar-white);
            margin-bottom: 0;
        }

        .footer-cta-text h3 span {
            font-size: 16px;
        }

        .btn-contact-sttar {
            background: transparent;
            color: var(--sttar-white);
            border: 1px solid var(--sttar-white);
            border-radius: 10px;
            padding: 12px 40px;
            font-family: 'Nunito Sans', sans-serif;
            font-size: 18px;
            font-weight: 400;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-contact-sttar:hover {
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

        /* ===== FOOTER MAIN ===== */
        .footer-main {
            background: var(--sttar-blue);
            padding: 80px 0 40px;
        }

        .footer-logo-img {
            height: 55px;
            width: auto;
        }

        .footer-description {
            font-family: 'Nunito Sans', sans-serif;
            font-size: 14.5px;
            font-weight: 300;
            line-height: 24px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 0;
        }

        .footer-col {
            position: relative;
        }

        @media (min-width: 992px) {
            .footer-col {
                padding-right: 40px;
                padding-left: 40px;
            }

            .footer-row .col-lg-3:first-child .footer-col {
                padding-left: 0;
            }

            .footer-row .col-lg-3:last-child .footer-col {
                padding-right: 0;
            }

            .footer-col-border::after {
                content: '';
                position: absolute;
                top: 0;
                right: 0;
                bottom: 0;
                width: 1px;
                background: rgba(255, 255, 255, 0.12);
            }
        }

        .footer-icon-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1.5px solid var(--sttar-orange);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: var(--sttar-orange);
        }

        .footer-heading {
            font-family: 'Montserrat', sans-serif;
            font-size: 22px;
            font-weight: 700;
            color: var(--sttar-white);
            margin-bottom: 24px;
            display: inline-block;
            border-bottom: 2px solid var(--sttar-orange);
            padding-bottom: 8px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            font-family: 'Nunito Sans', sans-serif;
            font-size: 16px;
            font-weight: 400;
            line-height: 28px;
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-flex;
            align-items: center;
        }

        .footer-links a i {
            color: var(--sttar-orange);
            font-size: 11px;
            margin-right: 12px;
            transition: transform 0.2s ease;
            display: inline-block;
        }

        .footer-links a:hover {
            color: var(--sttar-orange);
        }

        .footer-links a:hover i {
            transform: translateX(4px);
        }

        .newsletter-desc {
            color: rgba(255, 255, 255, 0.85);
            font-family: 'Nunito Sans', sans-serif;
            font-size: 15px;
            line-height: 22px;
            margin-bottom: 20px;
        }

        .newsletter-input {
            width: 100%;
            padding: 14px 20px;
            border: 1px solid rgba(255, 255, 255, 0.4);
            background: transparent;
            border-radius: 12px;
            font-family: 'Nunito Sans', sans-serif;
            font-size: 16px;
            color: var(--sttar-white);
            margin-bottom: 15px;
            outline: none;
            transition: border-color 0.3s ease;
        }

        .newsletter-input:focus {
            border-color: var(--sttar-orange);
        }

        .newsletter-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .btn-submit-footer {
            width: 100%;
            padding: 14px 24px;
            background: var(--sttar-white);
            color: var(--sttar-blue);
            border: none;
            border-radius: 12px;
            font-family: 'Nunito Sans', sans-serif;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .btn-submit-footer:hover {
            background: var(--sttar-orange);
            color: var(--sttar-white);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 30px;
            margin-top: 30px;
        }

        .footer-bottom-text {
            font-family: 'Nunito Sans', sans-serif;
            font-size: 14px;
            font-weight: 400;
            line-height: 19px;
            color: rgba(255, 255, 255, 0.7);
            text-align: center;
            margin-bottom: 0;
        }
.red-line {
    color: #ed5525;
}

.photo-frame {
    position: absolute;
    height: 292px;
    margin:0px;
    overflow: hidden;
    border-radius: 20px 20px 18px 18px;
    background: #d8d8d8;
    border-bottom: 5px solid var(--orange);
    bottom: 0;
}

/* Ensure loader displays properly */
.page-loader {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}





