:root {
    /* VJPS LOGO COLOR PALETTE */
    --vjps-green: #097857;
    --vjps-green-dark: #052317;
    --vjps-green-medium: #0d5c43;
    --vjps-green-light: #f0fdf4;
    --vjps-magenta: #c8187e;
    --vjps-magenta-dark: #9d125f;
    --vjps-magenta-light: #fdf2f8;
    --vjps-orange: #e36d2d;
    --vjps-orange-dark: #c44f12;
    --vjps-lime: #8bb324;
    --vjps-gold: #f59e0b;
    --vjps-charcoal: #1f2937;
    --vjps-slate: #4b5563;
    --vjps-border: #e2ece6;
    --vjps-font-heading: 'Montserrat', sans-serif;
    --vjps-font-body: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--vjps-font-body);
    color: #374151;
    background-color: #ffffff;
    line-height: 1.65;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--vjps-font-heading);
    color: var(--vjps-green-dark);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    transition: all 0.25s ease;
}

/* TOP NOTICE BAR (VJPS Green-Dark) */
.vjps-topbar {
    background: linear-gradient(135deg, #052317 0%, #073827 50%, #094d37 100%);
    color: #d1fae5;
    font-size: 13px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.vjps-topbar a {
    color: #e2e8f0;
}
.vjps-topbar a:hover {
    color: var(--vjps-orange);
}
.vjps-topbar .badge-cbse {
    background: rgba(200, 24, 126, 0.22);
    color: #fbcfe8;
    border: 1px solid rgba(200, 24, 126, 0.4);
    padding: 3px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.5px;
}
.btn-top-enquiry {
    background: linear-gradient(135deg, var(--vjps-orange) 0%, var(--vjps-magenta) 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 11.5px;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 3px 10px rgba(227,109,45,0.35);
}
.btn-top-enquiry:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 14px rgba(200,24,126,0.5);
    color: #ffffff !important;
}
.btn-top-login {
    background: rgba(255,255,255,0.12);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 11.5px;
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.25);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-top-login:hover {
    background: rgba(255,255,255,0.25);
    color: #ffffff;
}

/* STICKY MAIN NAVBAR */
.vjps-navbar-wrapper {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(9, 120, 87, 0.08);
    transition: all 0.3s ease;
}
.vjps-navbar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    padding: 6px 0;
    min-height: 76px;
}
.vjps-brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.vjps-brand img {
    height: 74px;
    width: auto;
    display: block;
    max-width: 270px;
    object-fit: contain;
    transition: height 0.2s ease;
}
@media (max-width: 991px) {
    .vjps-brand img {
        height: 60px;
        max-width: 220px;
    }
}
@media (max-width: 576px) {
    .vjps-brand img {
        height: 52px;
        max-width: 190px;
    }
}
/* Reset any Woodmart or global theme list item styles on navbar */
.vjps-navbar ul,
.vjps-navbar ol,
.vjps-nav-menu,
.vjps-nav-menu li,
.vjps-nav-item,
.vjps-nav-item:last-child {
    margin: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.vjps-nav-menu {
    display: flex !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    gap: 4px !important;
    height: 42px !important;
}
.vjps-nav-item {
    position: relative !important;
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
}
.vjps-nav-link {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    padding: 0 11px !important;
    margin: 0 !important;
    font-family: var(--vjps-font-heading) !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: var(--vjps-charcoal) !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
    line-height: 38px !important;
    height: 38px !important;
    vertical-align: middle !important;
    box-sizing: border-box !important;
}
.vjps-nav-link i.chevron {
    font-size: 9px !important;
    color: var(--vjps-green) !important;
    margin-left: 2px !important;
    line-height: 1 !important;
    display: inline-block !important;
    vertical-align: middle !important;
    transition: transform 0.2s !important;
}
.vjps-nav-link:hover, .vjps-nav-item:hover > .vjps-nav-link {
    color: var(--vjps-green) !important;
    background: var(--vjps-green-light) !important;
}
.vjps-nav-item:hover > .vjps-nav-link i.chevron {
    transform: rotate(180deg) !important;
}

/* DROPDOWN MENU */
.vjps-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 12px 35px rgba(9,120,87,0.14);
    padding: 10px 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--vjps-border);
    z-index: 1000;
}
.vjps-nav-item:hover > .vjps-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.vjps-dropdown li a {
    display: block;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 500;
    color: #374151;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}
.vjps-dropdown li a:hover {
    color: var(--vjps-green);
    background: var(--vjps-green-light);
    border-left-color: var(--vjps-green);
    padding-left: 24px;
}
.vjps-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.btn-nav-apply {
    background: linear-gradient(135deg, var(--vjps-green) 0%, var(--vjps-green-medium) 100%);
    color: #ffffff !important;
    padding: 8px 16px;
    font-size: 12.5px;
    font-weight: 700;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.3px;
    white-space: nowrap !important;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(9,120,87,0.3);
}
.btn-nav-apply:hover {
    background: linear-gradient(135deg, var(--vjps-orange) 0%, var(--vjps-magenta) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(227,109,45,0.4);
    color: #ffffff !important;
}

/* Intermediate screens 992px to 1250px: keep everything strictly on one line */
@media (min-width: 992px) and (max-width: 1250px) {
    .vjps-brand img {
        height: 58px !important;
        max-width: 215px !important;
    }
    .vjps-nav-link {
        padding: 5px 6px !important;
        font-size: 12px !important;
        gap: 3px !important;
    }
    .btn-nav-apply {
        padding: 7px 11px !important;
        font-size: 11.5px !important;
    }
}

/* MOBILE MENU TOGGLE (Strict display rules) */
.vjps-menu-toggle {
    display: none !important;
    background: none;
    border: none;
    font-size: 26px;
    color: var(--vjps-green);
    cursor: pointer;
    padding: 6px 10px;
}

@media (max-width: 991px) {
    .vjps-nav-menu, .btn-nav-apply {
        display: none !important;
    }
    .vjps-menu-toggle {
        display: block !important;
    }
}
@media (min-width: 992px) {
    .vjps-menu-toggle {
        display: none !important;
    }
    .vjps-nav-menu {
        display: flex !important;
    }
}

/* INNER PAGE HERO BANNER (VJPS Green & Navy Gradient) */
.vjps-inner-hero {
    background: linear-gradient(135deg, #052317 0%, #097857 50%, #0d5c43 100%);
    position: relative;
    padding: 60px 0 50px;
    color: #ffffff;
    overflow: hidden;
    border-bottom: 4px solid var(--vjps-orange);
}
.vjps-inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.09) 1px, transparent 1px);
    background-size: 22px 22px;
    opacity: 0.7;
}
.vjps-inner-hero-content {
    position: relative;
    z-index: 2;
}
.vjps-inner-hero h1 {
    color: #ffffff;
    font-size: 38px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}
