/* ===============================
 HEADER CSS
================================ */

:root {
    --ss-navy: #020A60;
    --ss-blue: #033CA9;
    --ss-gold: #B78124;
    --ss-yellow: #FCD504;
    --ss-red: #F40404;
    --ss-white: #FFFFFF;
    --ss-light-gray: #D9D7DB;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.ss-gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ss-video-thumb {
    width: 100%;
    height: 100%;
    min-height: 220px;
    background: linear-gradient(135deg, #020A60, #033CA9);
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.ss-video-thumb i {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #FCD504;
    color: #020A60;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.ss-video-thumb span {
    font-weight: 800;
    font-size: 15px;
}

.ss-gallery-play-btn {
    width: 52px;
    height: 52px;
    background: #FCD504;
    color: #020A60;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 18px;
}
.ss-header {
    width: 100%;
    position: relative;
    z-index: 9999;
    font-family: 'Segoe UI', Arial, sans-serif;
}

/* CONTAINER */
.ss-container {
    width: 92%;
    max-width: 1280px;
    margin: auto;
}

/* TOP BAR */
.ss-topbar {
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-blue));
    color: var(--ss-white);
    padding: 9px 0;
    position: relative;
    overflow: hidden;
}

.ss-topbar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.18),
            transparent);
    transform: translateX(-100%);
    animation: ssShine 4s infinite;
}

@keyframes ssShine {
    0% {
        transform: translateX(-100%);
    }

    50% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(100%);
    }
}

.ss-topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.ss-contact-info {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 14px;
    font-weight: 600;
}

.ss-contact-info span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.ss-contact-info i {
    color: var(--ss-yellow);
}

.ss-social {
    display: flex;
    align-items: center;
    gap: 13px;
}

.ss-social a {
    color: var(--ss-white);
    text-decoration: none;
    font-size: 15px;
    transition: 0.3s ease;
}

.ss-social a:hover {
    color: var(--ss-yellow);
    transform: translateY(-2px);
}

.ss-career-btn {
    background: var(--ss-white);
    color: var(--ss-navy) !important;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 700;
}

.ss-career-btn:hover {
    background: var(--ss-yellow);
    color: var(--ss-navy) !important;
}

/* NAVBAR */
.ss-navbar {
    background: var(--ss-white);
    box-shadow: 0 8px 30px rgba(2, 10, 96, 0.18);
    position: sticky;
    top: 0;
    z-index: 99999;
    transition: transform 0.45s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.ss-navbar.ss-sticky-active {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: ssStickySlideDown 0.45s ease forwards;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 35px rgba(2, 10, 96, 0.22);
}

@keyframes ssStickySlideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}


.ss-navbar-placeholder {
    display: none;
    height: 88px;
}

.ss-navbar-placeholder.active {
    display: block;
}

.ss-navbar.ss-sticky-active .ss-nav-inner {
    min-height: 78px;
}

.ss-navbar.ss-sticky-active .ss-logo-wrap {
    height: 74px;
    min-width: 300px;
    padding: 6px 18px 6px 6px;
}

.ss-navbar.ss-sticky-active .ss-logo-circle {
    width: 60px;
    height: 60px;
}

.ss-navbar.ss-sticky-active .ss-logo {
    width: 48px;
    height: 48px;
    max-width: 48px;
    max-height: 48px;
    border-radius: 20px;
}

.ss-navbar.ss-sticky-active .ss-logo-text h2 {
    font-size: 24px;
}

.ss-navbar.ss-sticky-active .ss-logo-text p {
    font-size: 12px;
}

.ss-navbar::after {
    content: "";
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--ss-navy), var(--ss-yellow), var(--ss-gold), var(--ss-red));
    position: absolute;
    bottom: 0;
    left: 0;
}

.ss-nav-inner {
    min-height: 88px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

/* LOGO WITH SCHOOL NAME MANAGED */
.ss-logo-wrap {
    min-width: 330px;
    height: 94px;
    background: linear-gradient(135deg, #ffffff, #f7f9ff);
    border-radius: 60px;
    position: relative;
    left: auto;
    top: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 9px 22px 9px 9px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(2, 10, 96, 0.18);
    border: 2px solid rgba(252, 213, 4, 0.95);
    z-index: 10;
    animation: ssLogoFloat 3s ease-in-out infinite;
    flex-shrink: 0;
}

.ss-logo-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: var(--ss-white);
    border: 3px solid var(--ss-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 4px rgba(3, 60, 169, 0.08);
    flex-shrink: 0;
}

.ss-logo {
    width: 62px;
    height: 62px;
    max-width: 62px;
    max-height: 62px;
    object-fit: contain;
    border-radius: 0;
}


.ss-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
    padding-left:20px ;
    min-width: 0;
}

.ss-logo-text h2 {
    margin: 0;
    color: var(--ss-navy);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.05;
    font-family: Georgia, 'Times New Roman', serif;
    letter-spacing: 0.4px;
    white-space: nowrap;
}

.ss-logo-text p {
    margin: 6px 0 0;
    color: var(--ss-gold);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    white-space: nowrap;
}

.ss-logo-wrap:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(2, 10, 96, 0.28);
}

.ss-logo-wrap:hover .ss-logo-circle {
    border-color: var(--ss-red);
}

/* MENU */
.ss-menu {
    list-style: none;
    margin-left: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.ss-menu>li {
    position: relative;
}

.ss-menu>li>a {
    text-decoration: none;
    color: var(--ss-navy);
    padding: 34px 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    transition: 0.3s ease;
}

.ss-menu>li>a::before {
    content: "";
    position: absolute;
    left: 12px;
    bottom: 24px;
    width: 0;
    height: 3px;
    border-radius: 10px;
    /* background: var(--ss-red); */
    transition: 0.3s ease;
}

.ss-menu>li>a:hover::before {
    width: calc(100% - 24px);
}

.ss-menu>li>a:hover {
    color: var(--ss-blue);
}

.ss-menu>li>a i {
    font-size: 11px;
    transition: 0.3s ease;
}

.ss-dropdown:hover>a i {
    transform: rotate(180deg);
}

/* CONTACT BUTTON */
.ss-contact-btn {
    background: linear-gradient(135deg, var(--ss-red), var(--ss-gold));
    color: var(--ss-white) !important;
    padding: 13px 20px !important;
    border-radius: 40px;
    margin-left: 5px;
    box-shadow: 0 8px 20px rgba(244, 4, 4, 0.28);
}

.ss-contact-btn::before {
    display: none;
}

.ss-contact-btn:hover {
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-blue));
    transform: translateY(-3px);
}

/* DROPDOWN */
.ss-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: var(--ss-white);
    list-style: none;
    border-top: 4px solid var(--ss-yellow);
    box-shadow: 0 18px 35px rgba(2, 10, 96, 0.20);
    border-radius: 0 0 14px 14px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: 0.35s ease;
}

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

.ss-dropdown-menu li a {
    display: block;
    text-decoration: none;
    color: var(--ss-navy);
    padding: 13px 18px;
    font-size: 14px;
    font-weight: 700;
    border-bottom: 1px solid rgba(2, 10, 96, 0.08);
    transition: 0.3s ease;
    position: relative;
}

.ss-dropdown-menu li a::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 8px;
    color: var(--ss-gold);
}

.ss-dropdown-menu li a:hover {
    background: linear-gradient(90deg, var(--ss-navy), var(--ss-blue));
    color: var(--ss-white);
    padding-left: 25px;
}

/* MOBILE BUTTON */
.ss-menu-btn {
    width: 46px;
    height: 42px;
    border: none;
    background: var(--ss-navy);
    border-radius: 9px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.ss-menu-btn span {
    width: 24px;
    height: 3px;
    background: var(--ss-white);
    border-radius: 5px;
    transition: 0.3s ease;
}

.ss-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.ss-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.ss-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.ss-location-strip {
    width: 100%;
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-blue));
    position: relative;
    overflow: hidden;
    z-index: 50;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.ss-location-strip::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.22),
            transparent);
    animation: ssLocationShine 5s infinite linear;
}

@keyframes ssLocationShine {
    0% {
        left: -80%;
    }

    55% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}

.ss-location-container {
    width: 100%;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    z-index: 2;
}

.ss-location-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    padding: 10px 35px 10px 15px;
    flex: 1;
}

.ss-location-item {
    text-decoration: none;
    color: var(--ss-white);
    display: flex;
    align-items: center;
    gap: 13px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: 0.35s ease;
    white-space: nowrap;
}

.ss-location-item::after {
    content: "";
    position: absolute;
    left: 44px;
    bottom: -6px;
    width: 0;
    height: 3px;
    background: var(--ss-yellow);
    border-radius: 10px;
    transition: 0.35s ease;
}

.ss-location-item:hover::after {
    width: calc(100% - 44px);
}

.ss-location-item:hover {
    color: var(--ss-yellow);
    transform: translateY(-3px);
}

.ss-location-icon {
    width: 42px;
    height: 42px;
    border: 3px solid var(--ss-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ss-white);
    font-size: 21px;
    position: relative;
    transition: 0.35s ease;
    animation: ssPinPulse 2.5s infinite ease-in-out;
}

.ss-location-icon::before {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 14px;
    opacity: 0;
    transform: scale(0.8);
    animation: ssPinRing 2.5s infinite ease-in-out;
}

@keyframes ssPinPulse {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes ssPinRing {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }

    40% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: scale(1.22);
    }
}

.ss-location-item:hover .ss-location-icon {
    background: var(--ss-yellow);
    color: var(--ss-navy);
    border-color: var(--ss-yellow);
    box-shadow: 0 8px 22px rgba(252, 213, 4, 0.35);
}

/* DISCLOSURE BUTTON */
.ss-disclosure-btn {
    min-height: 66px;
    padding: 0 42px 0 58px;
    background: linear-gradient(135deg, var(--ss-red), #b51f91, var(--ss-gold));
    color: var(--ss-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.2px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    transition: 0.35s ease;
    clip-path: polygon(14% 0, 100% 0, 100% 100%, 0% 100%);
}

.ss-disclosure-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);
    transform: translateX(-120%);
    transition: 0.6s ease;
}

.ss-disclosure-btn:hover::before {
    transform: translateX(120%);
}

.ss-disclosure-btn:hover {
    background: linear-gradient(135deg, var(--ss-gold), var(--ss-red), var(--ss-navy));
    color: var(--ss-white);
}

.ss-disclosure-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ss-yellow);
    font-size: 15px;
    animation: ssDisclosureBlink 1.8s infinite ease-in-out;
}

@keyframes ssDisclosureBlink {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(252, 213, 4, 0);
    }

    50% {
        transform: scale(1.12);
        box-shadow: 0 0 16px rgba(252, 213, 4, 0.75);
    }
}

.ss-hero-slider {
    width: 100%;
    height: 620px;
    position: relative;
    overflow: hidden;
    background: var(--ss-navy);
    font-family: 'Segoe UI', Arial, sans-serif;
}

.ss-slider-track {
    width: 100%;
    height: 100%;
    position: relative;
}

.ss-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    transition: opacity 0.9s ease, visibility 0.9s ease, transform 1.4s ease;
}

.ss-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.ss-slide-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}

.ss-slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: ssHeroZoom 8s ease-in-out infinite alternate;
}

