 :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;
            pointer-events: none;
        }

        .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: 1000;
            stroke-dashoffset: 1000;
            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: fixed !important;
            top: 0;
            z-index: 1000;
            width: 100%;
                box-shadow: 0 4px 10px 1px rgb(254 254 254 / 16%);
        }
        section.hero-section {
    margin-top: 44px;
}

        .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: #162F53;
    opacity: 0.9;
    z-index: 2;
}

        .hero-arrow-right {
            position: absolute;
            top: 0;
            right: 0;
            width: 120px;
            height: 100%;
            z-index: 5;
            pointer-events: none;
            overflow: hidden;
			display:none;
        }

        .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;
			display: none;
        }

        .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: 20px;
            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: 16px;
            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;
			     margin-left: auto; 
        }

        /* ===== 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;
			  background-image: url("https://sttar.in/wp-content/uploads/2026/09/toparrow.png");
			height: 11px;
        }
.olympiad-chevrons span {
    display: none;
}

        .olympiad-chevrons span {
            color: var(--sttar-orange);
            font-size:33px;
        }

        .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: 30px;
    display: flex;
    flex-direction: column;
    min-height: 441px;
    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: 213px;
            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;
           
          
            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);
			   max-height: 38px;
        }

       

      
        /* 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: 100px;
            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 !important;
    background: #ed5525 !important;
}

.photo-frame {
    position: absolute;
  
    margin:0px;
    overflow: hidden;
    border-radius: 20px 20px 18px 18px;
    background: #d8d8d8;
    border-bottom: 5px solid var(--orange);
    bottom: 0;
}

.program-list li a {
    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;
  
	width:100%
}



/*.inner-banner {*/
/*    position: relative;*/
/*    background-image: url(../images/aboutusbanner.jpg);*/
/*    background-position: center center;*/
/*    background-size: contain;*/
/*    background-repeat: no-repeat;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*    margin-top: -5px;*/
/*    width: 100%;*/
/*    min-height: 375px;*/
/*}*/
.inner-banner {
    position: relative;
    background-image: url(../images/aboutusbanner.jpg);
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:44px;
    width: 100%;
    min-height: 276px;
}
.entry-content {
    margin: 0px 0 30px !important;
}

    .inner-banner-content {
        padding: 40px 0;
    }

    .inner-banner-subtitle {
     color: var(--Sttar-Orange, #ED5525);
    font-family: 'Montserrat', sans-serif;
font-size: 22px;
font-style: normal;
font-weight: 400;
line-height: 32px; /* 145.455% */
    }

    .inner-banner-title {
       color: var(--STTAR-Blue, #162F53);
    font-family: 'Montserrat', sans-serif;
font-size: 37px;
font-style: normal;
font-weight: 700;
line-height: 120.5%; /* 44.585px */
    }

    .about-section {
        background: #f8f7f7;
        padding: 90px 0;
    }

    /* Image */
    .about-image {
        width: 100%;
        height: 410px;
        object-fit: cover;
        border: 1.5px solid #f15a24;
        border-radius: 40px;
        display: block;
    }

    /* Content */
    .about-content {
        padding-left: 35px;
    }

    .about-label {
      color: var(--Sttar-Orange, #ED5525);
    font-family: 'Montserrat', sans-serif;
font-size: 21px;
font-style: normal;
font-weight: 600;
line-height: 32px; /* 152.381% */
    }

/*     .about-label::after {
        content: "";
        display: block;
        width: 143px;
        height: 2px;
        background: #f15a24;
        margin-top: 15px;
    } */

    .about-title {
       color: var(--STTAR-Blue, #162F53);
    font-family: 'Montserrat', sans-serif;
font-size: 26px;
font-style: normal;
font-weight: 700;
line-height: 32px; /* 123.077% */
text-transform: uppercase;
    }

 .about-text1 {
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
    text-align: justify;
}

   


      .vision-mission-section {
        background: #1b385f;
        color: #fff;
        padding: 70px 0;
    }

    .vision-mission-wrapper {
        display: flex;
        align-items: stretch;
    }

    .vision-box,
    .mission-box {
        width: 50%;
        padding: 0 70px;
    }

    .mission-box {
        border-left: 1px solid rgba(255, 255, 255, 0.25);
    }

    .vm-number {
       color: var(--Sttar-Orange, #ED5525);
    font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 32px; /* 160% */
    }

    .vm-title {
       color: var(--STTAR-White, #FFF);
    font-family: 'Montserrat', sans-serif;
font-size: 26px;
font-style: normal;
font-weight: 700;
line-height: 32px;
    }

    .vm-text {
       color: #FFF;
    font-family: 'Montserrat', sans-serif;
font-size: 19px;
font-style: normal;
font-weight: 400;
line-height: 32px;
text-align: justify;
    }


    /* =========================================
   SECTION 3 - CHAIRMAN'S MESSAGE
========================================= */

.chairman-section {
    background: #f8f7f7;
    padding: 100px 0;
}

/* Image */
.chairman-image-wrapper {
    width: 100%;
    max-width: 370px;
    height: auto;
    overflow: hidden;
    border: 1.5px solid #f15a24;
    border-radius: 40px;
    margin: 0 auto;
}

.chairman-image {
   
    object-fit: cover;
    display: block;
}

/* Content */
.chairman-content {
    padding-left: 70px;
}

/* Heading */
.chairman-heading {
  
    display: inline-block;
    padding-bottom: 16px;
    border-bottom: 2px solid #f15a24;
    margin-bottom: 18px;


    color: var(--Sttar-Orange, #ED5525);
    font-family: 'Montserrat', sans-serif;
font-size: 21px;
font-style: normal;
font-weight: 600;
line-height: 32px; /* 152.381% */
}

/* Message */
.chairman-message {
   color: #000;
    font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 32px; /* 160% */
text-align: justify;
}

/* Chairman Details */
.chairman-details {
    margin-top: 72px;
}

.chairman-details h3 {
   color: var(--STTAR-Blue, #162F53);
    font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 32px; /* 160% */
}

.chairman-details p {
   color: #000;
    font-family: 'Montserrat', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 23px;
}




/* =========================================
   SECTION 4 - STTAR TEAM
========================================= */

.sttar-team-section {
    background: #f8f7f7;
    padding: 0px 0 80px;
}

/* Section Heading */

.sttar-team-heading {
    text-align: center;
    margin-bottom: 32px;
}

.sttar-team-heading h2 {
    color: #f15a24;
    font-size: 23px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

.sttar-team-heading span {
    display: block;
    width: 50px;
    height: 2px;
    background: #f15a24;
    margin: 12px auto 0;
}


/* Team Member */

.team-member {
    text-align: center;
    margin-bottom: 5px;
}


/* Team Image */

.team-image {
    width: 100%;
   
    overflow: hidden;
    /* border: 1.5px solid #f15a24; */
    border-radius: 32px;
    /* background: #ddd; */
    margin-bottom: 22px;
}

.team-image img {
  
    object-fit: cover;
    display: block;
}


/* Name */

.team-member h3 {
  color: var(--STTAR-Blue, #162F53);
text-align: center;
    font-family: 'Montserrat', sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 32px; /* 160% */
}


/* Designation */

.team-member p {
   color: #000;
    font-family: 'Montserrat', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 23px;
}

/* =========================================
   SECTION 5 - TEAM EVENT IMAGE
========================================= */

.sec5-gallery {
    background: #f8f7f7;
    padding: 0px 0 70px;
}

.sec5-image-wrapper {
    width: 100%;
    overflow: hidden;
    border: 1.5px solid #f15a24;
    border-radius: 40px;
    line-height: 0;
}

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


/* =========================================
   SECTION 6 - WHAT WE DO
========================================= */

.what-we-do-section {
    background: #f8f7f7;
    padding: 65px 0 80px;
}

/* Heading */

.what-we-do-heading {
    margin-bottom: 35px;
}

.what-we-do-heading h2 {
   
    display: inline-block;
    margin: 0;
    padding-bottom: 17px;
    border-bottom: 2px solid #f15a24;

    color: var(--Sttar-Orange, #ED5525);
    font-family: 'Montserrat', sans-serif;
font-size: 21px;
font-style: normal;
font-weight: 600;
line-height: 32px; /* 152.381% */
text-transform: uppercase;
}


/* Grid */

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}


/* Individual Item */

.what-item {
    display: flex;
    min-height: 205px;
    padding: 35px 30px 30px 0;
    border-bottom: 1px solid rgba(241, 90, 36, 0.45);
}


/* Vertical separators */

.what-item:nth-child(1),
.what-item:nth-child(2),
.what-item:nth-child(4),
.what-item:nth-child(5) {
    border-right: 1px solid rgba(241, 90, 36, 0.45);
}

.what-item:nth-child(2),
.what-item:nth-child(3) ,
    .what-item:nth-child(5),
.what-item:nth-child(6) {
    padding-left: 25px;
}

.what-item:nth-child(4),
.what-item:nth-child(5),
.what-item:nth-child(6) {
    border-bottom: none;
}


/* Number */

.what-number {
    flex: 0 0 140px;
    color: #e1e3e7;
    font-size: 80px;
    line-height: 0.9;
    font-weight: 700;
    letter-spacing: -3px;
}


/* Content */

.what-content {
    padding-left: 0;
}

.what-content h3 {
   color: var(--STTAR-Blue, #162F53);
    font-family: 'Montserrat', sans-serif;
font-size: 25px;
font-style: normal;
font-weight: 700;
line-height: 25px; /* 100% */
}

.what-content p {
   color: #000;
    font-family: 'Montserrat', sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 25px;
}


/* =========================================
   SECTION 7 - CTA
========================================= */

.sttar-cta-section {
    background: #f4511e;
    padding: 38px 0;
}

.sttar-cta-wrapper {
    display: flex;
    align-items: center;
    gap: 45px;
}


/* =========================================
   ICON
========================================= */

.sttar-cta-icon {
    width: 145px;
    height: 145px;
    flex: 0 0 145px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sttar-cta-icon img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}


/* =========================================
   CONTENT
========================================= */

.sttar-cta-content {
    flex: 1;
    color: #fff;
}

.sttar-cta-content h2 {
   color: var(--STTAR-White, #FFF);
    font-family: 'Montserrat', sans-serif;
font-size: 30px;
font-style: normal;
font-weight: 500;
line-height: 164%; /* 49.2px */
}

.sttar-cta-content p {
   color: var(--STTAR-White, #FFF);
    font-family: 'Montserrat', sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 164%;
}


/* =========================================
   BUTTON
========================================= */

.sttar-cta-button-wrapper {
    flex: 0 0 auto;
}

.sttar-cta-button {
    min-width: 275px;
    height: 72px;
    padding: 0 25px;
    border: 1.5px solid #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

   
    text-decoration: none;
   

    transition: all 0.3s ease;
    color: var(--STTAR-White, #FFF);
    font-family: 'Montserrat', sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 32px; /* 177.778% */
}

.sttar-cta-button:hover {
    background: #fff;
    color: #f4511e;
}

.cta-arrow {
    font-size: 35px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.sttar-cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

.what-number {
    color: var(--STTAR-Blue, #162F53);
    
    font-size: 61px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    text-transform: uppercase;
    opacity: 0.1;
}

li.isotope-item {
   
    width: 18%;
    float: left;
}
li.isotope-item img {
    width: 100%;
}



















.about-section {
    overflow: hidden;
}

/* Initial animation position */
.about-left,
.about-right {
    opacity: 0;
    transition:
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.9s ease;
    will-change: transform, opacity;
}

.about-left {
    transform: translateX(-100px);
}

.about-right {
    transform: translateX(100px);
}

/* Final visible position */
.about-left.is-visible,
.about-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slight delay for right-side content */
.about-right {
    transition-delay: 0.12s;
}



/* ================================
   STTAR POST CARD DESIGN
   ================================ */

.post-content {
    position: relative;
    padding: 25px 25px 22px;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

/* Top accent line */
.post-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #0b5ed7, #00a6ff);
}

/* Hover effect */
.post-content:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
    border-color: #d7e5f7;
}

/* Title */
.post-content .entry-title {
    margin: 5px 0 14px;
    line-height: 1.45;
}

.post-content .entry-title a {
    color: #1c2b39;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.post-content .entry-title a:hover {
    color: #0b5ed7;
}

/* Date */
.post-content .entry-meta {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.post-content .entry-meta li {
    margin: 0;
}

.post-content .post-time {
    color: #777;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 7px;
}

/* Calendar icon using CSS */
.post-content .post-time::before {
    content: "📅";
    font-size: 14px;
}

/* Read more area */
.post-content .meta-row.row-3 {
    padding-top: 15px;
    border-top: 1px solid #eee;
}

.post-content .readmore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0b5ed7;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Arrow */
.post-content .readmore-link::after {
    content: "→";
    font-size: 18px;
    transition: transform 0.3s ease;
}

.post-content .readmore-link:hover {
    color: #084298;
}

.post-content .readmore-link:hover::after {
    transform: translateX(5px);
}

/* Remove unnecessary author space */
.post-content .schema-only {
    display: none;
}
.wppm-grid .post-img {
    margin-bottom: 0;
}






.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 15px 0;
  padding: 0;
}
.footer-social a {
     width: 40px;
    height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}
.footer-social a:hover {
  transform: translateY(-5px);
  box-shadow: 0 7px 18px rgba(0, 0, 0, 0.15);
}
.footer-social img {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
} /* Mobile Responsive */
@media (max-width: 576px) {
  .footer-social {
    justify-content: center;
    gap: 10px;
  }
  .footer-social a {
    width: 38px;
    height: 38px;
  }
  .footer-social img {
    width: 20px;
    height: 20px;
  }
}

.nav-link i.bi-images {
    display: inline-block;
    animation: galleryFloat 2s ease-in-out infinite;
}

@keyframes galleryFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}


.rotating-star {
    display: inline-block;
    animation: rotateStar 2s linear infinite;
}

@keyframes rotateStar {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}




.rotating-star {
    display: inline-block;
    animation: rotateStar 2s linear infinite,
               colorChange 3s linear infinite;
}

@keyframes rotateStar {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes colorChange {
    0%   { filter: hue-rotate(0deg); }
    25%  { filter: hue-rotate(90deg); }
    50%  { filter: hue-rotate(180deg); }
    75%  { filter: hue-rotate(270deg); }
    100% { filter: hue-rotate(360deg); }
}