.vjps-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: #d1fae5;
    margin: 0;
    padding: 0;
    list-style: none;
}
.vjps-breadcrumbs a {
    color: #ffffff;
    opacity: 0.85;
}
.vjps-breadcrumbs a:hover {
    color: var(--vjps-orange);
    opacity: 1;
}
.vjps-breadcrumbs .sep {
    color: #a7f3d0;
    font-size: 11px;
}
.vjps-breadcrumbs .current {
    color: #fef08a;
    font-weight: 700;
}

/* INNER CONTENT WRAPPER */
.vjps-inner-content-wrapper {
    background: #ffffff;
    min-height: 450px;
    padding: 55px 0 75px;
}
.vjps-inner-content-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
}
.vjps-inner-content-wrapper h2 {
    color: var(--vjps-green-dark);
    font-size: 28px;
    margin-top: 32px;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 8px;
}
.vjps-inner-content-wrapper h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: var(--vjps-orange);
    border-radius: 2px;
}
.vjps-inner-content-wrapper h3 {
    color: var(--vjps-green);
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
}
.vjps-inner-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* HERO SLIDER */
.vjps-hero {
    position: relative;
    background: #000;
}
.vjps-hero .swiper-slide {
    position: relative;
    height: 580px;
    overflow: hidden;
}
@media (max-width: 768px) {
    .vjps-hero .swiper-slide {
        height: 480px;
    }
}
.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.72);
    transition: transform 7s ease;
}
.swiper-slide-active .hero-slide-bg {
    transform: scale(1.05);
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(5,35,23,0.92) 0%, rgba(9,120,87,0.65) 50%, rgba(5,35,23,0.2) 100%);
    display: flex;
    align-items: center;
}
.hero-content {
    max-width: 680px;
    color: #ffffff;
    padding-left: 15px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(200, 24, 126, 0.25);
    border: 1px solid rgba(200, 24, 126, 0.5);
    color: #fbcfe8;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    margin-bottom: 16px;
    backdrop-filter: blur(4px);
}
.hero-title {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 28px;
    }
}
.hero-desc {
    font-size: 17px;
    color: #e2e8f0;
    margin-bottom: 26px;
    font-weight: 400;
    line-height: 1.5;
}
.hero-cta-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.btn-hero-primary {
    background: linear-gradient(135deg, var(--vjps-orange) 0%, var(--vjps-magenta) 100%);
    color: #ffffff !important;
    padding: 13px 26px;
    font-weight: 700;
    font-size: 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.3px;
    box-shadow: 0 6px 20px rgba(227,109,45,0.4);
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200,24,126,0.6);
    color: #ffffff !important;
}
.btn-hero-secondary {
    background: rgba(255,255,255,0.15);
    color: #ffffff !important;
    border: 1.5px solid rgba(255,255,255,0.4);
    padding: 13px 24px;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(4px);
}
.btn-hero-secondary:hover {
    background: #ffffff;
    color: var(--vjps-green-dark) !important;
}