@keyframes ssHeroZoom {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.08);
    }
}

.ss-slide-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(252, 213, 4, 0.25), transparent 26%),
        linear-gradient(90deg, rgba(2, 10, 96, 0.96) 0%, rgba(2, 10, 96, 0.82) 42%, rgba(3, 60, 169, 0.45) 70%, rgba(2, 10, 96, 0.25) 100%);
    z-index: 1;
}

.ss-slide::before {
    content: "";
    position: absolute;
    left: -120px;
    bottom: -120px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(252, 213, 4, 0.18);
    border: 35px solid rgba(255, 255, 255, 0.08);
    z-index: 2;
    animation: ssCircleMove 6s ease-in-out infinite;
}

.ss-slide::after {
    content: "";
    position: absolute;
    right: -80px;
    top: 80px;
    width: 210px;
    height: 210px;
    border-radius: 50%;
    background: rgba(244, 4, 4, 0.22);
    border: 22px solid rgba(255, 255, 255, 0.08);
    z-index: 2;
    animation: ssCircleMove 7s ease-in-out infinite reverse;
}

@keyframes ssCircleMove {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }
}

.ss-slide-content {
    width: 92%;
    max-width: 1280px;
    height: 100%;
    margin: auto;
    position: relative;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-right: 45%;
}

.ss-slide.active .ss-slide-badge,
.ss-slide.active h1,
.ss-slide.active p,
.ss-slide.active .ss-slide-buttons {
    animation: ssContentUp 0.9s ease forwards;
}

.ss-slide.active h1 {
    animation-delay: 0.12s;
}

.ss-slide.active p {
    animation-delay: 0.24s;
}

.ss-slide.active .ss-slide-buttons {
    animation-delay: 0.36s;
}

@keyframes ssContentUp {
    0% {
        opacity: 0;
        transform: translateY(35px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.ss-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.14);
    color: var(--ss-white);
    padding: 10px 18px;
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 20px;
    opacity: 0;
    backdrop-filter: blur(10px);
}

.ss-slide-badge i {
    color: var(--ss-yellow);
}

.ss-slide-content h1 {
    color: var(--ss-white);
    font-size: 62px;
    line-height: 1.08;
    font-weight: 950;
    margin: 0 0 22px;
    max-width: 720px;
    opacity: 0;
}

.ss-slide-content h1 span {
    color: var(--ss-yellow);
    display: inline-block;
    position: relative;
}

.ss-slide-content h1 span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 10px;
    background: rgba(244, 4, 4, 0.45);
    z-index: -1;
    border-radius: 20px;
}

.ss-slide-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 18px;
    line-height: 1.8;
    max-width: 650px;
    margin: 0 0 30px;
    opacity: 0;
}

.ss-slide-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
}

.ss-primary-btn,
.ss-secondary-btn {
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 45px;
    font-size: 15px;
    font-weight: 900;
    transition: 0.35s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.ss-primary-btn {
    background: linear-gradient(135deg, var(--ss-yellow), var(--ss-gold));
    color: var(--ss-navy);
    box-shadow: 0 10px 25px rgba(252, 213, 4, 0.35);
}

.ss-primary-btn:hover {
    background: linear-gradient(135deg, var(--ss-red), var(--ss-gold));
    color: var(--ss-white);
    transform: translateY(-4px);
}

.ss-secondary-btn {
    border: 2px solid rgba(255, 255, 255, 0.75);
    color: var(--ss-white);
    background: rgba(255, 255, 255, 0.08);
}

.ss-secondary-btn:hover {
    background: var(--ss-white);
    color: var(--ss-navy);
    transform: translateY(-4px);
}

/* ARROWS */
.ss-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 8;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.12);
    color: var(--ss-white);
    font-size: 18px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    transition: 0.35s ease;
}

.ss-slider-arrow:hover {
    background: var(--ss-yellow);
    color: var(--ss-navy);
    border-color: var(--ss-yellow);
    box-shadow: 0 8px 25px rgba(252, 213, 4, 0.35);
}

.ss-prev {
    left: 28px;
}

.ss-next {
    right: 28px;
}

/* DOTS */
.ss-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.ss-slider-dots button {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: 0.35s ease;
}

.ss-slider-dots button.active {
    width: 36px;
    background: var(--ss-yellow);
}

/* SIDE ICONS */
.ss-side-icons {
    position: fixed;
    left: 0;
    top: 42%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ss-side-icon {
    width: 58px;
    height: 58px;
    background: var(--ss-white);
    color: var(--ss-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 26px;
    border-radius: 0 14px 14px 0;
    box-shadow: 0 8px 25px rgba(2, 10, 96, 0.16);
    border: 1px solid rgba(2, 10, 96, 0.12);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.ss-side-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-blue));
    transform: translateX(-100%);
    transition: 0.35s ease;
    z-index: -1;
}

.ss-side-icon:hover::before {
    transform: translateX(0);
}

.ss-side-icon:hover {
    color: var(--ss-yellow);
    transform: translateX(8px);
}

.ss-side-icon:first-child {
    color: var(--ss-red);
}

.ss-side-icon:first-child:hover {
    color: var(--ss-white);
}

.ss-side-round {
    margin-top: 30px;
    width: 48px;
    height: 48px;
    border-radius: 0 50px 50px 0;
    color: var(--ss-red);
}

/* MAIN SECTION */
.ss-news-about-section {
    width: 100%;
    position: relative;
    padding: 70px 0 90px;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(252, 213, 4, 0.12), transparent 32%),
        linear-gradient(135deg, #fffdf6, #ffffff);
    font-family: 'Segoe UI', Arial, sans-serif;
}

.ss-pattern-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, rgba(2, 10, 96, 0.035) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(2, 10, 96, 0.035) 25%, transparent 25%);
    background-size: 12px 12px;
    opacity: 0.75;
    pointer-events: none;
    z-index: 1;
}

/* LATEST NEWS */
.ss-latest-news-box {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 360px 1fr;
    align-items: stretch;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 22px 55px rgba(2, 10, 96, 0.13);
    overflow: hidden;
    border: 1px solid rgba(2, 10, 96, 0.08);
}


.ss-news-heading {
    background:
        radial-gradient(circle at top right, rgba(252, 213, 4, 0.25), transparent 40%),
        linear-gradient(135deg, var(--ss-navy), #003c79);
    color: var(--ss-white);
    padding: 42px 38px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 190px;
    position: relative;
    overflow: hidden;
}

.ss-news-heading::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border: 24px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    right: -70px;
    bottom: -80px;
    animation: ssNewsCircle 5s infinite ease-in-out;
}

@keyframes ssNewsCircle {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-12px) rotate(8deg);
    }
}

.ss-mini-title {
    color: var(--ss-yellow);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.ss-news-heading h2 {
    margin: 0;
    font-size: 42px;
    line-height: 1;
    font-weight: 950;
}

.ss-news-heading h2 span {
    color: var(--ss-yellow);
}

.ss-news-heading a {
    margin-top: 22px;
    color: var(--ss-white);
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.35s ease;
}

.ss-news-heading a:hover {
    color: var(--ss-yellow);
    gap: 16px;
}

.ss-news-slider {
    position: relative;
    display: flex;
    align-items: center;
    padding: 28px 75px;
    min-width: 0;
}

.ss-news-window {
    width: 100%;
    overflow: hidden;
}

.ss-news-track {
    display: flex;
    transition: transform 0.7s ease;
}

.ss-news-card {
    min-width: 50%;
    padding: 15px 18px;
    display: flex;
    align-items: center;
    gap: 18px;
        flex: 0 0 50%;

}

.ss-news-number {
    font-size: 62px;
    line-height: 1;
    font-weight: 300;
    color: rgba(2, 10, 96, 0.14);
    min-width: 84px;
}

.ss-news-content span {
    color: var(--ss-blue);
    font-size: 15px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.ss-news-content h3 {
    margin: 0 0 8px;
    /* color: var(--ss-navy); */
    font-size: 20px;
    line-height: 1.25;
    font-weight: 900;
}

.ss-news-content p {
    margin: 0;
    color: #4b4b5e;
    font-size: 14px;
    line-height: 1.55;
}

.ss-news-arrow {
    width: 48px;
    height: 48px;
    border: none;
    background: var(--ss-navy);
    color: var(--ss-white);
    border-radius: 14px;
    font-size: 16px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    transition: 0.35s ease;
}

.ss-news-arrow:hover {
    background: var(--ss-yellow);
    color: var(--ss-navy);
    box-shadow: 0 10px 25px rgba(252, 213, 4, 0.38);
}

.ss-news-prev {
    left: 22px;
}

.ss-news-next {
    right: 22px;
}

.ss-news-dots {
    position: absolute;
    right: 95px;
    bottom: 18px;
    display: flex;
    gap: 7px;
}

.ss-news-dots button {
    width: 9px;
    height: 9px;
    border-radius: 20px;
    border: none;
    background: rgba(2, 10, 96, 0.22);
    cursor: pointer;
    transition: 0.35s ease;
}

.ss-news-dots button.active {
    width: 28px;
    background: var(--ss-yellow);
}

/* ABOUT SECTION */
.ss-about-wrap {
    width: 92%;
    max-width: 1180px;
    margin: auto;
    position: relative;
    z-index: 5;
}


.ss-about-card {
    display: grid;
    grid-template-columns: 430px 1fr;
    gap: 46px;
    align-items: center;
    background: var(--ss-white);
    border-radius: 34px;
    padding: 28px;
    box-shadow: 0 25px 65px rgba(2, 10, 96, 0.13);
    border: 1px solid rgba(2, 10, 96, 0.08);
    position: relative;
    overflow: hidden;
}

.ss-about-card::before {
    content: "";
    position: absolute;
    right: -120px;
    top: -120px;
    width: 300px;
    height: 300px;
    background: rgba(252, 213, 4, 0.14);
    border-radius: 50%;
}

.ss-about-img {
    height: 390px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    background: var(--ss-navy);
}

.ss-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.ss-about-card:hover .ss-about-img img {
    transform: scale(1.08);
}

.ss-about-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(2, 10, 96, 0.45));
}

.ss-about-badge {
    position: absolute;
    left: 24px;
    bottom: 24px;
    width: 145px;
    height: 145px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ss-yellow), var(--ss-gold));
    color: var(--ss-navy);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 6px solid var(--ss-white);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    animation: ssBadgeFloat 3s infinite ease-in-out;
}

@keyframes ssBadgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.ss-about-badge strong {
    font-size: 40px;
    line-height: 1;
    font-weight: 950;
}

.ss-about-badge span {
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    max-width: 95px;
    line-height: 1.25;
    text-transform: uppercase;
}

.ss-about-content {
    position: relative;
    z-index: 2;
}

.ss-section-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(3, 60, 169, 0.08);
    color: var(--ss-blue);
    padding: 10px 16px;
    border-radius: 40px;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 15px;
}

.ss-section-badge i {
    color: var(--ss-gold);
}

.ss-news-content h3,
.ss-about-content h2 {
    color: var(--ss-navy) !important;
    opacity: 1 !important;
    display: block !important;
}

.ss-about-content h2 {
    margin: 0 0 18px;
    /* color: var(--ss-navy); */
    font-size: 46px;
    font-weight: 950;
    line-height: 1;
    position: relative;
}

