/* GGPS Bokaro - Custom Styles */

:root {
    --primary-color: #2b2fbe;
    --accent-red: #ff4a60;
    --top-bar-bg: #f7f5f2;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --edu-pink: #ee4a62;
    --edu-teal: #2b2fbe;
    --edu-purple: #8e56ff;
    --edu-yellow: #ffa41b;
}

.section-title .pre-title {
    color: var(--edu-pink);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.section-title .title {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #181818;
}

.section-title .title .color-secondary {
    color: #2b2fbe;
}

.section-title.text-center {
    margin-bottom: 60px;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    overflow-x: clip;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

* {
    box-sizing: border-box;
}

/* ==============================
   TOP BAR (PRE-HEADER)
   ============================== */
.top-bar {
    background-color: var(--top-bar-bg);
    padding: 0;
    /* Let the height be defined by items */
    font-size: 0.85rem;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.top-bar .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    padding: 10px 0;
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar .contact-item:hover {
    color: var(--accent-red);
}

.top-bar .contact-item i {
    color: var(--accent-red);
    font-size: 0.9rem;
}

.top-bar .v-divider {
    width: 1px;
    height: 14px;
    background-color: #cbd5e1;
    margin: 0 5px;
}

.top-bar .auth-link {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: color 0.2s;
}

.top-bar .auth-link:hover {
    color: var(--accent-red);
}

.top-bar .social-link {
    color: #475569;
    font-size: 0.95rem;
    transition: color 0.2s;
    text-decoration: none;
}

.top-bar .social-link:hover {
    color: var(--accent-red);
}

.top-bar .apply-btn {
    background-color: #ee4a62;
    color: white !important;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.top-bar .apply-btn:hover {
    background-color: #2b2fbe;
    box-shadow: 0 4px 12px rgba(26, 182, 157, 0.2);
}

@media (max-width: 991px) {
    .top-bar {
        padding: 5px 0;
    }

    .top-bar .v-divider {
        display: none;
    }

    .top-bar .contact-item {
        font-size: 0.7rem;
        gap: 4px;
        padding: 5px 0;
    }

    .top-bar .apply-btn {
        padding: 8px 12px;
        font-size: 0.65rem;
        gap: 5px;
    }

    .navbar>.container {
        display: flex;
        flex-wrap: nowrap !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        max-width: 80%;
        margin-right: 0;
    }

    .header-logo {
        height: 42px;
        width: auto;
        flex-shrink: 0;
    }

    .brand-text {
        min-width: 0;
        /* allows text wrapping inside flex container */
    }

    .school-name {
        font-size: 1.05rem;
        font-weight: 700;
        line-height: 1.2;
        white-space: normal;
        margin: 0;
    }

    .school-location {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
        display: block;
        margin-top: 1px;
    }

    .navbar-toggler {
        flex-shrink: 0;
        margin-left: 10px;
        padding: 6px 8px;
    }

    .navbar-collapse {
        background: #ffffff;
        border-top: 1px solid #f1f5f9;
        margin-top: 10px;
        padding: 15px 0;
    }

    .navbar .nav-link {
        padding: 10px 20px !important;
        font-size: 15px;
    }

    .navbar .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        border-top: none;
        box-shadow: none !important;
        padding-left: 15px;
        background: #f8fafc;
        border-radius: 8px;
        margin: 5px 0 15px 0 !important;
    }
}

@media (max-width: 575px) {
    .top-bar .container {
        padding: 0 10px;
    }

    .top-bar .d-flex.justify-content-between {
        flex-direction: column;
        align-items: center !important;
        gap: 5px;
    }

    .top-bar .apply-btn {
        width: 100%;
        justify-content: center;
        margin-top: 2px;
    }
}

/* ==============================
   MAIN NAVBAR
   ============================== */
/* Brand text & logo styles */
.header-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .header-logo {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.school-name {
    font-size: 1.5rem;
    /* ~24px */
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    padding: 0;
    line-height: 1.25;
    letter-spacing: -0.3px;
    transition: font-size 0.3s ease;
}

.school-location {
    font-size: 0.85rem;
    /* ~13.6px */
    font-weight: 600;
    color: var(--text-muted);
    margin: 0;
    padding: 0;
    line-height: 1.2;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: font-size 0.3s ease;
}

.navbar {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
    background-color: #ffffff !important;
    transition: all 0.3s ease;
}

.navbar-toggler {
    border: 1px solid #e2e8f0 !important;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--primary-color) !important;
}

.navbar .nav-link {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 12px !important;
    text-transform: capitalize;
    white-space: nowrap;
    /* Prevents wrapping bugs like "Contact Us" */
    position: relative;
    transition: color 0.3s ease, padding 0.3s ease;
}

/* Underline slide effect on hover for nav links */
.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background-color: var(--accent-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--accent-red);
}

/* Enable Hover Dropdown */
@media (min-width: 992px) {
    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Responsive navbar adjustments to prevent overflow/wrap */
@media (min-width: 992px) and (max-width: 1199px) {
    .header-logo {
        height: 48px;
    }

    .school-name {
        font-size: 1.15rem;
    }

    .school-location {
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }

    .navbar .nav-link {
        font-size: 13.5px;
        padding: 6px 8px !important;
    }

    .navbar .nav-link::after {
        left: 8px;
        right: 8px;
    }

    .navbar-nav {
        gap: 0.25rem !important;
        /* tight layout */
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .header-logo {
        height: 55px;
    }

    .school-name {
        font-size: 1.35rem;
    }

    .school-location {
        font-size: 0.8rem;
        letter-spacing: 1.2px;
    }

    .navbar .nav-link {
        font-size: 14.5px;
        padding: 8px 10px !important;
    }

    .navbar .nav-link::after {
        left: 10px;
        right: 10px;
    }

    .navbar-nav {
        gap: 0.5rem !important;
    }
}

/* Dropdown Menu Enhancements */
.dropdown-menu {
    border-radius: 0 0 12px 12px;
    padding: 10px 0;
    min-width: 240px;
    margin-top: 0 !important;
    border: none;
    border-top: 3px solid var(--primary-color);
}

/* Bridge the gap for hover */
.navbar .dropdown {
    position: relative;
}

.navbar .dropdown::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}

.dropdown-item {
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--top-bar-bg);
    color: var(--primary-color);
    padding-left: 30px;
}

.dropdown-toggle::after {
    display: none;
    /* Hide default Bootstrap arrow */
}

.navbar .dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.navbar .dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Utilities */
.fw-600 {
    font-weight: 600;
}

/* Animation */
.animate {
    animation-duration: 0.3s;
    animation-fill-mode: both;
}

@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0rem);
        opacity: 1;
    }
}

.slideIn {
    animation-name: slideIn;
}

/* ==============================
   HERO SLIDER
   ============================== */
.hero-slider {
    position: relative;
    height: 700px;
    background-color: #f7f5f2;
    overflow: hidden;
}

.hero-item {
    height: 100%;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1523050853063-913ec367e9f1?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
}

.hero-subtitle {
    font-weight: 700;
    color: #ffba00;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-desc {
    font-size: 1.1rem;
    max-width: 600px;
    opacity: 0.9;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: #2b2fbe;
    color: white;
    transform: translateY(-3px);
}