/* SWIPER CONTROLS */
.swiper-button-next, .swiper-button-prev {
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #ffffff;
    backdrop-filter: blur(4px);
    transition: all 0.25s;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px;
    font-weight: 800;
}
.swiper-button-next:hover, .swiper-button-prev:hover {
    background: #ffffff;
    color: var(--vjps-green);
}
.swiper-pagination-bullet {
    background: #ffffff;
    opacity: 0.5;
    width: 10px;
    height: 10px;
    transition: all 0.3s;
}
.swiper-pagination-bullet-active {
    opacity: 1;
    width: 26px;
    border-radius: 5px;
    background: var(--vjps-orange);
}

/* STATS COUNTER BAR */
.vjps-stats-bar {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 16px 45px rgba(9,120,87,0.12);
    padding: 28px 20px;
    margin-top: -45px;
    position: relative;
    z-index: 10;
    border: 1px solid var(--vjps-border);
}
.stat-item {
    text-align: center;
    border-right: 1px solid #edf2f7;
    padding: 0 15px;
}
.stat-item:last-child {
    border-right: none;
}
.stat-number {
    font-family: var(--vjps-font-heading);
    font-size: 38px;
    font-weight: 800;
    color: var(--vjps-green);
    line-height: 1;
    margin-bottom: 6px;
}
.stat-number span.plus {
    color: var(--vjps-orange);
}
.stat-label {
    font-size: 13.5px;
    color: var(--vjps-slate);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* SECTION HEADINGS */
.section-header {
    text-align: center;
    margin-bottom: 45px;
}
.section-tag {
    display: inline-block;
    color: var(--vjps-green);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    background: var(--vjps-green-light);
    padding: 5px 14px;
    border-radius: 20px;
    border: 1px solid rgba(9,120,87,0.2);
}
.section-title {
    font-size: 34px;
    font-weight: 800;
    color: var(--vjps-green-dark);
    line-height: 1.25;
    margin-bottom: 12px;
}
.section-desc {
    max-width: 680px;
    margin: 0 auto;
    color: var(--vjps-slate);
    font-size: 16px;
}

/* ABOUT SECTION */
.about-section {
    padding: 85px 0 65px;
    background: #ffffff;
}
.about-img-frame {
    position: relative;
    padding-right: 25px;
    padding-bottom: 25px;
}
.about-main-img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(9,120,87,0.14);
}
.about-badge-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(135deg, var(--vjps-green-dark), var(--vjps-green));
    color: #ffffff;
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(9,120,87,0.3);
    max-width: 220px;
    border-top: 3px solid var(--vjps-orange);
}
.about-badge-card .big-num {
    font-family: var(--vjps-font-heading);
    font-size: 32px;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1;
}
.about-badge-card .badge-text {
    font-size: 12px;
    line-height: 1.35;
    margin-top: 4px;
    color: #d1fae5;
    font-weight: 500;
}
.about-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
    line-height: 1.25;
    color: var(--vjps-green-dark);
}
.about-content p {
    font-size: 15.5px;
    color: #4b5563;
    margin-bottom: 18px;
    line-height: 1.7;
}
.about-features-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}
.about-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14.5px;
    font-weight: 600;
    color: #1e293b;
}
.about-features-list li i {
    color: var(--vjps-green);
    font-size: 18px;
    margin-top: 2px;
}