.ss-about-content h2 span {
    color: var(--ss-yellow);
}

.ss-about-content h2::after {
    content: "";
    width: 58px;
    height: 5px;
    background: linear-gradient(90deg, var(--ss-navy), var(--ss-yellow));
    border-radius: 10px;
    position: absolute;
    left: 0;
    bottom: -12px;
}

.ss-about-content p {
    color: #33334a;
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 14px;
}

.ss-about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 26px 0;
}

.ss-about-features div {
    padding: 16px 12px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f7f9ff, #ffffff);
    border: 1px solid rgba(2, 10, 96, 0.08);
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ss-navy);
    font-weight: 900;
    font-size: 14px;
    box-shadow: 0 10px 24px rgba(2, 10, 96, 0.06);
    transition: 0.35s ease;
}

.ss-about-features div:hover {
    transform: translateY(-6px);
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-blue));
    color: var(--ss-white);
}

.ss-about-features i {
    color: var(--ss-gold);
    font-size: 20px;
}

.ss-about-features div:hover i {
    color: var(--ss-yellow);
}

.ss-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-blue));
    color: var(--ss-white);
    text-decoration: none;
    padding: 14px 28px;
    border-radius: 45px;
    font-size: 15px;
    font-weight: 900;
    transition: 0.35s ease;
    box-shadow: 0 12px 30px rgba(2, 10, 96, 0.22);
}

.ss-about-btn:hover {
    background: linear-gradient(135deg, var(--ss-yellow), var(--ss-gold));
    color: var(--ss-navy);
    transform: translateY(-4px);
}

/* BACK TOP */
.ss-back-top {
    position: fixed;
    right: 18px;
    bottom: 22px;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    border: 2px solid var(--ss-navy);
    background: var(--ss-white);
    color: var(--ss-navy);
    font-size: 22px;
    cursor: pointer;
    z-index: 999;
    transition: 0.35s ease;
}

.ss-back-top:hover {
    background: var(--ss-navy);
    color: var(--ss-yellow);
    transform: translateY(-5px);
}

/* =========================================
    LEADERSHIP CARDS
   ========================================= */
.ss-leader-section {
    padding: 80px 0;
    background: #f8faff;
    position: relative;
    overflow: hidden;
}

.ss-leader-heading {
    text-align: center;
    margin-bottom: 50px;
}

.ss-leader-heading span {
    color: var(--ss-blue);
    background: rgba(3, 60, 169, 0.08);
    padding: 7px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ss-leader-heading h2 {
    font-size: 38px;
    color: var(--ss-navy);
    font-weight: 950;
    margin-top: 15px;
}

.ss-leader-heading h2 b {
    color: var(--ss-gold);
}

/* GRID SYSTEM */
.ss-leader-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* INDIVIDUAL CARD */
.ss-leader-card {
    background: #fff;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(2, 10, 96, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(2, 10, 96, 0.05);
}

.ss-leader-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(2, 10, 96, 0.15);
    border-color: var(--ss-yellow);
}

.ss-leader-img-box {
    height: 320px;
    position: relative;
    overflow: hidden;
}

.ss-leader-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.ss-leader-card:hover .ss-leader-img-box img {
    transform: scale(1.1);
}

.ss-leader-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--ss-yellow);
    color: var(--ss-navy);
    padding: 5px 15px;
    border-radius: 10px;
    font-weight: 900;
    font-size: 12px;
    text-transform: uppercase;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.ss-leader-info {
    padding: 30px;
    text-align: center;
}

.ss-leader-info h3 {
    font-size: 22px;
    color: var(--ss-navy);
    font-weight: 900;
    margin-bottom: 5px;
}

.ss-leader-pos {
    display: block;
    color: var(--ss-gold);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.ss-leader-info p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 65px;
}

.ss-leader-readmore {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ss-navy);
    text-decoration: none;
    font-weight: 800;
    font-size: 14px;
    position: relative;
    transition: 0.3s;
}

.ss-leader-readmore i {
    transition: transform 0.3s ease;
}

.ss-leader-readmore:hover {
    color: var(--ss-blue);
}

.ss-leader-readmore:hover i {
    transform: translateX(8px);
}

/* =========================================
   ULTRA-MODERN WHY CHOOSE US
   ========================================= */
.ss-premium-why-section {
    padding: 100px 0;
    background: #020A60;
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Floating Decorative Circles */
.ss-float-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 1;
}

.ss-c1 {
    width: 300px;
    height: 300px;
    background: rgba(183, 129, 36, 0.2);
    top: -100px;
    right: -50px;
}

.ss-c2 {
    width: 250px;
    height: 250px;
    background: rgba(252, 213, 4, 0.15);
    bottom: -50px;
    left: -50px;
}

.ss-why-main-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 10;
}

/* Left Content */
.ss-badge {
    background: var(--ss-red);
    color: #fff;
    display: inline-block;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.ss-why-main-title {
    font-size: 52px;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 20px;
}

.ss-why-main-title span {
    color: var(--ss-yellow);
}

.ss-why-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Big Stats Cards */
.ss-big-stats-container {
    display: flex;
    gap: 20px;
}

.ss-stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 20px;
    min-width: 160px;
    text-align: center;
    transition: 0.3s;
}

.ss-stat-card .ss-n {
    display: block;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
}

.ss-stat-card p {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ss-yellow);
}

.ss-gold-card {
    background: var(--ss-gold);
    border: none;
}

.ss-gold-card .ss-n,
.ss-gold-card p {
    color: #fff;
}

/* Right Feature Cards  */
.ss-feature-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ss-shield-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 20px 50px 20px 20px;
    /* Unique Shape */
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s ease;
    border-left: 5px solid var(--ss-yellow);
}

.ss-shield-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px) translateY(-5px);
}

.ss-shield-icon {
    width: 60px;
    height: 60px;
    background: var(--ss-white);
    color: var(--ss-navy);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ss-shield-content h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 5px;
}

.ss-shield-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* =========================================
    GALLERY SECTION
   ========================================= */
.ss-gallery-section {
    padding: 90px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.ss-gallery-head {
    text-align: center;
    margin-bottom: 50px;
}

.ss-gal-tag {
    color: var(--ss-gold);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 14px;
    display: block;
}

.ss-gallery-head h2 {
    font-size: 42px;
    color: var(--ss-navy);
    font-weight: 950;
    margin: 10px 0;
}

.ss-gallery-head h2 span {
    color: var(--ss-red);
}

.ss-gal-line {
    width: 80px;
    height: 5px;
    background: var(--ss-yellow);
    margin: auto;
    border-radius: 10px;
}

/* GRID LAYOUT */
.ss-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 Columns on Desktop */
    gap: 20px;
}

.ss-gallery-item {
    position: relative;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(2, 10, 96, 0.1);
}

.ss-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Overlay Animation */
.ss-gal-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, var(--ss-navy) 0%, rgba(2, 10, 96, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    transform: translateY(20px);
}

.ss-gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
}

.ss-gallery-item:hover .ss-gal-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ss-gal-content h3 {
    color: var(--ss-yellow);
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 5px;
}

.ss-gal-content p {
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
}

/* FOOTER BUTTON */
.ss-gallery-footer {
    text-align: center;
    margin-top: 50px;
}

.ss-gal-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--ss-navy);
    color: #fff;
    text-decoration: none;
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 15px;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(2, 10, 96, 0.2);
    border: 2px solid transparent;
}

.ss-gal-btn:hover {
    background: var(--ss-yellow);
    color: var(--ss-navy);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(252, 213, 4, 0.3);
}

/* =========================================
    FACILITIES SECTION
   ========================================= */
.ss-facilities-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #020A60 0%, #033CA9 100%);
    position: relative;
    overflow: hidden;
    color: #fff;
}

/* Abstract Background Shapes */
.ss-fac-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.1;
    z-index: 1;
}

.ss-fac-head {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 5;
}

.ss-fac-tag {
    color: var(--ss-yellow);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 30px;
}

.ss-fac-head h2 {
    font-size: 45px;
    font-weight: 900;
    margin: 15px 0;
}

.ss-fac-head h2 span {
    color: var(--ss-yellow);
}

.ss-fac-head p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: auto;
}

/* GRID LAYOUT */
.ss-fac-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    position: relative;
    z-index: 5;
}

/* CARD DESIGN */
.ss-fac-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ss-fac-card:hover {
    background: var(--ss-white);
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.ss-fac-card:hover h3,
.ss-fac-card:hover p {
    color: var(--ss-navy);
}

/* ICON ANIMATION */
.ss-fac-icon {
    width: 70px;
    height: 70px;
    background: var(--ss-yellow);
    color: var(--ss-navy);
    font-size: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.4s;
    box-shadow: 0 10px 20px rgba(252, 213, 4, 0.3);
}

.ss-fac-card:hover .ss-fac-icon {
    background: var(--ss-navy);
    color: var(--ss-yellow);
    transform: rotateY(360deg);
}

.ss-fac-card h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    transition: 0.3s;
}

.ss-fac-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
    transition: 0.3s;
}

/* VIEW DETAILS LINK */
.ss-fac-link {
    font-size: 14px;
    font-weight: 700;
    color: var(--ss-yellow);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    transition: 0.3s;
}

.ss-fac-card:hover .ss-fac-link {
    color: var(--ss-blue);
}

.ss-fac-link i {
    transition: 0.3s;
}

.ss-fac-link:hover i {
    transform: translateX(5px);
}

/* =========================================
   ENQUIRY & SUPPORT SECTION
   ========================================= */
.ss-enquiry-section {
    padding: 100px 0;
    background: #f4f7ff;
    position: relative;
    overflow: hidden;
}

.ss-enquiry-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

/* Left Side Styling */
.ss-enquiry-head {
    margin-bottom: 40px;
}

.ss-enquiry-tag {
    color: var(--ss-red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}

.ss-enquiry-head h2 {
    font-size: 45px;
    color: var(--ss-navy);
    font-weight: 900;
    line-height: 1.1;
}

.ss-enquiry-head h2 span {
    color: var(--ss-blue);
}

.ss-enquiry-head p {
    color: #555;
    margin-top: 15px;
    font-size: 16px;
    max-width: 500px;
}

/* Info Cards */
.ss-info-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ss-info-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(2, 10, 96, 0.05);
    border: 1px solid transparent;
}

.ss-info-card:hover {
    transform: translateX(10px);
    border-color: var(--ss-yellow);
    box-shadow: 0 15px 40px rgba(2, 10, 96, 0.1);
}