.btn-outline-custom {
    background-color: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    border: 2px solid white;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-custom:hover {
    background-color: white;
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* ==============================
   FEATURES SECTION
   ============================== */
.features-section {
    margin-top: -60px;
    position: relative;
    z-index: 20;
}

.features-wrapper {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.feature-item {
    transition: all 0.3s ease;
    background: white;
}

.feature-item:hover {
    background: var(--top-bar-bg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #fef2f2;
    color: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-slider {
        height: 500px;
    }

    .features-section {
        margin-top: 20px;
    }

    .feature-item {
        border-bottom: 1px solid #eee;
        border-end: none !important;
    }
}

/* ==============================
   EDUBLINK BREADCRUMB
   ============================== */
.edu-breadcrumb {
    padding: 80px 0 80px;
    background-color: #fdf9f9;
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edu-breadcrumb .container {
    position: relative;
    z-index: 10;
}

.edu-breadcrumb .breadcrumb-title {
    font-size: 50px;
    font-weight: 800;
    color: #181818;
    margin-bottom: 15px;
    line-height: 1.2;
}

.edu-breadcrumb .breadcrumb-title span {
    color: var(--edu-teal);
}

.edu-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.edu-breadcrumb .breadcrumb-item {
    font-size: 18px;
    font-weight: 500;
    color: #555;
}

.edu-breadcrumb .breadcrumb-item a {
    color: #181818;
    text-decoration: none;
    transition: color 0.3s ease;
}

.edu-breadcrumb .breadcrumb-item a:hover {
    color: var(--edu-pink);
}

.edu-breadcrumb .breadcrumb-item.active {
    color: var(--edu-pink);
}

.edu-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #181818;
    padding: 0 10px;
}

.breadcrumb-btn {
    margin-top: 35px;
}

.btn-breadcrumb {
    background-color: var(--edu-pink);
    color: white;
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(238, 74, 98, 0.2);
}

.btn-breadcrumb:hover {
    background-color: #2b2fbe;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 182, 157, 0.2);
}

/* Mouse Scroll Indicator */
.mouse-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.mouse-scroll .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #ee4a62;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse-scroll .wheel {
    width: 4px;
    height: 8px;
    background: #ee4a62;
    border-radius: 2px;
    animation: mouse-wheel 1.5s infinite;
}

@keyframes mouse-wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

/* Decorative Shapes */
.edu-breadcrumb .shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.edu-breadcrumb .shape-dots-red {
    bottom: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#ee4a62 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.edu-breadcrumb .shape-waves-teal {
    top: 20%;
    left: 12%;
    width: 120px;
    height: 50px;
    opacity: 0.3;
}

.edu-breadcrumb .shape-circle-dashed {
    top: 15%;
    right: 10%;
    width: 160px;
    height: 160px;
    border: 3px dashed #ee4a62;
    border-radius: 50%;
    opacity: 0.2;
    animation: rotate 20s linear infinite;
}

.edu-breadcrumb .shape-dots-green {
    top: 20%;
    right: 12%;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(#2b2fbe 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.2;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.edu-breadcrumb .bg-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.edu-breadcrumb .bg-circle-1 {
    width: 500px;
    height: 500px;
    background: #fdf2f2;
    top: -150px;
    left: -100px;
}

.edu-breadcrumb .bg-circle-2 {
    width: 400px;
    height: 400px;
    background: #fffcf0;
    bottom: -100px;
    right: -50px;
}

.edu-breadcrumb .bg-circle-3 {
    width: 300px;
    height: 300px;
    background: #f2fdfb;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
}

@media (max-width: 991px) {
    .edu-breadcrumb {
        padding: 60px 0 100px;
        min-height: auto;
    }

    .edu-breadcrumb .shape,
    .edu-breadcrumb .bg-circle {
        display: none;
    }

    .edu-breadcrumb .breadcrumb-title {
        font-size: 36px;
    }
}

/* EduBlink Specific Colors & Redesign */
:root {
    --edu-pink: #ee4a62;
    --edu-teal: #2b2fbe;
    --edu-purple: #8e56ff;
    --edu-yellow: #ffba00;
}

.hero-slider {
    position: relative;
    height: 800px;
    background-color: #f7f5f2;
    overflow: hidden;
}

/* Ken Burns Effect - Alternating Zoom */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: transform 10s ease-in-out;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.carousel-item.active .hero-bg {
    animation: kenBurnsZoomIn 15s infinite alternate ease-in-out;
}

.carousel-item:nth-child(even).active .hero-bg {
    animation: kenBurnsZoomOut 15s infinite alternate ease-in-out;
}

@keyframes kenBurnsZoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

@keyframes kenBurnsZoomOut {
    0% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Decorative Shapes */
.hero-shape-m {
    margin-bottom: 20px;
    display: block;
}

.hero-shape-m img {
    height: 30px;
    width: auto;
}

.shape-dots {
    position: absolute;
    top: 20%;
    left: 2%;
    z-index: 11;
    opacity: 0.3;
}

/* Carousel Content & Animations */
.hero-content {
    padding-bottom: 150px;
}

.hero-subtitle {
    color: var(--edu-yellow) !important;
    background: transparent;
    display: inline-block;
    padding: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    color: #ffffff !important;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 550px;
}

/* Entry Animations */
.carousel-item.active .animate-item {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.carousel-item.active .hero-shape-m {
    animation-name: fadeInUp;
    animation-delay: 0.1s;
}

.carousel-item.active .hero-subtitle {
    animation-name: fadeInUp;
    animation-delay: 0.2s;
}

.carousel-item.active .hero-title {
    animation-name: fadeInLeft;
    animation-delay: 0.4s;
}

.carousel-item.active .hero-desc {
    animation-name: fadeInUp;
    animation-delay: 0.6s;
}

.carousel-item.active .hero-btns {
    animation-name: fadeInUp;
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Carousel Buttons (Stacked on Right) */
.carousel-nav-wrapper {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 20;
}

.carousel-btn {
    width: 55px;
    height: 55px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #181818;
    font-size: 1.1rem;
}

.carousel-btn:hover {
    background: var(--edu-pink);
    color: white;
    transform: translateX(-5px);
}

/* Shape Divider Styling */
.shape-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 15;
}

.shape-bottom svg {
    width: 100%;
    height: 160px;
}

/* Features Section (Premium Look) */
.features-section {
    margin-top: -140px;
    position: relative;
    z-index: 25;
}

.features-wrapper {
    background: white;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    padding: 0px;
}

.feature-item {
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 20px 20px 0px 0px;
}

.feature-item:hover {
    transform: translateY(0px);

}

.feature-item:nth-child(1):hover {
    background-color: rgba(26, 182, 157, 0.05);
}

.feature-item:nth-child(2):hover {
    background-color: rgba(238, 74, 98, 0.05);
}

.feature-item:nth-child(3):hover {
    background-color: rgba(142, 86, 255, 0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 0;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img,
.feature-icon i {
    width: auto;
    font-size: 2.2rem;
}

.feature-icon.teal-bg i {
    color: var(--edu-teal);
}

.feature-icon.pink-bg i {
    color: var(--edu-pink);
}

.feature-icon.purple-bg i {
    color: var(--edu-purple);
}

.feature-item h6 {
    font-size: 1.1rem;
    color: #181818;
}

.feature-item p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .hero-slider {
        height: 600px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-content {
        padding-bottom: 80px;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 30px;
        font-size: 1rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .carousel-nav-wrapper {
        right: 20px;
        top: auto;
        bottom: 140px;
        flex-direction: row;
        transform: none;
    }

    .shape-arc,
    .shape-dots,
    .hero-shape-m {
        display: none;
    }

    .features-section {
        margin-top: -30px;
    }

    .features-wrapper {
        border-radius: 15px;
        padding: 10px;
    }

    .feature-item {
        border-bottom: 1px solid #eee;
    }

    .feature-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-slider {
        height: 500px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .carousel-nav-wrapper {
        bottom: 100px;
        gap: 10px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }

    .shape-bottom svg {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-slider {
        height: 450px;
    }

    .hero-desc {
        display: none;
    }

    .features-section {
        margin-top: 10px;
    }
}

/* ==============================
   ABOUT SECTION
   ============================== */
.edu-about-area {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-style-3 .about-image-gallery {
    position: relative;
    padding-right: 50px;
    padding-bottom: 50px;
}

.about-style-3 .about-image-gallery .main-img-1 {
    width: 85%;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.about-style-3 .about-image-gallery .main-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    border-radius: 15px;
    border: 8px solid #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.about-style-3 .about-image-gallery .shape-group {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-style-3 .about-image-gallery .shape-group li {
    position: absolute;
    z-index: -1;
}

.about-style-3 .about-image-gallery .shape-group li.shape-1 {
    top: -30px;
    left: -30px;
}

.about-style-3 .about-image-gallery .shape-group li.shape-2 {
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
}

.about-style-3 .about-image-gallery .shape-group li.shape-3 {
    top: 10%;
    right: 10%;
}

.about-style-3 .about-image-gallery .shape-group li.shape-4 {
    bottom: 20%;
    left: 20%;
    width: 100px;
    height: 100px;
    background: rgba(238, 74, 98, 0.1);
    border-radius: 50%;
}

.about-content .pre-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--edu-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.about-content .title {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-content .title .color-secondary {
    color: var(--edu-teal);
}

.about-content .nav-tabs {
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    gap: 30px;
}

.about-content .nav-tabs .nav-item {
    margin-bottom: -1px;
}

.about-content .nav-tabs .nav-link {
    border: none;
    padding: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #181818;
    background: transparent;
    position: relative;
    transition: all 0.3s ease;
}

.about-content .nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--edu-pink);
    transition: all 0.3s ease;
}

.about-content .nav-tabs .nav-link.active {
    color: var(--edu-pink);
}

.about-content .nav-tabs .nav-link.active::after {
    width: 100%;
}

.about-content .tab-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.about-content .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-content .features-list li {
    font-size: 16px;
    font-weight: 600;
    color: #181818;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-content .features-list li i {
    color: var(--edu-pink);
    font-size: 14px;
}

/* ==============================
   COUNTER SECTION
   ============================== */
.counter-section {
    padding-bottom: 100px;
}

.counter-wrapper {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.counter-item {
    text-align: center;
    background: #fff;
    padding: 50px 30px 40px;
    border-radius: 20px 20px 20px 80px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    margin-top: 35px;
    overflow: visible;
    /* Ensure icon at top is not clipped */
}

.counter-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.counter-item .counter-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
    /* Ensure icon is on top */
}

.counter-item .counter-icon.teal-bg {
    background-color: var(--edu-teal);
}

.counter-item .counter-icon.pink-bg {
    background-color: var(--edu-pink);
}

.counter-item .counter-icon.purple-bg {
    background-color: var(--edu-purple);
}

.counter-item .counter-icon.yellow-bg {
    background-color: var(--edu-yellow);
}

.counter-item .number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
    margin-top: 10px;
}

.counter-item .title {
    font-size: 14px;
    font-weight: 700;
    color: #181818;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.teal-color {
    color: var(--edu-teal);
}

.pink-color {
    color: var(--edu-pink);
}

.purple-color {
    color: var(--edu-purple);
}

.yellow-color {
    color: var(--edu-yellow);
}

/* Responsive */
@media (max-width: 991px) {
    .about-content .title {
        font-size: 32px;
    }

    .about-style-3 .about-image-gallery {
        margin-bottom: 50px;
        padding-right: 30px;
    }

    .counter-wrapper {
        padding: 40px 20px;
    }

    .counter-item {
        margin-bottom: 70px;
    }

    .counter-item:last-child {
        margin-bottom: 0;
    }
}

/* ==============================
   FACILITIES SECTION (CLOUD STYLE)
   ============================== */
.activities-section {
    padding: 100px 0;
    background-color: #f0f4f5;
    position: relative;
    overflow: hidden;
}

.activities-section .container {
    position: relative;
    z-index: 1;
}

.facility-cloud-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    transition: all 0.4s ease;
}

.facility-cloud-item:hover {
    transform: translateX(10px);
}

.cloud-icon {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

/* Organic Cloud Shape using the provided image */
.cloud-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: currentColor;
    opacity: 0.15;
    /* Reduced opacity for better icon focus */
    -webkit-mask-image: url('../images/cloud-bg.png');
    mask-image: url('../images/cloud-bg.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    z-index: -1;
    transition: all 0.5s ease;
}

/* Creating the "ghost" cloud effect for depth */
.cloud-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    background-color: currentColor;
    opacity: 0.2;
    -webkit-mask-image: url('../images/cloud-bg.png');
    mask-image: url('../images/cloud-bg.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: all 0.5s ease;
}

.facility-cloud-item:hover .cloud-icon::before {
    transform: rotate(15deg) scale(1.1);
}

.facility-cloud-item:hover .cloud-icon::after {
    transform: rotate(-15deg) scale(1.2);
    opacity: 0.1;
}

.cloud-icon i {
    color: currentColor;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.facility-cloud-item.teal .cloud-icon {
    color: #2b2fbe;
}

.facility-cloud-item.pink .cloud-icon {
    color: #ee4a62;
}

.facility-cloud-item.purple .cloud-icon {
    color: #9b51e0;
}

.facility-cloud-item.blue .cloud-icon {
    color: #3e64ff;
}

.facility-cloud-item.orange .cloud-icon {
    color: #f2994a;
}

.facility-cloud-item.yellow .cloud-icon {
    color: #f2c94c;
}

.facility-cloud-content .title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1e293b;
    font-family: var(--edu-font-outfit);
}

.facility-cloud-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

.activities-section .shape-group {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.activities-section .shape-group li {
    position: absolute;
    list-style: none;
}

.activities-section .shape-group .shape-1 {
    top: 10%;
    left: 5%;
    opacity: 0.5;
}

.activities-section .shape-group .shape-2 {
    bottom: 15%;
    left: 8%;
    opacity: 0.4;
}

.activities-section .shape-group .shape-3 {
    top: 15%;
    right: 5%;
    opacity: 0.6;
}

/* ==============================
   PHOTO GALLERY & UPDATES SECTION
   ============================== */
.gallery-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.gallery-section .section-title {
    margin-bottom: 60px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.gallery-item {
    position: relative;
    padding: 15px;
    width: 25%;
    /* Explicit 4-column width */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-inner {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    cursor: pointer;
}

.gallery-item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 31, 110, 0.9) 0%, rgba(0, 31, 110, 0.4) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
    text-align: center;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-item-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 182, 157, 0.15);
}

.gallery-item:hover .gallery-item-inner img {
    transform: scale(1.15);
}

.gallery-overlay i {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-overlay span {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

.gallery-view-all {
    text-align: center;
    margin-top: 60px;
}

.btn-gallery-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--edu-teal);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 182, 157, 0.1);
}

.btn-gallery-more:hover {
    background: var(--edu-teal);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(26, 182, 157, 0.2);
}

@media (max-width: 991px) {
    .gallery-item {
        width: 33.333%;
    }
}

@media (max-width: 767px) {
    .gallery-item {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 100%;
    }
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--edu-teal);
    transition: all 0.4s ease;
    border-radius: 2px;
    transform: translateX(-50%);
}

.gallery-item:hover::after {
    width: 40px;
    bottom: -5px;
}

/* Lightbox Styles */
#galleryLightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    backdrop-filter: blur(5px);
}

#galleryLightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

#galleryLightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

#galleryLightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--edu-teal);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: #fff;
    color: var(--edu-teal);
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 767px) {
    #galleryLightbox {
        padding: 20px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* ==============================
   VIDEO TOUR SECTION
   ============================== */
.video-tour-section {
    padding: 120px 0 160px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/video_bg_custom.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
    color: #ffffff;
}

.video-play-btn {
    width: 90px;
    height: 90px;
    background: #ee4a62;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-play-btn::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 1px solid rgba(238, 74, 98, 0.5);
    border-radius: 50%;
    animation: pulse-border 2s infinite;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: #ffffff;
    color: #ee4a62;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.video-tour-section .title {
    font-size: 48px;
    font-weight: 800;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.2;
}

/* Floating Contact Card */
.contact-floating-card {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    background-color: #f8b81f;
    background-image: url('../images/topo_pattern.png');
    background-size: cover;
    background-blend-mode: overlay;
    border-radius: 15px;
    padding: 30px 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.contact-card-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
}

.contact-card-item {
    text-align: left;
    color: #1e293b;
}

.contact-card-item span {
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.contact-card-item strong {
    font-size: 24px;
    font-weight: 800;
}

.contact-card-item strong a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-item strong a:hover {
    color: #ffffff;
}

.or-separator {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #181818;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .video-tour-section {
        padding: 80px 0 120px;
    }

    .video-tour-section .title {
        font-size: 32px;
    }

    .contact-floating-card {
        padding: 25px;
        bottom: -100px;
    }

    .contact-card-inner {
        flex-direction: column;
        gap: 20px;
    }

    .or-separator {
        width: 40px;
        height: 40px;
        margin: -10px 0;
    }

    .contact-card-item {
        text-align: center;
    }
}

/* ==============================
   RESPONSIVE OPTIMIZATIONS
   ============================== */

@media (max-width: 1199px) {
    .section-title .title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .section-title .title {
        font-size: 36px;
    }

    .activities-section {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .section-title .title {
        font-size: 32px;
    }

    .top-bar .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .top-bar .v-divider {
        display: none;
    }

    .facility-cloud-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 50px;
    }

    .facility-cloud-content p {
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    /* Tablet optimization: 2 columns for facilities */
    .activities-section .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* ==============================
   TEAM SECTION
   ============================== */
.team-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.team-section .section-title .title {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.team-section .section-title .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='8' viewBox='0 0 80 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6C15 2 25 2 40 6C55 10 65 10 78 6' stroke='%231ab69d' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.team-card {
    position: relative;
    margin-bottom: 60px;
    transition: all 0.4s ease;
}

.team-card-inner {
    position: relative;
    z-index: 1;
}

.team-bg-block {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    background: #e5e7eb;
    border-radius: 15px;
    z-index: -1;
    transition: all 0.4s ease;
}

.team-card.color-1 .team-bg-block {
    background: #e0f2f1;
}

.team-card.color-2 .team-bg-block {
    background: #fdf2f2;
}

.team-card.color-3 .team-bg-block {
    background: #f0f4f8;
}

.team-image {
    border-radius: 15px;
    overflow: hidden;
    margin: 0 15px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-content {
    position: absolute;
    bottom: -30px;
    left: 40px;
    right: 40px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.team-content .name {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 5px;
    display: block;
}

.team-content .designation {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-card:hover .team-content {
    background: var(--edu-teal);
    bottom: -20px;
}

.team-content .name a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-card:hover .team-content .name,
.team-card:hover .team-content .designation {
    color: #ffffff;
}

.team-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 15px;
}

.team-share-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 2px solid var(--edu-teal);
    color: var(--edu-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 2;
    transition: all 0.3s ease;
    cursor: pointer;
}

.team-card:hover .team-share-btn {
    background: var(--edu-teal);
    color: #ffffff;
    transform: rotate(360deg);
}

.team-social-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 182, 157, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.team-card:hover .team-social-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.team-social-overlay a {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: var(--edu-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social-overlay a:hover {
    background: var(--edu-teal);
    color: #ffffff;
    transform: scale(1.1);
}

/* Administrative Specific */
.admin-section {
    padding: 100px 0 0;
    background-color: #ffffff;
}

.team-card.color-gold .team-bg-block {
    background: #fffdf5;
    border: 1px solid #f8b81f;
}

.team-card.admin-card:hover .team-content {
    background: #f8b81f;
}

@media (max-width: 991px) {
    .team-card {
        max-width: 400px;
        margin: 0 auto 80px;
    }
}

@media (max-width: 480px) {
    .section-title .title {
        font-size: 28px;
    }

    .top-bar .contact-item {
        font-size: 11px;
        padding: 5px 0;
    }

    .hero-title {
        font-size: 32px !important;
    }
}

/* ==============================
   SCHOOL TOPPER SECTION
   ============================== */
.topper-section {
    padding: 150px 0px 80px 0px;
    background-color: #f7f5f2;
    position: relative;
}

.topper-section .pre-title {
    color: #1a237e;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: block;
}

.topper-col-title {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 50px;
}

.topper-divider {
    position: absolute;
    top: 15%;
    bottom: 15%;
    left: 50%;
    width: 1px;
    background: #e2e8f0;
    display: block;
}

.topper-card-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topper-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    width: calc(33.333% - 14px);
    min-width: 200px;
    transition: transform 0.3s ease;
}

.topper-card:hover {
    transform: translateY(-10px);
}

.topper-img-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
}

.topper-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2b2fbe;
    padding: 5px;
}

.topper-info .name {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.topper-info .percentage {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: #ef4444;
}

@media (max-width: 991px) {
    .topper-divider {
        display: none;
    }

    .topper-col-title {
        font-size: 30px;
        margin-top: 40px;
    }

    .topper-card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 575px) {
    .topper-card {
        width: 100%;
    }
}

/* Topper Background Shapes */
.topper-section {
    overflow: hidden;
}

.topper-shape-group div {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.topper-shape-group .shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(238, 74, 98, 0.05);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.topper-shape-group .shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(238, 74, 98, 0.03);
    border-radius: 50%;
    bottom: -50px;
    right: 5%;
}

.topper-shape-group .shape-3 {
    top: 50px;
    right: 10%;
    opacity: 0.4;
}

.topper-shape-group .shape-3 img {
    width: 150px;
}

.topper-shape-group .shape-4 {
    width: 100px;
    height: 100px;
    border: 15px dashed rgba(238, 74, 98, 0.2);
    border-radius: 50%;
    bottom: 10%;
    right: 2%;
    animation: rotateShape 20s linear infinite;
}

@keyframes rotateShape {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.topper-section .container {
    position: relative;
    z-index: 2;
}

.topper-shape-group .shape-5 {
    top: 15%;
    left: 15%;
    animation: moveSquiggle 10s ease-in-out infinite alternate;
}

@keyframes moveSquiggle {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(50px);
    }
}

.topper-card-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
    gap: 15px !important;
    width: 100%;
}

.topper-card {
    width: 100% !important;
    padding: 20px 10px !important;
}

.topper-img-wrapper {
    width: 100px !important;
    height: 100px !important;
}

.topper-info .name {
    font-size: 14px !important;
}

.topper-info .percentage {
    font-size: 16px !important;
}

.topper-img-wrapper img {
    border: none !important;
    padding: 0 !important;
}

.topper-heading-box {
    background: #2b2fbe;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 40px;
    box-shadow: 0 10px 20px rgba(26, 182, 157, 0.2);
}

.topper-heading-box h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff !important;
}

.topper-col-box {
    text-align: center;
}

.topper-heading-box .topper-col-title {
    margin-bottom: 0 !important;
    font-size: 20px !important;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-controls .carousel-control-prev,
.carousel-controls .carousel-control-next {
    position: relative;
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 2px solid #2b2fbe;
    color: #2b2fbe;
    border-radius: 50%;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-controls .carousel-control-prev:hover,
.carousel-controls .carousel-control-next:hover {
    background: #2b2fbe;
    color: #ffffff;
}

.carousel-controls i {
    font-size: 18px;
}

.carousel-inner {
    overflow: visible;
}

/* Fix Carousel Overflow */
.carousel-inner {
    overflow: hidden !important;
}

.topper-card-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 !important;
}

.topper-card {
    min-width: 0 !important;
    width: 100% !important;
    padding: 15px 5px !important;
}

.topper-img-wrapper {
    width: 80px !important;
    height: 80px !important;
}

.topper-info .name {
    font-size: 12px !important;
}

.topper-info .percentage {
    font-size: 14px !important;
}

@media (max-width: 1200px) {
    .topper-card-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 575px) {
    .topper-card-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

/* Premium Topper Design Enhancements */
.topper-section {
    background: linear-gradient(135deg, #fcfcfc 0%, #f7f5f2 100%) !important;
}

.topper-heading-box {
    background: linear-gradient(to right, #2b2fbe, #148f7d) !important;
    padding: 12px 40px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(26, 182, 157, 0.3) !important;
}

.topper-card {
    background: #ffffff !important;
    border-bottom: 4px solid #2b2fbe !important;
    border-radius: 20px !important;
    padding: 30px 15px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.topper-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.topper-img-wrapper {
    width: 90px !important;
    height: 90px !important;
    margin-bottom: 25px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
    border-radius: 50% !important;
    overflow: hidden !important;
}

.topper-info .name {
    font-size: 15px !important;
    color: #1e293b !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
}

.topper-info .percentage {
    background: #fdf2f2 !important;
    color: #ef4444 !important;
    padding: 5px 15px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    display: inline-block !important;
}

.carousel-controls .carousel-control-prev,
.carousel-controls .carousel-control-next {
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
}

/* Reduce Teal/Green Dominance */
.topper-heading-box {
    background: linear-gradient(to right, #f8b81f, #e6a710) !important;
    box-shadow: 0 4px 15px rgba(248, 184, 31, 0.3) !important;
}

.topper-card {
    border-bottom: 4px solid #f8b81f !important;
}

.carousel-controls .carousel-control-prev,
.carousel-controls .carousel-control-next {
    border-color: #f8b81f !important;
    color: #f8b81f !important;
}

.carousel-controls .carousel-control-prev:hover,
.carousel-controls .carousel-control-next:hover {
    background: #f8b81f !important;
    color: #ffffff !important;
}

.topper-shape-group .shape-5 svg path {
    stroke: #f8b81f !important;
}

/* Comprehensive Topper Responsiveness */
@media (max-width: 991px) {
    .topper-col-box {
        margin-bottom: 60px !important;
    }

    .topper-card-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .topper-heading-box {
        padding: 10px 25px !important;
    }

    .topper-heading-box h3 {
        font-size: 18px !important;
    }
}

@media (max-width: 767px) {
    .topper-card-grid {
        grid-template-columns: repeat(1, 1fr) !important;
        max-width: 300px;
        margin: 0 auto !important;
    }

    .topper-section {
        padding: 60px 0 !important;
    }

    .topper-shape-group {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .topper-col-title {
        font-size: 16px !important;
    }

    .topper-heading-box {
        width: 90% !important;
    }
}

/* ==============================
   TESTIMONIALS & EVENTS SECTION
   ============================== */
.testimonials-events-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title-large {
    font-size: 48px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 15px;
    position: relative;
}

.section-title-large .squiggle-underline {
    display: block;
    width: 150px;
    height: 12px;
    background: url("images/shape-04.png") no-repeat;
    background-size: contain;
    margin-bottom: 30px;
}

.section-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 40px;
}

.btn-view-all {
    background-color: #2b2fbe;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: #148f7d;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Event Card Style */
.event-card-horizontal {
    display: flex;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.event-card-horizontal:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.event-card-img {
    width: 40%;
    min-height: 250px;
}

.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-content {
    width: 60%;
    padding: 30px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2b2fbe;
    font-weight: 600;
}

.event-title {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 15px;
}

.event-desc {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 25px;
}

.btn-learn-more {
    padding: 10px 25px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #1e293b;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    border-color: #2b2fbe;
    color: #2b2fbe;
}

@media (max-width: 991px) {
    .section-title-large {
        font-size: 36px;
    }

    .event-card-horizontal {
        flex-direction: column;
    }

    .event-card-img,
    .event-card-content {
        width: 100%;
    }
}

/* ==============================
   API DYNAMIC COMPONENTS
   ============================== */
/* News Swiper */
.project-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.project-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

.project-content h4 {
    font-size: 14px;
    color: #2b2fbe;
    margin-bottom: 15px;
}

.project-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.view-more {
    color: #2b2fbe;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* Topper Owl Carousel */
.team-item-inner {
    background: #fff;
    border-radius: 15px;
    padding: 25px !important;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.team-item-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-circle-img {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8b81f;
    margin: 0 auto 15px;
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.percentage {
    color: #f8b81f;
    font-weight: 800;
    font-size: 16px;
}

/* ==============================
   FOOTER SECTION
   ============================== */
.edu-footer {
    background-color: #111111;
    background-image: url("images/topo_pattern.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0 0;
    color: #cbd5e1;
    position: relative;
    overflow: hidden;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 25px;
    display: block;
}

.footer-logo img {
    max-height: 70px;
}

.footer-about-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #bababa;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    gap: 10px;
}

.footer-contact-info li strong {
    color: #ffffff;
}

.footer-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #bababa;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #2b2fbe;
    padding-left: 5px;
}

.footer-newsletter-text {
    font-size: 15px;
    margin-bottom: 25px;
    color: #bababa;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.newsletter-form input {
    flex: 1;
    background: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.btn-subscribe {
    background-color: #2b2fbe;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #148f7d;
    transform: translateY(-2px);
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background-color: #2b2fbe;
    transform: scale(1.1);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

.footer-bottom p a {
    color: #2b2fbe;
    text-decoration: none;
    font-weight: 600;
}

/* Scroll To Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ee4a62;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.scroll-to-top:hover {
    background: #2b2fbe;
    transform: translateY(-5px);
}

/* ==============================
   PREMIUM NAVY FOOTER DESIGN
   ============================== */
.edu-footer {
    background-color: #0c121d;
    padding: 0;
    color: #a0aec0;
    position: relative;
    overflow: hidden;
}

/* Footer Top Contact Bar */
.footer-top-bar {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066ff, #0033aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.contact-text span {
    display: block;
    font-size: 14px;
    color: #718096;
    margin-bottom: 5px;
}

.contact-text h5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

/* Main Footer Content */
.footer-main {
    padding: 100px 0 60px;
    position: relative;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget .logo {
    max-height: 60px;
    margin-bottom: 30px;
}

.footer-widget p {
    line-height: 1.8;
    margin-bottom: 30px;
}

.follow-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #0066ff;
    transform: translateY(-3px);
}

.widget-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
}

.widget-title::after {
    content: \'\';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background: #0066ff;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-menu li::before {
    content: \'�\';
    color: #718096;
}

.footer-menu li a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-menu li a:hover {
    color: #0066ff;
    padding-left: 5px;
}

/* Newsletter Widget */
.newsletter-desc {
    font-size: 15px;
    margin-bottom: 25px;
}

.footer-input-group {
    position: relative;
    margin-bottom: 20px;
}

.footer-input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 50px 15px 20px;
    border-radius: 8px;
    color: #ffffff;
    outline: none;
}

.footer-input-group i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #0066ff;
}

.btn-footer-sub {
    width: 100%;
    background: #0066ff;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-footer-sub:hover {
    background: #0044cc;
    transform: translateY(-2px);
}

/* Decorative Background Elements */
.footer-decor-1 {
    position: absolute;
    top: 50px;
    left: 30px;
    opacity: 0.1;
}

.footer-decor-2 {
    position: absolute;
    bottom: 50px;
    right: 30px;
    opacity: 0.1;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #0066ff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
    z-index: 999;
}

/* Consolidated from urgent-cause.css */
/* Urgent Cause Fundraiser Styles */
.urgent-cause-section {
    position: relative;
    z-index: 100;
    margin-top: -120px;
    /* Overlap the slider */
    padding-bottom: 80px;
}

.urgent-cause-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border: none;
}

.cause-left {
    background-color: #ffc107;
    /* Bright school yellow */
    padding: 50px 60px;
}

.cause-right {
    background-color: #2b2fbe;
    /* Dark school green */
    padding: 50px 60px;
    color: #fff;
}

.cause-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cause-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px !important;
    color: #000;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.cause-right .cause-title {
    color: #ffffff;
}

.cause-right .cause-title i {
    color: #ffffff;
}

.cause-title i {
    font-size: 28px;
    vertical-align: middle;
    color: #000;
}

/* Most Popular Posts Ticker Styles */
.popular-posts-wrapper {
    height: 400px;
    /* Fixed height for ticker */
    overflow: hidden;
    position: relative;
}

.popular-ticker {
    display: flex;
    flex-direction: column;
    gap: 25px;
    animation: scroll-up 15s linear infinite;
}

.popular-posts-wrapper:hover .popular-ticker {
    animation-play-state: paused;
}

.popular-post-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-thumb {
    width: 150px;
    height: 110px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content .post-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.popular-post-item:hover .post-title {
    color: #ffc107 !important;
}

.post-content .post-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-content .post-date::before {
    content: '\f017';
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    font-size: 12px;
}

/* Decorative Background for Green Side */
.cause-right {
    background-color: #2b2fbe;
    padding: 50px 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cause-right::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.cause-right::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: url('../images/dotted-icons.png');
    background-size: contain;
    opacity: 0.1;
    z-index: 1;
}

.cause-inner {
    position: relative;
    z-index: 2;
}

.progress-container {
    margin-bottom: 45px;
    position: relative;
}

/* Announcement Ticker Styles */
.urgent-cause-section .campus-feature-stack {
    height: 380px;
    /* Fixed height for ticker */
    overflow: hidden;
    position: relative;
}

.announcement-ticker {
    display: flex;
    flex-direction: column;
    animation: scroll-up 15s linear infinite;
}

.urgent-cause-section .campus-feature-stack:hover .announcement-ticker {
    animation-play-state: paused;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.progress-info {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.percentage {
    font-weight: 800;
    font-size: 15px;
    color: #1e293b;
}

.progress-bar-wrapper {
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #000;
    border-radius: 20px;
}

.cause-stats {
    display: flex;
    justify-content: space-between;
}

.stat-item .label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.stat-item .value {
    font-size: 38px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.badge-wrapper {
    margin-bottom: 30px;
}

.badge-pill {
    display: inline-block;
    padding: 10px 30px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.cause-headline {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.cause-text {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 400;
    margin-bottom: 0;
}

/* Announcement Item Enhancements */
.urgent-cause-section .announcement-item {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #2b2fbe;
    /* Teal accent */
}

.urgent-cause-section .announcement-date {
    width: 65px;
    height: 65px;
    background: #e0f2f1;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.urgent-cause-section .announcement-date .day {
    font-size: 22px;
    font-weight: 800;
    color: #2b2fbe;
    line-height: 1;
}

.urgent-cause-section .announcement-date .month {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2b2fbe;
    margin-top: 2px;
}

.urgent-cause-section .announcement-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.urgent-cause-section .announcement-content p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.5;
}

.urgent-cause-section .announcement-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f43f5e;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(244, 63, 94, 0.3);
}

.urgent-cause-section .announcement-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #f8fafc;
}

.urgent-cause-section .announcement-item:hover h4 {
    color: #2b2fbe;
}

.urgent-cause-section .announcement-item:hover .announcement-date {
    background: #2b2fbe;
}

.urgent-cause-section .announcement-item:hover .announcement-date .day,
.urgent-cause-section .announcement-item:hover .announcement-date .month {
    color: #fff;
}

.cause-left,
.cause-right {
    padding: 50px;
}

.cause-headline {
    font-size: 36px;
}

.stat-item .value {
    font-size: 32px;
}
}

@media (max-width: 991px) {
    .urgent-cause-section {
        margin-top: 0;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .urgent-cause-card {
        border-radius: 15px;
    }

    .cause-left,
    .cause-right {
        padding: 40px;
    }

    .cause-headline {
        font-size: 32px;
    }

    .stat-item .value {
        font-size: 28px;
    }
}

@media (max-width: 575px) {

    .cause-left,
    .cause-right {
        padding: 35px 25px;
    }

    .cause-title {
        font-size: 26px;
    }

    .cause-headline {
        font-size: 28px;
    }

    .stat-item .value {
        font-size: 24px;
    }
}

/* Consolidated from footer-redesign.css */
/* ===================================== */
/*         FIXED FOOTER REDESIGN        */
/* ===================================== */
.edu-footer {
    background: #0f172a !important;
    /* Solid dark base for better contrast */
    color: #bababa !important;
    position: relative !important;
    padding-top: 100px !important;
    /* Space for the wave */
}

/* SVG Wave at the top - Now Full Width and Seamless */
.footer-wave {
    position: absolute;
    top: -1px;
    /* Overlap slightly to prevent gaps */
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 10;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 100px;
    /* Increased height for better visibility */
    fill: #ffffff;
    /* Matches the white section above */
}

.footer-top-bar {
    padding: 40px 0 !important;
    position: relative;
    z-index: 11;
    background: transparent !important;
}

.footer-contact-item {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 25px !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    transition: all 0.4s ease !important;
    height: 100%;
    /* Ensure equal height */
}

.footer-contact-item:hover {
    transform: translateY(-8px) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #ffc107 !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
}

.footer-contact-item .contact-icon {
    width: 50px !important;
    height: 50px !important;
    background: #ffc107 !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    font-size: 20px !important;
    flex-shrink: 0 !important;
    box-shadow: none !important;
}

.footer-contact-item .contact-text span {
    display: block !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 4px !important;
    color: #cbd5e1 !important;
    /* Brighter for legibility */
    font-weight: 600 !important;
}

.footer-contact-item .contact-text h5 {
    color: #f8fafc !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    word-break: break-word;
    /* Handle long emails/addresses */
}

.footer-main {
    padding: 60px 0px 30px !important;
    background: transparent !important;
}

.footer-widget .widget-title {
    color: #f8fafc !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 30px !important;
    position: relative !important;
}

.footer-widget .widget-title::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: -10px !important;
    width: 35px !important;
    height: 3px !important;
    background: #ffc107 !important;
    border-radius: 10px !important;
}

.footer-widget p {
    line-height: 1.7 !important;
    font-size: 14px !important;
    color: #fff !important;
}

.footer-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-menu li {
    margin-bottom: 14px !important;
}

.footer-menu li a {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    transition: all 0.3s ease !important;
}

.footer-menu li a i {
    font-size: 10px !important;
    color: #ffc107 !important;
    transition: all 0.3s ease !important;
}

.footer-menu li a:hover {
    color: #fff !important;
    transform: translateX(5px) !important;
}

.footer-socials {
    display: flex !important;
    gap: 12px !important;
    margin-top: 25px !important;
}

.footer-socials a {
    width: 38px !important;
    height: 38px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-size: 16px !important;
}

.footer-socials a:hover {
    background: #ffc107 !important;
    transform: translateY(-4px) !important;
    border-color: transparent !important;
}

.footer-bottom {
    background: #020617 !important;
    padding: 20px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    text-align: center !important;
}

.footer-bottom p {
    margin: 0 !important;
    font-size: 13px !important;
    color: #fff !important;
}

/* Scroll Top Customization */
.scroll-top {
    width: 45px !important;
    height: 45px !important;
    background: #ffc107 !important;
    box-shadow: 0 8px 20px rgba(254, 193, 7, 0.3) !important;
}

/* Fix for the blue link */
.footer-menu li a[href*="Disclosure"],
.footer-menu li a[href*="disclosure"] {
    color: #fff !important;
}

/* Consolidated from campus-redesign.css */
/* Campus Redesign Styles */
.campus-redesign-section {
    padding: 100px 0;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.campus-redesign-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.campus-image-wrapper {
    width: 50%;
    position: relative;
}

.campus-seal {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
    animation: rotate-slow 20s linear infinite;
}

.seal-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.seal-inner svg {
    width: 100%;
    height: 100%;
    fill: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.seal-year {
    position: absolute;
    font-size: 28px;
    font-weight: 800;
    color: #2b2fbe;
    margin-top: 5px;
    animation: rotate-reverse 20s linear infinite;
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-reverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.campus-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.campus-card-wrapper {
    width: 55%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.campus-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.campus-card .pre-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.campus-card .title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    position: relative;
    line-height: 1.2;
}

.text-pink {
    color: #f43f5e;
}

.title-squiggle {
    width: 280px;
    height: 50px;
    margin-top: 5px;
}

.campus-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.campus-feature-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.campus-feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.feature-icon-box.pink {
    background: #fff1f2;
    color: #f43f5e;
}

.feature-icon-box.teal {
    background: #f0fdfa;
    color: #14b8a6;
}

.feature-icon-box.orange {
    background: #fff7ed;
    color: #f59e0b;
}

.feature-icon-box i {
    font-size: 24px;
}

.feature-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.feature-info p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Decorations */
.campus-decor-dots {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#f43f5e 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.2;
    z-index: 1;
}

.campus-decor-circle {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border: 2px solid #f1f5f9;
    border-radius: 50%;
    z-index: -1;
}

.campus-decor-circle-2 {
    position: absolute;
    top: 50%;
    right: -100px;
    width: 400px;
    height: 400px;
    border: 2px solid #f1f5f9;
    border-radius: 50%;
    z-index: -1;
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #2b2fbe;
    color: #fff !important;
    padding: 16px 35px;
    border-radius: 0px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(26, 182, 157, 0.25);
}

.apply-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.apply-btn:hover {
    background: #169d87;
    box-shadow: 0 15px 35px rgba(26, 182, 157, 0.35);
}

.apply-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .campus-redesign-container {
        flex-direction: column;
    }

    .campus-image-wrapper,
    .campus-card-wrapper {
        width: 100%;
        position: static;
        transform: none;
    }

    .campus-card {
        padding: 40px;
        margin-top: -50px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
}

/* Consolidated from campus-life.css */
/* ===================================== */
/*         CAMPUS LIFE SECTION          */
/* ===================================== */
.campus-life-section {
    padding: 140px 0;
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

.campus-life-section .container {
    position: relative;
    z-index: 10;
}

/* Background Large Circular Outline */
.campus-life-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.campus-life-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.campus-image-container {
    position: relative;
    z-index: 5;
}

.campus-image-container .main-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

/* Red Dotted Pattern (Top Right of Card area) */
.campus-decor-dots-red {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#ee4a62 20%, transparent 20%);
    background-size: 15px 15px;
    z-index: 2;
    opacity: 0.4;
}

/* Teal Dotted Blob (Bottom Left of Image) */
.campus-decor-blob-teal {
    position: absolute;
    bottom: -60px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: #f0fdfa;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0.8;
}

.campus-decor-blob-teal::after {
    content: '';
    width: 60%;
    height: 60%;
    background-image: radial-gradient(#2b2fbe 20%, transparent 20%);
    background-size: 12px 12px;
    opacity: 0.3;
}

/* Overlapping Content Card */
.campus-info-card {
    background: #ffffff;
    padding: 70px;
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 15;
    margin-left: -100px;
}

@media (max-width: 991px) {
    .campus-info-card {
        margin-left: 0;
        margin-top: -50px;
        padding: 40px;
    }
}

.campus-info-card .pre-title {
    color: #bababa;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.campus-info-card .title {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

/* Teal Squiggle */
.campus-info-card .squiggle {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 150px;
    height: 12px;
}

.campus-feature-stack {
    margin-top: 40px;
    height: 400px;
    overflow: hidden;
    /* Hide scrollbar for the ticker */
    padding-right: 0;
    position: relative;
}

.announcement-ticker {
    display: flex;
    flex-direction: column;
    animation: scroll-up 20s linear infinite;
}

.campus-feature-stack:hover .announcement-ticker {
    animation-play-state: paused;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    border: 1px solid #f1f5f9;
    margin-bottom: 20px;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.announcement-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #2b2fbe;
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.announcement-item:hover {
    background: #f8fafc;
    border-color: #2b2fbe33;
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.announcement-item:hover::before {
    transform: scaleY(1);
}

.announcement-date {
    width: 65px;
    height: 65px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.announcement-item:hover .announcement-date {
    background: #2b2fbe;
    color: #fff;
    transform: rotate(-5deg);
}

.announcement-date .day {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.announcement-date .month {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.announcement-content {
    flex-grow: 1;
}

.announcement-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.announcement-item:hover .announcement-content h4 {
    color: #2b2fbe;
}

.announcement-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Status Badge */
.announcement-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 10px;
    font-weight: 800;
    background: #ee4a62;
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Fix for Top Bar */
.top-bar {
    background-color: #2b2fbe !important;
    color: #ffffff !important;
    font-size: 16px;
}

.top-bar .contact-item {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400 !important;
}

.top-bar .contact-item i {
    color: #ffc107 !important;
}

.top-bar .v-divider {
    background-color: rgba(255, 255, 255, 0.2) !important;
    margin: 0 15px !important;
}

.top-bar .social-link {
    color: rgba(255, 255, 255, 0.9) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.top-bar .apply-btn {
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: 700 !important;
    padding: 12px 25px !important;
    height: 100% !important;
    border: none !important;
}

/* PREMIUM REDESIGN SECTION */
.campus-premium-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.premium-image-composition {
    position: relative;
    padding-right: 30px;
}

.main-image-wrapper {
    position: relative;
    z-index: 2;
}

.secondary-image-wrapper {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 250px;
    z-index: 3;
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: #2b2fbe;
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(26, 182, 157, 0.3);
    z-index: 5;
}

.experience-badge .number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
    display: block;
}

.rotating-seal-wrap {
    position: absolute;
    top: -50px;
    right: 20px;
    width: 160px;
    height: 160px;
    z-index: 4;
}

.rotating-seal {
    position: relative;
    width: 100%;
    height: 100%;
    animation: rotate-seal 20s linear infinite;
}

.seal-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
}

@keyframes rotate-seal {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.premium-content-card {
    padding-left: 20px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: #ee4a621f;
    color: #ee4a62;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
}

.premium-title {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.text-highlight {
    color: #2b2fbe;
    position: relative;
}

.premium-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.p-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.p-icon {
    width: 50px;
    height: 50px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b2fbe;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.p-feature:hover .p-icon {
    background: #2b2fbe;
    color: #fff;
    transform: translateY(-5px);
}

.btn-premium-solid {
    background: #2b2fbe;
    color: #fff !important;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(26, 182, 157, 0.25);
    transition: all 0.3s ease;
}

.btn-premium-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 182, 157, 0.35);
}

.premium-contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none !important;
    color: #0f172a !important;
}

.c-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b2fbe;
    font-size: 18px;
}

.c-text span {
    display: block;
    font-size: 12px;
    color: #64748b;
}

.c-text strong {
    display: block;
    font-size: 16px;
}

/* PREMIUM STATS SECTION */
.premium-stats-section {
    padding: 80px 0;
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.stats-grid-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.stat-premium-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
}

.stat-premium-card .card-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.4s ease;
}

.card-teal .stat-icon {
    background: #f0fdfa;
    color: #2b2fbe;
}

.card-pink .stat-icon {
    background: #fff1f2;
    color: #f43f5e;
}

.card-purple .stat-icon {
    background: #f5f3ff;
    color: #8b5cf6;
}

.card-gold .stat-icon {
    background: #fffbeb;
    color: #d97706;
}

.stat-info h3 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.stat-info p {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.05);
}

.stat-premium-card:hover .stat-icon {
    transform: scale(1.1) rotate(-5deg);
}

.card-teal:hover {
    background: #2b2fbe;
}

.card-pink:hover {
    background: #f43f5e;
}

.card-purple:hover {
    background: #8b5cf6;
}

.card-gold:hover {
    background: #d97706;
}

.stat-premium-card:hover .stat-info h3,
.stat-premium-card:hover .stat-info p,
.stat-premium-card:hover .stat-icon {
    color: #fff !important;
}

.stat-premium-card:hover .stat-icon {
    background: rgba(255, 255, 255, 0.2);
}

/* Adjust Seal Logo Centering */
.seal-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    width: 80px !important;
    z-index: 10;
}

.seal-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.rotating-seal-wrap {
    width: 200px !important;
    height: 200px !important;
    top: -100px !important;
    right: -50px !important;
}

/* EXACT CIRCULAR SEAL BADGE */
.premium-seal-badge {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    z-index: 10;
}

.seal-inner-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate-seal 25s linear infinite;
}

.seal-center-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

.seal-center-text span {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: #2b2fbe;
    line-height: 1;
    letter-spacing: -1px;
}

@keyframes rotate-seal {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* BACKGROUND DECORATIVE ICONS */
.decor-dots-teal {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(#2b2fbe 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.15;
    z-index: 1;
}

.decor-ring-red {
    position: absolute;
    bottom: 15%;
    left: -50px;
    width: 150px;
    height: 150px;
    border: 25px solid #ee4a62;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    animation: float-slow 8s ease-in-out infinite;
}

.decor-dots-red {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#ee4a62 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.1;
    z-index: 1;
    transform: rotate(45deg);
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* EXACT COUNTER REDESIGN (BASED ON SCREENSHOT) */
.stat-premium-card {
    background: #fff !important;
    border-radius: 20px !important;
    padding: 25px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    border: none !important;
}

.stat-premium-card .card-inner {
    display: flex;
    align-items: center;
    gap: 20px !important;
}

.stat-icon {
    width: 70px !important;
    height: 70px !important;
    border-radius: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px !important;
    transition: all 0.3s ease;
}

.stat-info h3 {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin: 0 !important;
}

.stat-info p {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-top: 4px !important;
}

.stat-premium-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    background: #fff !important;
}

.stat-premium-card:hover .stat-info h3,
.stat-premium-card:hover .stat-info p {
    color: inherit !important;
}

.card-teal:hover .stat-info h3 {
    color: #2b2fbe !important;
}

.card-pink:hover .stat-info h3 {
    color: #f43f5e !important;
}

.card-purple:hover .stat-info h3 {
    color: #8b5cf6 !important;
}

.card-gold:hover .stat-info h3 {
    color: #d97706 !important;
}

/* VERTICAL FACILITY CARDS (BASED ON SCREENSHOT) */
.facility-premium-card {
    background: #fff !important;
    padding: 40px 30px !important;
    border-radius: 20px !important;
    text-align: center !important;
    transition: all 0.4s ease !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    position: relative !important;
    overflow: hidden !important;
}

.facility-premium-card .f-icon {
    width: 85px !important;
    height: 85px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 32px !important;
    margin-bottom: 25px !important;
    transition: all 0.4s ease !important;
}

.facility-premium-card .f-title {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin-bottom: 15px !important;
}

.facility-premium-card .f-desc {
    font-size: 15px !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
}

.facility-premium-card .f-badge {
    padding: 6px 20px !important;
    border-radius: 50px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    transition: all 0.4s ease !important;
}

.f-teal {
    background: #f0fdfa !important;
}

.f-teal .f-icon {
    background: #f0fdfa !important;
    color: #2b2fbe !important;
}

.f-teal .f-badge {
    background: #f0fdfa !important;
    color: #2b2fbe !important;
}

.f-pink {
    background: #fff1f2 !important;
}

.f-pink .f-icon {
    background: #fff1f2 !important;
    color: #f43f5e !important;
}

.f-pink .f-badge {
    background: #fff1f2 !important;
    color: #f43f5e !important;
}

.f-purple {
    background: #f5f3ff !important;
}

.f-purple .f-icon {
    background: #f5f3ff !important;
    color: #8b5cf6 !important;
}

.f-purple .f-badge {
    background: #f5f3ff !important;
    color: #8b5cf6 !important;
}

.f-blue {
    background: #eff6ff !important;
}

.f-blue .f-icon {
    background: #eff6ff !important;
    color: #3b82f6 !important;
}

.f-blue .f-badge {
    background: #eff6ff !important;
    color: #3b82f6 !important;
}

.f-orange {
    background: #fff7ed !important;
}

.f-orange .f-icon {
    background: #fff7ed !important;
    color: #f97316 !important;
}

.f-orange .f-badge {
    background: #fff7ed !important;
    color: #f97316 !important;
}

.f-yellow {
    background: #fffbeb !important;
}

.f-yellow .f-icon {
    background: #fffbeb !important;
    color: #eab308 !important;
}

.f-yellow .f-badge {
    background: #fffbeb !important;
    color: #eab308 !important;
}

.facility-premium-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
    border-color: transparent !important;
}

.facility-premium-card:hover .f-icon {
    transform: scale(1.1) !important;
}

/* MODERN STAT BOXES */
.stat-box-modern {
    background: #fff;
    padding: 45px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stat-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.4s ease;
}

.s-teal {
    background-color: #effaf8 !important;
}

.s-teal .stat-icon-wrap {
    background: #daf4ef !important;
    color: #23b8a1 !important;
}

.s-pink {
    background-color: #fef2f4 !important;
}

.s-pink .stat-icon-wrap {
    background: #fce1e5 !important;
    color: #ee4962 !important;
}

.s-purple {
    background-color: #f2f4fd !important;
}

.s-purple .stat-icon-wrap {
    background: #e0e5fa !important;
    color: #4766e5 !important;
}

.s-gold {
    background-color: #fff7ef !important;
}

.s-gold .stat-icon-wrap {
    background: #feedda !important;
    color: #f8941f !important;
}

.counter-num,
.stat-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.stat-box-modern:hover {
    transform: translateY(-12px);

}

.stat-box-modern:hover .stat-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.stat-box-modern::after {
    content: " \; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(0,109,91,0.03) 0%, transparent 70%); opacity: 0; transition: opacity 0.4s ease; }
 .stat-box-modern:hover::after {
        opacity: 1;
    }

    /* ============================================
   MISSION & VISION SECTION
   ============================================ */
    .mission-vision-section {
        padding: 80px 0;
        background: #fff;
    }

    .mv-section-header {
        margin-bottom: 50px;
    }

    .mv-school-label {
        display: inline-block;
        font-size: 13px;
        font-weight: 700;
        letter-spacing: 2px;
        color: #1a6fc4;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .mv-main-title {
        font-size: 2.4rem;
        font-weight: 800;
        color: #0f172a;
        line-height: 1.2;
        margin: 0;
    }

    /* Mission / Vision Cards */
    .mv-card {
        padding: 10px 0;
    }

    .mv-card-title {
        font-size: 1.75rem;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 18px;
    }

    .mv-card-text {
        font-size: 0.96rem;
        line-height: 1.85;
        color: #64748b;
        margin: 0;
    }

    .mv-highlight {
        color: #1a6fc4;
        font-style: normal;
        text-decoration: underline;
        text-underline-offset: 2px;
        text-decoration-color: rgba(26, 111, 196, 0.3);
    }

    /* Center Image Block */
    .mv-center-block {
        display: flex;
        justify-content: center;
    }

    .mv-image-wrapper {
        position: relative;
        width: 100%;
        max-width: 360px;
    }

    .mv-center-img {
        width: 100%;
        height: 360px;
        object-fit: cover;
        border-radius: 8px;
        display: block;
    }

    /* 45+ Badge */
    .mv-experience-badge {
        position: absolute;
        top: 50%;
        right: -20px;
        transform: translateY(-50%);
        background: #0f172a;
        color: #fff;
        padding: 24px 20px;
        text-align: center;
        border-radius: 6px;
        min-width: 110px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }

    .mv-badge-num {
        display: block;
        font-size: 2.6rem;
        font-weight: 900;
        line-height: 1;
        letter-spacing: -1px;
    }

    .mv-badge-text {
        display: block;
        font-size: 0.78rem;
        font-weight: 600;
        line-height: 1.4;
        margin-top: 6px;
        opacity: 0.85;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .mv-experience-badge {
            right: 0;
            top: auto;
            bottom: -20px;
            transform: none;
        }

        .mv-center-img {
            height: 280px;
        }

        .mv-center-block {
            margin-bottom: 40px;
        }
    }

    @media (max-width: 575px) {
        .mv-main-title {
            font-size: 1.7rem;
        }

        .mv-card-title {
            font-size: 1.4rem;
        }

        .mv-experience-badge {
            position: static;
            transform: none;
            display: inline-flex;
            gap: 12px;
            align-items: center;
            margin-top: 16px;
            border-radius: 8px;
            min-width: unset;
        }
    }

    /* ============================================
   MISSION & VISION v2 — PREMIUM REDESIGN
   ============================================ */
    .mv2-section {
        position: relative;
        padding: 100px 0;
        background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 50%, #f5f0ff 100%);
        overflow: hidden;
    }

    /* Decorative blobs */
    .mv2-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        opacity: 0.35;
        pointer-events: none;
        z-index: 0;
    }

    .mv2-blob-1 {
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, #3b82f6, transparent);
        top: -100px;
        left: -100px;
    }

    .mv2-blob-2 {
        width: 350px;
        height: 350px;
        background: radial-gradient(circle, #8b5cf6, transparent);
        bottom: -80px;
        right: -80px;
    }

    /* Container sits above blobs */
    .mv2-section .container {
        position: relative;
        z-index: 1;
    }

    /* ---- Header ---- */
    .mv2-header {
        margin-bottom: 60px;
    }

    .mv2-eyebrow {
        display: inline-block;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: #3b82f6;
        background: rgba(59, 130, 246, 0.1);
        padding: 6px 18px;
        border-radius: 50px;
        margin-bottom: 16px;
    }

    .mv2-title {
        font-size: 2.8rem;
        font-weight: 900;
        color: #0f172a;
        line-height: 1.15;
        margin-bottom: 14px;
    }

    .mv2-title-highlight {
        background: linear-gradient(135deg, #3b82f6, #8b5cf6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .mv2-subtitle {
        font-size: 1.05rem;
        color: #64748b;
        margin: 0;
    }

    /* ---- Cards ---- */
    .mv2-card {
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 24px;
        padding: 50px 40px;
        height: 100%;
        box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05),
            0 1px 3px rgba(0, 0, 0, 0.02);
        border: 1px solid rgba(255, 255, 255, 0.7);
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 1;
    }

    .mv2-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 6px;
        transition: height 0.3s ease;
    }

    .mv2-mission-card::before {
        background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    }

    .mv2-vision-card::before {
        background: linear-gradient(90deg, #8b5cf6, #6366f1);
    }

    .mv2-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08),
            0 0 0 1px rgba(99, 102, 241, 0.08);
        background: #ffffff;
    }

    .mv2-card:hover::before {
        height: 8px;
    }

    /* Icon circle */
    .mv2-card-icon-wrap {
        width: 70px;
        height: 70px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.6rem;
        margin-bottom: 30px;
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .mv2-card:hover .mv2-card-icon-wrap {
        transform: scale(1.1) rotate(-5deg);
    }

    .mv2-teal-icon {
        background: linear-gradient(135deg, #0ea5e9, #06b6d4);
        color: #fff;
        box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
    }

    .mv2-blue-icon {
        background: linear-gradient(135deg, #8b5cf6, #6366f1);
        color: #fff;
        box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
    }

    .mv2-card-heading {
        font-size: 1.8rem;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 20px;
        letter-spacing: -0.5px;
    }

    .mv2-card-body {
        font-size: 0.98rem;
        line-height: 1.85;
        color: #475569;
        margin-bottom: 16px;
    }

    /* Pill tags */
    .mv2-pill-list {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 28px;
    }

    .mv2-pill {
        display: inline-flex;
        align-items: center;
        font-size: 0.85rem;
        font-weight: 600;
        padding: 8px 18px;
        border-radius: 50px;
        background: rgba(14, 165, 233, 0.06);
        color: #0284c7;
        border: 1px solid rgba(14, 165, 233, 0.15);
        transition: all 0.3s ease;
    }

    .mv2-pill i {
        transition: transform 0.3s ease;
    }

    .mv2-card:hover .mv2-pill {
        background: rgba(14, 165, 233, 0.1);
        border-color: rgba(14, 165, 233, 0.25);
    }

    .mv2-card:hover .mv2-pill i {
        transform: scale(1.2);
    }

    .mv2-pill-blue {
        background: rgba(139, 92, 246, 0.06);
        color: #7c3aed;
        border-color: rgba(139, 92, 246, 0.15);
    }

    .mv2-card:hover .mv2-pill-blue {
        background: rgba(139, 92, 246, 0.1);
        border-color: rgba(139, 92, 246, 0.25);
    }

    /* ---- Center Divider & Badge ---- */
    .mv2-timeline-divider {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        width: 2px;
        background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.2) 15%, rgba(139, 92, 246, 0.2) 85%, transparent);
        transform: translateX(-50%);
        z-index: 1;
    }

    .mv2-timeline-divider::before {
        content: '';
        position: absolute;
        top: 15%;
        bottom: 15%;
        left: 0;
        right: 0;
        border-left: 2px dashed rgba(99, 102, 241, 0.4);
    }

    .mv2-center-badge-wrap {
        position: relative;
        z-index: 3;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    /* 45+ badge */
    .mv2-years-badge {
        background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
        color: #fff;
        border-radius: 50%;
        width: 140px;
        height: 140px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        box-shadow: 0 15px 35px rgba(15, 23, 42, 0.25),
            0 0 0 10px rgba(59, 130, 246, 0.05),
            inset 0 2px 4px rgba(255, 255, 255, 0.2);
        transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
        border: 2px solid rgba(255, 255, 255, 0.1);
    }

    .mv2-years-badge:hover {
        transform: scale(1.08) rotate(5deg);
        box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35),
            0 0 0 15px rgba(59, 130, 246, 0.08);
    }

    .mv2-years-num {
        display: block;
        font-size: 2.5rem;
        font-weight: 900;
        line-height: 1;
        background: linear-gradient(135deg, #60a5fa, #a78bfa);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 2px;
    }

    .mv2-years-label {
        display: block;
        font-size: 0.65rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        opacity: 0.9;
        line-height: 1.3;
    }

    /* ---- Responsive ---- */
    @media (max-width: 991px) {
        .mv2-title {
            font-size: 2.2rem;
        }

        .mv2-card {
            padding: 40px 30px;
        }

        .mv2-years-badge {
            width: 130px;
            height: 130px;
        }

        .mv2-years-num {
            font-size: 2.2rem;
        }
    }

    @media (max-width: 575px) {
        .mv2-section {
            padding: 70px 0;
        }

        .mv2-title {
            font-size: 1.8rem;
        }

        .mv2-card {
            padding: 35px 20px;
        }

        .mv2-pill {
            padding: 6px 14px;
            font-size: 0.8rem;
        }
    }

    /* DEEPER SHADOW BOXES */


    .stat-box-modern {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    }

    .premium-content-card {
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12) !important;
        background: #ffffff;
        border-radius: 24px;
        padding: 50px !important;
    }

    .facility-cloud-item {
        background: #fff;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        transition: all 0.3s ease;
    }

    /* ADMINISTRATIVE / TEAM SECTION REDESIGN */
    .team-section {
        padding: 140px 0 100px;
        background: #f8fafc;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .title-underline-wrap {
        position: relative;
        display: inline-block;
    }

    .squiggle-underline {
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 120px;
        height: 10px;
        background: url("data:image/svg+xml,%3Csvg width='100' height='10' viewBox='0 0 100 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5 Q 12.5 0, 25 5 T 50 5 T 75 5 T 100 5' stroke='%231ab69d' stroke-width='3' fill='none'/%3E%3C/svg%3E") no-repeat;
        background-size: contain;
    }

    .team-card {
        position: relative;
        margin-bottom: 30px;
        transition: all 0.4s ease;
        border-radius: 20px;
        overflow: hidden;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    .team-card-inner {
        position: relative;
    }

    .team-bg-block {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 85%;
        background: #fef3c7;
        z-index: 1;
        border-radius: 20px 20px 0 0;
        transition: all 0.4s ease;
    }

    .team-image {
        position: relative;
        z-index: 2;
        padding: 20px;
        text-align: center;
        overflow: hidden;
    }

    .team-image img {
        width: 100%;
        border-radius: 15px;
        transition: all 0.5s ease;
        filter: grayscale(20%);
    }

    .team-card:hover .team-image img {
        transform: scale(1.05);
        filter: grayscale(0%);
    }

    .team-content {
        position: relative;
        z-index: 3;
        background: #fff;
        margin: -50px 20px 20px;
        padding: 25px 20px;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
        border-bottom: 4px solid #2b2fbe;
        transition: all 0.4s ease;
    }

    .team-card:hover .team-content {
        transform: translateY(-5px);
        border-bottom-color: #ee4a62;
    }

    .team-content .name {
        font-size: 22px;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 5px;
    }

    .team-content .designation {
        font-size: 14px;
        font-weight: 600;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .team-share-btn {
        position: absolute;
        top: 35px;
        right: 35px;
        width: 45px;
        height: 45px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2b2fbe;
        cursor: pointer;
        z-index: 4;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .team-share-btn:hover {
        background: #2b2fbe;
        color: #fff;
    }

    /* TEAM SECTION DECORATIONS */
    .team-left-decor {
        position: absolute;
        left: -100px;
        top: 20%;
        width: 400px;
        height: 400px;
        background: rgba(26, 182, 157, 0.03);
        border-radius: 50%;
        z-index: -1;
    }

    .team-right-decor {
        position: absolute;
        right: -50px;
        bottom: 10%;
        width: 250px;
        height: 250px;
        border: 40px solid rgba(238, 74, 98, 0.03);
        border-radius: 50%;
        z-index: -1;
    }

    /* HOVER SOCIALS */
    .team-social-overlay {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) scale(0.8);
        display: flex;
        gap: 10px;
        opacity: 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 5;
    }

    .team-card:hover .team-social-overlay {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .team-social-overlay a {
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #2b2fbe;
        text-decoration: none !important;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease;
    }

    .team-social-overlay a:hover {
        background: #2b2fbe;
        color: #fff;
        transform: translateY(-3px);
    }

    /* IMAGE OVERLAY ON HOVER */
    .team-image::after {
        content: "";
        position: absolute;
        top: 20px;
        left: 20px;
        right: 20px;
        bottom: 20px;
        background: rgba(26, 182, 157, 0.7);
        border-radius: 15px;
        opacity: 0;
        transition: all 0.4s ease;
        z-index: 3;
    }

    .team-card:hover .team-image::after {
        opacity: 1;
    }

    /* RIGHT SIDE IMAGE DECOR */
    .team-right-image-decor {
        position: absolute;
        right: 0;
        top: 10%;
        width: 200px;
        height: 300px;
        z-index: -1;
        opacity: 0.5;
        pointer-events: none;
    }

    .team-right-image-decor img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}

/* REDUCING YELLOW - THEME UPDATES */
.team-bg-block {
    background: #f0fdfa !important;
}

.topper-badge {
    background: #2b2fbe !important;
    color: #fff !important;
}

.contact-floating-card {
    background: #ffc107 !important;
    border-top: 5px solid #ffc107 !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1) !important;
    color: #000 !important;
}

.contact-floating-card strong a {
    color: #000 !important;
}

.contact-card-item span {
    color: #000 !important;
}

.or-separator {
    background: #2b2fbe !important;
    color: #fff !important;
}

.btn-topper-switch {
    background: #2b2fbe !important;
    color: #fff !important;
    border: none !important;
}

.btn-topper-switch.active {
    background: #ee4a62 !important;
}

/* MORE REDUCTION OF YELLOW */
.topper-heading-box {
    background: #2b2fbe !important;
    border-radius: 12px;
}

.topper-col-title {
    color: #fff !important;
}

.topper-percentage {
    color: #2b2fbe !important;
}

.topper-card {
    border-bottom: 3px solid #2b2fbe !important;
}

.team-bg-block {
    background: #f0fdfa !important;
}

/* CAROUSEL ARROWS COLOR CHANGE TO TEAL */
.carousel-control-prev,
.carousel-control-next {
    background-color: #2b2fbe !important;
    border: 1px solid #2b2fbe !important;
    color: #fff !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #ee4a62 !important;
    border-color: #ee4a62 !important;
    transform: scale(1.1);
}

.carousel-control-prev i,
.carousel-control-next i {
    color: #fff !important;
}

/* FIX CAROUSEL ARROWS VISIBILITY */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.carousel-controls .carousel-control-prev,
.carousel-controls .carousel-control-next {
    position: relative !important;
    width: 45px !important;
    height: 45px !important;
    background: #2b2fbe !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.carousel-controls .carousel-control-prev i,
.carousel-controls .carousel-control-next i {
    color: #ffffff !important;
    font-size: 16px !important;
    opacity: 1 !important;
    display: block !important;
}

.carousel-controls .carousel-control-prev:hover,
.carousel-controls .carousel-control-next:hover {
    background: #ee4a62 !important;
    transform: scale(1.1);
}

/* RESPONSIVE OPTIMIZATIONS */
@media (max-width: 991px) {
    .team-section {
        padding: 80px 0;
    }

    .team-content {
        margin: -30px 10px 10px;
        padding: 20px 15px;
    }

    .team-content .name {
        font-size: 18px;
    }

    .topper-section {
        padding: 80px 0;
    }

    .topper-col-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .stat-box-modern {
        padding: 30px 15px;
    }

    .counter-num {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .section-title .title {
        font-size: 28px !important;
    }

    .team-left-decor,
    .team-right-decor,
    .team-right-image-decor {
        display: none;
    }

    .topper-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .carousel-controls {
        margin-top: 20px;
        gap: 10px;
    }

    .carousel-controls .carousel-control-prev,
    .carousel-controls .carousel-control-next {
        width: 40px !important;
        height: 40px !important;
    }

    .premium-title {
        font-size: 32px !important;
    }

    .stat-box-modern {
        margin-bottom: 20px;
    }
}

/* FOOTER LEGAL LINKS */
.footer-legal-links a {
    color: #64748b;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal-links a:hover {
    color: #2b2fbe;
}

@media (max-width: 767px) {
    .footer-legal-links {
        gap: 15px !important;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* DARK FOOTER THEME */
.edu-footer {
    background-color: #111212 !important;
    color: #ffffff;
}

.footer-main {
    background-color: #111212 !important;
}

.widget-title {
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-widget p {
    color: #fff;
    line-height: 1.8;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu li a:hover {
    color: #ffc107 !important;
    transform: translateX(5px);
}

.footer-bottom {
    background-color: #0a0b0b !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #fff !important;
}

.footer-legal-links a {
    color: #bababa !important;
}

.footer-legal-links a:hover {
    color: #ffc107 !important;
}

.footer-contact-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(26, 182, 157, 0.1);
    border-color: #2b2fbe;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #2b2fbe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}

.contact-text span {
    color: #fff;
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
}

.contact-text h5 {
    color: #fff !important;
    margin: 0;
    font-size: 18px;
}

/* FORCE SINGLE ITEM PER ROW ON MOBILE FOR ALL GRIDS */
@media (max-width: 575px) {
    .topper-card-grid {
        grid-template-columns: 1fr !important;
    }

    .gallery-grid .col-sm-6 {
        width: 100% !important;
    }

    .row.g-4 .col-md-6 {
        width: 100% !important;
    }

    .stat-box-modern {
        margin-bottom: 30px;
    }

    .topper-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .topper-card {
        max-width: 100%;
    }
}

/* HIDE FACILITIES BACKGROUND SHAPES ON MOBILE */
@media (max-width: 767px) {
    .activities-section .shape-group {
        display: none !important;
    }
}

/* ==============================
   ABOUT PAGE CONTENT STYLES
   ============================== */
.about-section-badge {
    color: #00665e;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 1rem;
    display: block;
}

.about-main-title {
    color: #1a1a1a;
    font-weight: 700;
}

.about-main-title .highlight {
    color: #00665e;
}

.about-lead-text {
    color: #4a4a4a;
    line-height: 1.8;
}

.about-content-text {
    color: #666;
    line-height: 1.8;
    font-size: 17px;
}

/* ==============================
   UTILITY CLASSES FOR INDEX.HTML
   ============================== */
.view-all-link-dark {
    color: #000 !important;
    font-weight: 700;
    text-decoration: none !important;
    font-size: 15px;
}

.view-all-link-light {
    color: #fff !important;
    font-weight: 700;
    text-decoration: none !important;
    font-size: 15px;
}

.text-right-align {
    text-align: right;
}

/* ==============================
   EDUCATION FEATURES SECTION
   ============================== */
.edu-features-section {
    padding: 100px 0;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.edu-features-section .decor-dots {
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    opacity: 0.1;
    background-image: radial-gradient(#2b2fbe 2px, transparent 2px);
    background-size: 15px 15px;
}

.edu-features-section .decor-circle {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(26, 182, 157, 0.05);
    border-radius: 50%;
}

.edu-features-section .section-header {
    margin-bottom: 80px;
}

.edu-features-section .header-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.edu-features-section .header-title span {
    color: #ee4a62;
    position: relative;
    display: inline-block;
}

.edu-features-section .header-title .highlight-line {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg width='150' height='12' viewBox='0 0 150 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 10C25 5.5 50 5.5 75 7.5C100 9.5 125 9.5 149 1' stroke='%231ab69d' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.edu-features-section .header-desc {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

.feature-card-modern {
    background: #fff;
    padding: 60px 40px 40px;
    border-radius: 24px 80px 24px 80px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
    border: 1px solid #f1f5f9;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.feature-card-modern .card-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card-modern.teal .card-icon {
    background: #2b2fbe;
}

.feature-card-modern.pink .card-icon {
    background: #ee4a62;
}

.feature-card-modern.blue .card-icon {
    background: #3b82f6;
}

.feature-card-modern h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.feature-card-modern p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==============================
   MISSION & VISION SECTION
   ============================== */
.mission-vision-section {
    padding: 120px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.mission-vision-section .section-badge {
    color: #2b2fbe;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.mission-vision-section .section-title {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 80px;
}

.mv-content-box {
    padding: 20px;
}

.mv-content-box h3 {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
}

.mv-content-box p {
    color: #475569;
    font-size: 16px;
    line-height: 1.9;
}

.mv-image-wrapper {
    position: relative;
    padding: 0 15px;
    text-align: center;
}

.mv-image-wrapper .main-mv-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
}

.experience-badge-mv {
    position: absolute;
    top: 40px;
    right: -10px;
    background: #003049;
    color: #fff;
    padding: 25px 30px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 48, 73, 0.4);
    z-index: 5;
}

.experience-badge-mv .years {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge-mv .text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 8px;
}

@media (max-width: 1199px) {
    .mv-content-box h3 {
        font-size: 38px;
    }

    .experience-badge-mv {
        padding: 15px 20px;
        right: 0;
    }

    .experience-badge-mv .years {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .mv-image-wrapper {
        margin: 60px 0;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .edu-features-section .header-title {
        font-size: 34px;
    }

    .mission-vision-section .section-title {
        font-size: 40px;
        margin-bottom: 50px;
    }
}

/* ==============================
   ABOUT PAGE SECTIONS
   ============================== */

/* Welcome Section */
.about-welcome-section {
    padding: 120px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.premium-image-composition {
    position: relative;
    padding-right: 50px;
    padding-bottom: 50px;
}

.main-image-wrap {
    position: relative;
    z-index: 2;
}

.main-image-wrap img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.secondary-image-wrap {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 60%;
    z-index: 3;
    border: 10px solid #fff;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.secondary-image-wrap img {
    width: 100%;
    border-radius: 20px;
}

.composition-shapes {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(#2b2fbe 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 1;
    opacity: 0.3;
}

.composition-circle {
    position: absolute;
    bottom: 20%;
    left: -30px;
    width: 100px;
    height: 100px;
    background: #fdf2f2;
    border-radius: 50%;
    z-index: 1;
}

/* Rotating Seal */
.rotating-seal-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    z-index: 10;
}

.rotating-seal-wrap .seal-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.rotating-seal-wrap .rotating-text {
    animation: rotate 20s linear infinite;
    width: 100%;
    height: 100%;
}

.rotating-seal-wrap .seal-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--edu-pink);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.student-badge-premium {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--edu-pink);
    color: white;
    padding: 20px 25px;
    border-radius: 20px;
    text-align: center;
    z-index: 11;
    box-shadow: 0 10px 25px rgba(238, 74, 98, 0.3);
}

.student-badge-premium h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

.student-badge-premium span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.welcome-text .display-5 {
    color: #181818;
    line-height: 1.2;
}

.welcome-text .display-5 span {
    color: var(--edu-teal);
    position: relative;
}

.welcome-text .display-5 span::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(26, 182, 157, 0.1);
    z-index: -1;
}

.section-label {
    color: var(--edu-teal);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

/* Mission & Vision */
.mission-vision-section {
    padding: 80px 0;
    background: #fff;
}

.mv-content {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.mv-image-center {
    position: relative;
    text-align: center;
}

.mv-image-center img {
    border-radius: 20px;
    width: 100%;
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #003366;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.experience-badge h4 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
}

.experience-badge p {
    margin: 0;
    font-size: 12px;
}

/* Why Choose Us */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/video_bg_custom.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.choice-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-top: 60px;
    position: relative;
}

.choice-item {
    position: relative;
    z-index: 2;
}

.choice-icon {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--edu-teal);
    font-size: 32px;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1);
}

.choice-item h5 {
    font-weight: 700;
}

.choice-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #003366;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.flow-line {
    position: absolute;
    top: 50px;
    left: 20%;
    right: 20%;
    height: 2px;
    border-top: 2px dashed rgba(255, 255, 255, 0.3);
    z-index: 1;
}

/* Team Messages */
.team-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    height: 350px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 25px;
    position: relative;
}

.team-info h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.team-info p {
    color: #666;
    margin: 0;
}

.share-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: #003366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

@media (max-width: 991px) {
    .choice-flow {
        flex-direction: column;
        gap: 50px;
    }

    .flow-line {
        display: none;
    }

    .welcome-image-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   ACADEMIC & AFFILIATION SECTION
   ============================== */
.about-academics-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.academic-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.academic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08) !important;
    border-color: rgba(0, 3, 110, 0.1);
}

.academic-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.academic-card:hover .academic-icon {
    transform: rotateY(180deg);
}

.academic-icon.teal {
    background-color: rgba(26, 182, 157, 0.1);
    color: #1ab69d;
}

.academic-icon.pink {
    background-color: rgba(238, 74, 98, 0.1);
    color: #ee4a62;
}

.academic-icon.purple {
    background-color: rgba(142, 86, 255, 0.1);
    color: #8e56ff;
}

.academic-icon.yellow {
    background-color: rgba(255, 186, 0, 0.1);
    color: #ffba00;
}

.academic-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.academic-card-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ==============================
   CAMPUS INFRASTRUCTURE SECTION
   ============================== */
.about-infra-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.about-infra-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.about-infra-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.about-infra-section .row {
    display: flex;
    flex-wrap: wrap;
}

.about-infra-section [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.infra-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.infra-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

.infra-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.infra-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.infra-card:hover .infra-image-wrapper img {
    transform: scale(1.1);
}

.infra-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-red);
    color: #ffffff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(238, 74, 98, 0.3);
}

.infra-card-body {
    padding: 30px;
}

.infra-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.infra-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {

    .about-academics-section,
    .about-infra-section {
        padding: 60px 0;
    }

    .academic-card {
        padding: 25px 20px;
    }

    .infra-card-body {
        padding: 20px;
    }

    .infra-image-wrapper {
        height: 180px;
    }
}

/* Administrator Quotes in About Page */
.admin-quote {
    background: #f8fafc;
    border-left: 3px solid var(--primary-color);
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #475569;
    font-style: italic;
}

/* Scroll Top mobile overlay fix */
@media (max-width: 767px) {
    .scroll-top {
        bottom: 15px;
        right: 15px;
        width: 38px !important;
        height: 38px !important;
        font-size: 14px;
    }
}

/* Custom About Us Collage and Tabs Adjustments */
.about-content .title .color-secondary {
    color: #1ab69d !important;
}

.about-content .title-underline-wrap {
    margin-top: -25px;
    margin-bottom: 30px;
}

.about-content .title-underline-svg {
    display: block;
}

.about-content .nav-tabs .nav-item-divider {
    color: #cbd5e1;
    font-size: 16px;
    font-weight: 300;
    align-self: center;
    margin-bottom: 10px;
    pointer-events: none;
    user-select: none;
}

.about-style-3 .about-image-gallery .shape-group li.shape-1 img {
    filter: invert(53%) sepia(35%) saturate(3033%) hue-rotate(130deg) brightness(93%) contrast(85%);
    /* makes dots green/teal */
}

/* GGPS Bokaro - Custom Styles */

:root {
    --primary-color: #2b2fbe;
    --accent-red: #ff4a60;
    --top-bar-bg: #f7f5f2;
    --text-dark: #1e293b;
    --text-muted: #64748b;
    --edu-pink: #ee4a62;
    --edu-teal: #2b2fbe;
    --edu-purple: #8e56ff;
    --edu-yellow: #ffa41b;
}

.section-title .pre-title {
    color: var(--edu-pink);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

.section-title .title {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #181818;
}

.section-title .title .color-secondary {
    color: #2b2fbe;
}

.section-title.text-center {
    margin-bottom: 60px;
}

html,
body {
    margin: 0 !important;
    padding: 0 !important;
    width: 100%;
    overflow-x: clip;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

* {
    box-sizing: border-box;
}

/* ==============================
   TOP BAR (PRE-HEADER)
   ============================== */
.top-bar {
    background-color: var(--top-bar-bg);
    padding: 0;
    /* Let the height be defined by items */
    font-size: 0.85rem;
    border-bottom: 1px solid #eee;
    width: 100%;
}

.top-bar .contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    padding: 10px 0;
    text-decoration: none;
    transition: color 0.2s;
}

.top-bar .contact-item:hover {
    color: var(--accent-red);
}

.top-bar .contact-item i {
    color: var(--accent-red);
    font-size: 0.9rem;
}

.top-bar .v-divider {
    width: 1px;
    height: 14px;
    background-color: #cbd5e1;
    margin: 0 5px;
}

.top-bar .auth-link {
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    transition: color 0.2s;
}

.top-bar .auth-link:hover {
    color: var(--accent-red);
}

.top-bar .social-link {
    color: #475569;
    font-size: 0.95rem;
    transition: color 0.2s;
    text-decoration: none;
}

.top-bar .social-link:hover {
    color: var(--accent-red);
}

.top-bar .apply-btn {
    background-color: #ee4a62;
    color: white !important;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    height: 100%;
}

.top-bar .apply-btn:hover {
    background-color: #2b2fbe;
    box-shadow: 0 4px 12px rgba(26, 182, 157, 0.2);
}

@media (max-width: 991px) {
    .top-bar {
        padding: 5px 0;
    }

    .top-bar .v-divider {
        display: none;
    }

    .top-bar .contact-item {
        font-size: 0.7rem;
        gap: 4px;
        padding: 5px 0;
    }

    .top-bar .apply-btn {
        padding: 8px 12px;
        font-size: 0.65rem;
        gap: 5px;
    }

    .navbar>.container {
        display: flex;
        flex-wrap: wrap !important;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        gap: 10px;
        max-width: 80%;
        margin-right: 0;
    }

    .header-logo {
        height: 42px;
        width: auto;
        flex-shrink: 0;
    }

    .brand-text {
        min-width: 0;
        /* allows text wrapping inside flex container */
    }

    .school-name {
        font-size: 1.05rem;
        font-weight: 700;
        line-height: 1.2;
        white-space: normal;
        margin: 0;
    }

    .school-location {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
        display: block;
        margin-top: 1px;
    }

    .navbar-toggler {
        flex-shrink: 0;
        margin-left: 10px;
        padding: 6px 8px;
    }

    .navbar-collapse {
        background: #ffffff;
        border-top: 1px solid #f1f5f9;
        margin-top: 10px;
    }

    .navbar-nav {
        padding: 15px 0;
    }

    .navbar .nav-link {
        padding: 10px 20px !important;
        font-size: 15px;
    }

    .navbar .nav-link::after {
        display: none;
    }

    .dropdown-menu {
        border-top: none;
        box-shadow: none !important;
        padding-left: 15px;
        background: #f8fafc;
        border-radius: 8px;
        margin: 5px 0 15px 0 !important;
    }
}

@media (max-width: 575px) {
    .top-bar .container {
        padding: 0 10px;
    }

    .top-bar .d-flex.justify-content-between {
        flex-direction: column;
        align-items: center !important;
        gap: 5px;
    }

    .top-bar .apply-btn {
        width: 100%;
        justify-content: center;
        margin-top: 2px;
    }
}

/* ==============================
   MAIN NAVBAR
   ============================== */
/* Brand text & logo styles */
.header-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .header-logo {
    transform: scale(1.05);
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.school-name {
    font-size: 1.5rem;
    /* ~24px */
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
    padding: 0;
    line-height: 1.25;
    letter-spacing: -0.3px;
    transition: font-size 0.3s ease;
}

.school-location {
    font-size: 0.85rem;
    /* ~13.6px */
    font-weight: 600;
    color: var(--text-muted);
    margin: 0;
    padding: 0;
    line-height: 1.2;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: font-size 0.3s ease;
}

.navbar {
    transition: all 0.3s ease;
}

.navbar-toggler {
    border: 1px solid #e2e8f0 !important;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
    border-color: var(--primary-color) !important;
}

.navbar .nav-link {
    color: #000;
    font-weight: 600;
    font-size: 15px;
    padding: 8px 12px !important;
    text-transform: capitalize;
    white-space: nowrap;
    /* Prevents wrapping bugs like "Contact Us" */
    position: relative;
    transition: color 0.3s ease, padding 0.3s ease;
}

/* Underline slide effect on hover for nav links */
.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 2px;
    background-color: var(--accent-red);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
    transform: scaleX(1);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: var(--accent-red);
}

/* Enable Hover Dropdown */
@media (min-width: 992px) {
    .navbar .dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }
}

/* Responsive navbar adjustments to prevent overflow/wrap */
@media (min-width: 992px) and (max-width: 1199px) {
    .header-logo {
        height: 48px;
    }

    .school-name {
        font-size: 1.15rem;
    }

    .school-location {
        font-size: 0.75rem;
        letter-spacing: 0.8px;
    }

    .navbar .nav-link {
        font-size: 13.5px;
        padding: 6px 8px !important;
    }

    .navbar .nav-link::after {
        left: 8px;
        right: 8px;
    }

    .navbar-nav {
        gap: 0.25rem !important;
        /* tight layout */
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .header-logo {
        height: 55px;
    }

    .school-name {
        font-size: 1.35rem;
    }

    .school-location {
        font-size: 0.8rem;
        letter-spacing: 1.2px;
    }

    .navbar .nav-link {
        font-size: 14.5px;
        padding: 8px 10px !important;
    }

    .navbar .nav-link::after {
        left: 10px;
        right: 10px;
    }

    .navbar-nav {
        gap: 0.5rem !important;
    }
}

/* Dropdown Menu Enhancements */
.dropdown-menu {
    border-radius: 0 0 12px 12px;
    padding: 10px 0;
    min-width: 240px;
    margin-top: 0 !important;
    border: none;
    border-top: 3px solid var(--primary-color);
}

/* Bridge the gap for hover */
.navbar .dropdown {
    position: relative;
}

.navbar .dropdown::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}

.dropdown-item {
    padding: 10px 25px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--top-bar-bg);
    color: var(--primary-color);
    padding-left: 30px;
}

.dropdown-toggle::after {
    display: none;
    /* Hide default Bootstrap arrow */
}

.navbar .dropdown-toggle i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.navbar .dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Utilities */
.fw-600 {
    font-weight: 600;
}

/* Animation */
.animate {
    animation-duration: 0.3s;
    animation-fill-mode: both;
}

@keyframes slideIn {
    0% {
        transform: translateY(1rem);
        opacity: 0;
    }

    100% {
        transform: translateY(0rem);
        opacity: 1;
    }
}

.slideIn {
    animation-name: slideIn;
}

/* ==============================
   HERO SLIDER
   ============================== */
.hero-slider {
    position: relative;
    height: 700px;
    background-color: #f7f5f2;
    overflow: hidden;
}

.hero-item {
    height: 100%;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1523050853063-913ec367e9f1?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

.hero-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 10;
    color: white;
}

.hero-subtitle {
    font-weight: 700;
    color: #ffba00;
    letter-spacing: 2px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-title span {
    color: var(--primary-color);
}

.hero-desc {
    font-size: 1.1rem;
    max-width: 600px;
    opacity: 0.9;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary-custom:hover {
    background-color: #2b2fbe;
    color: white;
    transform: translateY(-3px);
}

.btn-outline-custom {
    background-color: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 8px;
    border: 2px solid white;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline-custom:hover {
    background-color: white;
    color: var(--text-dark);
    transform: translateY(-3px);
}

/* ==============================
   FEATURES SECTION
   ============================== */
.features-section {
    margin-top: -60px;
    position: relative;
    z-index: 20;
}

.features-wrapper {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.feature-item {
    transition: all 0.3s ease;
    background: white;
}

.feature-item:hover {
    background: var(--top-bar-bg);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #fef2f2;
    color: var(--accent-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-slider {
        height: 500px;
    }

    .features-section {
        margin-top: 20px;
    }

    .feature-item {
        border-bottom: 1px solid #eee;
        border-end: none !important;
    }
}

/* ==============================
   EDUBLINK BREADCRUMB
   ============================== */
.edu-breadcrumb {
    padding: 40px 0 40px;
    background-color: #fdf9f9;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.edu-breadcrumb .container {
    position: relative;
    z-index: 10;
}

.edu-breadcrumb .breadcrumb-title {
    font-size: 36px;
    font-weight: 800;
    color: #181818;
    margin-bottom: 15px;
    line-height: 1.2;
}

.edu-breadcrumb .breadcrumb-title span {
    color: var(--edu-teal);
}

.edu-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.edu-breadcrumb .breadcrumb-item {
    font-size: 18px;
    font-weight: 500;
    color: #555;
}

.edu-breadcrumb .breadcrumb-item a {
    color: #181818;
    text-decoration: none;
    transition: color 0.3s ease;
}

.edu-breadcrumb .breadcrumb-item a:hover {
    color: var(--edu-pink);
}

.edu-breadcrumb .breadcrumb-item.active {
    color: var(--edu-pink);
}

.edu-breadcrumb .breadcrumb-item+.breadcrumb-item::before {
    content: "\f105";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #181818;
    padding: 0 10px;
}

.breadcrumb-btn {
    margin-top: 35px;
}

.btn-breadcrumb {
    background-color: var(--edu-pink);
    color: white;
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(238, 74, 98, 0.2);
}

.btn-breadcrumb:hover {
    background-color: #2b2fbe;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 182, 157, 0.2);
}

/* Mouse Scroll Indicator */
.mouse-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.mouse-scroll .mouse {
    width: 24px;
    height: 40px;
    border: 2px solid #ee4a62;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse-scroll .wheel {
    width: 4px;
    height: 8px;
    background: #ee4a62;
    border-radius: 2px;
    animation: mouse-wheel 1.5s infinite;
}

@keyframes mouse-wheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateY(12px);
        opacity: 0;
    }
}

/* Decorative Shapes */
.edu-breadcrumb .shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.edu-breadcrumb .shape-dots-red {
    bottom: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#ee4a62 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.3;
}

.edu-breadcrumb .shape-waves-teal {
    top: 20%;
    left: 12%;
    width: 120px;
    height: 50px;
    opacity: 0.3;
}

.edu-breadcrumb .shape-circle-dashed {
    top: 15%;
    right: 10%;
    width: 160px;
    height: 160px;
    border: 3px dashed #ee4a62;
    border-radius: 50%;
    opacity: 0.2;
    animation: rotate 20s linear infinite;
}

.edu-breadcrumb .shape-dots-green {
    top: 20%;
    right: 12%;
    width: 80px;
    height: 80px;
    background-image: radial-gradient(#2b2fbe 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.2;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.edu-breadcrumb .bg-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

.edu-breadcrumb .bg-circle-1 {
    width: 500px;
    height: 500px;
    background: #fdf2f2;
    top: -150px;
    left: -100px;
}

.edu-breadcrumb .bg-circle-2 {
    width: 400px;
    height: 400px;
    background: #fffcf0;
    bottom: -100px;
    right: -50px;
}

.edu-breadcrumb .bg-circle-3 {
    width: 300px;
    height: 300px;
    background: #f2fdfb;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.4;
}

@media (max-width: 991px) {
    .edu-breadcrumb {
        padding: 60px 0 100px;
        min-height: auto;
    }

    .edu-breadcrumb .shape,
    .edu-breadcrumb .bg-circle {
        display: none;
    }

    .edu-breadcrumb .breadcrumb-title {
        font-size: 36px;
    }
}

/* EduBlink Specific Colors & Redesign */
:root {
    --edu-pink: #ee4a62;
    --edu-teal: #2b2fbe;
    --edu-purple: #8e56ff;
    --edu-yellow: #ffba00;
}

.hero-slider {
    position: relative;
    height: 800px;
    background-color: #f7f5f2;
    overflow: hidden;
}

/* Ken Burns Effect - Alternating Zoom */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: transform 10s ease-in-out;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

.carousel-item.active .hero-bg {
    animation: kenBurnsZoomIn 15s infinite alternate ease-in-out;
}

.carousel-item:nth-child(even).active .hero-bg {
    animation: kenBurnsZoomOut 15s infinite alternate ease-in-out;
}

@keyframes kenBurnsZoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.2);
    }
}

@keyframes kenBurnsZoomOut {
    0% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* Decorative Shapes */
.hero-shape-m {
    margin-bottom: 20px;
    display: block;
}

.hero-shape-m img {
    height: 30px;
    width: auto;
}

.shape-dots {
    position: absolute;
    top: 20%;
    left: 2%;
    z-index: 11;
    opacity: 0.3;
}

/* Carousel Content & Animations */
.hero-content {
    padding-bottom: 150px;
}

.hero-subtitle {
    color: var(--edu-yellow) !important;
    background: transparent;
    display: inline-block;
    padding: 0;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    color: #ffffff !important;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
}

.hero-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    max-width: 550px;
}

/* Entry Animations */
.carousel-item.active .animate-item {
    animation-duration: 0.8s;
    animation-fill-mode: both;
}

.carousel-item.active .hero-shape-m {
    animation-name: fadeInUp;
    animation-delay: 0.1s;
}

.carousel-item.active .hero-subtitle {
    animation-name: fadeInUp;
    animation-delay: 0.2s;
}

.carousel-item.active .hero-title {
    animation-name: fadeInLeft;
    animation-delay: 0.4s;
}

.carousel-item.active .hero-desc {
    animation-name: fadeInUp;
    animation-delay: 0.6s;
}

.carousel-item.active .hero-btns {
    animation-name: fadeInUp;
    animation-delay: 0.8s;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Carousel Buttons (Stacked on Right) */
.carousel-nav-wrapper {
    position: absolute;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 20;
}

.carousel-btn {
    width: 55px;
    height: 55px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    color: #181818;
    font-size: 1.1rem;
}

.carousel-btn:hover {
    background: var(--edu-pink);
    color: white;
    transform: translateX(-5px);
}

/* Shape Divider Styling */
.shape-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 15;
}

.shape-bottom svg {
    width: 100%;
    height: 160px;
}

/* Features Section (Premium Look) */
.features-section {
    margin-top: -140px;
    position: relative;
    z-index: 25;
}

.features-wrapper {
    background: white;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    padding: 0px;
}

.feature-item {
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 20px 20px 0px 0px;
}

.feature-item:hover {
    transform: translateY(0px);

}

.feature-item:nth-child(1):hover {
    background-color: rgba(26, 182, 157, 0.05);
}

.feature-item:nth-child(2):hover {
    background-color: rgba(238, 74, 98, 0.05);
}

.feature-item:nth-child(3):hover {
    background-color: rgba(142, 86, 255, 0.05);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 0;
    background: transparent !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon img,
.feature-icon i {
    width: auto;
    font-size: 2.2rem;
}

.feature-icon.teal-bg i {
    color: var(--edu-teal);
}

.feature-icon.pink-bg i {
    color: var(--edu-pink);
}

.feature-icon.purple-bg i {
    color: var(--edu-purple);
}

.feature-item h6 {
    font-size: 1.1rem;
    color: #181818;
}

.feature-item p {
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 1199px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 991px) {
    .hero-slider {
        height: 600px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-content {
        padding-bottom: 80px;
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 30px;
        font-size: 1rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .carousel-nav-wrapper {
        right: 20px;
        top: auto;
        bottom: 140px;
        flex-direction: row;
        transform: none;
    }

    .shape-arc,
    .shape-dots,
    .hero-shape-m {
        display: none;
    }

    .features-section {
        margin-top: -30px;
    }

    .features-wrapper {
        border-radius: 15px;
        padding: 10px;
    }

    .feature-item {
        border-bottom: 1px solid #eee;
    }

    .feature-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-slider {
        height: 500px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .carousel-nav-wrapper {
        bottom: 100px;
        gap: 10px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 0.9rem;
    }

    .shape-bottom svg {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-slider {
        height: 450px;
    }

    .hero-desc {
        display: none;
    }

    .features-section {
        margin-top: 10px;
    }
}

/* ==============================
   ABOUT SECTION
   ============================== */
.edu-about-area {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about-style-3 .about-image-gallery {
    position: relative;
    padding-right: 50px;
    padding-bottom: 50px;
}

.about-style-3 .about-image-gallery .main-img-1 {
    width: 85%;
    border-radius: 15px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.about-style-3 .about-image-gallery .main-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    border-radius: 15px;
    border: 8px solid #fff;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.about-style-3 .about-image-gallery .shape-group {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-style-3 .about-image-gallery .shape-group li {
    position: absolute;
    z-index: -1;
}

.about-style-3 .about-image-gallery .shape-group li.shape-1 {
    top: -30px;
    left: -30px;
}

.about-style-3 .about-image-gallery .shape-group li.shape-2 {
    top: 50%;
    left: -50px;
    transform: translateY(-50%);
}

.about-style-3 .about-image-gallery .shape-group li.shape-3 {
    top: 10%;
    right: 10%;
}

.about-style-3 .about-image-gallery .shape-group li.shape-4 {
    bottom: 20%;
    left: 20%;
    width: 100px;
    height: 100px;
    background: rgba(238, 74, 98, 0.1);
    border-radius: 50%;
}

.about-content .pre-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--edu-pink);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.about-content .title {
    font-size: 45px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-content .title .color-secondary {
    color: var(--edu-teal);
}

.about-content .nav-tabs {
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    gap: 30px;
}

.about-content .nav-tabs .nav-item {
    margin-bottom: -1px;
}

.about-content .nav-tabs .nav-link {
    border: none;
    padding: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #181818;
    background: transparent;
    position: relative;
    transition: all 0.3s ease;
}

.about-content .nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--edu-pink);
    transition: all 0.3s ease;
}

.about-content .nav-tabs .nav-link.active {
    color: var(--edu-pink);
}

.about-content .nav-tabs .nav-link.active::after {
    width: 100%;
}

.about-content .tab-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 25px;
}

.about-content .features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-content .features-list li {
    font-size: 16px;
    font-weight: 600;
    color: #181818;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-content .features-list li i {
    color: var(--edu-pink);
    font-size: 14px;
}

/* ==============================
   COUNTER SECTION
   ============================== */
.counter-section {
    padding-bottom: 100px;
}

.counter-wrapper {
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
}

.counter-item {
    text-align: center;
    background: #fff;
    padding: 50px 30px 40px;
    border-radius: 20px 20px 20px 80px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    margin-top: 35px;
    overflow: visible;
    /* Ensure icon at top is not clipped */
}

.counter-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.counter-item .counter-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 24px;
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 10;
    /* Ensure icon is on top */
}

.counter-item .counter-icon.teal-bg {
    background-color: var(--edu-teal);
}

.counter-item .counter-icon.pink-bg {
    background-color: var(--edu-pink);
}

.counter-item .counter-icon.purple-bg {
    background-color: var(--edu-purple);
}

.counter-item .counter-icon.yellow-bg {
    background-color: var(--edu-yellow);
}

.counter-item .number {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 5px;
    margin-top: 10px;
}

.counter-item .title {
    font-size: 14px;
    font-weight: 700;
    color: #181818;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.teal-color {
    color: var(--edu-teal);
}

.pink-color {
    color: var(--edu-pink);
}

.purple-color {
    color: var(--edu-purple);
}

.yellow-color {
    color: var(--edu-yellow);
}

/* Responsive */
@media (max-width: 991px) {
    .about-content .title {
        font-size: 32px;
    }

    .about-style-3 .about-image-gallery {
        margin-bottom: 50px;
        padding-right: 30px;
    }

    .counter-wrapper {
        padding: 40px 20px;
    }

    .counter-item {
        margin-bottom: 70px;
    }

    .counter-item:last-child {
        margin-bottom: 0;
    }
}

/* ==============================
   FACILITIES SECTION (CLOUD STYLE)
   ============================== */
.activities-section {
    padding: 100px 0;
    background-color: #f0f4f5;
    position: relative;
    overflow: hidden;
}

.activities-section .container {
    position: relative;
    z-index: 1;
}

.facility-cloud-item {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 40px;
    transition: all 0.4s ease;
}

.facility-cloud-item:hover {
    transform: translateX(10px);
}

.cloud-icon {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease;
}

/* Organic Cloud Shape using the provided image */
.cloud-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: currentColor;
    opacity: 0.15;
    /* Reduced opacity for better icon focus */
    -webkit-mask-image: url('../images/cloud-bg.png');
    mask-image: url('../images/cloud-bg.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    z-index: -1;
    transition: all 0.5s ease;
}

/* Creating the "ghost" cloud effect for depth */
.cloud-icon::after {
    content: '';
    position: absolute;
    inset: -5px;
    background-color: currentColor;
    opacity: 0.2;
    -webkit-mask-image: url('../images/cloud-bg.png');
    mask-image: url('../images/cloud-bg.png');
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: all 0.5s ease;
}

.facility-cloud-item:hover .cloud-icon::before {
    transform: rotate(15deg) scale(1.1);
}

.facility-cloud-item:hover .cloud-icon::after {
    transform: rotate(-15deg) scale(1.2);
    opacity: 0.1;
}

.cloud-icon i {
    color: currentColor;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.facility-cloud-item.teal .cloud-icon {
    color: #2b2fbe;
}

.facility-cloud-item.pink .cloud-icon {
    color: #ee4a62;
}

.facility-cloud-item.purple .cloud-icon {
    color: #9b51e0;
}

.facility-cloud-item.blue .cloud-icon {
    color: #3e64ff;
}

.facility-cloud-item.orange .cloud-icon {
    color: #f2994a;
}

.facility-cloud-item.yellow .cloud-icon {
    color: #f2c94c;
}

.facility-cloud-content .title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
    color: #1e293b;
    font-family: var(--edu-font-outfit);
}

.facility-cloud-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
    max-width: 280px;
}

.activities-section .shape-group {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.activities-section .shape-group li {
    position: absolute;
    list-style: none;
}

.activities-section .shape-group .shape-1 {
    top: 10%;
    left: 5%;
    opacity: 0.5;
}

.activities-section .shape-group .shape-2 {
    bottom: 15%;
    left: 8%;
    opacity: 0.4;
}

.activities-section .shape-group .shape-3 {
    top: 15%;
    right: 5%;
    opacity: 0.6;
}

/* ==============================
   PHOTO GALLERY & UPDATES SECTION
   ============================== */
.gallery-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.gallery-section .section-title {
    margin-bottom: 60px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.gallery-item {
    position: relative;
    padding: 15px;
    width: 25%;
    /* Explicit 4-column width */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item-inner {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    cursor: pointer;
}

.gallery-item-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 31, 110, 0.9) 0%, rgba(0, 31, 110, 0.4) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
    text-align: center;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-item-inner {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26, 182, 157, 0.15);
}

.gallery-item:hover .gallery-item-inner img {
    transform: scale(1.15);
}

.gallery-overlay i {
    font-size: 32px;
    color: #fff;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(4px);
    transform: scale(0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-overlay span {
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

.gallery-view-all {
    text-align: center;
    margin-top: 60px;
}

.btn-gallery-more {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--edu-teal);
    padding: 16px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(26, 182, 157, 0.1);
}

.btn-gallery-more:hover {
    background: var(--edu-teal);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(26, 182, 157, 0.2);
}

@media (max-width: 991px) {
    .gallery-item {
        width: 33.333%;
    }
}

@media (max-width: 767px) {
    .gallery-item {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 100%;
    }
}

.gallery-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 4px;
    background: var(--edu-teal);
    transition: all 0.4s ease;
    border-radius: 2px;
    transform: translateX(-50%);
}

.gallery-item:hover::after {
    width: 40px;
    bottom: -5px;
}

/* Lightbox Styles */
#galleryLightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 40px;
    backdrop-filter: blur(5px);
}

#galleryLightbox.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

#galleryLightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

#galleryLightbox.active img {
    transform: scale(1);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--edu-teal);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: #fff;
    color: var(--edu-teal);
    transform: rotate(90deg);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media (max-width: 767px) {
    #galleryLightbox {
        padding: 20px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* ==============================
   VIDEO TOUR SECTION
   ============================== */
.video-tour-section {
    padding: 120px 0 160px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/video_bg_custom.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    text-align: center;
    color: #ffffff;
}

.video-play-btn {
    width: 90px;
    height: 90px;
    background: #ee4a62;
    color: #fff;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 30px;
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
}

.video-play-btn::before {
    content: '';
    position: absolute;
    inset: -15px;
    border: 1px solid rgba(238, 74, 98, 0.5);
    border-radius: 50%;
    animation: pulse-border 2s infinite;
}

.video-play-btn:hover {
    transform: scale(1.1);
    background: #ffffff;
    color: #ee4a62;
}

@keyframes pulse-border {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.video-tour-section .title {
    font-size: 48px;
    font-weight: 800;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.2;
}

/* Floating Contact Card */
.contact-floating-card {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    background-color: #f8b81f;
    background-image: url('../images/topo_pattern.png');
    background-size: cover;
    background-blend-mode: overlay;
    border-radius: 15px;
    padding: 30px 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.contact-card-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    position: relative;
}

.contact-card-item {
    text-align: left;
    color: #1e293b;
}

.contact-card-item span {
    font-size: 18px;
    font-weight: 500;
    display: block;
    margin-bottom: 5px;
}

.contact-card-item strong {
    font-size: 24px;
    font-weight: 800;
}

.contact-card-item strong a {
    color: #1e293b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-item strong a:hover {
    color: #ffffff;
}

.or-separator {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #181818;
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
    .video-tour-section {
        padding: 80px 0 120px;
    }

    .video-tour-section .title {
        font-size: 32px;
    }

    .contact-floating-card {
        padding: 25px;
        bottom: -100px;
    }

    .contact-card-inner {
        flex-direction: column;
        gap: 20px;
    }

    .or-separator {
        width: 40px;
        height: 40px;
        margin: -10px 0;
    }

    .contact-card-item {
        text-align: center;
    }
}

/* ==============================
   RESPONSIVE OPTIMIZATIONS
   ============================== */

@media (max-width: 1199px) {
    .section-title .title {
        font-size: 40px;
    }
}

@media (max-width: 991px) {
    .section-title .title {
        font-size: 36px;
    }

    .activities-section {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .section-title .title {
        font-size: 32px;
    }

    .top-bar .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .top-bar .v-divider {
        display: none;
    }

    .facility-cloud-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 50px;
    }

    .facility-cloud-content p {
        max-width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 991px) {

    /* Tablet optimization: 2 columns for facilities */
    .activities-section .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* ==============================
   TEAM SECTION
   ============================== */
.team-section {
    padding: 100px 0;
    background-color: #fff;
    position: relative;
}

.team-section .section-title .title {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
}

.team-section .section-title .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 8px;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='8' viewBox='0 0 80 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6C15 2 25 2 40 6C55 10 65 10 78 6' stroke='%231ab69d' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

.team-card {
    position: relative;
    margin-bottom: 60px;
    transition: all 0.4s ease;
}

.team-card-inner {
    position: relative;
    z-index: 1;
}

.team-bg-block {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    background: #e5e7eb;
    border-radius: 15px;
    z-index: -1;
    transition: all 0.4s ease;
}

.team-card.color-1 .team-bg-block {
    background: #e0f2f1;
}

.team-card.color-2 .team-bg-block {
    background: #fdf2f2;
}

.team-card.color-3 .team-bg-block {
    background: #f0f4f8;
}

.team-image {
    border-radius: 15px;
    overflow: hidden;
    margin: 0 15px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-content {
    position: absolute;
    bottom: -30px;
    left: 15px;
    right: 40px;
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.team-content .name {
    font-size: 20px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 5px;
    display: block;
}

.team-content .designation {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-card:hover .team-content {
    background: var(--edu-teal);
    bottom: -20px;
}

.team-content .name a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

.team-card:hover .team-content .name,
.team-card:hover .team-content .designation {
    color: #ffffff;
}

.team-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    margin: 0 15px;
}

.team-share-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border: 2px solid var(--edu-teal);
    color: var(--edu-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    z-index: 2;
    transition: all 0.3s ease;
    cursor: pointer;
}

.team-card:hover .team-share-btn {
    background: var(--edu-teal);
    color: #ffffff;
    transform: rotate(360deg);
}

.team-social-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 182, 157, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.2, 1, 0.3, 1);
}

.team-card:hover .team-social-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.team-social-overlay a {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: var(--edu-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social-overlay a:hover {
    background: var(--edu-teal);
    color: #ffffff;
    transform: scale(1.1);
}

/* Administrative Specific */
.admin-section {
    padding: 100px 0 0;
    background-color: #ffffff;
}

.team-card.color-gold .team-bg-block {
    background: #fffdf5;
    border: 1px solid #f8b81f;
}

.team-card.admin-card:hover .team-content {
    background: #f8b81f;
}

@media (max-width: 991px) {
    .team-card {
        max-width: 400px;
        margin: 0 auto 80px;
    }
}

@media (max-width: 480px) {
    .section-title .title {
        font-size: 28px;
    }

    .top-bar .contact-item {
        font-size: 11px;
        padding: 5px 0;
    }

    .hero-title {
        font-size: 32px !important;
    }
}

/* ==============================
   SCHOOL TOPPER SECTION
   ============================== */
.topper-section {
    padding: 150px 0px 80px 0px;
    background-color: #f7f5f2;
    position: relative;
}

.topper-section .pre-title {
    color: #1a237e;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    display: block;
}

.topper-col-title {
    font-size: 36px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 50px;
}

.topper-divider {
    position: absolute;
    top: 15%;
    bottom: 15%;
    left: 50%;
    width: 1px;
    background: #e2e8f0;
    display: block;
}

.topper-card-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.topper-card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    text-align: center;
    width: calc(33.333% - 14px);
    min-width: 200px;
    transition: transform 0.3s ease;
}

.topper-card:hover {
    transform: translateY(-10px);
}

.topper-img-wrapper {
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
    position: relative;
}

.topper-img-wrapper img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #2b2fbe;
    padding: 5px;
}

.topper-info .name {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.topper-info .percentage {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: #ef4444;
}

@media (max-width: 991px) {
    .topper-divider {
        display: none;
    }

    .topper-col-title {
        font-size: 30px;
        margin-top: 40px;
    }

    .topper-card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 575px) {
    .topper-card {
        width: 100%;
    }
}

/* Topper Background Shapes */
.topper-section {
    overflow: hidden;
}

.topper-shape-group div {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.topper-shape-group .shape-1 {
    width: 400px;
    height: 400px;
    background: rgba(238, 74, 98, 0.05);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.topper-shape-group .shape-2 {
    width: 300px;
    height: 300px;
    background: rgba(238, 74, 98, 0.03);
    border-radius: 50%;
    bottom: -50px;
    right: 5%;
}

.topper-shape-group .shape-3 {
    top: 50px;
    right: 10%;
    opacity: 0.4;
}

.topper-shape-group .shape-3 img {
    width: 150px;
}

.topper-shape-group .shape-4 {
    width: 100px;
    height: 100px;
    border: 15px dashed rgba(238, 74, 98, 0.2);
    border-radius: 50%;
    bottom: 10%;
    right: 2%;
    animation: rotateShape 20s linear infinite;
}

@keyframes rotateShape {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.topper-section .container {
    position: relative;
    z-index: 2;
}

.topper-shape-group .shape-5 {
    top: 15%;
    left: 15%;
    animation: moveSquiggle 10s ease-in-out infinite alternate;
}

@keyframes moveSquiggle {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(50px);
    }
}

.topper-card-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)) !important;
    gap: 15px !important;
    width: 100%;
}

.topper-card {
    width: 100% !important;
    padding: 20px 10px !important;
}

.topper-img-wrapper {
    width: 100px !important;
    height: 100px !important;
}

.topper-info .name {
    font-size: 14px !important;
}

.topper-info .percentage {
    font-size: 16px !important;
}

.topper-img-wrapper img {
    border: none !important;
    padding: 0 !important;
}

.topper-heading-box {
    background: #2b2fbe;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 40px;
    box-shadow: 0 10px 20px rgba(26, 182, 157, 0.2);
}

.topper-heading-box h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 800;
    color: #ffffff !important;
}

.topper-col-box {
    text-align: center;
}

.topper-heading-box .topper-col-title {
    margin-bottom: 0 !important;
    font-size: 20px !important;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-controls .carousel-control-prev,
.carousel-controls .carousel-control-next {
    position: relative;
    width: 45px;
    height: 45px;
    background: #ffffff;
    border: 2px solid #2b2fbe;
    color: #2b2fbe;
    border-radius: 50%;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-controls .carousel-control-prev:hover,
.carousel-controls .carousel-control-next:hover {
    background: #2b2fbe;
    color: #ffffff;
}

.carousel-controls i {
    font-size: 18px;
}

.carousel-inner {
    overflow: visible;
}

/* Fix Carousel Overflow */
.carousel-inner {
    overflow: hidden !important;
}

.topper-card-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 10px !important;
    width: 100% !important;
    margin: 0 !important;
}

.topper-card {
    min-width: 0 !important;
    width: 100% !important;
    padding: 15px 5px !important;
}

.topper-img-wrapper {
    width: 80px !important;
    height: 80px !important;
}

.topper-info .name {
    font-size: 12px !important;
}

.topper-info .percentage {
    font-size: 14px !important;
}

@media (max-width: 1200px) {
    .topper-card-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 575px) {
    .topper-card-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

/* Premium Topper Design Enhancements */
.topper-section {
    background: linear-gradient(135deg, #fcfcfc 0%, #f7f5f2 100%) !important;
}

.topper-heading-box {
    background: linear-gradient(to right, #2b2fbe, #148f7d) !important;
    padding: 12px 40px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(26, 182, 157, 0.3) !important;
}

.topper-card {
    background: #ffffff !important;
    border-bottom: 4px solid #2b2fbe !important;
    border-radius: 20px !important;
    padding: 30px 15px !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.topper-card:hover {
    transform: translateY(-15px) scale(1.02) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
}

.topper-img-wrapper {
    width: 90px !important;
    height: 90px !important;
    margin-bottom: 25px !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1) !important;
    border-radius: 50% !important;
    overflow: hidden !important;
}

.topper-info .name {
    font-size: 15px !important;
    color: #1e293b !important;
    font-weight: 700 !important;
    margin-bottom: 8px !important;
}

.topper-info .percentage {
    background: #fdf2f2 !important;
    color: #ef4444 !important;
    padding: 5px 15px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-weight: 800 !important;
    display: inline-block !important;
}

.carousel-controls .carousel-control-prev,
.carousel-controls .carousel-control-next {
    width: 40px !important;
    height: 40px !important;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
}

/* Reduce Teal/Green Dominance */
.topper-heading-box {
    background: linear-gradient(to right, #f8b81f, #e6a710) !important;
    box-shadow: 0 4px 15px rgba(248, 184, 31, 0.3) !important;
}

.topper-card {
    border-bottom: 4px solid #f8b81f !important;
}

.carousel-controls .carousel-control-prev,
.carousel-controls .carousel-control-next {
    border-color: #f8b81f !important;
    color: #f8b81f !important;
}

.carousel-controls .carousel-control-prev:hover,
.carousel-controls .carousel-control-next:hover {
    background: #f8b81f !important;
    color: #ffffff !important;
}

.topper-shape-group .shape-5 svg path {
    stroke: #f8b81f !important;
}

/* Comprehensive Topper Responsiveness */
@media (max-width: 991px) {
    .topper-col-box {
        margin-bottom: 60px !important;
    }

    .topper-card-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .topper-heading-box {
        padding: 10px 25px !important;
    }

    .topper-heading-box h3 {
        font-size: 18px !important;
    }
}

@media (max-width: 767px) {
    .topper-card-grid {
        grid-template-columns: repeat(1, 1fr) !important;
        max-width: 300px;
        margin: 0 auto !important;
    }

    .topper-section {
        padding: 60px 0 !important;
    }

    .topper-shape-group {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .topper-col-title {
        font-size: 16px !important;
    }

    .topper-heading-box {
        width: 90% !important;
    }
}

/* ==============================
   TESTIMONIALS & EVENTS SECTION
   ============================== */
.testimonials-events-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title-large {
    font-size: 48px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 15px;
    position: relative;
}

.section-title-large .squiggle-underline {
    display: block;
    width: 150px;
    height: 12px;
    background: url("images/shape-04.png") no-repeat;
    background-size: contain;
    margin-bottom: 30px;
}

.section-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 40px;
}

.btn-view-all {
    background-color: #2b2fbe;
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: #148f7d;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Event Card Style */
.event-card-horizontal {
    display: flex;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.event-card-horizontal:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.event-card-img {
    width: 40%;
    min-height: 250px;
}

.event-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-card-content {
    width: 60%;
    padding: 30px;
}

.event-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #2b2fbe;
    font-weight: 600;
}

.event-title {
    font-size: 24px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 10px;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
    margin-bottom: 15px;
}

.event-desc {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 25px;
}

.btn-learn-more {
    padding: 10px 25px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    color: #1e293b;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-learn-more:hover {
    border-color: #2b2fbe;
    color: #2b2fbe;
}

@media (max-width: 991px) {
    .section-title-large {
        font-size: 36px;
    }

    .event-card-horizontal {
        flex-direction: column;
    }

    .event-card-img,
    .event-card-content {
        width: 100%;
    }
}

/* ==============================
   API DYNAMIC COMPONENTS
   ============================== */
/* News Swiper */
.project-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.project-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.project-content {
    padding: 25px;
}

.project-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1e293b;
}

.project-content h4 {
    font-size: 14px;
    color: #2b2fbe;
    margin-bottom: 15px;
}

.project-content p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.view-more {
    color: #2b2fbe;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

/* Topper Owl Carousel */
.team-item-inner {
    background: #fff;
    border-radius: 15px;
    padding: 25px !important;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.team-item-inner:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-circle-img {
    width: 120px !important;
    height: 120px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8b81f;
    margin: 0 auto 15px;
}

.team-name {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.percentage {
    color: #f8b81f;
    font-weight: 800;
    font-size: 16px;
}

/* ==============================
   FOOTER SECTION
   ============================== */
.edu-footer {
    background-color: #111111;
    background-image: url("images/topo_pattern.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 0 0;
    color: #cbd5e1;
    position: relative;
    overflow: hidden;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-logo {
    margin-bottom: 25px;
    display: block;
}

.footer-logo img {
    max-height: 70px;
}

.footer-about-text {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    color: #bababa;
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    gap: 10px;
}

.footer-contact-info li strong {
    color: #ffffff;
}

.footer-title {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: #bababa;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-links li a:hover {
    color: #2b2fbe;
    padding-left: 5px;
}

.footer-newsletter-text {
    font-size: 15px;
    margin-bottom: 25px;
    color: #bababa;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}

.newsletter-form input {
    flex: 1;
    background: #ffffff;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.btn-subscribe {
    background-color: #2b2fbe;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: #148f7d;
    transform: translateY(-2px);
}

.footer-social-links {
    display: flex;
    gap: 15px;
}

.footer-social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-links a:hover {
    background-color: #2b2fbe;
    transform: scale(1.1);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
}

.footer-bottom p a {
    color: #ffc107;
    text-decoration: none;
    font-weight: 600;
}

/* Hover Red for Nav Links */
.nav-link:hover {
    color: #ff0000 !important;
    font-weight: 600;
}

/* Sticky Header */
/* Sticky Header */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    width: 100%;
}

/* Scroll To Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #ee4a62;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    z-index: 999;
    transition: all 0.3s ease;
    border: 3px solid #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.scroll-to-top:hover {
    background: #2b2fbe;
    transform: translateY(-5px);
}

/* ==============================
   PREMIUM NAVY FOOTER DESIGN
   ============================== */
.edu-footer {
    background-color: #0c121d;
    padding: 0;
    color: #a0aec0;
    position: relative;
    overflow: hidden;
}

/* Footer Top Contact Bar */
.footer-top-bar {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066ff, #0033aa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.2);
}

.contact-text span {
    display: block;
    font-size: 14px;
    color: #718096;
    margin-bottom: 5px;
}

.contact-text h5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin: 0;
}

/* Main Footer Content */
.footer-main {
    padding: 100px 0 60px;
    position: relative;
}

.footer-widget {
    margin-bottom: 40px;
}

.footer-widget .logo {
    max-height: 60px;
    margin-bottom: 30px;
}

.footer-widget p {
    line-height: 1.8;
    margin-bottom: 30px;
}

.follow-title {
    color: #ffffff;
    font-weight: 800;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: #0066ff;
    transform: translateY(-3px);
}

.widget-title {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 35px;
    position: relative;
}

.widget-title::after {
    content: \'\';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 2px;
    background: #0066ff;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-menu li::before {
    content: \'�\';
    color: #718096;
}

.footer-menu li a {
    color: #a0aec0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-menu li a:hover {
    color: #0066ff;
    padding-left: 5px;
}

/* Newsletter Widget */
.newsletter-desc {
    font-size: 15px;
    margin-bottom: 25px;
}

.footer-input-group {
    position: relative;
    margin-bottom: 20px;
}

.footer-input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 15px 50px 15px 20px;
    border-radius: 8px;
    color: #ffffff;
    outline: none;
}

.footer-input-group i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #0066ff;
}

.btn-footer-sub {
    width: 100%;
    background: #0066ff;
    color: #ffffff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-footer-sub:hover {
    background: #0044cc;
    transform: translateY(-2px);
}

/* Decorative Background Elements */
.footer-decor-1 {
    position: absolute;
    top: 50px;
    left: 30px;
    opacity: 0.1;
}

.footer-decor-2 {
    position: absolute;
    bottom: 50px;
    right: 30px;
    opacity: 0.1;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #0066ff;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0, 102, 255, 0.3);
    z-index: 999;
}

/* Consolidated from urgent-cause.css */
/* Urgent Cause Fundraiser Styles */
.urgent-cause-section {
    position: relative;
    z-index: 100;
    margin-top: -120px;
    /* Overlap the slider */
    padding-bottom: 80px;
}

.urgent-cause-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border: none;
}

.cause-left {
    background-color: #ffc107;
    /* Bright school yellow */
    padding: 50px 60px;
}

.cause-right {
    background-color: #2b2fbe;
    /* Dark school green */
    padding: 50px 60px;
    color: #fff;
}

.cause-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cause-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 30px !important;
    color: #000;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    line-height: 1.2;
}

.cause-right .cause-title {
    color: #ffffff;
}

.cause-right .cause-title i {
    color: #ffffff;
}

.cause-title i {
    font-size: 28px;
    vertical-align: middle;
    color: #000;
}

/* Most Popular Posts Ticker Styles */
.popular-posts-wrapper {
    height: 400px;
    /* Fixed height for ticker */
    overflow: hidden;
    position: relative;
}

.popular-ticker {
    display: flex;
    flex-direction: column;
    gap: 25px;
    animation: scroll-up 15s linear infinite;
}

.popular-posts-wrapper:hover .popular-ticker {
    animation-play-state: paused;
}

.popular-post-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-thumb {
    width: 150px;
    height: 110px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content .post-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff !important;
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.popular-post-item:hover .post-title {
    color: #ffc107 !important;
}

.post-content .post-date {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-content .post-date::before {
    content: '\f017';
    font-family: 'Font Awesome 5 Free';
    font-weight: 400;
    font-size: 12px;
}

/* Decorative Background for Green Side */
.cause-right {
    background-color: #2b2fbe;
    padding: 50px 60px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cause-right::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    z-index: 1;
}

.cause-right::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: url('../images/dotted-icons.png');
    background-size: contain;
    opacity: 0.1;
    z-index: 1;
}

.cause-inner {
    position: relative;
    z-index: 2;
}

.progress-container {
    margin-bottom: 45px;
    position: relative;
}

/* Announcement Ticker Styles */
.urgent-cause-section .campus-feature-stack {
    height: 380px;
    /* Fixed height for ticker */
    overflow: hidden;
    position: relative;
}

.announcement-ticker {
    display: flex;
    flex-direction: column;
    animation: scroll-up 15s linear infinite;
}

.urgent-cause-section .campus-feature-stack:hover .announcement-ticker {
    animation-play-state: paused;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.progress-info {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.percentage {
    font-weight: 800;
    font-size: 15px;
    color: #1e293b;
}

.progress-bar-wrapper {
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 20px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: #000;
    border-radius: 20px;
}

.cause-stats {
    display: flex;
    justify-content: space-between;
}

.stat-item .label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.stat-item .value {
    font-size: 38px;
    font-weight: 800;
    color: #1e293b;
    line-height: 1;
}

.badge-wrapper {
    margin-bottom: 30px;
}

.badge-pill {
    display: inline-block;
    padding: 10px 30px;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
}

.cause-headline {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.cause-text {
    font-size: 18px;
    line-height: 1.7;
    opacity: 0.95;
    font-weight: 400;
    margin-bottom: 0;
}

/* Announcement Item Enhancements */
.urgent-cause-section .announcement-item {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    text-decoration: none !important;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid #2b2fbe;
    /* Teal accent */
}

.urgent-cause-section .announcement-date {
    width: 65px;
    height: 65px;
    background: #e0f2f1;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.urgent-cause-section .announcement-date .day {
    font-size: 22px;
    font-weight: 800;
    color: #2b2fbe;
    line-height: 1;
}

.urgent-cause-section .announcement-date .month {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #2b2fbe;
    margin-top: 2px;
}

.urgent-cause-section .announcement-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.urgent-cause-section .announcement-content p {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 0;
    line-height: 1.5;
}

.urgent-cause-section .announcement-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f43f5e;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(244, 63, 94, 0.3);
}

.urgent-cause-section .announcement-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #f8fafc;
}

.urgent-cause-section .announcement-item:hover h4 {
    color: #2b2fbe;
}

.urgent-cause-section .announcement-item:hover .announcement-date {
    background: #2b2fbe;
}

.urgent-cause-section .announcement-item:hover .announcement-date .day,
.urgent-cause-section .announcement-item:hover .announcement-date .month {
    color: #fff;
}

.cause-left,
.cause-right {
    padding: 50px;
}

.cause-headline {
    font-size: 36px;
}

.stat-item .value {
    font-size: 32px;
}
}

@media (max-width: 991px) {
    .urgent-cause-section {
        margin-top: 0;
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .urgent-cause-card {
        border-radius: 15px;
    }

    .cause-left,
    .cause-right {
        padding: 40px;
    }

    .cause-headline {
        font-size: 32px;
    }

    .stat-item .value {
        font-size: 28px;
    }
}

@media (max-width: 575px) {

    .cause-left,
    .cause-right {
        padding: 35px 25px;
    }

    .cause-title {
        font-size: 26px;
    }

    .cause-headline {
        font-size: 28px;
    }

    .stat-item .value {
        font-size: 24px;
    }
}

/* Consolidated from footer-redesign.css */
/* ===================================== */
/*         FIXED FOOTER REDESIGN        */
/* ===================================== */
.edu-footer {
    background: #0f172a !important;
    /* Solid dark base for better contrast */
    color: #bababa !important;
    position: relative !important;
    padding-top: 100px !important;
    /* Space for the wave */
}

/* SVG Wave at the top - Now Full Width and Seamless */
.footer-wave {
    position: absolute;
    top: -1px;
    /* Overlap slightly to prevent gaps */
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 10;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 100px;
    /* Increased height for better visibility */
    fill: #ffffff;
    /* Matches the white section above */
}

.footer-top-bar {
    padding: 40px 0 !important;
    position: relative;
    z-index: 11;
    background: transparent !important;
}

.footer-contact-item {
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 25px !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 15px !important;
    transition: all 0.4s ease !important;
    height: 100%;
    /* Ensure equal height */
}

.footer-contact-item:hover {
    transform: translateY(-8px) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #ffc107 !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
}

.footer-contact-item .contact-icon {
    width: 50px !important;
    height: 50px !important;
    background: #ffc107 !important;
    border-radius: 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    font-size: 20px !important;
    flex-shrink: 0 !important;
    box-shadow: none !important;
}

.footer-contact-item .contact-text span {
    display: block !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin-bottom: 4px !important;
    color: #cbd5e1 !important;
    /* Brighter for legibility */
    font-weight: 600 !important;
}

.footer-contact-item .contact-text h5 {
    color: #f8fafc !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    margin: 0 !important;
    word-break: break-word;
    /* Handle long emails/addresses */
}

.footer-main {
    padding: 60px 0px 30px !important;
    background: transparent !important;
}

.footer-widget .widget-title {
    color: #f8fafc !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 30px !important;
    position: relative !important;
}

.footer-widget .widget-title::after {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    bottom: -10px !important;
    width: 35px !important;
    height: 3px !important;
    background: #ffc107 !important;
    border-radius: 10px !important;
}

.footer-widget p {
    line-height: 1.7 !important;
    font-size: 14px !important;
    color: #fff !important;
}

.footer-menu {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-menu li {
    margin-bottom: 14px !important;
}

.footer-menu li a {
    color: #fff !important;
    text-decoration: none !important;
    font-size: 14px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    transition: all 0.3s ease !important;
}

.footer-menu li a i {
    font-size: 10px !important;
    color: #ffc107 !important;
    transition: all 0.3s ease !important;
}

.footer-menu li a:hover {
    color: #fff !important;
    transform: translateX(5px) !important;
}

.footer-socials {
    display: flex !important;
    gap: 12px !important;
    margin-top: 25px !important;
}

.footer-socials a {
    width: 38px !important;
    height: 38px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #fff !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    font-size: 16px !important;
}

.footer-socials a:hover {
    background: #ffc107 !important;
    transform: translateY(-4px) !important;
    border-color: transparent !important;
}

.footer-bottom {
    background: #020617 !important;
    padding: 20px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    text-align: center !important;
}

.footer-bottom p {
    margin: 0 !important;
    font-size: 13px !important;
    color: #fff !important;
}

/* Scroll Top Customization */
.scroll-top {
    width: 45px !important;
    height: 45px !important;
    background: #ffc107 !important;
    box-shadow: 0 8px 20px rgba(254, 193, 7, 0.3) !important;
}

/* Fix for the blue link */
.footer-menu li a[href*="Disclosure"],
.footer-menu li a[href*="disclosure"] {
    color: #fff !important;
}

/* Consolidated from campus-redesign.css */
/* Campus Redesign Styles */
.campus-redesign-section {
    padding: 100px 0;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.campus-redesign-container {
    position: relative;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.campus-image-wrapper {
    width: 50%;
    position: relative;
}

.campus-seal {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 10;
    animation: rotate-slow 20s linear infinite;
}

.seal-inner {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.seal-inner svg {
    width: 100%;
    height: 100%;
    fill: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.seal-year {
    position: absolute;
    font-size: 28px;
    font-weight: 800;
    color: #2b2fbe;
    margin-top: 5px;
    animation: rotate-reverse 20s linear infinite;
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate-reverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.campus-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.campus-card-wrapper {
    width: 55%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.campus-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
}

.campus-card .pre-title {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: #64748b;
    letter-spacing: 2px;
    margin-bottom: 15px;
    display: block;
}

.campus-card .title {
    font-size: 42px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 20px;
    position: relative;
    line-height: 1.2;
}

.text-pink {
    color: #f43f5e;
}

.title-squiggle {
    width: 280px;
    height: 50px;
    margin-top: 5px;
}

.campus-description {
    font-size: 16px;
    color: #64748b;
    line-height: 1.7;
}

.campus-feature-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.campus-feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.feature-icon-box.pink {
    background: #fff1f2;
    color: #f43f5e;
}

.feature-icon-box.teal {
    background: #f0fdfa;
    color: #14b8a6;
}

.feature-icon-box.orange {
    background: #fff7ed;
    color: #f59e0b;
}

.feature-icon-box i {
    font-size: 24px;
}

.feature-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.feature-info p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Decorations */
.campus-decor-dots {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#f43f5e 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.2;
    z-index: 1;
}

.campus-decor-circle {
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border: 2px solid #f1f5f9;
    border-radius: 50%;
    z-index: -1;
}

.campus-decor-circle-2 {
    position: absolute;
    top: 50%;
    right: -100px;
    width: 400px;
    height: 400px;
    border: 2px solid #f1f5f9;
    border-radius: 50%;
    z-index: -1;
}

.apply-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #2b2fbe;
    color: #fff !important;
    padding: 16px 35px;
    border-radius: 0px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(26, 182, 157, 0.25);
}

.apply-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.apply-btn:hover {
    background: #169d87;
    box-shadow: 0 15px 35px rgba(26, 182, 157, 0.35);
}

.apply-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .campus-redesign-container {
        flex-direction: column;
    }

    .campus-image-wrapper,
    .campus-card-wrapper {
        width: 100%;
        position: static;
        transform: none;
    }

    .campus-card {
        padding: 40px;
        margin-top: -50px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
}

/* Consolidated from campus-life.css */
/* ===================================== */
/*         CAMPUS LIFE SECTION          */
/* ===================================== */
.campus-life-section {
    padding: 140px 0;
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

.campus-life-section .container {
    position: relative;
    z-index: 10;
}

/* Background Large Circular Outline */
.campus-life-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.campus-life-section::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.campus-image-container {
    position: relative;
    z-index: 5;
}

.campus-image-container .main-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 3;
}

/* Red Dotted Pattern (Top Right of Card area) */
.campus-decor-dots-red {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#ee4a62 20%, transparent 20%);
    background-size: 15px 15px;
    z-index: 2;
    opacity: 0.4;
}

/* Teal Dotted Blob (Bottom Left of Image) */
.campus-decor-blob-teal {
    position: absolute;
    bottom: -60px;
    left: -80px;
    width: 280px;
    height: 280px;
    background: #f0fdfa;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0.8;
}

.campus-decor-blob-teal::after {
    content: '';
    width: 60%;
    height: 60%;
    background-image: radial-gradient(#2b2fbe 20%, transparent 20%);
    background-size: 12px 12px;
    opacity: 0.3;
}

/* Overlapping Content Card */
.campus-info-card {
    background: #ffffff;
    padding: 70px;
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 15;
    margin-left: -100px;
}

@media (max-width: 991px) {
    .campus-info-card {
        margin-left: 0;
        margin-top: -50px;
        padding: 40px;
    }
}

.campus-info-card .pre-title {
    color: #bababa;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.campus-info-card .title {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

/* Teal Squiggle */
.campus-info-card .squiggle {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 150px;
    height: 12px;
}

.campus-feature-stack {
    margin-top: 40px;
    height: 400px;
    overflow: hidden;
    /* Hide scrollbar for the ticker */
    padding-right: 0;
    position: relative;
}

.announcement-ticker {
    display: flex;
    flex-direction: column;
    animation: scroll-up 20s linear infinite;
}

.campus-feature-stack:hover .announcement-ticker {
    animation-play-state: paused;
}

@keyframes scroll-up {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.announcement-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    border: 1px solid #f1f5f9;
    margin-bottom: 20px;
    text-decoration: none !important;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.announcement-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: #2b2fbe;
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.announcement-item:hover {
    background: #f8fafc;
    border-color: #2b2fbe33;
    transform: translateX(8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.announcement-item:hover::before {
    transform: scaleY(1);
}

.announcement-date {
    width: 65px;
    height: 65px;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s ease;
}

.announcement-item:hover .announcement-date {
    background: #2b2fbe;
    color: #fff;
    transform: rotate(-5deg);
}

.announcement-date .day {
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.announcement-date .month {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.announcement-content {
    flex-grow: 1;
}

.announcement-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 6px;
    transition: color 0.3s ease;
    line-height: 1.4;
}

.announcement-item:hover .announcement-content h4 {
    color: #2b2fbe;
}

.announcement-content p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Status Badge */
.announcement-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 10px;
    font-weight: 800;
    background: #ee4a62;
    color: #fff;
    padding: 2px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Fix for Top Bar */
.top-bar {
    background-color: #2b2fbe !important;
    color: #ffffff !important;
    font-size: 16px;
}

.top-bar .contact-item {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 400 !important;
}

.top-bar .contact-item i {
    color: #ffc107 !important;
}

.top-bar .v-divider {
    background-color: rgba(255, 255, 255, 0.2) !important;
    margin: 0 15px !important;
}

.top-bar .social-link {
    color: rgba(255, 255, 255, 0.9) !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 50% !important;
    width: 30px !important;
    height: 30px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.top-bar .apply-btn {
    background-color: #ffc107 !important;
    color: #000 !important;
    font-weight: 700 !important;
    padding: 12px 25px !important;
    height: 100% !important;
    border: none !important;
}

/* PREMIUM REDESIGN SECTION */
.campus-premium-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.premium-image-composition {
    position: relative;
    padding-right: 30px;
}

.main-image-wrapper {
    position: relative;
    z-index: 2;
}

.secondary-image-wrapper {
    position: absolute;
    bottom: -40px;
    right: -20px;
    width: 250px;
    z-index: 3;
}

.experience-badge {
    position: absolute;
    top: 30px;
    left: -30px;
    background: #2b2fbe;
    color: #fff;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(26, 182, 157, 0.3);
    z-index: 5;
}

.experience-badge .number {
    display: block;
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 5px;
    display: block;
}

.rotating-seal-wrap {
    position: absolute;
    top: -50px;
    right: 20px;
    width: 160px;
    height: 160px;
    z-index: 4;
}

.rotating-seal {
    position: relative;
    width: 100%;
    height: 100%;
    animation: rotate-seal 20s linear infinite;
}

.seal-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
}

@keyframes rotate-seal {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.premium-content-card {
    padding-left: 20px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    background: #ee4a621f;
    color: #ee4a62;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
}

.premium-title {
    font-size: 36px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
}

.text-highlight {
    color: #2b2fbe;
    position: relative;
}

.premium-desc {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
}

.premium-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.p-feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.p-icon {
    width: 50px;
    height: 50px;
    background: #f8fafc;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b2fbe;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.p-feature:hover .p-icon {
    background: #2b2fbe;
    color: #fff;
    transform: translateY(-5px);
}

.btn-premium-solid {
    background: #2b2fbe;
    color: #fff !important;
    padding: 18px 35px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 10px 30px rgba(26, 182, 157, 0.25);
    transition: all 0.3s ease;
}

.btn-premium-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 182, 157, 0.35);
}

.premium-contact-link {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none !important;
    color: #0f172a !important;
}

.c-icon {
    width: 50px;
    height: 50px;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b2fbe;
    font-size: 18px;
}

.c-text span {
    display: block;
    font-size: 12px;
    color: #64748b;
}

.c-text strong {
    display: block;
    font-size: 16px;
}

/* PREMIUM STATS SECTION */
.premium-stats-section {
    padding: 80px 0;
    position: relative;
    margin-top: -60px;
    z-index: 10;
}

.stats-grid-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.stat-premium-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.02);
    height: 100%;
}

.stat-premium-card .card-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.stat-icon {
    width: 65px;
    height: 65px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.4s ease;
}

.card-teal .stat-icon {
    background: #f0fdfa;
    color: #2b2fbe;
}

.card-pink .stat-icon {
    background: #fff1f2;
    color: #f43f5e;
}

.card-purple .stat-icon {
    background: #f5f3ff;
    color: #8b5cf6;
}

.card-gold .stat-icon {
    background: #fffbeb;
    color: #d97706;
}

.stat-info h3 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.2;
}

.stat-info p {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-premium-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.05);
}

.stat-premium-card:hover .stat-icon {
    transform: scale(1.1) rotate(-5deg);
}

.card-teal:hover {
    background: #2b2fbe;
}

.card-pink:hover {
    background: #f43f5e;
}

.card-purple:hover {
    background: #8b5cf6;
}

.card-gold:hover {
    background: #d97706;
}

.stat-premium-card:hover .stat-info h3,
.stat-premium-card:hover .stat-info p,
.stat-premium-card:hover .stat-icon {
    color: #fff !important;
}

.stat-premium-card:hover .stat-icon {
    background: rgba(255, 255, 255, 0.2);
}

/* Adjust Seal Logo Centering */
.seal-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) !important;
    width: 80px !important;
    z-index: 10;
}

.seal-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.rotating-seal-wrap {
    width: 200px !important;
    height: 200px !important;
    top: -100px !important;
    right: -50px !important;
}

/* EXACT CIRCULAR SEAL BADGE */
.premium-seal-badge {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 180px;
    height: 180px;
    z-index: 10;
}

.seal-inner-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.rotating-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate-seal 25s linear infinite;
}

.seal-center-text {
    position: relative;
    z-index: 2;
    text-align: center;
}

.seal-center-text span {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: #2b2fbe;
    line-height: 1;
    letter-spacing: -1px;
}

@keyframes rotate-seal {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* BACKGROUND DECORATIVE ICONS */
.decor-dots-teal {
    position: absolute;
    top: 10%;
    left: 5%;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(#2b2fbe 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.15;
    z-index: 1;
}

.decor-ring-red {
    position: absolute;
    bottom: 15%;
    left: -50px;
    width: 150px;
    height: 150px;
    border: 25px solid #ee4a62;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    animation: float-slow 8s ease-in-out infinite;
}

.decor-dots-red {
    position: absolute;
    top: 20%;
    right: 5%;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#ee4a62 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.1;
    z-index: 1;
    transform: rotate(45deg);
}

@keyframes float-slow {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* EXACT COUNTER REDESIGN (BASED ON SCREENSHOT) */
.stat-premium-card {
    background: #fff !important;
    border-radius: 20px !important;
    padding: 25px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03) !important;
    border: none !important;
}

.stat-premium-card .card-inner {
    display: flex;
    align-items: center;
    gap: 20px !important;
}

.stat-icon {
    width: 70px !important;
    height: 70px !important;
    border-radius: 16px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px !important;
    transition: all 0.3s ease;
}

.stat-info h3 {
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin: 0 !important;
}

.stat-info p {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-top: 4px !important;
}

.stat-premium-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
    background: #fff !important;
}

.stat-premium-card:hover .stat-info h3,
.stat-premium-card:hover .stat-info p {
    color: inherit !important;
}

.card-teal:hover .stat-info h3 {
    color: #2b2fbe !important;
}

.card-pink:hover .stat-info h3 {
    color: #f43f5e !important;
}

.card-purple:hover .stat-info h3 {
    color: #8b5cf6 !important;
}

.card-gold:hover .stat-info h3 {
    color: #d97706 !important;
}

/* VERTICAL FACILITY CARDS (BASED ON SCREENSHOT) */
.facility-premium-card {
    background: #fff !important;
    padding: 40px 30px !important;
    border-radius: 20px !important;
    text-align: center !important;
    transition: all 0.4s ease !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    border: 1px solid rgba(0, 0, 0, 0.03) !important;
    position: relative !important;
    overflow: hidden !important;
}

.facility-premium-card .f-icon {
    width: 85px !important;
    height: 85px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 32px !important;
    margin-bottom: 25px !important;
    transition: all 0.4s ease !important;
}

.facility-premium-card .f-title {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin-bottom: 15px !important;
}

.facility-premium-card .f-desc {
    font-size: 15px !important;
    color: #64748b !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
}

.facility-premium-card .f-badge {
    padding: 6px 20px !important;
    border-radius: 50px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    transition: all 0.4s ease !important;
}

.f-teal {
    background: #f0fdfa !important;
}

.f-teal .f-icon {
    background: #f0fdfa !important;
    color: #2b2fbe !important;
}

.f-teal .f-badge {
    background: #f0fdfa !important;
    color: #2b2fbe !important;
}

.f-pink {
    background: #fff1f2 !important;
}

.f-pink .f-icon {
    background: #fff1f2 !important;
    color: #f43f5e !important;
}

.f-pink .f-badge {
    background: #fff1f2 !important;
    color: #f43f5e !important;
}

.f-purple {
    background: #f5f3ff !important;
}

.f-purple .f-icon {
    background: #f5f3ff !important;
    color: #8b5cf6 !important;
}

.f-purple .f-badge {
    background: #f5f3ff !important;
    color: #8b5cf6 !important;
}

.f-blue {
    background: #eff6ff !important;
}

.f-blue .f-icon {
    background: #eff6ff !important;
    color: #3b82f6 !important;
}

.f-blue .f-badge {
    background: #eff6ff !important;
    color: #3b82f6 !important;
}

.f-orange {
    background: #fff7ed !important;
}

.f-orange .f-icon {
    background: #fff7ed !important;
    color: #f97316 !important;
}

.f-orange .f-badge {
    background: #fff7ed !important;
    color: #f97316 !important;
}

.f-yellow {
    background: #fffbeb !important;
}

.f-yellow .f-icon {
    background: #fffbeb !important;
    color: #eab308 !important;
}

.f-yellow .f-badge {
    background: #fffbeb !important;
    color: #eab308 !important;
}

.facility-premium-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
    border-color: transparent !important;
}

.facility-premium-card:hover .f-icon {
    transform: scale(1.1) !important;
}

/* MODERN STAT BOXES */
.stat-box-modern {
    background: #fff;
    padding: 45px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stat-icon-wrap {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.4s ease;
}

.s-teal {
    background-color: #effaf8 !important;
}

.s-teal .stat-icon-wrap {
    background: #daf4ef !important;
    color: #23b8a1 !important;
}

.s-pink {
    background-color: #fef2f4 !important;
}

.s-pink .stat-icon-wrap {
    background: #fce1e5 !important;
    color: #ee4962 !important;
}

.s-purple {
    background-color: #f2f4fd !important;
}

.s-purple .stat-icon-wrap {
    background: #e0e5fa !important;
    color: #4766e5 !important;
}

.s-gold {
    background-color: #fff7ef !important;
}

.s-gold .stat-icon-wrap {
    background: #feedda !important;
    color: #f8941f !important;
}

.counter-num,
.stat-content h2 {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.stat-box-modern:hover {
    transform: translateY(-12px);

}

.stat-box-modern:hover .stat-icon-wrap {
    transform: scale(1.1) rotate(5deg);
}

.stat-box-modern::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 109, 91, 0.03) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-box-modern:hover::after {
    opacity: 1;
}

/* ============================================
   MISSION & VISION SECTION
   ============================================ */
.mission-vision-section {
    padding: 80px 0;
    background: #fff;
}

.mv-section-header {
    margin-bottom: 50px;
}

.mv-school-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #1a6fc4;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.mv-main-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin: 0;
}

/* Mission / Vision Cards */
.mv-card {
    padding: 10px 0;
}

.mv-card-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 18px;
}

.mv-card-text {
    font-size: 0.96rem;
    line-height: 1.85;
    color: #64748b;
    margin: 0;
}

.mv-highlight {
    color: #1a6fc4;
    font-style: normal;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: rgba(26, 111, 196, 0.3);
}

/* Center Image Block */
.mv-center-block {
    display: flex;
    justify-content: center;
}

.mv-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 360px;
}

.mv-center-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* 45+ Badge */
.mv-experience-badge {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    background: #0f172a;
    color: #fff;
    padding: 24px 20px;
    text-align: center;
    border-radius: 6px;
    min-width: 110px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.mv-badge-num {
    display: block;
    font-size: 2.6rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -1px;
}

.mv-badge-text {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 6px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 991px) {
    .mv-experience-badge {
        right: 0;
        top: auto;
        bottom: -20px;
        transform: none;
    }

    .mv-center-img {
        height: 280px;
    }

    .mv-center-block {
        margin-bottom: 40px;
    }
}

@media (max-width: 575px) {
    .mv-main-title {
        font-size: 1.7rem;
    }

    .mv-card-title {
        font-size: 1.4rem;
    }

    .mv-experience-badge {
        position: static;
        transform: none;
        display: inline-flex;
        gap: 12px;
        align-items: center;
        margin-top: 16px;
        border-radius: 8px;
        min-width: unset;
    }
}

/* ============================================
   MISSION & VISION v2 — PREMIUM REDESIGN
   ============================================ */
.mv2-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 50%, #f5f0ff 100%);
    overflow: hidden;
}

/* Decorative blobs */
.mv2-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.mv2-blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #3b82f6, transparent);
    top: -100px;
    left: -100px;
}

.mv2-blob-2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #8b5cf6, transparent);
    bottom: -80px;
    right: -80px;
}

/* Container sits above blobs */
.mv2-section .container {
    position: relative;
    z-index: 1;
}

/* ---- Header ---- */
.mv2-header {
    margin-bottom: 60px;
}

.mv2-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.mv2-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 14px;
}

.mv2-title-highlight {
    color: 181818;

}

.mv2-subtitle {
    font-size: 1.05rem;
    color: #64748b;
    margin: 0;
}

/* ---- Cards ---- */
.mv2-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 24px;
    padding: 50px 40px;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05),
        0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.7);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.mv2-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    transition: height 0.3s ease;
}

.mv2-mission-card::before {
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
}

.mv2-vision-card::before {
    background: linear-gradient(90deg, #8b5cf6, #6366f1);
}

.mv2-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(99, 102, 241, 0.08);
    background: #ffffff;
}

.mv2-card:hover::before {
    height: 8px;
}

/* Icon circle */
.mv2-card-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 30px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mv2-card:hover .mv2-card-icon-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.mv2-teal-icon {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: #fff;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.3);
}

.mv2-blue-icon {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
    color: #fff;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.mv2-card-heading {
    font-size: 1.8rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.mv2-card-body {
    font-size: 0.98rem;
    line-height: 1.85;
    color: #475569;
    margin-bottom: 16px;
}

/* Pill tags */
.mv2-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.mv2-pill {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(14, 165, 233, 0.06);
    color: #0284c7;
    border: 1px solid rgba(14, 165, 233, 0.15);
    transition: all 0.3s ease;
}

.mv2-pill i {
    transition: transform 0.3s ease;
}

.mv2-card:hover .mv2-pill {
    background: rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.25);
}

.mv2-card:hover .mv2-pill i {
    transform: scale(1.2);
}

.mv2-pill-blue {
    background: rgba(139, 92, 246, 0.06);
    color: #7c3aed;
    border-color: rgba(139, 92, 246, 0.15);
}

.mv2-card:hover .mv2-pill-blue {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.25);
}

/* ---- Center Divider & Badge ---- */
.mv2-timeline-divider {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(59, 130, 246, 0.2) 15%, rgba(139, 92, 246, 0.2) 85%, transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.mv2-timeline-divider::before {
    content: '';
    position: absolute;
    top: 15%;
    bottom: 15%;
    left: 0;
    right: 0;
    border-left: 2px dashed rgba(99, 102, 241, 0.4);
}

.mv2-center-badge-wrap {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* 45+ badge */
.mv2-years-badge {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    color: #fff;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.25),
        0 0 0 10px rgba(59, 130, 246, 0.05),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.mv2-years-badge:hover {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.35),
        0 0 0 15px rgba(59, 130, 246, 0.08);
}

.mv2-years-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
}

.mv2-years-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    opacity: 0.9;
    line-height: 1.3;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .mv2-title {
        font-size: 2.2rem;
    }

    .mv2-card {
        padding: 40px 30px;
    }

    .mv2-years-badge {
        width: 130px;
        height: 130px;
    }

    .mv2-years-num {
        font-size: 2.2rem;
    }
}

@media (max-width: 575px) {
    .mv2-section {
        padding: 70px 0;
    }

    .mv2-title {
        font-size: 1.8rem;
    }

    .mv2-card {
        padding: 35px 20px;
    }

    .mv2-pill {
        padding: 6px 14px;
        font-size: 0.8rem;
    }
}

/* DEEPER SHADOW BOXES */


.stat-box-modern {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08) !important;
}

.premium-content-card {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12) !important;
    background: #ffffff;
    border-radius: 24px;
    padding: 50px !important;
}

.facility-cloud-item {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

/* ADMINISTRATIVE / TEAM SECTION REDESIGN */
.team-section {
    padding: 140px 0 100px;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.title-underline-wrap {
    position: relative;
    display: inline-block;
}

.squiggle-underline {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg width='100' height='10' viewBox='0 0 100 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5 Q 12.5 0, 25 5 T 50 5 T 75 5 T 100 5' stroke='%231ab69d' stroke-width='3' fill='none'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
}

.team-card {
    position: relative;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-card-inner {
    position: relative;
}

.team-bg-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85%;
    background: #fef3c7;
    z-index: 1;
    border-radius: 20px 20px 0 0;
    transition: all 0.4s ease;
}

.team-image {
    position: relative;
    z-index: 2;
    padding: 20px;
    text-align: center;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    border-radius: 15px;
    transition: all 0.5s ease;
    filter: grayscale(20%);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.team-content {
    position: relative;
    z-index: 3;
    background: #fff;
    margin: -50px 20px 20px;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid #2b2fbe;
    transition: all 0.4s ease;
}

.team-card:hover .team-content {
    transform: translateY(-5px);
    border-bottom-color: #ee4a62;
}

.team-content .name {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 5px;
}

.team-content .designation {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-share-btn {
    position: absolute;
    top: 35px;
    right: 35px;
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b2fbe;
    cursor: pointer;
    z-index: 4;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-share-btn:hover {
    background: #2b2fbe;
    color: #fff;
}

/* TEAM SECTION DECORATIONS */
.team-left-decor {
    position: absolute;
    left: -100px;
    top: 20%;
    width: 400px;
    height: 400px;
    background: rgba(26, 182, 157, 0.03);
    border-radius: 50%;
    z-index: -1;
}

.team-right-decor {
    position: absolute;
    right: -50px;
    bottom: 10%;
    width: 250px;
    height: 250px;
    border: 40px solid rgba(238, 74, 98, 0.03);
    border-radius: 50%;
    z-index: -1;
}

/* HOVER SOCIALS */
.team-social-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.team-card:hover .team-social-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.team-social-overlay a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b2fbe;
    text-decoration: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-social-overlay a:hover {
    background: #2b2fbe;
    color: #fff;
    transform: translateY(-3px);
}

/* IMAGE OVERLAY ON HOVER */
.team-image::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(26, 182, 157, 0.7);
    border-radius: 15px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.team-card:hover .team-image::after {
    opacity: 1;
}

/* RIGHT SIDE IMAGE DECOR */
.team-right-image-decor {
    position: absolute;
    right: 0;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 10px;
    background: url("data:image/svg+xml,%3Csvg width='100' height='10' viewBox='0 0 100 10' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5 Q 12.5 0, 25 5 T 50 5 T 75 5 T 100 5' stroke='%231ab69d' stroke-width='3' fill='none'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
}

.team-card {
    position: relative;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.team-card-inner {
    position: relative;
}

.team-bg-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 85%;
    background: #fef3c7;
    z-index: 1;
    border-radius: 20px 20px 0 0;
    transition: all 0.4s ease;
}

.team-image {
    position: relative;
    z-index: 2;
    padding: 20px;
    text-align: center;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    border-radius: 15px;
    transition: all 0.5s ease;
    filter: grayscale(20%);
}

.team-card:hover .team-image img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.team-content {
    position: relative;
    z-index: 3;
    background: #fff;
    margin: -50px 20px 20px;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid #2b2fbe;
    transition: all 0.4s ease;
}

.team-card:hover .team-content {
    transform: translateY(-50px);
    border-bottom-color: #ee4a62;
}

.team-content .name {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 5px;
}

.team-content .designation {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-share-btn {
    position: absolute;
    top: 35px;
    right: 35px;
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b2fbe;
    cursor: pointer;
    z-index: 4;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-share-btn:hover {
    background: #2b2fbe;
    color: #fff;
}

/* TEAM SECTION DECORATIONS */
.team-left-decor {
    position: absolute;
    left: -100px;
    top: 20%;
    width: 400px;
    height: 400px;
    background: rgba(26, 182, 157, 0.03);
    border-radius: 50%;
    z-index: -1;
}

.team-right-decor {
    position: absolute;
    right: -50px;
    bottom: 10%;
    width: 250px;
    height: 250px;
    border: 40px solid rgba(238, 74, 98, 0.03);
    border-radius: 50%;
    z-index: -1;
}

/* HOVER SOCIALS */
.team-social-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    display: flex;
    gap: 10px;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 5;
}

.team-card:hover .team-social-overlay {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.team-social-overlay a {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2b2fbe;
    text-decoration: none !important;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.team-social-overlay a:hover {
    background: #2b2fbe;
    color: #fff;
    transform: translateY(-3px);
}

/* IMAGE OVERLAY ON HOVER */
.team-image::after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(26, 182, 157, 0.7);
    border-radius: 15px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: 3;
}

.team-card:hover .team-image::after {
    opacity: 1;
}

/* RIGHT SIDE IMAGE DECOR */
.team-right-image-decor {
    position: absolute;
    right: 0;
    top: 10%;
    width: 200px;
    height: 300px;
    z-index: -1;
    opacity: 0.5;
    pointer-events: none;
}

.team-right-image-decor img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* REDUCING YELLOW - THEME UPDATES */
.team-bg-block {
    background: #f0fdfa !important;
}

.topper-badge {
    background: #2b2fbe !important;
    color: #fff !important;
}

.contact-floating-card {
    background: #ffc107 !important;
    border-top: 5px solid #ffc107 !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1) !important;
    color: #000 !important;
}

.contact-floating-card strong a {
    color: #000 !important;
}

.contact-card-item span {
    color: #000 !important;
}

.or-separator {
    background: #2b2fbe !important;
    color: #fff !important;
}

.btn-topper-switch {
    background: #2b2fbe !important;
    color: #fff !important;
    border: none !important;
}

.btn-topper-switch.active {
    background: #ee4a62 !important;
}

/* MORE REDUCTION OF YELLOW */
.topper-heading-box {
    background: #2b2fbe !important;
    border-radius: 12px;
}

.topper-col-title {
    color: #fff !important;
}

.topper-percentage {
    color: #2b2fbe !important;
}

.topper-card {
    border-bottom: 3px solid #2b2fbe !important;
}

.team-bg-block {
    background: #f0fdfa !important;
}

/* CAROUSEL ARROWS COLOR CHANGE TO TEAL */
.carousel-control-prev,
.carousel-control-next {
    background-color: #2b2fbe !important;
    border: 1px solid #2b2fbe !important;
    color: #fff !important;
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #ee4a62 !important;
    border-color: #ee4a62 !important;
    transform: scale(1.1);
}

.carousel-control-prev i,
.carousel-control-next i {
    color: #fff !important;
}

/* FIX CAROUSEL ARROWS VISIBILITY */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
    position: relative;
    z-index: 10;
}

.carousel-controls .carousel-control-prev,
.carousel-controls .carousel-control-next {
    position: relative !important;
    width: 45px !important;
    height: 45px !important;
    background: #2b2fbe !important;
    border-radius: 50% !important;
    opacity: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.carousel-controls .carousel-control-prev i,
.carousel-controls .carousel-control-next i {
    color: #ffffff !important;
    font-size: 16px !important;
    opacity: 1 !important;
    display: block !important;
}

.carousel-controls .carousel-control-prev:hover,
.carousel-controls .carousel-control-next:hover {
    background: #ee4a62 !important;
    transform: scale(1.1);
}

/* RESPONSIVE OPTIMIZATIONS */
@media (max-width: 991px) {
    .team-section {
        padding: 80px 0;
    }

    .team-content {
        margin: -30px 10px 10px;
        padding: 20px 15px;
    }

    .team-content .name {
        font-size: 18px;
    }

    .topper-section {
        padding: 80px 0;
    }

    .topper-col-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .stat-box-modern {
        padding: 30px 15px;
    }

    .counter-num {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .section-title .title {
        font-size: 28px !important;
    }

    .team-left-decor,
    .team-right-decor,
    .team-right-image-decor {
        display: none;
    }

    .topper-card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .carousel-controls {
        margin-top: 20px;
        gap: 10px;
    }

    .carousel-controls .carousel-control-prev,
    .carousel-controls .carousel-control-next {
        width: 40px !important;
        height: 40px !important;
    }

    .premium-title {
        font-size: 32px !important;
    }

    .stat-box-modern {
        margin-bottom: 20px;
    }
}

/* FOOTER LEGAL LINKS */
.footer-legal-links a {
    color: #64748b;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-legal-links a:hover {
    color: #2b2fbe;
}

@media (max-width: 767px) {
    .footer-legal-links {
        gap: 15px !important;
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* DARK FOOTER THEME */
.edu-footer {
    background-color: #111212 !important;
    color: #ffffff;
}

.footer-main {
    background-color: #111212 !important;
}

.widget-title {
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 30px;
}

.footer-widget p {
    color: #fff;
    line-height: 1.8;
}

.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu li a {
    color: #fff !important;
    text-decoration: none !important;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-menu li a:hover {
    color: #ffc107 !important;
    transform: translateX(5px);
}

.footer-bottom {
    background-color: #0a0b0b !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: #fff !important;
}

.footer-legal-links a {
    color: #bababa !important;
}

.footer-legal-links a:hover {
    color: #ffc107 !important;
}

.footer-contact-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.footer-contact-item:hover {
    background: rgba(26, 182, 157, 0.1);
    border-color: #2b2fbe;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #2b2fbe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    margin-bottom: 15px;
}

.contact-text span {
    color: #fff;
    font-size: 13px;
    display: block;
    margin-bottom: 5px;
}

.contact-text h5 {
    color: #fff !important;
    margin: 0;
    font-size: 18px;
}

/* FORCE SINGLE ITEM PER ROW ON MOBILE FOR ALL GRIDS */
@media (max-width: 575px) {
    .topper-card-grid {
        grid-template-columns: 1fr !important;
    }

    .gallery-grid .col-sm-6 {
        width: 100% !important;
    }

    .row.g-4 .col-md-6 {
        width: 100% !important;
    }

    .stat-box-modern {
        margin-bottom: 30px;
    }

    .topper-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .topper-card {
        max-width: 100%;
    }
}

/* HIDE FACILITIES BACKGROUND SHAPES ON MOBILE */
@media (max-width: 767px) {
    .activities-section .shape-group {
        display: none !important;
    }
}

/* ==============================
   ABOUT PAGE CONTENT STYLES
   ============================== */
.about-section-badge {
    color: #00665e;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    margin-bottom: 1rem;
    display: block;
}

.about-main-title {
    color: #1a1a1a;
    font-weight: 700;
}

.about-main-title .highlight {
    color: #00665e;
}

.about-lead-text {
    color: #4a4a4a;
    line-height: 1.8;
}

.about-content-text {
    color: #666;
    line-height: 1.8;
    font-size: 17px;
}

/* ==============================
   UTILITY CLASSES FOR INDEX.HTML
   ============================== */
.view-all-link-dark {
    color: #000 !important;
    font-weight: 700;
    text-decoration: none !important;
    font-size: 15px;
}

.view-all-link-light {
    color: #fff !important;
    font-weight: 700;
    text-decoration: none !important;
    font-size: 15px;
}

.text-right-align {
    text-align: right;
}

/* ==============================
   EDUCATION FEATURES SECTION
   ============================== */
.edu-features-section {
    padding: 100px 0;
    position: relative;
    background: #fff;
    overflow: hidden;
}

.edu-features-section .decor-dots {
    position: absolute;
    top: 50%;
    left: 2%;
    transform: translateY(-50%);
    width: 150px;
    height: 150px;
    opacity: 0.1;
    background-image: radial-gradient(#2b2fbe 2px, transparent 2px);
    background-size: 15px 15px;
}

.edu-features-section .decor-circle {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(26, 182, 157, 0.05);
    border-radius: 50%;
}

.edu-features-section .section-header {
    margin-bottom: 80px;
}

.edu-features-section .header-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
}

.edu-features-section .header-title span {
    color: #ee4a62;
    position: relative;
    display: inline-block;
}

.edu-features-section .header-title .highlight-line {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 12px;
    background: url("data:image/svg+xml,%3Csvg width='150' height='12' viewBox='0 0 150 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 10C25 5.5 50 5.5 75 7.5C100 9.5 125 9.5 149 1' stroke='%231ab69d' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
}

.edu-features-section .header-desc {
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}

.feature-card-modern {
    background: #fff;
    padding: 60px 40px 40px;
    border-radius: 24px 80px 24px 80px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.4s ease;
    height: 100%;
    text-align: center;
    border: 1px solid #f1f5f9;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    border-color: #e2e8f0;
}

.feature-card-modern .card-icon {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #fff;
    position: absolute;
    top: -38px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card-modern.teal .card-icon {
    background: #2b2fbe;
}

.feature-card-modern.pink .card-icon {
    background: #ee4a62;
}

.feature-card-modern.blue .card-icon {
    background: #3b82f6;
}

.feature-card-modern h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.feature-card-modern p {
    color: #64748b;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ==============================
   MISSION & VISION SECTION
   ============================== */
.mission-vision-section {
    padding: 120px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.mission-vision-section .section-badge {
    color: #2b2fbe;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.mission-vision-section .section-title {
    font-size: 52px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 80px;
}

.mv-content-box {
    padding: 20px;
}

.mv-content-box h3 {
    font-size: 48px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 30px;
}

.mv-content-box p {
    color: #475569;
    font-size: 16px;
    line-height: 1.9;
}

.mv-image-wrapper {
    position: relative;
    padding: 0 15px;
    text-align: center;
}

.mv-image-wrapper .main-mv-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 2;
}

.experience-badge-mv {
    position: absolute;
    top: 40px;
    right: -10px;
    background: #003049;
    color: #fff;
    padding: 25px 30px;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 48, 73, 0.4);
    z-index: 5;
}

.experience-badge-mv .years {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge-mv .text {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 8px;
}

@media (max-width: 1199px) {
    .mv-content-box h3 {
        font-size: 38px;
    }

    .experience-badge-mv {
        padding: 15px 20px;
        right: 0;
    }

    .experience-badge-mv .years {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .mv-image-wrapper {
        margin: 60px 0;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .edu-features-section .header-title {
        font-size: 34px;
    }

    .mission-vision-section .section-title {
        font-size: 40px;
        margin-bottom: 50px;
    }
}

/* ==============================
   ABOUT PAGE SECTIONS
   ============================== */

/* Welcome Section */
.about-welcome-section {
    padding: 120px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.premium-image-composition {
    position: relative;
    padding-right: 50px;
    padding-bottom: 50px;
}

.main-image-wrap {
    position: relative;
    z-index: 2;
}

.main-image-wrap img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.secondary-image-wrap {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 60%;
    z-index: 3;
    border: 10px solid #fff;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.secondary-image-wrap img {
    width: 100%;
    border-radius: 20px;
}

.composition-shapes {
    position: absolute;
    top: -40px;
    left: -40px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(#2b2fbe 2px, transparent 2px);
    background-size: 20px 20px;
    z-index: 1;
    opacity: 0.3;
}

.composition-circle {
    position: absolute;
    bottom: 20%;
    left: -30px;
    width: 100px;
    height: 100px;
    background: #fdf2f2;
    border-radius: 50%;
    z-index: 1;
}

/* Rotating Seal */
.rotating-seal-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    z-index: 10;
}

.rotating-seal-wrap .seal-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.rotating-seal-wrap .rotating-text {
    animation: rotate 20s linear infinite;
    width: 100%;
    height: 100%;
}

.rotating-seal-wrap .seal-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--edu-pink);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.student-badge-premium {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--edu-pink);
    color: white;
    padding: 20px 25px;
    border-radius: 20px;
    text-align: center;
    z-index: 11;
    box-shadow: 0 10px 25px rgba(238, 74, 98, 0.3);
}

.student-badge-premium h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 0;
}

.student-badge-premium span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.welcome-text .display-5 {
    color: #181818;
    line-height: 1.2;
}

.welcome-text .display-5 span {
    color: var(--edu-teal);
    position: relative;
}

.welcome-text .display-5 span::after {
    content: "";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(26, 182, 157, 0.1);
    z-index: -1;
}

.section-label {
    color: var(--edu-teal);
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 15px;
}

/* Mission & Vision */
.mission-vision-section {
    padding: 80px 0;
    background: #fff;
}

.mv-content {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
}

.mv-image-center {
    position: relative;
    text-align: center;
}

.mv-image-center img {
    border-radius: 20px;
    width: 100%;
}

.experience-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #003366;
    color: white;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.experience-badge h4 {
    margin: 0;
    font-size: 28px;
    font-weight: 800;
}

.experience-badge p {
    margin: 0;
    font-size: 12px;
}

/* Why Choose Us */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/video_bg_custom.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
}

.choice-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
    margin-top: 60px;
    position: relative;
}

.choice-item {
    position: relative;
    z-index: 2;
}

.choice-icon {
    width: 100px;
    height: 100px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--edu-teal);
    font-size: 32px;
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.1);
}

.choice-item h5 {
    font-weight: 700;
}

.choice-number {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #003366;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.flow-line {
    position: absolute;
    top: 50px;
    left: 20%;
    right: 20%;
    height: 2px;
    border-top: 2px dashed rgba(255, 255, 255, 0.3);
    z-index: 1;
}

/* Team Messages */
.team-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    height: 100%;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-image {
    height: 350px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info {
    padding: 25px;
    position: relative;
}

.team-info h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.team-info p {
    color: #666;
    margin: 0;
}

.share-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 40px;
    height: 40px;
    background: #003366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
}

@media (max-width: 991px) {
    .choice-flow {
        flex-direction: column;
        gap: 50px;
    }

    .flow-line {
        display: none;
    }

    .welcome-image-grid {
        grid-template-columns: 1fr;
    }
}

/* ==============================
   ACADEMIC & AFFILIATION SECTION
   ============================== */
.about-academics-section {
    padding: 100px 0;
    background-color: #ffffff;
}

.academic-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 15px 10px;
    border: 1px solid #f1f5f9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.academic-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08) !important;
    border-color: rgba(0, 3, 110, 0.1);
}

.academic-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 25px;
    transition: transform 0.3s ease;
}

.academic-card:hover .academic-icon {
    transform: rotateY(180deg);
}

.academic-icon.teal {
    background-color: rgba(26, 182, 157, 0.1);
    color: #1ab69d;
}

.academic-icon.pink {
    background-color: rgba(238, 74, 98, 0.1);
    color: #ee4a62;
}

.academic-icon.purple {
    background-color: rgba(142, 86, 255, 0.1);
    color: #8e56ff;
}

.academic-icon.yellow {
    background-color: rgba(255, 186, 0, 0.1);
    color: #ffba00;
}

.academic-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 15px;
}

.academic-card-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* ==============================
   CAMPUS INFRASTRUCTURE SECTION
   ============================== */
.about-infra-section {
    padding: 100px 0;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.about-infra-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.about-infra-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    pointer-events: none;
}

.about-infra-section .row {
    display: flex;
    flex-wrap: wrap;
}

.about-infra-section [class*="col-"] {
    display: flex;
    flex-direction: column;
}

.infra-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
}

.infra-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15) !important;
}

.infra-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.infra-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.infra-card:hover .infra-image-wrapper img {
    transform: scale(1.1);
}

.infra-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--accent-red);
    color: #ffffff;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 50px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(238, 74, 98, 0.3);
}

.infra-card-body {
    padding: 30px;
}

.infra-title {
    font-size: 20px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.infra-text {
    font-size: 15px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {

    .about-academics-section,
    .about-infra-section {
        padding: 60px 0;
    }

    .academic-card {
        padding: 25px 20px;
    }

    .infra-card-body {
        padding: 20px;
    }

    .infra-image-wrapper {
        height: 180px;
    }
}

/* Administrator Quotes in About Page */
.admin-quote {
    background: #f8fafc;
    border-left: 3px solid var(--primary-color);
    padding: 12px 16px;
    border-radius: 0 8px 8px 0;
    font-size: 14px;
    line-height: 1.5;
    color: #475569;
    font-style: italic;
}

/* Scroll Top mobile overlay fix */
@media (max-width: 767px) {
    .scroll-top {
        bottom: 15px;
        right: 15px;
        width: 38px !important;
        height: 38px !important;
        font-size: 14px;
    }
}

/* Custom About Us Collage and Tabs Adjustments */
.about-content .title .color-secondary {
    color: #1ab69d !important;
}

.about-content .title-underline-wrap {
    margin-top: -25px;
    margin-bottom: 30px;
}

.about-content .title-underline-svg {
    display: block;
}

.about-content .nav-tabs .nav-item-divider {
    color: #cbd5e1;
    font-size: 16px;
    font-weight: 300;
    align-self: center;
    margin-bottom: 10px;
    pointer-events: none;
    user-select: none;
}

.about-style-3 .about-image-gallery .shape-group li.shape-1 img {
    filter: invert(53%) sepia(35%) saturate(3033%) hue-rotate(130deg) brightness(93%) contrast(85%);
    /* makes dots green/teal */
}

/* Custom About Us New Layout Adjustments */
.custom-stats-badge {
    position: absolute;
    bottom: -10px;
    right: 30px;
    background-color: #ffba00;
    padding: 25px 35px;
    border-radius: 20px 20px 0 20px;
    z-index: 2;
    text-align: left;
}

.custom-stats-badge .badge-text {
    font-size: 14px;
    color: #181818;
    font-weight: 700;
}

.custom-stats-badge .badge-num {
    font-size: 42px;
    color: #181818;
    font-weight: 800;
    margin-top: 5px;
}

.shape-arc-custom {
    position: absolute;
    top: -20px;
    left: -20px;
    z-index: -1;
}

.custom-pre-title {
    color: #0b5fb5 !important;
    letter-spacing: 1px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.custom-main-title {
    font-size: 46px !important;
    line-height: 1.2 !important;
    color: #181818 !important;
    font-weight: 700 !important;
}

.custom-about-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Custom Why Choose Section */
.why-choose-area-custom {
    background-color: #fff;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
}

.custom-pre-title-gray {
    color: #888;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    display: block;
}

.custom-main-title-choose {
    font-size: 40px;
    font-weight: 800;
    color: #181818;
    line-height: 1.3;
}

.custom-main-title-choose .color-pink {
    color: #181818;
}

.title-underline-custom {
    margin-top: -10px;
}

.features-card-custom {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    height: 100%;
    border-radius: 12px !important;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08) !important;
}

.features-card-custom:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12) !important;
}

.features-card-custom .card-title {
    font-size: 22px;
    color: #181818;
}

.icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
}

.icon-wrap-green {
    background-color: rgba(26, 182, 157, 0.1);
    color: #1ab69d;
}

.icon-wrap-pink {
    background-color: rgba(238, 74, 98, 0.1);
    color: #ee4a62;
}

.icon-wrap-blue {
    background-color: rgba(11, 95, 181, 0.1);
    color: #0b5fb5;
}

.shape-dot-green {
    position: absolute;
    top: 15%;
    left: 5%;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(#1ab69d 20%, transparent 20%);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: -1;
}

.shape-dot-red {
    position: absolute;
    top: 15%;
    right: 5%;
    width: 120px;
    height: 120px;
    background-image: radial-gradient(#ee4a62 20%, transparent 20%);
    background-size: 20px 20px;
    opacity: 0.5;
    z-index: -1;
}

.shape-circle-yellow {
    position: absolute;
    bottom: -30px;
    right: 15%;
    width: 100px;
    height: 100px;
    border: 15px solid #ffba00;
    border-radius: 50%;
    clip-path: polygon(0 0, 100% 0, 100% 70%, 0 70%);
    z-index: -1;
}

/* President Message Section */
.president-message-section {
    padding: 100px 0;
    background-color: #fff;
}

.pm-white-box {
    background-color: #ffffff;
    border-radius: 30px;
    padding: 50px 60px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .pm-white-box {
        padding: 30px 30px;
    }

    .president-msg-title {
        font-size: 32px;
    }
}

.president-img-wrap {
    position: relative;
    background-color: #d6ab89;
    border-radius: 20px;
    overflow: hidden;
    display: inline-block;
    width: 100%;
}

.president-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.president-info-box {
    position: absolute;
    bottom: -2px;
    /* Prevent sub-pixel gap */
    left: 0;
    width: 100%;
    height: 160px;
    padding: 70px 30px 20px 30px;
    text-align: left;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 160' preserveAspectRatio='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,60 C120,-30 250,90 400,30 L400,160 L0,160 Z' fill='%23f1a501'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    background-position: bottom;
    background-repeat: no-repeat;
}

.president-info-box .p-title {
    font-size: 14px;
    font-weight: 800;
    color: #181818;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.president-info-box .p-name {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
}

.president-msg-title {
    font-size: 44px;
    font-weight: 800;
    color: #181818;
    margin-bottom: 30px;
    letter-spacing: -1.5px;
}

.president-msg-text {
    font-size: 16px;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 24px;
}

/* MPD Tables Mobile Responsiveness */
@media (max-width: 768px) {

    .mpd-official-table th[style],
    .mpd-official-table td[style] {
        width: auto !important;
        min-width: 150px;
    }

    .mpd-official-table th:nth-child(2),
    .mpd-official-table td:nth-child(2) {
        min-width: 250px;
    }

    .mpd-official-table td,
    .mpd-official-table th {
        white-space: nowrap;
    }
}

/* News and Achievements Premium Design */
.news-card {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: none;
    background: #fff;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04) !important;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12) !important;
}

.news-card .img-wrapper {
    overflow: hidden;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.news-card .card-img-top {
    transition: transform 0.6s ease;
}

.news-card:hover .card-img-top {
    transform: scale(1.05);
}

.news-date-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #002855, #004080);
    color: white;
    padding: 10px 18px;
    border-radius: 12px;
    text-align: center;
    line-height: 1.1;
    box-shadow: 0 6px 15px rgba(0, 40, 85, 0.3);
    z-index: 2;
}

.news-date-badge .day {
    font-size: 1.5rem;
    font-weight: 800;
}

.news-date-badge .month {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
}

.news-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    color: #1a1a1a;
    transition: color 0.3s ease;
}

.news-card:hover .news-card-title {
    color: #002855;
}

.news-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    background: transparent;
    padding: 15px 0;
    border-radius: 0 0 16px 16px !important;
}

.news-arrow-btn {
    background: #002855;
    color: #fff;
    width: 45px;
    height: 45px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 40, 85, 0.2);
}

.news-card:hover .news-arrow-btn {
    background: #ffba00;
    color: #000;
    transform: translateX(5px);
    box-shadow: 0 6px 15px rgba(255, 186, 0, 0.4);
}

/* ========================================= */
/* Premium Facilities Card Styles */
/* ========================================= */

.premium-facility-card {
    background: #fff;
    border-radius: 16px;
    overflow: visible;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.premium-facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 40, 85, 0.1);
}

.premium-facility-card .image-wrapper {
    position: relative;
    height: 250px;
    border-radius: 16px 16px 0 0;
    overflow: hidden;
}

.premium-facility-card .image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-facility-card:hover .image-wrapper img {
    transform: scale(1.08);
}

/* The floating icon is perfectly positioned between the image and the content */
.premium-facility-card .icon-floating {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #ffba00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(255, 186, 0, 0.4);
    z-index: 10;
    transition: all 0.3s ease;
    border: 4px solid #fff;
}

.premium-facility-card .icon-floating i {
    color: #002855;
    font-size: 22px;
    transition: all 0.3s ease;
}

.premium-facility-card:hover .icon-floating {
    background: #002855;
    box-shadow: 0 8px 20px rgba(0, 40, 85, 0.4);
    transform: rotateY(360deg);
}

.premium-facility-card:hover .icon-floating i {
    color: #fff;
}

.premium-facility-card .content-wrapper {
    padding: 40px 30px 30px;
    background: #fff;
    border-radius: 0 0 16px 16px;
    flex-grow: 1;
}

.premium-facility-card .facility-title {
    color: #002855;
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.premium-facility-card:hover .facility-title {
    color: #1ab69d;
}

.premium-facility-card .facility-desc {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 0;
    font-size: 1rem;
}

/* Hide the messy background block */
.team-bg-block {
    display: none !important;
}

.team-image {
    position: relative;
    width: 100%;
    padding: 20px 20px 0 20px;
    /* Padding to make image float inside */
    background: #ffffff;
}

.team-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: top center;
    border-radius: 20px;
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.team-card:hover .team-image img {
    transform: scale(1.03);
}

/* Share button redesigned */
.team-share-btn {
    position: absolute;
    top: 35px;
    right: 35px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1ab69d;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-size: 14px;
}

.team-card:hover .team-share-btn {
    background: #ee4a62;
    color: #ffffff;
    transform: rotate(180deg);
}

/* Social Overlay fixed */
.team-social-overlay {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    display: flex;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 15px;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-card:hover .team-social-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.team-social-overlay a {
    width: 35px;
    height: 35px;
    background: #f1f5f9;
    color: #0f172a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team-social-overlay a:hover {
    background: #1ab69d;
    color: #ffffff;
    transform: translateY(-3px);
}

.team-content {
    position: relative;
    padding: 25px 20px 30px;
    text-align: center;
    background: #ffffff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 0 24px 24px;
}

.team-content .name {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
}

.team-content .designation {
    font-size: 14px;
    font-weight: 700;
    color: #1ab69d;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0;
}

.team-card:hover .team-content .designation {
    color: #ee4a62;
}


/* =========================================
   CLEAN ADMINISTRATIVE TEAM CARD 
   ========================================= */
.team-card.admin-card {
    background: transparent !important;
    border-radius: 20px !important;
    overflow: visible !important;
    box-shadow: none !important;
    transition: all 0.4s ease !important;
    border: none !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 50px !important;
    align-items: center !important;
}

.team-card.admin-card:hover {
    transform: translateY(-10px) !important;
}

.team-card.admin-card .team-image {
    width: 100% !important;
    height: 350px !important;
    padding: 0 !important;
    position: relative !important;
    background: #f8fafc !important;
    border-radius: 20px !important;
    overflow: hidden !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

.team-card.admin-card .team-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: top center !important;
    transition: transform 0.5s ease !important;
    border-radius: 20px !important;
    filter: none !important;
}

.team-card.admin-card:hover .team-image img {
    transform: scale(1.05) !important;
}

.team-card.admin-card .team-content {
    background: #ffffff !important;
    padding: 25px 20px !important;
    text-align: center !important;
    position: relative !important;
    z-index: 3 !important;
    width: 85% !important;
    margin: -50px auto 0 auto !important;
    border-radius: 15px !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
    border-bottom: 4px solid #2b2fbe !important;
    transition: all 0.4s ease !important;
    border-top: none !important;
    display: block !important;
}

.team-card.admin-card:hover .team-content {
    transform: translateY(-10px) !important;
    border-bottom-color: #ee4a62 !important;
}

.team-card.admin-card .team-content .name {
    font-size: 22px !important;
    font-weight: 800 !important;
    color: #1e293b !important;
    margin-bottom: 8px !important;
    text-shadow: none !important;
}

.team-card.admin-card .team-content .designation {
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #1ab69d !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    display: block !important;
}

.team-card.admin-card:hover .team-content .designation {
    color: #ee4a62 !important;
    background: transparent !important;
}

/* Ensure no floating elements block the clean look */
.team-card.admin-card .team-share-btn,
.team-card.admin-card .team-social-overlay,
.team-card.admin-card .team-image::after {
    display: none !important;
}

/* Flip phone icon to face right */
.fa-phone-alt {
    transform: scaleX(-1);
    display: inline-block;
}