/* 360 DEGREE LEARNING */
.learning-360-section {
    background: var(--vjps-green-light);
    padding: 80px 0;
    border-top: 1px solid var(--vjps-border);
    border-bottom: 1px solid var(--vjps-border);
}
.pillar-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 26px 22px;
    height: 100%;
    border: 1px solid var(--vjps-border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(9,120,87,0.12);
    border-color: var(--vjps-green);
}
.pillar-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}
.pillar-card:nth-child(1) .pillar-icon-box { background: rgba(9, 120, 87, 0.12); color: var(--vjps-green); }
.pillar-card:nth-child(2) .pillar-icon-box { background: rgba(227, 109, 45, 0.12); color: var(--vjps-orange); }
.pillar-card:nth-child(3) .pillar-icon-box { background: rgba(200, 24, 126, 0.12); color: var(--vjps-magenta); }
.pillar-card:nth-child(4) .pillar-icon-box { background: rgba(139, 179, 36, 0.15); color: var(--vjps-lime); }
.pillar-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--vjps-green-dark);
}
.pillar-text {
    font-size: 13.5px;
    color: var(--vjps-slate);
    line-height: 1.6;
    margin: 0;
}

/* FUTURE READY TILES (Using Logo Colors) */
.future-ready-section {
    padding: 85px 0;
    background: #ffffff;
}
.vgos-tile {
    border-radius: 16px;
    padding: 26px 22px;
    height: 100%;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.vgos-tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.18);
}
.vgos-tile i {
    font-size: 32px;
    margin-bottom: 14px;
    opacity: 0.95;
    color: #ffffff;
}
.vgos-tile h4 {
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.25;
}
.vgos-tile p {
    font-size: 13px;
    color: rgba(255,255,255,0.92);
    margin: 0;
    line-height: 1.55;
}
.vgos-tile a {
    color: #ffffff !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 13.5px;
    transition: gap 0.2s ease;
}
.vgos-tile a:hover {
    gap: 10px;
}