.ss-info-icon {
    width: 55px;
    height: 55px;
    background: var(--ss-navy);
    color: var(--ss-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.ss-info-text h4 {
    color: var(--ss-navy);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
}

.ss-info-text p {
    color: #666;
    font-size: 14px;
    margin: 0;
}

/* Support Side Card */
.ss-support-box {
    background: var(--ss-navy);
    padding: 50px 40px;
    border-radius: 30px;
    color: #fff;
    text-align: center;
    position: relative;
    box-shadow: 0 25px 60px rgba(2, 10, 96, 0.2);
}

.ss-support-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #2ecc71;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    animation: pulseActive 2s infinite;
}

@keyframes pulseActive {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.ss-support-img-group {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.ss-support-img-group img,
.ss-support-count {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid var(--ss-navy);
    margin-left: -15px;
}

.ss-support-count {
    background: var(--ss-yellow);
    color: var(--ss-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
}

.ss-support-box h3 {
    font-size: 26px;
    font-weight: 900;
    margin-bottom: 10px;
}

.ss-support-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 30px;
}

.ss-support-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ss-support-btn {
    padding: 14px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 800;
    font-size: 15px;
    transition: 0.3s;
}

.ss-wa-btn {
    background: #25d366;
    color: #fff;
}

.ss-enq-btn {
    background: var(--ss-yellow);
    color: var(--ss-navy);
}

.ss-support-btn:hover {
    transform: translateY(-5px);
    opacity: 0.9;
}

.ss-support-footer {
    margin-top: 25px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
}

/* =========================================
 SCHOOL FOOTER STYLING
   ========================================= */
.ss-main-footer {
    background: var(--ss-navy);
    color: #fff;
    padding: 100px 0 30px;
    position: relative;
    z-index: 10;
}

/* Wave Decoration */
.ss-footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.ss-footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.ss-footer-wave .shape-fill {
    fill: #f4f7ff;
}

/* Footer Grid */
.ss-footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 60px;
}

/* School Identity Column */
.ss-footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    margin-bottom: 25px;
}

.ss-footer-logo-wrap .ss-logo-circle {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ss-footer-logo-wrap .ss-logo {
    width: 45px;
    height: 45px;
    border-radius: 10px;
}

.ss-footer-logo-wrap .ss-logo-text h2 {
    color: #fff;
    font-size: 24px;
    margin: 0;
    font-family: serif;
}

.ss-footer-logo-wrap .ss-logo-text p {
    color: var(--ss-yellow);
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

.ss-school-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

/* Social Links */
.ss-social-links {
    display: flex;
    gap: 12px;
}

.ss-soc-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.3s;
    font-size: 16px;
}

.ss-soc-icon:hover {
    background: var(--ss-yellow);
    color: var(--ss-navy);
    transform: translateY(-5px);
}

/* Column Headings */
.ss-footer-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--ss-yellow);
    position: relative;
    padding-bottom: 10px;
}

.ss-footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--ss-red);
}

/* Footer Links List */
.ss-footer-links {
    list-style: none;
    padding: 0;
}

.ss-footer-links li {
    margin-bottom: 12px;
}

.ss-footer-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.ss-footer-links li a:hover {
    color: var(--ss-yellow);
    padding-left: 8px;
}

/* Contact Items */
.ss-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ss-f-contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.ss-f-contact-item i {
    font-size: 20px;
    color: var(--ss-yellow);
    margin-top: 4px;
}

.ss-f-contact-item p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Bottom Bar */
.ss-footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.ss-footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.ss-footer-bottom p span {
    color: var(--ss-yellow);
}

.ss-footer-bottom-links {
    display: flex;
    gap: 20px;
}

.ss-footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.ss-footer-bottom-links a:hover {
    color: #fff;
}

/* Scroll Top Button */
.ss-scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--ss-yellow);
    color: var(--ss-navy);
    border: none;
    border-radius: 50%;
    display: none;
    /* Controlled by JS */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: 0.3s;
}

.ss-scroll-top:hover {
    background: #fff;
    transform: scale(1.1);
}

/* =========================================
   MODERN CONTACT FORM STYLING
   ========================================= */
.ss-contact-now-section {
    padding: 100px 0;
    background: #f8faff;
    position: relative;
    overflow: hidden;
}

.ss-contact-main-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: center;
}

/* Left Panel */
.ss-contact-tag {
    color: var(--ss-red);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.ss-contact-info-panel h2 {
    font-size: 42px;
    color: var(--ss-navy);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
}

.ss-contact-info-panel h2 span {
    color: var(--ss-blue);
}

.ss-contact-info-panel p {
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.7;
}

.ss-contact-visual-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ss-v-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(2, 10, 96, 0.05);
    width: fit-content;
    transition: 0.3s;
}

.ss-v-card:hover {
    transform: translateX(10px);
}

.ss-v-card i {
    font-size: 24px;
    color: var(--ss-yellow);
}

.ss-v-card h5 {
    margin: 0;
    color: var(--ss-navy);
    font-size: 16px;
}

.ss-v-card p {
    margin: 0;
    font-size: 13px;
    opacity: 0.7;
}

/* Right Panel: The Form */
.ss-contact-form-box {
    background: #fff;
    padding: 45px;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(2, 10, 96, 0.1);
    border-top: 6px solid var(--ss-yellow);
}

.ss-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.ss-input-group {
    position: relative;
}

.ss-input-group input,
.ss-input-group select,
.ss-input-group textarea {
    width: 100%;
    padding: 15px 15px 15px 45px;
    border: 2px solid #eee;
    border-radius: 12px;
    outline: none;
    font-size: 15px;
    font-family: inherit;
    transition: 0.3s;
    background: #fafafa;
}

.ss-input-group textarea {
    height: 120px;
    resize: none;
}

.ss-input-group label {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #aaa;
    transition: 0.3s;
}

.ss-msg-group label {
    top: 25px;
}

/* Focus Animations */
.ss-input-group input:focus,
.ss-input-group select:focus,
.ss-input-group textarea:focus {
    border-color: var(--ss-blue);
    background: #fff;
    box-shadow: 0 0 15px rgba(3, 60, 169, 0.1);
}

.ss-input-group input:focus+label,
.ss-input-group textarea:focus+label {
    color: var(--ss-blue);
}

/* Submit Button Animation */
.ss-submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--ss-navy), var(--ss-blue));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.4s;
    margin-top: 10px;
    position: relative;
    overflow: hidden;
}

.ss-submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.ss-submit-btn:hover::before {
    left: 100%;
}

.ss-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(2, 10, 96, 0.3);
    background: linear-gradient(135deg, var(--ss-red), #b51f91);

}

/* =====================================================
TOPPER & BIRTHDAY SECTION - UNIQUE CSS
No conflict: all CSS starts with #toper-section
===================================================== */

#toper-section {
    --toper-navy: #020A60;
    --toper-blue: #033CA9;
    --toper-gold: #B78124;
    --toper-yellow: #FCD504;
    --toper-red: #F40404;
    --toper-white: #FFFFFF;
    --toper-light: #F6F8FF;

    width: 100%;
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(252, 213, 4, 0.15), transparent 28%),
        radial-gradient(circle at bottom right, rgba(3, 60, 169, 0.12), transparent 30%),
        linear-gradient(135deg, #ffffff, #f7faff);
    font-family: 'Segoe UI', Arial, sans-serif;
}

#toper-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, rgba(2, 10, 96, 0.035) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(2, 10, 96, 0.035) 25%, transparent 25%);
    background-size: 14px 14px;
    pointer-events: none;
}

#toper-section .ss-container {
    width: 92%;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

#toper-section .toper-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: stretch;
}

/* MAIN CARD */
#toper-section .toper-card-box {
    background: rgba(255, 255, 255, 0.88);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(2, 10, 96, 0.13);
    border: 1px solid rgba(2, 10, 96, 0.09);
    position: relative;
    min-width: 0;
    transition: 0.35s ease;
}

#toper-section .toper-card-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(2, 10, 96, 0.18);
}

/* HEADER */
#toper-section .toper-box-head {
    background:
        radial-gradient(circle at top right, rgba(252, 213, 4, 0.22), transparent 35%),
        linear-gradient(135deg, var(--toper-navy), var(--toper-blue));
    padding: 24px 24px 22px;
    text-align: center;
    color: var(--toper-white);
    position: relative;
    overflow: hidden;
}

#toper-section .toper-box-head::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    border: 20px solid rgba(255, 255, 255, 0.07);
    border-radius: 50%;
    right: -45px;
    top: -55px;
    animation: toperFloatCircle 5s ease-in-out infinite;
}

@keyframes toperFloatCircle {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(12px);
    }
}

#toper-section .toper-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--toper-yellow), var(--toper-gold));
    color: var(--toper-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    box-shadow: 0 10px 24px rgba(252, 213, 4, 0.28);
    position: relative;
    z-index: 2;
}

#toper-section .toper-box-head h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1.15;
    font-weight: 950;
    position: relative;
    z-index: 2;
}

#toper-section .toper-box-head h2 span {
    color: var(--toper-yellow);
}

#toper-section .toper-box-head p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

/* SWIPER */
#toper-section .toper-slider-unique,
#toper-section .bday-slider-unique {
    width: 100%;
    padding: 26px 24px 20px;
}

#toper-section .swiper-wrapper {
    align-items: stretch;
}

#toper-section .swiper-slide {
    height: auto;
}

/* TWO PROFILE COMBO */
#toper-section .toper-combo-flex {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* PROFILE CARD */
#toper-section .toper-profile-card {
    background:
        linear-gradient(135deg, #ffffff, #f7f9ff);
    border: 1px solid rgba(2, 10, 96, 0.08);
    border-radius: 22px;
    padding: 22px 14px 20px;
    text-align: center;
    min-height: 245px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(2, 10, 96, 0.08);
    position: relative;
    overflow: hidden;
    transition: 0.35s ease;
}

#toper-section .toper-profile-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--toper-navy), var(--toper-yellow), var(--toper-red));
}

#toper-section .toper-profile-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 35px rgba(2, 10, 96, 0.13);
}

#toper-section .toper-img-circle {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    padding: 4px;
    background: linear-gradient(135deg, var(--toper-yellow), var(--toper-gold));
    margin-bottom: 13px;
    position: relative;
}

#toper-section .toper-img-circle::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(2, 10, 96, 0.25);
    animation: toperRotate 9s linear infinite;
}

@keyframes toperRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

#toper-section .toper-img-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--toper-white);
    display: block;
}

#toper-section .toper-badge {
    display: inline-block;
    background: rgba(3, 60, 169, 0.10);
    color: var(--toper-blue);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

#toper-section .badge-red {
    background: rgba(244, 4, 4, 0.10);
    color: var(--toper-red);
}

#toper-section .badge-gold {
    background: rgba(252, 213, 4, 0.22);
    color: var(--toper-gold);
}

#toper-section .badge-navy {
    background: rgba(2, 10, 96, 0.10);
    color: var(--toper-navy);
}

#toper-section .toper-profile-card h4 {
    margin: 0 0 8px;
    color: var(--toper-navy);
    font-size: 18px;
    line-height: 1.25;
    font-weight: 900;
}

#toper-section .toper-percent {
    color: var(--toper-red);
    font-size: 26px;
    font-weight: 950;
    line-height: 1;
}

#toper-section .bday-info {
    margin: 3px 0 0;
    color: #555b70;
    font-size: 13px;
    line-height: 1.4;
    font-weight: 600;
}

/* BIRTHDAY THEME */
#toper-section .bday-box-theme .toper-box-head {
    background:
        radial-gradient(circle at top right, rgba(252, 213, 4, 0.25), transparent 35%),
        linear-gradient(135deg, var(--toper-red), var(--toper-gold));
}

#toper-section .bday-card::before {
    background: linear-gradient(90deg, var(--toper-red), var(--toper-yellow), var(--toper-gold));
}

#toper-section .bday-border {
    background: linear-gradient(135deg, var(--toper-red), var(--toper-yellow));
}

/* NAVIGATION */
#toper-section .toper-nav-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 22px;
}

#toper-section .toper-prev-btn,
#toper-section .toper-next-btn,
#toper-section .bday-prev-btn,
#toper-section .bday-next-btn {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--toper-navy);
    color: var(--toper-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    cursor: pointer;
    transition: 0.35s ease;
    box-shadow: 0 10px 22px rgba(2, 10, 96, 0.18);
}

#toper-section .toper-prev-btn:hover,
#toper-section .toper-next-btn:hover,
#toper-section .bday-prev-btn:hover,
#toper-section .bday-next-btn:hover {
    background: var(--toper-yellow);
    color: var(--toper-navy);
    transform: translateY(-3px);
}

#toper-section .toper-view-all {
    text-decoration: none;
    background: linear-gradient(135deg, var(--toper-yellow), var(--toper-gold));
    color: var(--toper-navy);
    padding: 12px 22px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    transition: 0.35s ease;
}

#toper-section .toper-view-all:hover {
    background: linear-gradient(135deg, var(--toper-navy), var(--toper-blue));
    color: var(--toper-white);
    transform: translateY(-3px);
}

#toper-section .bday-btn-theme {
    background: linear-gradient(135deg, var(--toper-red), var(--toper-gold));
    color: var(--toper-white);
}

/* SWIPER FADE SMOOTH */
#toper-section .toper-slider-unique .swiper-slide,
#toper-section .bday-slider-unique .swiper-slide {
    opacity: 0 !important;
    transition: opacity 0.7s ease;
}

#toper-section .toper-slider-unique .swiper-slide-active,
#toper-section .bday-slider-unique .swiper-slide-active {
    opacity: 1 !important;
}

/* =====================================================
TESTIMONIAL REVIEW SECTION
===================================================== */

#ss-review-unique-section {
    --ssr-navy: #020A60;
    --ssr-blue: #033CA9;
    --ssr-gold: #B78124;
    --ssr-yellow: #FCD504;
    --ssr-red: #F40404;
    --ssr-white: #FFFFFF;
    --ssr-light: #F7F9FF;

    width: 100%;
    padding: 65px 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(252, 213, 4, 0.14), transparent 28%),
        radial-gradient(circle at bottom right, rgba(3, 60, 169, 0.10), transparent 32%),
        linear-gradient(135deg, #ffffff, #f7faff);
    font-family: 'Segoe UI', Arial, sans-serif;
}

#ss-review-unique-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, rgba(2, 10, 96, 0.035) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(2, 10, 96, 0.035) 25%, transparent 25%);
    background-size: 14px 14px;
    pointer-events: none;
}

#ss-review-unique-section::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    right: -90px;
    top: 70px;
    border-radius: 50%;
    background: rgba(252, 213, 4, 0.12);
    border: 28px solid rgba(3, 60, 169, 0.05);
    animation: ssReviewUniqueFloat 6s ease-in-out infinite;
}

@keyframes ssReviewUniqueFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

#ss-review-unique-section .ss-review-unique-container {
    width: 92%;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* HEADING */
#ss-review-unique-section .ss-review-unique-heading {
    max-width: 760px;
    margin: 0 auto 34px;
    text-align: center;
}

#ss-review-unique-section .ss-review-unique-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(3, 60, 169, 0.08);
    color: var(--ssr-blue);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

#ss-review-unique-section .ss-review-unique-subtitle i {
    color: var(--ssr-gold);
}

#ss-review-unique-section .ss-review-unique-heading h2 {
    margin: 0 0 14px;
    color: var(--ssr-navy);
    font-size: 38px;
    line-height: 1.15;
    font-weight: 950;
}

#ss-review-unique-section .ss-review-unique-heading h2 span {
    color: var(--ssr-yellow);
}

#ss-review-unique-section .ss-review-unique-heading p {
    margin: 0;
    color: #4d5265;
    font-size: 15px;
    line-height: 1.7;
}

/* SLIDER BOX */
#ss-review-unique-section .ss-review-unique-slider-box {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(2, 10, 96, 0.08);
    border-radius: 30px;
    padding: 26px 26px 24px;
    box-shadow: 0 22px 55px rgba(2, 10, 96, 0.12);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

#ss-review-unique-section .ss-review-unique-slider-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--ssr-navy), var(--ssr-yellow), var(--ssr-gold), var(--ssr-red));
}

#ss-review-unique-section .ss-review-unique-slider {
    width: 100%;
    overflow: hidden;
}

#ss-review-unique-section .swiper-slide {
    height: auto;
}

/* 2 CARD GRID */
#ss-review-unique-section .ss-review-unique-card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

/* CARD */
#ss-review-unique-section .ss-review-unique-card {
    position: relative;
    min-height: 285px;
    background:
        radial-gradient(circle at top right, rgba(252, 213, 4, 0.14), transparent 36%),
        linear-gradient(135deg, #ffffff, #f7f9ff);
    border: 1px solid rgba(2, 10, 96, 0.08);
    border-radius: 24px;
    padding: 26px 24px;
    box-shadow: 0 14px 32px rgba(2, 10, 96, 0.08);
    overflow: hidden;
    transition: 0.35s ease;
}

#ss-review-unique-section .ss-review-unique-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 44px rgba(2, 10, 96, 0.15);
}

#ss-review-unique-section .ss-review-unique-card::before {
    content: "";
    position: absolute;
    left: -50px;
    bottom: -50px;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: rgba(3, 60, 169, 0.06);
}

#ss-review-unique-section .ss-review-unique-quote {
    position: absolute;
    right: 22px;
    top: 22px;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--ssr-navy), var(--ssr-blue));
    color: var(--ssr-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 10px 24px rgba(2, 10, 96, 0.18);
}

/* TOP PROFILE */
#ss-review-unique-section .ss-review-unique-top {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: 55px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

#ss-review-unique-section .ss-review-unique-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    padding: 4px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--ssr-yellow), var(--ssr-gold));
    position: relative;
}

#ss-review-unique-section .ss-review-unique-img::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(2, 10, 96, 0.25);
    animation: ssReviewUniqueRotate 10s linear infinite;
}

@keyframes ssReviewUniqueRotate {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(360deg);
    }
}

#ss-review-unique-section .ss-review-unique-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--ssr-white);
    display: block;
}

#ss-review-unique-section .ss-review-unique-top h4 {
    margin: 0 0 5px;
    color: var(--ssr-navy);
    font-size: 19px;
    font-weight: 950;
    line-height: 1.2;
}

#ss-review-unique-section .ss-review-unique-top span {
    color: var(--ssr-gold);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* STARS */
#ss-review-unique-section .ss-review-unique-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--ssr-yellow);
    font-size: 15px;
    margin-bottom: 14px;
    position: relative;
    z-index: 2;
}

#ss-review-unique-section .ss-review-unique-card p {
    margin: 0;
    color: #44495b;
    font-size: 15px;
    line-height: 1.7;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

/* CONTROLS */
#ss-review-unique-section .ss-review-unique-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 24px;
}

#ss-review-unique-section .ss-review-unique-prev,
#ss-review-unique-section .ss-review-unique-next {
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 14px;
    background: var(--ssr-navy);
    color: var(--ssr-white);
    cursor: pointer;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease;
    box-shadow: 0 10px 24px rgba(2, 10, 96, 0.18);
}

#ss-review-unique-section .ss-review-unique-prev:hover,
#ss-review-unique-section .ss-review-unique-next:hover {
    background: var(--ssr-yellow);
    color: var(--ssr-navy);
    transform: translateY(-3px);
}

#ss-review-unique-section .ss-review-unique-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-width: 92px;
}

#ss-review-unique-section .ss-review-unique-pagination .swiper-pagination-bullet {
    width: 9px;
    height: 9px;
    opacity: 1;
    background: rgba(2, 10, 96, 0.22);
    transition: 0.35s ease;
}

#ss-review-unique-section .ss-review-unique-pagination .swiper-pagination-bullet-active {
    width: 30px;
    border-radius: 30px;
    background: var(--ssr-yellow);
}

/* VIEW ALL */
#ss-review-unique-section .ss-review-unique-view-wrap {
    text-align: center;
    margin-top: 26px;
}

#ss-review-unique-section .ss-review-unique-view-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--ssr-yellow), var(--ssr-gold));
    color: var(--ssr-navy);
    padding: 14px 28px;
    border-radius: 45px;
    font-size: 15px;
    font-weight: 950;
    box-shadow: 0 12px 28px rgba(252, 213, 4, 0.30);
    transition: 0.35s ease;
}

#ss-review-unique-section .ss-review-unique-view-btn:hover {
    background: linear-gradient(135deg, var(--ssr-navy), var(--ssr-blue));
    color: var(--ssr-white);
    transform: translateY(-4px);
}


#ss-review-unique-section .ss-review-unique-slider .swiper-slide {
    opacity: 0 !important;
    transition: opacity 0.8s ease;
}

#ss-review-unique-section .ss-review-unique-slider .swiper-slide-active {
    opacity: 1 !important;
}



/* =====================================================
EVENTS SECTION
===================================================== */

#ss-events-unique-section {
    --sse-navy: #020A60;
    --sse-blue: #033CA9;
    --sse-gold: #B78124;
    --sse-yellow: #FCD504;
    --sse-red: #F40404;
    --sse-white: #FFFFFF;
    --sse-light: #F7F9FF;

    width: 100%;
    padding: 70px 0;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(252, 213, 4, 0.14), transparent 30%),
        radial-gradient(circle at bottom right, rgba(3, 60, 169, 0.12), transparent 32%),
        linear-gradient(135deg, #ffffff, #f7faff);
    font-family: 'Segoe UI', Arial, sans-serif;
}

#ss-events-unique-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, rgba(2, 10, 96, 0.035) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(2, 10, 96, 0.035) 25%, transparent 25%);
    background-size: 14px 14px;
    pointer-events: none;
}

#ss-events-unique-section::after {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -110px;
    top: 80px;
    border-radius: 50%;
    background: rgba(252, 213, 4, 0.12);
    border: 30px solid rgba(3, 60, 169, 0.05);
    animation: ssEventsFloat 6s ease-in-out infinite;
}

@keyframes ssEventsFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

#ss-events-unique-section .ss-events-unique-container {
    width: 92%;
    max-width: 1180px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* HEADING */
#ss-events-unique-section .ss-events-unique-heading {
    max-width: 780px;
    margin: 0 auto 32px;
    text-align: center;
}

#ss-events-unique-section .ss-events-unique-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(3, 60, 169, 0.08);
    color: var(--sse-blue);
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 14px;
}

#ss-events-unique-section .ss-events-unique-subtitle i {
    color: var(--sse-gold);
}

#ss-events-unique-section .ss-events-unique-heading h2 {
    margin: 0 0 14px;
    color: var(--sse-navy);
    font-size: 40px;
    line-height: 1.15;
    font-weight: 950;
}

#ss-events-unique-section .ss-events-unique-heading h2 span {
    color: var(--sse-yellow);
}

#ss-events-unique-section .ss-events-unique-heading p {
    margin: 0;
    color: #4d5265;
    font-size: 15px;
    line-height: 1.7;
}