.tile-magenta, .tile-purple { background: linear-gradient(135deg, #9d125f 0%, #c8187e 100%); }
.tile-orange { background: linear-gradient(135deg, #c74b12 0%, #e36d2d 100%); }
.tile-green { background: linear-gradient(135deg, #052e20 0%, #097857 100%); }
.tile-lime { background: linear-gradient(135deg, #5b7510 0%, #8bb324 100%); }
.tile-teal { background: linear-gradient(135deg, #084338 0%, #0f766e 100%); }
.tile-navy, .tile-blue { background: linear-gradient(135deg, #052317 0%, #1e3a8a 100%); }
.tile-slate { background: linear-gradient(135deg, #1f2937 0%, #374151 100%); }

/* ACADEMIC WINGS */
.academic-wings-section {
    background: var(--vjps-green-light);
    padding: 85px 0;
    border-top: 1px solid var(--vjps-border);
}
.wing-card {
    background: #ffffff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(9,120,87,0.06);
    border: 1px solid var(--vjps-border);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.wing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(9,120,87,0.14);
    border-color: var(--vjps-green);
}
.wing-img-box {
    position: relative;
    height: 200px;
    overflow: hidden;
}
.wing-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.wing-card:hover .wing-img-box img {
    transform: scale(1.08);
}
.wing-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(5, 35, 23, 0.88);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.2);
}
.wing-body {
    padding: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.wing-title {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--vjps-green-dark);
}
.wing-desc {
    font-size: 13.5px;
    color: var(--vjps-slate);
    margin-bottom: 16px;
    line-height: 1.55;
}
.wing-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--vjps-green);
}
.wing-link:hover {
    gap: 10px;
    color: var(--vjps-orange);
}

/* CAMPUS FACILITIES */
.facilities-section {
    padding: 85px 0;
    background: #ffffff;
}
.facility-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 250px;
    margin-bottom: 24px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.facility-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.facility-item:hover img {
    transform: scale(1.08);
}
.facility-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(5,35,23,0.95) 100%);
    color: #ffffff;
}
.facility-overlay h5 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}
.facility-overlay p {
    font-size: 12px;
    color: #d1fae5;
    margin: 0;
}

/* RESULTS SECTION */
.results-section {
    background: linear-gradient(135deg, #052317 0%, #094d37 100%);
    color: #ffffff;
    padding: 75px 0;
    border-top: 4px solid var(--vjps-orange);
}
.results-section h2 {
    color: #ffffff;
}
.result-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    padding: 26px 20px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s;
}
.result-box:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-4px);
    border-color: var(--vjps-orange);
}
.result-highlight {
    font-family: var(--vjps-font-heading);
    font-size: 40px;
    font-weight: 800;
    color: #fbbf24;
    line-height: 1;
    margin-bottom: 6px;
}
.result-title {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}
.result-desc {
    font-size: 12.5px;
    color: #d1fae5;
    margin: 0;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
    padding: 85px 0;
    background: var(--vjps-green-light);
}
.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 32px 28px;
    box-shadow: 0 10px 30px rgba(9,120,87,0.06);
    border: 1px solid var(--vjps-border);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.testimonial-stars {
    color: #f59e0b;
    font-size: 14px;
    margin-bottom: 14px;
}
.testimonial-quote {
    font-size: 14.5px;
    color: #374151;
    font-style: italic;
    line-height: 1.65;
    margin-bottom: 20px;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--vjps-orange), var(--vjps-magenta));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
}
.author-info h6 {
    font-size: 14.5px;
    font-weight: 700;
    margin: 0;
    color: var(--vjps-green-dark);
}
.author-info small {
    font-size: 12px;
    color: var(--vjps-slate);
}

/* ADMISSION CTA BANNER */
.admission-cta-banner {
    background: linear-gradient(135deg, var(--vjps-green-dark) 0%, var(--vjps-green) 50%, var(--vjps-orange) 100%);
    border-radius: 24px;
    padding: 50px 40px;
    color: #ffffff;
    box-shadow: 0 20px 45px rgba(9,120,87,0.3);
    margin: 60px 0;
}
.admission-cta-banner h2 {
    color: #ffffff;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
}
.admission-cta-banner p {
    font-size: 16px;
    color: rgba(255,255,255,0.92);
    max-width: 600px;
    margin-bottom: 0;
}
.btn-cta-white {
    background: #ffffff;
    color: var(--vjps-green-dark) !important;
    font-weight: 800;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: all 0.25s;
}
.btn-cta-white:hover {
    background: var(--vjps-orange);
    color: #ffffff !important;
    transform: translateY(-2px);
}
.btn-cta-outline {
    background: transparent;
    color: #ffffff !important;
    border: 2px solid #ffffff;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s;
}
.btn-cta-outline:hover {
    background: rgba(255,255,255,0.15);
}

/* ============================================================
   VGOS STYLE REPLICA FOOTER (Exact Match to User Reference)
   ============================================================ */
.vjps-footer-top-stripe {
    height: 18px;
    background: #c8187e; /* VJPS Berry Magenta Stripe */
    width: 100%;
}

.vjps-footer-vgos {
    background-color: #ffffff;
    color: #334155;
    padding: 45px 0 30px;
    font-family: var(--vjps-font-body);
    border-top: 1px solid #f1f5f9;
}

.vjps-footer-vgos .row {
    align-items: flex-start !important;
}

.vgos-footer-title {
    font-family: var(--vjps-font-heading);
    font-size: 13.5px;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0 !important;
    margin-bottom: 14px;
}

.vgos-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vgos-footer-list li {
    margin-bottom: 6px;
    line-height: 1.5;
}

.vgos-footer-list a {
    color: #475569;
    font-family: var(--vjps-font-body);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.vgos-footer-list a:hover {
    color: #c8187e;
    padding-left: 2px;
}

.vgos-footer-label {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 6px;
    margin-bottom: 2px;
}

/* Center Column */
.vgos-footer-brand img {
    height: 95px;
    width: auto;
    max-width: 320px;
    display: inline-block;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.06));
}
@media (max-width: 768px) {
    .vgos-footer-brand img {
        height: 75px;
        max-width: 250px;
    }
}

.vgos-footer-v-divider {
    width: 1.5px;
    height: 35px;
    background: #cbd5e1;
    margin: 14px auto 14px;
}

.vgos-follow-label {
    font-family: var(--vjps-font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #475569;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.vgos-social-icons {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.vgos-social-icons a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid #475569;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #334155;
    font-size: 14px;
    transition: all 0.25s ease;
    text-decoration: none;
}

.vgos-social-icons a:hover {
    background: #c8187e;
    border-color: #c8187e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(200, 24, 126, 0.3);
}

.vgos-footer-legal-links a {
    color: #64748b;
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s;
}

.vgos-footer-legal-links a:hover {
    color: var(--vjps-green);
    text-decoration: underline;
}

/* Floating Actions: WhatsApp & Top Button */
.vjps-floating-actions {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 1080;
}

.vjps-float-chat {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #e36d2d;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(227, 109, 45, 0.45);
    position: relative;
    transition: all 0.25s;
    text-decoration: none;
}

.vjps-float-chat:hover {
    transform: scale(1.08);
    color: #ffffff;
}

.vjps-float-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #dc2626;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.vjps-float-top {
    background: #1e3a8a;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.18);
    transition: all 0.2s;
    cursor: pointer;
    border: none;
}

.vjps-float-top:hover {
    background: #0f172a;
    color: #ffffff;
    transform: translateY(-2px);
}

/* MOBILE DRAWER */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: #ffffff;
    z-index: 1050;
    box-shadow: 4px 0 25px rgba(0,0,0,0.15);
    transition: left 0.35s ease;
    overflow-y: auto;
    padding: 24px 20px;
}
.mobile-drawer.active {
    left: 0;
}
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1040;
    display: none;
}
.drawer-overlay.active {
    display: block;
}
.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}
.mobile-nav-list li {
    border-bottom: 1px solid #f1f5f9;
}
.mobile-nav-list a {
    display: block;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--vjps-green-dark);
}