/* FILTER */
#ss-events-unique-section .ss-events-unique-filter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

#ss-events-unique-section .ss-events-unique-filter button {
    border: none;
    outline: none;
    cursor: pointer;
    padding: 11px 20px;
    border-radius: 40px;
    background: var(--sse-white);
    color: var(--sse-navy);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 10px 24px rgba(2, 10, 96, 0.08);
    border: 1px solid rgba(2, 10, 96, 0.08);
    transition: 0.35s ease;
}

#ss-events-unique-section .ss-events-unique-filter button:hover,
#ss-events-unique-section .ss-events-unique-filter button.active {
    background: linear-gradient(135deg, var(--sse-navy), var(--sse-blue));
    color: var(--sse-white);
    transform: translateY(-3px);
}

/* GRID */
#ss-events-unique-section .ss-events-unique-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* CARD */
#ss-events-unique-section .ss-events-unique-card {
    background: rgba(255, 255, 255, 0.90);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 38px rgba(2, 10, 96, 0.11);
    border: 1px solid rgba(2, 10, 96, 0.08);
    position: relative;
    transition: 0.38s ease;
    animation: ssEventsCardShow 0.45s ease forwards;
}

@keyframes ssEventsCardShow {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

#ss-events-unique-section .ss-events-unique-card.hide {
    display: none;
}

#ss-events-unique-section .ss-events-unique-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(2, 10, 96, 0.18);
}

/* IMAGE */
#ss-events-unique-section .ss-events-unique-img-wrap {
    height: 230px;
    position: relative;
    overflow: hidden;
    background: var(--sse-navy);
}

#ss-events-unique-section .ss-events-unique-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.55s ease;
}

#ss-events-unique-section .ss-events-unique-card:hover .ss-events-unique-img-wrap img {
    transform: scale(1.09);
}

#ss-events-unique-section .ss-events-unique-img-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(2, 10, 96, 0.78));
}

/* DATE */
#ss-events-unique-section .ss-events-unique-date {
    position: absolute;
    top: 16px;
    left: 16px;
    width: 62px;
    height: 66px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--sse-yellow), var(--sse-gold));
    color: var(--sse-navy);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

#ss-events-unique-section .ss-events-unique-date strong {
    font-size: 23px;
    line-height: 1;
    font-weight: 950;
}

#ss-events-unique-section .ss-events-unique-date span {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

/* OVERLAY VIEW */
#ss-events-unique-section .ss-events-unique-overlay {
    position: absolute;
    inset: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    background: rgba(2, 10, 96, 0.42);
    transition: 0.35s ease;
}

#ss-events-unique-section .ss-events-unique-card:hover .ss-events-unique-overlay {
    opacity: 1;
    visibility: visible;
}

#ss-events-unique-section .ss-events-unique-view {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    background: var(--sse-white);
    color: var(--sse-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    transform: scale(0.7);
    transition: 0.35s ease;
}

#ss-events-unique-section .ss-events-unique-card:hover .ss-events-unique-view {
    transform: scale(1);
}

#ss-events-unique-section .ss-events-unique-view:hover {
    background: var(--sse-yellow);
}

/* CONTENT */
#ss-events-unique-section .ss-events-unique-content {
    padding: 22px 20px 24px;
}

#ss-events-unique-section .ss-events-unique-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(3, 60, 169, 0.09);
    color: var(--sse-blue);
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

#ss-events-unique-section .ss-events-unique-badge.sports {
    background: rgba(244, 4, 4, 0.09);
    color: var(--sse-red);
}

#ss-events-unique-section .ss-events-unique-badge.academic {
    background: rgba(252, 213, 4, 0.20);
    color: var(--sse-gold);
}

#ss-events-unique-section .ss-events-unique-badge.celebration {
    background: rgba(2, 10, 96, 0.09);
    color: var(--sse-navy);
}

#ss-events-unique-section .ss-events-unique-content h3 {
    margin: 0 0 10px;
    color: var(--sse-navy);
    font-size: 20px;
    line-height: 1.3;
    font-weight: 950;
}

#ss-events-unique-section .ss-events-unique-content p {
    margin: 0;
    color: #4b5063;
    font-size: 14px;
    line-height: 1.65;
}

/* BUTTON */
#ss-events-unique-section .ss-events-unique-btn-wrap {
    text-align: center;
    margin-top: 36px;
}

#ss-events-unique-section .ss-events-unique-main-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    background: linear-gradient(135deg, var(--sse-yellow), var(--sse-gold));
    color: var(--sse-navy);
    padding: 14px 28px;
    border-radius: 45px;
    font-size: 15px;
    font-weight: 950;
    box-shadow: 0 12px 28px rgba(252, 213, 4, 0.30);
    transition: 0.35s ease;
}

#ss-events-unique-section .ss-events-unique-main-btn:hover {
    background: linear-gradient(135deg, var(--sse-navy), var(--sse-blue));
    color: var(--sse-white);
    transform: translateY(-4px);
}














/* =========================================
   RESPONSIVE
   ========================================= */
@media(max-width: 1200px) {
    .ss-slide-content {
        padding-right: 35%;
    }

    .ss-slide-content h1 {
        font-size: 52px;
    }
}

/* RESPONSIVE */
@media(max-width: 1100px) {
    .ss-menu>li>a {
        font-size: 13px;
        padding: 34px 8px;
    }

    .ss-menu {
        margin-left: 138px;
    }

    .ss-location-list {
        gap: 22px;
        padding-right: 25px;
    }

    .ss-location-item {
        font-size: 15px;
        gap: 10px;
    }

    .ss-location-icon {
        width: 38px;
        height: 38px;
        font-size: 18px;
    }

    .ss-disclosure-btn {
        font-size: 16px;
        padding: 0 28px 0 48px;
    }
}

@media (max-width: 1024px) {
    .ss-leader-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ss-why-main-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .ss-why-text {
        margin: 0 auto 40px;
    }

    .ss-big-stats-container {
        justify-content: center;
    }

    .ss-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

}

@media(max-width: 991px) {
    .ss-navbar-placeholder {
        height: 78px;
    }

    .ss-navbar.ss-sticky-active .ss-nav-inner {
        min-height: 70px;
    }

    .ss-navbar.ss-sticky-active .ss-logo-wrap {
        height: 62px;
        min-width: auto;
        padding: 5px 12px 5px 5px;
    }

    .ss-navbar.ss-sticky-active .ss-logo-circle {
        width: 50px;
        height: 50px;
    }

    .ss-navbar.ss-sticky-active .ss-logo {
        width: 40px;
        height: 40px;
        max-width: 40px;
        max-height: 40px;
    }

    .ss-navbar.ss-sticky-active .ss-logo-text h2 {
        font-size: 18px;
    }

    .ss-navbar.ss-sticky-active .ss-logo-text p {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .ss-topbar-inner {
        flex-direction: column;
        gap: 8px;
    }

    .ss-contact-info {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        font-size: 13px;
    }

    .ss-nav-inner {
        min-height: 82px;
    }

    .ss-logo-wrap {
        position: relative;
        top: auto;
        left: auto;
        width: auto;
        min-width: auto;
        height: 78px;
        padding: 7px 14px 7px 7px;
        gap: 10px;
        border-width: 2px;
    }

    .ss-logo-circle {
        width: 62px;
        height: 62px;
        border-width: 2px;
    }

    .ss-logo {
        width: 50px;
        height: 50px;
        max-width: 50px;
        max-height: 50px;
        border-radius: 25px;
    }

    .ss-logo-text h2 {
        font-size: 22px;
    }

    .ss-logo-text p {
        font-size: 11px;
        letter-spacing: 1.6px;
    }

    .ss-menu {
        margin-left: 0;
    }

    .ss-menu-btn {
        display: flex;
    }

    .ss-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin-left: 0;
        width: 100%;
        background: var(--ss-white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        box-shadow: 0 16px 35px rgba(2, 10, 96, 0.20);
        border-radius: 0 0 18px 18px;
        max-height: 0;
        overflow: hidden;
        transition: 0.45s ease;
    }

    .ss-menu.active {
        max-height: 650px;
        overflow-y: auto;
    }

    .ss-menu>li>a {
        padding: 15px 20px;
        justify-content: space-between;
        border-bottom: 1px solid rgba(2, 10, 96, 0.08);
        font-size: 14px;
    }

    .ss-menu>li>a::before {
        display: none;
    }

    .ss-contact-btn {
        margin: 12px 18px 18px;
        justify-content: center !important;
        text-align: center;
    }

    .ss-dropdown-menu {
        position: static;
        min-width: 100%;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: #f6f7ff;
    }

    .ss-dropdown.active .ss-dropdown-menu {
        display: block;
    }

    .ss-dropdown:hover .ss-dropdown-menu {
        transform: none;
    }

    .ss-dropdown:hover>a i {
        transform: none;
    }

    .ss-dropdown.active>a i {
        transform: rotate(180deg);
    }

    .ss-dropdown-menu li a {
        padding-left: 35px;
        font-size: 13px;
    }

    .ss-hero-slider {
        height: 560px;
    }

    .ss-slide-overlay {
        background:
            radial-gradient(circle at 80% 20%, rgba(252, 213, 4, 0.22), transparent 30%),
            linear-gradient(90deg, rgba(2, 10, 96, 0.94), rgba(2, 10, 96, 0.72), rgba(3, 60, 169, 0.45));
    }

    .ss-slide-content {
        padding-right: 22%;
    }

    .ss-slide-content h1 {
        font-size: 44px;
    }

    .ss-slide-content p {
        font-size: 16px;
    }

    .ss-prev {
        left: 16px;
    }

    .ss-next {
        right: 16px;
    }

    .ss-fac-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ss-fac-head h2 {
        font-size: 35px;
    }

    .ss-enquiry-wrapper {
        grid-template-columns: 1fr;
    }

    .ss-support-side {
        max-width: 500px;
        margin: auto;
        width: 100%;
    }

    .ss-contact-main-wrapper {
        grid-template-columns: 1fr;
    }

    .ss-contact-info-panel {
        text-align: center;
    }

    .ss-contact-visual-cards {
        align-items: center;
    }

    #toper-section {
        padding: 48px 0;
    }

    #toper-section .toper-main-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    #toper-section .toper-card-box {
        max-width: 720px;
        margin: 0 auto;
        width: 100%;
    }

    #toper-section .toper-profile-card {
        min-height: 230px;
    }

    #ss-review-unique-section {
        padding: 52px 0;
    }

    #ss-review-unique-section .ss-review-unique-card-grid {
        gap: 16px;
    }

    #ss-review-unique-section .ss-review-unique-card {
        padding: 22px 18px;
        min-height: 295px;
    }

    #ss-review-unique-section .ss-review-unique-heading h2 {
        font-size: 33px;
    }

    #ss-events-unique-section {
        padding: 55px 0;
    }

    #ss-events-unique-section .ss-events-unique-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    #ss-events-unique-section .ss-events-unique-heading h2 {
        font-size: 34px;
    }
}


@media(max-width: 900px) {
    .ss-location-container {
        flex-direction: column;
        min-height: auto;
    }

    .ss-location-list {
        width: 100%;
        padding: 14px 12px;
        gap: 14px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .ss-disclosure-btn {
        width: 100%;
        min-height: 54px;
        justify-content: center;
        padding: 0 15px;
        clip-path: none;
        font-size: 16px;
    }

    .ss-news-about-section {
        padding: 45px 0 70px;
        overflow: hidden;
    }

    .ss-latest-news-box {
        width: 94%;
        display: grid;
        grid-template-columns: 1fr;
        margin: 0 auto 50px;
        border-radius: 22px;
        overflow: hidden;
    }

    .ss-news-heading {
        padding: 28px 20px;
        text-align: center;
        align-items: center;
        min-height: auto;
    }

    .ss-news-heading h2 {
        font-size: 34px;
    }

    .ss-news-heading a {
        font-size: 13px;
        margin-top: 16px;
    }

    .ss-news-slider {
        width: 100%;
        padding: 25px 50px 42px;
        min-height: auto;
    }

    .ss-news-window {
        width: 100%;
        overflow: hidden;
    }

    .ss-news-track {
        display: flex;
        width: 100%;
    }

    .ss-news-card {
        min-width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
        padding: 12px 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
    }

    .ss-news-content,
    .ss-about-content {
        opacity: 1 !important;
        visibility: visible !important;
    }

    .ss-news-number {
        font-size: 46px;
        min-width: 58px;
    }

    .ss-news-content {
        width: 100%;
        min-width: 0;
    }

    .ss-news-content span {
        font-size: 13px;
        color: var(--ss-blue);
    }

    .ss-news-content h3 {
        font-size: 18px;
        color: var(--ss-navy);
        line-height: 1.35;
    }



    .ss-news-prev {
        left: 10px;
    }

    .ss-news-next {
        right: 10px;
    }

    .ss-news-arrow {
        width: 38px;
        height: 38px;
        border-radius: 10px;
    }

    .ss-news-dots {
        left: 50%;
        right: auto;
        bottom: 15px;
        transform: translateX(-50%);
    }

    .ss-about-wrap {
        width: 94%;
    }

    .ss-about-card {
        display: grid;
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 18px;
        border-radius: 24px;
        overflow: visible;
    }

    .ss-about-img {
        height: 280px;
        border-radius: 20px;
    }

    .ss-about-content {
        text-align: center;
        width: 100%;
    }

    .ss-about-content h2 {
        display: block;
        font-size: 36px;
        color: var(--ss-navy);
        margin-bottom: 22px;
    }

    .ss-about-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }


    .ss-news-content p,
    .ss-about-content p {
        color: #4b4b5e !important;
        opacity: 1 !important;
        display: block !important;
        visibility: visible !important;
    }

    .ss-section-badge {
        display: inline-flex;
        font-size: 13px;
    }

    .ss-about-features {
        grid-template-columns: 1fr;
        gap: 10px;
        margin: 20px 0;
    }

    .ss-about-features div {
        justify-content: center;
        font-size: 13px;
    }

    .ss-about-btn {
        width: 100%;
        justify-content: center;
    }
}

@media(max-width: 768px) {
    .ss-hero-slider {
        height: 520px;
    }

    .ss-slide-overlay {
        background:
            linear-gradient(180deg, rgba(2, 10, 96, 0.88), rgba(2, 10, 96, 0.80)),
            linear-gradient(90deg, rgba(2, 10, 96, 0.95), rgba(3, 60, 169, 0.55));
    }

    .ss-slide-content {
        width: 90%;
        padding-right: 0;
        align-items: center;
        text-align: center;
    }

    .ss-slide-content h1 {
        font-size: 38px;
    }

    .ss-slide-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .ss-slide-buttons {
        justify-content: center;
    }

    .ss-slider-arrow {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }

    .ss-slide::before {
        width: 240px;
        height: 240px;
    }

    .ss-slide::after {
        width: 150px;
        height: 150px;
    }

    .ss-leader-grid {
        grid-template-columns: 1fr;
        width: 85%;
        margin: auto;
    }

    .ss-leader-heading h2 {
        font-size: 30px;
    }

    .ss-why-main-title {
        font-size: 38px;
    }

    .ss-shield-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
    }

    .ss-gallery-section {
        padding: 60px 0;
    }

    .ss-gallery-head h2 {
        font-size: 32px;
    }

    .ss-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .ss-gallery-item {
        height: 220px;
    }

    .ss-enquiry-head h2 {
        font-size: 35px;
    }

    .ss-support-box {
        padding: 40px 25px;
    }

    .ss-main-footer {
        padding: 80px 0 30px;
    }

    .ss-footer-title {
        font-size: 18px;
    }

    .ss-contact-form-box {
        padding: 30px 20px;
    }

    .ss-contact-info-panel h2 {
        font-size: 34px;
    }

    #ss-review-unique-section .ss-review-unique-card-grid {
        grid-template-columns: 1fr;
    }

    #ss-review-unique-section .ss-review-unique-card {
        min-height: auto;
    }

    #ss-review-unique-section .ss-review-unique-slider-box {
        padding: 22px 18px;
        border-radius: 24px;
    }
}

@media(max-width:650px) {
    #ss-events-unique-section .ss-events-unique-grid {
        grid-template-columns: 1fr;
    }

    #ss-events-unique-section .ss-events-unique-img-wrap {
        height: 220px;
    }
}

@media(max-width: 576px) {
    .ss-location-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 12px 8px;
    }

    .ss-location-item {
        flex-direction: column;
        gap: 6px;
        font-size: 11.5px;
        text-align: center;
        letter-spacing: 0.2px;
        padding: 8px 4px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .ss-location-item::after {
        display: none;
    }

    .ss-location-icon {
        width: 34px;
        height: 34px;
        font-size: 16px;
        border-width: 2px;
        border-radius: 9px;
    }

    .ss-disclosure-btn {
        min-height: 50px;
        font-size: 14px;
        gap: 8px;
    }

    .ss-disclosure-icon {
        width: 24px;
        height: 24px;
        font-size: 13px;
    }

    .ss-hero-slider {
        height: 500px;
    }

    .ss-slide-bg img {
        object-position: center;
    }

    .ss-slide-badge {
        font-size: 12px;
        padding: 8px 13px;
        margin-bottom: 15px;
    }

    .ss-slide-content h1 {
        font-size: 31px;
        line-height: 1.15;
        margin-bottom: 16px;
    }

    .ss-slide-content p {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .ss-slide-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .ss-primary-btn,
    .ss-secondary-btn {
        width: 100%;
        max-width: 250px;
        padding: 12px 20px;
        font-size: 13px;
    }

    .ss-slider-arrow {
        top: auto;
        bottom: 22px;
        transform: none;
        width: 36px;
        height: 36px;
    }

    .ss-prev {
        left: 18px;
    }

    .ss-next {
        right: 18px;
    }

    .ss-slider-dots {
        bottom: 30px;
    }

    .ss-slider-dots button {
        width: 10px;
        height: 10px;
    }

    .ss-slider-dots button.active {
        width: 28px;
    }

    .ss-fac-grid {
        grid-template-columns: 1fr;
    }

    .ss-fac-card {
        padding: 30px 20px;
    }

    .ss-fac-head h2 {
        font-size: 28px;
    }

    .ss-footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .ss-footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .ss-footer-bottom-links {
        width: 100%;
        justify-content: center;
    }

    .ss-form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .ss-contact-info-panel h2 {
        font-size: 28px;
    }

    #toper-section {
        padding: 38px 0;
    }

    #toper-section .ss-container {
        width: 94%;
    }

    #toper-section .toper-box-head {
        padding: 22px 16px 20px;
    }

    #toper-section .toper-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        border-radius: 15px;
    }

    #toper-section .toper-box-head h2 {
        font-size: 25px;
    }

    #toper-section .toper-box-head p {
        font-size: 12.5px;
    }

    #toper-section .toper-slider-unique,
    #toper-section .bday-slider-unique {
        padding: 20px 14px 18px;
    }

    #toper-section .toper-combo-flex {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    #toper-section .toper-profile-card {
        min-height: auto;
        padding: 20px 12px 18px;
        border-radius: 18px;
    }

    #toper-section .toper-img-circle {
        width: 86px;
        height: 86px;
    }

    #toper-section .toper-profile-card h4 {
        font-size: 16px;
    }

    #toper-section .toper-percent {
        font-size: 23px;
    }

    #toper-section .toper-nav-bar {
        gap: 9px;
        margin-top: 18px;
    }

    #toper-section .toper-prev-btn,
    #toper-section .toper-next-btn,
    #toper-section .bday-prev-btn,
    #toper-section .bday-next-btn {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 13px;
        flex-shrink: 0;
    }

    #toper-section .toper-view-all {
        padding: 11px 15px;
        font-size: 12px;
    }

    #ss-review-unique-section {
        padding: 42px 0;
    }

    #ss-review-unique-section .ss-review-unique-container {
        width: 94%;
    }

    #ss-review-unique-section .ss-review-unique-heading {
        margin-bottom: 24px;
    }

    #ss-review-unique-section .ss-review-unique-subtitle {
        font-size: 11px;
        padding: 7px 12px;
    }

    #ss-review-unique-section .ss-review-unique-heading h2 {
        font-size: 27px;
    }

    #ss-review-unique-section .ss-review-unique-heading p {
        font-size: 13px;
    }

    #ss-review-unique-section .ss-review-unique-slider-box {
        padding: 18px 12px 18px;
    }

    #ss-review-unique-section .ss-review-unique-card {
        border-radius: 20px;
        padding: 20px 15px;
        text-align: center;
    }

    #ss-review-unique-section .ss-review-unique-top {
        flex-direction: column;
        padding-right: 0;
        text-align: center;
    }

    #ss-review-unique-section .ss-review-unique-quote {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        right: 14px;
        top: 14px;
        font-size: 15px;
    }

    #ss-review-unique-section .ss-review-unique-img {
        width: 68px;
        height: 68px;
    }

    #ss-review-unique-section .ss-review-unique-top h4 {
        font-size: 17px;
    }

    #ss-review-unique-section .ss-review-unique-top span {
        font-size: 11px;
    }

    #ss-review-unique-section .ss-review-unique-stars {
        justify-content: center;
        font-size: 14px;
    }

    #ss-review-unique-section .ss-review-unique-card p {
        font-size: 13px;
        line-height: 1.65;
    }

    #ss-review-unique-section .ss-review-unique-prev,
    #ss-review-unique-section .ss-review-unique-next {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    #ss-review-unique-section .ss-review-unique-view-btn {
        width: 100%;
        padding: 13px 20px;
        font-size: 13px;
    }
}

/* 320PX PERFECT */
@media(max-width: 480px) {



    .ss-navbar.ss-sticky-active .ss-logo-wrap {
        height: 58px;
        gap: 6px;
    }

    .ss-navbar.ss-sticky-active .ss-logo-circle {
        width: 46px;
        height: 46px;
    }

    .ss-navbar.ss-sticky-active .ss-logo {
        width: 36px;
        height: 36px;
        max-width: 36px;
        max-height: 36px;
    }

    .ss-navbar.ss-sticky-active .ss-logo-text h2 {
        font-size: 15px;
    }

    .ss-navbar.ss-sticky-active .ss-logo-text p {
        font-size: 8px;
    }

    .ss-container {
        width: 94%;
    }

    .ss-topbar {
        padding: 8px 0;
    }

    .ss-contact-info {
        font-size: 11.5px;
        line-height: 1.5;
    }

    .ss-social {
        gap: 10px;
    }

    .ss-social a {
        font-size: 13px;
    }

    .ss-career-btn {
        padding: 5px 11px;
        font-size: 12px;
    }

    .ss-nav-inner {
        min-height: 74px;
    }

    .ss-logo-wrap {
        width: 70px;
        height: 70px;
    }

    .ss-logo {
        max-width: 56px;
        max-height: 56px;
        border-radius: 25px;
    }

    .ss-menu-btn {
        width: 42px;
        height: 38px;
    }

    .ss-menu>li>a {
        font-size: 13px;
        padding: 14px 16px;
    }

    .ss-dropdown-menu li a {
        font-size: 12.5px;
        padding: 12px 25px;
    }

    .ss-news-heading h2 {
        font-size: 30px;
    }

    .ss-news-slider {
        padding: 22px 42px 40px;
    }

    .ss-news-card {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .ss-news-number {
        font-size: 42px;
        min-width: auto;
    }

    .ss-news-content span {
        font-size: 12px;
        justify-content: center;
    }

    .ss-news-content h3 {
        font-size: 16px;
    }

    .ss-news-content p {
        font-size: 12.5px;
    }

    .ss-about-img {
        height: 230px;
    }

    .ss-about-badge {
        width: 100px;
        height: 100px;
        left: 12px;
        bottom: 12px;
    }

    .ss-about-badge strong {
        font-size: 28px;
    }

    .ss-about-badge span {
        font-size: 9px;
    }

    .ss-about-content h2 {
        font-size: 31px;
    }

    .ss-about-content p {
        font-size: 13px;
    }

    .ss-leader-grid {
        width: 100%;
    }

    .ss-leader-img-box {
        height: 280px;
    }

    .ss-leader-info {
        padding: 20px;
    }

    .ss-leader-info h3 {
        font-size: 20px;
    }

    .ss-premium-why-section {
        padding: 60px 0;
    }

    .ss-why-main-title {
        font-size: 32px;
    }

    .ss-big-stats-container {
        flex-direction: column;
        width: 100%;
    }

    .ss-stat-card {
        width: 100%;
    }

    .ss-shield-card {
        border-radius: 20px;
    }

    .ss-shield-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .ss-gallery-grid {
        grid-template-columns: 1fr;
    }

    /* Stack on small mobile */
    .ss-gallery-item {
        height: 250px;
    }

    .ss-gallery-head h2 {
        font-size: 28px;
    }

    .ss-gal-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        font-size: 14px;
    }

    .ss-enquiry-head h2 {
        font-size: 30px;
    }

    .ss-info-card {
        padding: 15px;
        gap: 15px;
    }

    .ss-info-icon {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .ss-info-text h4 {
        font-size: 16px;
    }

    .ss-info-text p {
        font-size: 13px;
    }

    #ss-events-unique-section {
        padding: 42px 0;
    }

    #ss-events-unique-section .ss-events-unique-container {
        width: 94%;
    }

    #ss-events-unique-section .ss-events-unique-heading {
        margin-bottom: 24px;
    }

    #ss-events-unique-section .ss-events-unique-subtitle {
        font-size: 11px;
        padding: 7px 12px;
    }

    #ss-events-unique-section .ss-events-unique-heading h2 {
        font-size: 28px;
    }

    #ss-events-unique-section .ss-events-unique-heading p {
        font-size: 13px;
    }

    #ss-events-unique-section .ss-events-unique-filter {
        gap: 7px;
        margin-bottom: 24px;
    }

    #ss-events-unique-section .ss-events-unique-filter button {
        padding: 9px 13px;
        font-size: 12px;
    }

    #ss-events-unique-section .ss-events-unique-card {
        border-radius: 20px;
    }

    #ss-events-unique-section .ss-events-unique-img-wrap {
        height: 200px;
    }

    #ss-events-unique-section .ss-events-unique-date {
        width: 54px;
        height: 58px;
        border-radius: 15px;
        top: 12px;
        left: 12px;
    }

    #ss-events-unique-section .ss-events-unique-date strong {
        font-size: 20px;
    }

    #ss-events-unique-section .ss-events-unique-content {
        padding: 18px 16px 20px;
    }

    #ss-events-unique-section .ss-events-unique-content h3 {
        font-size: 18px;
    }

    #ss-events-unique-section .ss-events-unique-content p {
        font-size: 13px;
    }

    #ss-events-unique-section .ss-events-unique-main-btn {
        width: 100%;
        padding: 13px 20px;
        font-size: 13px;
    }

}

@media(max-width: 360px) {
    .ss-location-list {
        gap: 6px;
        padding: 10px 6px;
    }

    .ss-location-item {
        font-size: 10.5px;
        padding: 7px 3px;
    }

    .ss-location-icon {
        width: 31px;
        height: 31px;
        font-size: 14px;
    }

    .ss-disclosure-btn {
        font-size: 13px;
        min-height: 48px;
    }

    .ss-hero-slider {
        height: 470px;
    }

    .ss-slide-content {
        width: 92%;
    }

    .ss-slide-badge {
        font-size: 11px;
        padding: 7px 11px;
    }

    .ss-slide-content h1 {
        font-size: 27px;
    }

    .ss-slide-content p {
        font-size: 13px;
        line-height: 1.6;
    }

    .ss-primary-btn,
    .ss-secondary-btn {
        max-width: 220px;
        font-size: 12px;
        padding: 11px 18px;
    }

    #toper-section .toper-box-head h2 {
        font-size: 22px;
    }

    #toper-section .toper-box-head p {
        font-size: 11.5px;
    }

    #toper-section .toper-img-circle {
        width: 78px;
        height: 78px;
    }

    #toper-section .toper-profile-card h4 {
        font-size: 15px;
    }

    #toper-section .toper-percent {
        font-size: 21px;
    }

    #toper-section .toper-view-all {
        padding: 10px 12px;
        font-size: 11px;
    }

    #toper-section .toper-prev-btn,
    #toper-section .toper-next-btn,
    #toper-section .bday-prev-btn,
    #toper-section .bday-next-btn {
        width: 34px;
        height: 34px;
    }

    #ss-review-unique-section .ss-review-unique-heading h2 {
        font-size: 24px;
    }

    #ss-review-unique-section .ss-review-unique-heading p {
        font-size: 12.5px;
    }

    #ss-review-unique-section .ss-review-unique-card {
        padding: 18px 12px;
    }

    #ss-review-unique-section .ss-review-unique-card p {
        font-size: 12.5px;
    }

    #ss-review-unique-section .ss-review-unique-pagination {
        min-width: 78px;
    }
}

@media(max-width: 340px) {
    .ss-navbar.ss-sticky-active .ss-logo-text h2 {
        font-size: 14px;
    }

    .ss-navbar.ss-sticky-active .ss-logo-text p {
        font-size: 7.5px;
        letter-spacing: 0.6px;
    }

    .ss-contact-info {
        font-size: 10.5px;
    }

    .ss-logo-wrap {
        width: 64px;
        height: 64px;
    }

    .ss-logo {
        max-width: 50px;
        max-height: 50px;
        border-radius: 25px;
    }

    .ss-menu-btn {
        width: 39px;
        height: 36px;
    }

    .ss-menu>li>a {
        font-size: 12px;
    }

    .ss-news-heading h2 {
        font-size: 27px;
    }

    .ss-news-slider {
        padding-left: 38px;
        padding-right: 38px;
    }

    .ss-news-content h3 {
        font-size: 15px;
    }

    .ss-news-content p {
        font-size: 12px;
    }

    .ss-about-content h2 {
        font-size: 28px;
    }

    .ss-about-content p {
        font-size: 12.5px;
    }

    .ss-leader-heading h2 {
        font-size: 24px;
    }

    .ss-leader-img-box {
        height: 240px;
    }

    .ss-leader-info p {
        font-size: 13px;
    }

    .ss-why-main-title {
        font-size: 28px;
    }

    .ss-stat-card .ss-n {
        font-size: 30px;
    }

    .ss-gallery-head h2 {
        font-size: 24px;
    }

    .ss-gallery-item {
        height: 200px;
    }

    .ss-fac-head h2 {
        font-size: 24px;
    }

    .ss-fac-icon {
        width: 60px;
        height: 60px;
        font-size: 25px;
    }

    .ss-fac-card h3 {
        font-size: 18px;
    }

    .ss-enquiry-head h2 {
        font-size: 26px;
    }

    .ss-support-box h3 {
        font-size: 22px;
    }

    .ss-support-img-group img {
        width: 40px;
        height: 40px;
    }

    .ss-support-count {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }

    .ss-footer-logo-wrap .ss-logo-text h2 {
        font-size: 20px;
    }

    .ss-footer-logo-wrap .ss-logo-circle {
        width: 50px;
        height: 50px;
    }

    .ss-footer-logo-wrap .ss-logo {
        width: 35px;
        height: 35px;
    }

    .ss-footer-title {
        font-size: 17px;
    }

    .ss-school-desc,
    .ss-footer-links li a,
    .ss-f-contact-item p {
        font-size: 13px;
    }

    .ss-contact-info-panel h2 {
        font-size: 24px;
    }

    .ss-contact-info-panel p {
        font-size: 14px;
    }

    .ss-v-card {
        padding: 12px 15px;
        width: 100%;
    }

    .ss-submit-btn {
        font-size: 14px;
        padding: 14px;
    }

    .ss-input-group input {
        padding: 12px 12px 12px 40px;
        font-size: 14px;
    }

    #ss-events-unique-section .ss-events-unique-heading h2 {
        font-size: 24px;
    }

    #ss-events-unique-section .ss-events-unique-filter button {
        font-size: 11px;
        padding: 8px 10px;
    }

    #ss-events-unique-section .ss-events-unique-img-wrap {
        height: 180px;
    }

    #ss-events-unique-section .ss-events-unique-content h3 {
        font-size: 16px;
    }

    #ss-events-unique-section .ss-events-unique-content p {
        font-size: 12.5px;
    }


}

@media(max-width: 320px) {
    .ss-hero-slider {
        height: 455px;
    }

    .ss-slide-content h1 {
        font-size: 25px;
    }

    .ss-slide-content p {
        font-size: 12.5px;
    }

    .ss-slide-badge {
        font-size: 10.5px;
    }

    #toper-section .ss-container {
        width: 96%;
    }

    #toper-section .toper-slider-unique,
    #toper-section .bday-slider-unique {
        padding-left: 10px;
        padding-right: 10px;
    }

    #toper-section .toper-nav-bar {
        gap: 6px;
    }

    #toper-section .toper-view-all {
        font-size: 10.5px;
        padding: 9px 10px;
    }

    #ss-review-unique-section .ss-review-unique-container {
        width: 96%;
    }

    #ss-review-unique-section .ss-review-unique-heading h2 {
        font-size: 22px;
    }

    #ss-review-unique-section .ss-review-unique-subtitle {
        font-size: 10px;
    }

    #ss-review-unique-section .ss-review-unique-prev,
    #ss-review-unique-section .ss-review-unique-next {
        width: 34px;
        height: 34px;
        font-size: 12px;
    }
}
