/* ================================================================
   PVG's Vidya Bhawan — Home Page Stylesheet — V2
   File: assets/css/pvg-home-v2.css
   Palette derived from the school logo: deep plum/maroon + antique
   gold, on a warm cream ground.
================================================================ */

/* ----------------------------------------------------------------
   1. CSS Variables & Reset
---------------------------------------------------------------- */
:root {
    --primary:   #5c2245;
    --primary-2: #7a2f5c;
    --secondary: #8c1f3f;
    --accent:    #c99a2e;
    --accent-2:  #e2b84a;
    --dark:      #2b1224;
    --light:     #faf3e8;
    --text:      #4a3b42;
    --white:     #ffffff;
    --gradient:  linear-gradient(135deg, #5c2245 0%, #8c1f3f 100%);
    --font-main: 'Nunito Sans', sans-serif;
    --font-head: 'Playfair Display', serif;
    --font-logo: 'Marcellus', serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-main);
    font-size: 16.5px;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--font-head); letter-spacing: 0.3px; text-transform: uppercase; }
h4, h5, h6, p, a, span, button, li { font-family: var(--font-main); }
p { font-size: 16.5px; }
a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; }

/* ----------------------------------------------------------------
   2. Preloader
---------------------------------------------------------------- */
#pvg-preloader {
    position: fixed; inset: 0; z-index: 99999;
    background: var(--primary);
    display: flex; align-items: center; justify-content: center;
}
.pvg-spinner {
    width: 60px; height: 60px;
    border: 5px solid rgba(255,255,255,0.2);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: pvgSpin 0.8s linear infinite;
}
@keyframes pvgSpin { to { transform: rotate(360deg); } }

/* ----------------------------------------------------------------
   3. Top Information Bar
---------------------------------------------------------------- */
.pvg-topbar {
    background: var(--dark);
    padding: 8px 0;
    font-size: 14.5px;
    color: rgba(255,255,255,0.75);
}
.pvg-topbar a {
    color: rgba(255,255,255,0.75);
    margin-right: 20px;
}
.pvg-topbar a:hover { color: var(--accent); }
.pvg-topbar .social-icons a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 28px; height: 28px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    margin-left: 6px;
    margin-right: 0;
    transition: background 0.3s;
}
.pvg-topbar .social-icons a:hover { background: var(--secondary); }

/* ----------------------------------------------------------------
   4. Logo Bar
---------------------------------------------------------------- */
.pvg-logo-bar {
    background: var(--white);
    padding: 12px 0;
    border-bottom: 3px solid var(--light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.pvg-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.pvg-logo-wrap img {
    height: 80px;
    width: auto;
}
.pvg-logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pvg-logo-text .school-name {
    font-family: var(--font-logo);
    font-size: 25px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
    letter-spacing: 0.5px;
}
.pvg-logo-text .school-sub {
    font-size: 13px;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 2px;
}

/* ----------------------------------------------------------------
   5. Navigation Bar — Slant-Line Decoration Style
---------------------------------------------------------------- */
.pvg-navbar {
    background: var(--primary);
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 3px 15px rgba(0,0,0,0.25);
}
.pvg-navbar.scrolled {
    background: var(--dark);
}

/* Nav list */
.pvg-navbar .navbar-nav {
    gap: 0;
}
.pvg-navbar .nav-item { position: relative; }

/* Slanted divider between nav items */
.pvg-navbar .nav-item:not(:last-child)::before {
    content: '';
    position: absolute;
    right: -1px; top: 12px; bottom: 12px;
    width: 2px;
    background: rgba(255,255,255,0.2);
    transform: skewX(-16deg);
    z-index: 1;
}

.pvg-navbar .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding: 18px 20px !important;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    transition: color 0.3s, background 0.3s;
}
/* Slanted underline decoration instead of a plain border-bottom */
.pvg-navbar .nav-link::after {
    content: '';
    position: absolute;
    left: 20px; right: 20px; bottom: 9px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transform: scaleX(0) skewX(-20deg);
    transform-origin: left center;
    transition: transform 0.35s ease;
}
.pvg-navbar .nav-link:hover,
.pvg-navbar .nav-link.active {
    color: var(--accent-2) !important;
    background: rgba(255,255,255,0.06);
}
.pvg-navbar .nav-link:hover::after,
.pvg-navbar .nav-link.active::after {
    transform: scaleX(1) skewX(-20deg);
}
.pvg-navbar .nav-link .caret {
    font-size: 10px;
    margin-left: 3px;
    transition: transform 0.3s;
}
.pvg-navbar .nav-item:hover .caret { transform: rotate(180deg); }

/* Dropdown menu */
.pvg-navbar .pvg-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    background: var(--white);
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 12px 34px rgba(43,18,36,0.22);
    z-index: 1050;
    padding: 8px 0;
    margin: 0;
    list-style: none;
    overflow: visible;
}
.pvg-navbar .nav-item:hover .pvg-dropdown { display: block; }

.pvg-navbar .pvg-dropdown li a {
    display: block;
    padding: 10px 22px;
    color: var(--dark) !important;
    font-size: 14.5px;
    font-weight: 600;
    border-bottom: 1px solid #f2ece2;
    border-left: 3px solid transparent;
    transition: all 0.25s;
}
.pvg-navbar .pvg-dropdown li:last-child a { border-bottom: none; }
.pvg-navbar .pvg-dropdown li a:hover {
    background: var(--light);
    color: var(--secondary) !important;
    border-left-color: var(--accent);
    padding-left: 26px;
}

/* Nested submenu (3rd level) */
.pvg-navbar .pvg-dropdown li.has-submenu {
    position: relative;
}
.pvg-navbar .pvg-dropdown li.has-submenu > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pvg-navbar .pvg-dropdown li.has-submenu .sub-arrow {
    font-size: 10px;
    opacity: 0.6;
    flex-shrink: 0;
}
.pvg-navbar .pvg-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 190px;
    background: var(--white);
    border-top: none;
    border-radius: 0 8px 8px 8px;
    box-shadow: 6px 10px 34px rgba(43,18,36,0.2);
    z-index: 1060;
    padding: 8px 0;
    margin: 0;
    list-style: none;
}
.pvg-navbar .pvg-dropdown li.has-submenu:hover .pvg-submenu { display: block; }
.pvg-navbar .pvg-submenu li a {
    display: block;
    padding: 10px 22px;
    color: var(--dark) !important;
    font-size: 14px;
    font-weight: 600;
    border-bottom: 1px solid #f2ece2;
    border-left: 3px solid transparent;
    padding-left: 22px !important;
    transition: all 0.25s;
}
.pvg-navbar .pvg-submenu li:last-child a { border-bottom: none; }
.pvg-navbar .pvg-submenu li a:hover {
    background: var(--light);
    color: var(--secondary) !important;
    border-left-color: var(--accent);
    padding-left: 28px !important;
}

/* Mobile navbar toggler */
.pvg-navbar .navbar-toggler {
    border-color: rgba(255,255,255,0.4);
    padding: 6px 10px;
}
.pvg-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255%2C 255%2C 255%2C 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ----------------------------------------------------------------
   6. Hero Slider
---------------------------------------------------------------- */
.pvg-hero {
    position: relative;
    background: var(--dark);
}
.pvg-hero .owl-carousel .item {
    position: relative;
    height: 520px;
    overflow: hidden;
}
.pvg-hero .owl-carousel .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pvg-hero .slide-overlay { display: none; }

/* Owl arrows */
.pvg-hero .owl-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15) !important;
    color: #fff !important;
    width: 44px; height: 44px;
    border-radius: 50% !important;
    font-size: 20px !important;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s;
    border: 2px solid rgba(255,255,255,0.3) !important;
}
.pvg-hero .owl-nav button:hover { background: var(--secondary) !important; }
.pvg-hero .owl-nav .owl-prev { left: 18px; }
.pvg-hero .owl-nav .owl-next { right: 18px; }

/* Owl dots */
.pvg-hero .owl-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
}
.pvg-hero .owl-dots .owl-dot span {
    background: rgba(255,255,255,0.5) !important;
    width: 10px; height: 10px;
    border-radius: 50%;
    margin: 0 4px;
    transition: all 0.3s;
}
.pvg-hero .owl-dots .owl-dot.active span {
    background: var(--accent) !important;
    transform: scale(1.3);
}

/* ----------------------------------------------------------------
   7. Notice Bar — Curved & Slanted Decoration Style
---------------------------------------------------------------- */
.pvg-notice-bar {
    background: linear-gradient(90deg, var(--dark) 0%, var(--primary) 55%, var(--primary-2) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: none;
    box-shadow: 0 4px 20px rgba(43,18,36,0.35);
    position: relative;
    z-index: 10;
}
/* Scalloped curve running along the bottom edge instead of a plain border */
.pvg-notice-bar::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -7px;
    height: 8px;
    background: radial-gradient(circle at 8px 0, transparent 8px, var(--accent) 8.5px);
    background-size: 16px 8px;
    background-repeat: repeat-x;
    z-index: 3;
}
.pvg-notice-label {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 28px;
    height: 48px;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    /* Curved bulge on the right instead of a pointed arrow */
    border-radius: 0 46px 46px 0;
    margin-right: 16px;
    z-index: 2;
}
.notice-bell {
    width: 30px; height: 30px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    animation: bellRing 2.5s ease infinite;
}
@keyframes bellRing {
    0%,100% { transform: rotate(0); }
    10%      { transform: rotate(18deg); }
    20%      { transform: rotate(-15deg); }
    30%      { transform: rotate(10deg); }
    40%      { transform: rotate(-8deg); }
    50%      { transform: rotate(0); }
}
.notice-label-text {
    font-size: 12px; font-weight: 800;
    letter-spacing: 3px; text-transform: uppercase;
}
/* Ticker track */
.pvg-notice-ticker {
    flex: 1;
    overflow: hidden;
    height: 48px;
    display: flex;
    align-items: center;
    padding: 0 16px;
    position: relative;
    mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}
.ticker-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    animation: tickerScroll 30s linear infinite;
}
.pvg-notice-ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes tickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.ticker-track a {
    color: rgba(255,255,255,0.9);
    font-size: 13.5px; font-weight: 500;
    text-decoration: none;
    padding: 0 6px;
    transition: color 0.3s;
    white-space: nowrap;
}
.ticker-track a:hover { color: var(--accent); text-decoration: underline; }
.ticker-sep {
    color: var(--accent);
    font-size: 10px;
    padding: 0 20px;
    opacity: 0.85;
    flex-shrink: 0;
}
@media (max-width: 576px) {
    .notice-label-text { display: none; }
    .pvg-notice-label { padding: 0 16px 0 16px; }
}

/* ----------------------------------------------------------------
   8. Section Commons
---------------------------------------------------------------- */
.section-padding { padding: 60px 0; }
.section-padding-sm { padding: 60px 0; }
.bg-light-blue { background: #edf2f9; }
.bg-white-alt  { background: #f8fafc; }

.pvg-section-head {
    margin-bottom: 54px;
}
/* Badge — slanted parallelogram tag instead of a rounded pill */
.badge-label {
    display: inline-block;
    background: linear-gradient(100deg, var(--accent) 0%, var(--accent-2) 100%);
    color: var(--dark);
    font-size: 13.5px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 8px 26px 8px 20px;
    border-radius: 0;
    border: none;
    margin-bottom: 16px;
    clip-path: polygon(14px 0, 100% 0, calc(100% - 14px) 100%, 0 100%);
    box-shadow: 0 8px 20px rgba(43,18,36,0.18);
}
/* Heading — flanked by slanted accent bars rather than a plain centered line */
.pvg-section-head h2 {
    font-family: var(--font-head);
    font-size: 44px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.22;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
}
.pvg-section-head h2::before,
.pvg-section-head h2::after {
    content: '';
    width: 36px;
    height: 3px;
    flex-shrink: 0;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: skewX(-24deg);
}
.pvg-section-head p {
    font-size: 17px;
    color: #6a5a62;
    max-width: 600px;
    line-height: 1.75;
}
.pvg-section-head.text-center p { margin: 0 auto; }

/* Divider — a broken slanted double-bar instead of a single straight line */
.pvg-divider {
    display: none;
}
.pvg-divider::before,
.pvg-divider::after {
    content: '';
    position: absolute;
    top: 0; height: 100%;
    transform: skewX(-25deg);
}
.pvg-divider::before {
    left: 0; width: 44px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
}
.pvg-divider::after {
    left: 52px; width: 18px;
    background: var(--accent-2);
    opacity: 0.7;
}
.pvg-section-head.text-center .pvg-divider { margin: 14px auto 0; }

/* ----------------------------------------------------------------
   9. About Section
---------------------------------------------------------------- */
.pvg-about {
    background: var(--white);
}
.pvg-about-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(92,34,69,0.18);
}
.pvg-about-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}
.pvg-about-img::before {
    content: '';
    position: absolute;
    top: -12px; left: -12px;
    width: 100%; height: 100%;
    border: 4px solid var(--secondary);
    border-radius: 10px;
    z-index: 0;
}
.pvg-about-img img { position: relative; z-index: 1; }

.pvg-about-content { padding-left: 20px; }
.pvg-about-content p {
    font-size: 15px;
    color: #5a6a7a;
    line-height: 1.75;
    margin-bottom: 14px;
}
.pvg-about-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 26px;
}
.pvg-about-content ul li {
    font-size: 14px;
    color: var(--text);
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.pvg-about-content ul li i {
    color: var(--secondary);
    margin-top: 3px;
    font-size: 14px;
}

.btn-pvg-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--white) !important;
    font-size: 14px;
    font-weight: 600;
    padding: 11px 28px;
    border-radius: 4px;
    transition: all 0.3s;
}
.btn-pvg-primary:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(140,31,63,0.35);
}
.btn-pvg-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--primary);
    color: var(--primary) !important;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 4px;
    transition: all 0.3s;
}
.btn-pvg-outline:hover {
    background: var(--primary);
    color: var(--white) !important;
}

/* ----------------------------------------------------------------
   10. Stats Counter Bar — Fancy Card Design
---------------------------------------------------------------- */
.pvg-stats {
    background: linear-gradient(135deg, #1c0a17 0%, #5c2245 55%, #3a1834 100%);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
/* decorative radial glows */
.pvg-stats::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,154,46,0.13) 0%, transparent 70%);
    pointer-events: none;
}
.pvg-stats::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -60px;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(140,31,63,0.11) 0%, transparent 70%);
    pointer-events: none;
}
.pvg-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative; z-index: 1;
}
.pvg-stat-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 20px;
    padding: 42px 20px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
    backdrop-filter: blur(6px);
}
.pvg-stat-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.pvg-stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.09);
    box-shadow: 0 24px 60px rgba(0,0,0,0.35);
}
.pvg-stat-card:hover::after { transform: scaleX(1); }
.stat-icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 22px;
    font-size: 28px; color: #fff;
    box-shadow: 0 10px 28px rgba(140,31,63,0.38);
    transition: transform 0.35s ease;
}
.pvg-stat-card:hover .stat-icon { transform: scale(1.1) rotate(-5deg); }
.stat-number {
    font-family: var(--font-head);
    font-size: 54px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 12px;
    display: flex; align-items: flex-start; justify-content: center;
    gap: 2px;
}
.stat-sup {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin-top: 8px;
}
.stat-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.58);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    display: block;
}

/* ----------------------------------------------------------------
   11. Founders Section
---------------------------------------------------------------- */
.pvg-founders {
    background: #c3d6ef;
}
.pvg-founder-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}
.pvg-founder-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(92,34,69,0.15);
}
.pvg-founder-card .founder-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top;
    display: block;
    background: #d4d4d4;
    filter: grayscale(20%);
}
.pvg-founder-card .founder-img-placeholder {
    width: 100%;
    height: 280px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pvg-founder-card .founder-img-placeholder i {
    font-size: 80px;
    color: rgba(92,34,69,0.15);
}
.pvg-founder-card .founder-info {
    padding: 22px 20px;
}
.pvg-founder-card .founder-info h5 {
    font-family: var(--font-head);
    font-size: 19px;
    font-weight: 700;
   background: linear-gradient(160deg, #2b1224 0%, #8c1f3f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
}
.pvg-founder-card .founder-info .founder-alias {
    font-size: 14.5px;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}
.pvg-founder-card .founder-info .founder-dates {
    font-size: 14px;
    color: #6a7a8a;
    line-height: 1.8;
}
.pvg-founder-card .founder-info .founder-dates span {
    display: block;
}

/* ----------------------------------------------------------------
   12. Facilities Section — Redesigned
---------------------------------------------------------------- */
.pvg-facilities {
    /* background: var(--light); */
}
.pvg-facility-card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
    text-align: center;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    height: 100%;
    position: relative;
    box-shadow: 0 6px 30px rgba(92,34,69,0.09);
}
.pvg-facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 28px 70px rgba(92,34,69,0.18);
}
/* Per-card color variables — recoloured to sit within the logo palette family */
.pvg-facility-card.library    { --fac-color: #5c2245; --fac-color2: #7a2f5c; --fac-glow: rgba(92,34,69,0.28); }
.pvg-facility-card.laboratory { --fac-color: #8c1f3f; --fac-color2: #b23a5c; --fac-glow: rgba(140,31,63,0.28); }
.pvg-facility-card.playground { --fac-color: #a67c1e; --fac-color2: #c99a2e; --fac-glow: rgba(166,124,30,0.28); }
/* Icon area — clean standalone icon, no gradient image header */
.pvg-facility-card .fac-icon-wrap {
    padding: 24px 24px 24px;
    background: none;
    position: relative;
    overflow: visible;
    min-height: auto;
    display: flex; align-items: center; justify-content: center;
}
/* Ghost icon — hidden */
.fac-icon-ghost { display: none; }
/* Icon box — solid gradient rounded square */
.pvg-facility-card .fac-icon {
    width: 82px; height: 82px;
    background: linear-gradient(135deg, var(--fac-color) 0%, var(--fac-color2) 100%);
    backdrop-filter: none;
    border: none;
    /* border-radius: 22px; */
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: #fff;
    box-shadow: 0 12px 32px rgba(0,0,0,0.15);
    position: relative; z-index: 2;
    transition: box-shadow 0.4s ease;
}
.pvg-facility-card .fac-icon img { transition: filter 0.4s ease; }
/* Hover — glow ring expands + underline grows; no tilt/scale/rotate on the icon */
.pvg-facility-card:hover .fac-icon {
    box-shadow: 0 0 0 9px var(--fac-glow), 0 18px 44px rgba(0,0,0,0.22);
}
.pvg-facility-card:hover .fac-icon img {
    filter: brightness(1.15) saturate(1.25);
}
.pvg-facility-card .fac-icon-wrap::after {
    content: '';
    position: absolute;
    bottom: 4px; left: 50%;
    width: 0; height: 3px;
    background: linear-gradient(90deg, var(--fac-color), var(--fac-color2));
    transform: translateX(-50%) skewX(-20deg);
    transition: width 0.4s ease;
}
.pvg-facility-card:hover .fac-icon-wrap::after { width: 58px; }
/* Content area */
.pvg-facility-card .fac-content {
    padding: 26px 24px 28px;
}
.pvg-facility-card h4 {
    font-family: var(--font-head);
    font-size: 22px; font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}
.pvg-facility-card:hover h4 { color: var(--fac-color); }
.pvg-facility-card p {
    font-size: 16px; color: #6a5a62;
    line-height: 1.75; margin-bottom: 16px;
}
.pvg-facility-card .fac-link {
    display: inline-flex; align-items: center; gap: 5px;
    font-size: 13px; font-weight: 700;
    color: var(--fac-color);
    text-transform: uppercase; letter-spacing: 1.5px;
    border-bottom: 2px solid transparent;
    padding-bottom: 2px;
    transition: border-color 0.28s, gap 0.28s;
}
.pvg-facility-card .fac-link:hover { border-color: var(--fac-color); gap: 9px; }

/* Turf sub-section — Dark Stylish Redesign */
.pvg-turf {
    background: linear-gradient(135deg, #1c0a17 0%, #5c2245 55%, #7a2f5c 100%);
    border-radius: 22px;
    padding: 52px 50px;
    margin-top: 50px;
    overflow: hidden; position: relative;
    box-shadow: 0 24px 70px rgba(28,10,23,0.45);
}
/* Decorative glowing orbs */
.pvg-turf::before {
    content: '';
    position: absolute; width: 450px; height: 450px;
    background: radial-gradient(circle, rgba(201,154,46,0.14), transparent 65%);
    top: -150px; left: -100px; border-radius: 50%; pointer-events: none;
}
.pvg-turf::after {
    content: '';
    position: absolute; width: 350px; height: 350px;
    background: radial-gradient(circle, rgba(122,47,92,0.3), transparent 65%);
    bottom: -120px; right: 360px; border-radius: 50%; pointer-events: none;
}
.pvg-turf-info { position: relative; z-index: 2; }
.pvg-turf-info h3 {
    font-family: var(--font-head);
    font-size: 34px; color: #fff;
    margin-bottom: 14px; letter-spacing: 2px;
    text-transform: uppercase;
}
.pvg-turf-info > p {
    font-size: 17px; color: rgba(255,255,255,0.75);
    line-height: 1.8; margin-bottom: 20px;
}
.pvg-turf-info .turf-detail {
    display: flex; gap: 12px; align-items: flex-start;
    font-size: 15.5px; color: rgba(255,255,255,0.75);
    margin-bottom: 10px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px; padding: 10px 16px;
}
.pvg-turf-info .turf-detail i {
    color: var(--accent); margin-top: 2px; flex-shrink: 0; font-size: 15px;
}
.pvg-turf-info .turf-detail strong { color: #fff; }
.pvg-turf-img {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(0,0,0,0.5);
    position: relative; z-index: 2;
    border: 3px solid rgba(255,255,255,0.15);
}
/* Ken Burns on ALL turf items (not just .active) — prevents snap-back on transition */
.turf-owl-slider .owl-item .item { overflow: hidden; }
.turf-owl-slider .owl-item .item img {
    width: 100%; height: 280px;
    object-fit: cover; display: block;
    transform-origin: center center;
    /* Subtle horizontal pan only — no zoom */
    animation: turfPan 7s ease-in-out infinite alternate;
}
.turf-owl-slider .owl-item:nth-child(even) .item img {
    animation-direction: alternate-reverse;
}
@keyframes turfPan {
    0%   { transform: translateX(-3%) scale(1.06); }
    100% { transform: translateX(3%)  scale(1.06); }
}

/* ----------------------------------------------------------------
   13. Gallery Section — Swiper Coverflow + Lightbox
---------------------------------------------------------------- */
.pvg-gallery {
    background: transparent;
}
.pvg-gallery .pvg-section-head h2 { color: var(--primary); }
.pvg-gallery .pvg-section-head p  { color: #6a5a62; }
/* Swiper gallery container */
.pvg-gallery-slider-wrap {
    position: relative;
}
.pvg-swiper-gallery {
    width: 100%;
    padding: 24px 10px 56px;
}
.pvg-swiper-gallery .swiper-slide {
    width: 300px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 12px 45px rgba(0,0,0,0.4);
    transition: box-shadow 0.35s;
}
.pvg-swiper-gallery .swiper-slide-active {
    box-shadow: 0 20px 70px rgba(0,0,0,0.55);
}
.pvg-swiper-gallery .swiper-slide a {
    display: block;
    position: relative;
    overflow: hidden;
}
.pvg-swiper-gallery .swiper-slide img {
    width: 100%; height: 230px;
    object-fit: cover; display: block;
    transition: transform 0.5s ease;
}
.pvg-swiper-gallery .swiper-slide:hover img { transform: scale(1.08); }
/* Overlay on hover */
.swiper-gal-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(13,30,61,0.85) 0%, rgba(13,30,61,0.15) 60%, transparent 100%);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.35s ease;
}
.pvg-swiper-gallery .swiper-slide:hover .swiper-gal-overlay { opacity: 1; }
.swiper-gal-overlay i {
    font-size: 22px; color: #fff;
    background: rgba(255,255,255,0.18);
    backdrop-filter: blur(4px);
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    border: 2px solid rgba(255,255,255,0.38);
    transition: transform 0.3s;
}
.pvg-swiper-gallery .swiper-slide:hover .swiper-gal-overlay i { transform: scale(1.12); }
/* Swiper navigation & pagination colors */
.pvg-swiper-gallery .swiper-button-prev,
.pvg-swiper-gallery .swiper-button-next {
    color: var(--primary) !important;
    width: 42px; height: 42px;
    background: rgba(92,34,69,0.07);
    border-radius: 50%;
    border: 1px solid rgba(92,34,69,0.15);
    transition: background 0.3s;
}
.pvg-swiper-gallery .swiper-button-prev:hover,
.pvg-swiper-gallery .swiper-button-next:hover { background: rgba(92,34,69,0.14); }
.pvg-swiper-gallery .swiper-button-prev::after,
.pvg-swiper-gallery .swiper-button-next::after { font-size: 16px; font-weight: 900; }
.pvg-swiper-gallery .swiper-pagination { bottom: 14px; }
.pvg-swiper-gallery .swiper-pagination-bullet { background: rgba(92,34,69,0.22); opacity: 1; }
.pvg-swiper-gallery .swiper-pagination-bullet-active { background: var(--primary); }
@media (max-width: 768px) {
    .pvg-swiper-gallery .swiper-slide { width: 260px; }
    .pvg-swiper-gallery .swiper-slide img { height: 190px; }
}

/* ----------------------------------------------------------------
   14. Events Section
---------------------------------------------------------------- */
.pvg-events {
    background: var(--white);
}
.pvg-event-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.07);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    gap: 0;
}
.pvg-event-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(92,34,69,0.14);
}
.pvg-event-card .event-date {
    background: var(--primary);
    color: var(--white);
    min-width: 80px;
    padding: 18px 12px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    flex-shrink: 0;
}
.pvg-event-card .event-date .day   { font-size: 30px; font-weight: 800; line-height: 1; }
.pvg-event-card .event-date .month { font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.pvg-event-card .event-body {
    padding: 16px 18px;
    flex: 1;
}
.pvg-event-card .event-body h6 {
    font-size: 15px; font-weight: 700; color: var(--primary);
    margin-bottom: 6px;
}
.pvg-event-card .event-body p  { font-size: 13px; color: #6a7a8a; line-height: 1.55; }
.pvg-event-card .event-body .event-meta {
    display: flex; align-items: center; gap: 14px;
    font-size: 12px; color: #8a9aaa;
    margin-top: 10px;
}
.pvg-event-card .event-body .event-meta i { color: var(--secondary); }

/* ----------------------------------------------------------------
   15. Testimonials
---------------------------------------------------------------- */
.pvg-testimonials { background: var(--gradient); }
.pvg-testi-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    padding: 28px;
    color: var(--white);
    margin: 10px 14px;
}
.pvg-testi-card .quote { font-size: 32px; color: var(--accent); margin-bottom: 12px; }
.pvg-testi-card p     { font-size: 14px; opacity: 0.9; line-height: 1.7; margin-bottom: 20px; }
.pvg-testi-card .testi-author { display: flex; align-items: center; gap: 12px; }
.pvg-testi-card .testi-author img {
    width: 46px; height: 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}
.pvg-testi-card .testi-author .name  { font-size: 14px; font-weight: 700; }
.pvg-testi-card .testi-author .role  { font-size: 12px; opacity: 0.7; }
.pvg-testi-card .stars { color: var(--accent); font-size: 13px; margin-bottom: 14px; }

/* ----------------------------------------------------------------
   16. Footer
---------------------------------------------------------------- */
.pvg-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 60px 0 0;
}
.pvg-footer h5 {
    font-family: var(--font-head);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary);
    display: inline-block;
}
.pvg-footer p  { font-size: 15.5px; line-height: 1.78; }
.pvg-footer a  { color: rgba(255,255,255,0.72); font-size: 15.5px; transition: color 0.3s; }
.pvg-footer a:hover { color: var(--accent); }

.pvg-footer .footer-logo { margin-bottom: 16px; display: flex; align-items: center; gap: 12px; }
.pvg-footer .footer-logo img  { height: 56px; width: auto; }
.pvg-footer .footer-logo span {
    font-family: var(--font-head); font-size: 18px;
    font-weight: 700; color: #fff;
    line-height: 1.2;
}

.pvg-footer .quick-links { list-style: none; padding: 0; }
.pvg-footer .quick-links li { margin-bottom: 10px; }
.pvg-footer .quick-links li a {
    display: flex; align-items: center; gap: 7px;
    font-size: 15.5px;
}
.pvg-footer .quick-links li a i { color: var(--secondary); font-size: 12px; }
.pvg-footer .quick-links li a:hover { color: var(--accent); padding-left: 4px; }

.pvg-footer .contact-info { list-style: none; padding: 0; }
.pvg-footer .contact-info li {
    display: flex; gap: 10px;
    font-size: 15.5px; margin-bottom: 12px;
    align-items: flex-start;
}
.pvg-footer .contact-info li i { color: var(--secondary); margin-top: 3px; flex-shrink: 0; }
.pvg-footer .contact-info li a { color: rgba(255,255,255,0.72); }
.pvg-footer .contact-info li a:hover { color: var(--accent); }

.pvg-footer .footer-map iframe {
    width: 100%; height: 200px;
    border-radius: 8px;
    border: none;
    filter: grayscale(30%);
}

.pvg-footer .footer-social-bar {
    display: flex; gap: 10px; margin-top: 16px;
}
.pvg-footer .footer-social-bar a {
    width: 34px; height: 34px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; color: #fff;
    transition: background 0.3s;
}
.pvg-footer .footer-social-bar a:hover { background: var(--secondary); }

.pvg-footer-bottom {
    background: #170a13;
    padding: 14px 0;
    margin-top: 40px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}
.pvg-footer-bottom a { color: rgba(255,255,255,0.65); }
.pvg-footer-bottom a:hover { color: var(--accent); }

/* ----------------------------------------------------------------
   17. Back to Top Button
---------------------------------------------------------------- */
#pvg-back-top {
    position: fixed;
    bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(140,31,63,0.4);
    transition: background 0.3s, transform 0.3s;
    z-index: 9999;
}
#pvg-back-top:hover { background: var(--primary); transform: translateY(-3px); }
#pvg-back-top.visible { display: flex; }

/* ----------------------------------------------------------------
   18. Responsive Adjustments
---------------------------------------------------------------- */
@media (max-width: 991px) {
    .pvg-hero .owl-carousel .item   { height: 380px; }
    .pvg-hero .slide-content        { max-width: 80%; padding: 0 30px; }
    .pvg-hero .slide-content h1     { font-size: 30px; }
    .pvg-navbar .pvg-dropdown       { position: static; box-shadow: none; border-top: none; background: rgba(255,255,255,0.05); }
    .pvg-navbar .pvg-dropdown li a  { color: rgba(255,255,255,0.82) !important; border-bottom-color: rgba(255,255,255,0.1); }
    .pvg-navbar .pvg-dropdown li a:hover { background: rgba(255,255,255,0.1); color: var(--accent) !important; }
    .pvg-navbar .pvg-submenu        { position: static; box-shadow: none; border-top: none; background: rgba(255,255,255,0.04); padding-left: 14px; }
    .pvg-navbar .pvg-submenu li a   { color: rgba(255,255,255,0.72) !important; }
    .pvg-navbar .pvg-submenu li a:hover { background: rgba(255,255,255,0.08); color: var(--accent) !important; padding-left: 20px !important; }
    .pvg-about-content { padding-left: 0; margin-top: 30px; }
}

@media (max-width: 767px) {
    .pvg-logo-text .school-name { font-size: 16px; }
    .pvg-hero .owl-carousel .item { height: 280px; }
    .pvg-hero .slide-content { max-width: 100%; padding: 0 20px; }
    .pvg-hero .slide-content h1 { font-size: 22px; }
    .pvg-hero .slide-content p  { display: none; }
    .pvg-section-head h2 { font-size: 28px; }
    .pvg-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .pvg-stat-card { padding: 30px 16px 24px; }
    .stat-number { font-size: 40px; }
    .stat-icon { width: 54px; height: 54px; font-size: 22px; }
    .pvg-topbar .d-flex.gap-3 { flex-wrap: wrap; gap: 6px !important; }
}

@media (max-width: 575px) {
    .pvg-logo-wrap { gap: 10px; }
    .pvg-logo-wrap img { height: 58px; }
    .pvg-logo-text .school-name { font-size: 16px !important; }
    .pvg-logo-text .school-sub  { font-size: 10px; }
    .pvg-turf { padding: 24px 16px; }
}

/* ================================================================
   ADDITIONS — Preloader with logo, logo text, hero ken-burns,
   about-v2, founders images, facilities images, turf slider,
   gallery masonry, admission popup
================================================================ */

/* --- Preloader with Logo --- */
#pvg-preloader { flex-direction: column; }
.pvg-preloader-inner {
    display: flex; flex-direction: column;
    align-items: center; gap: 18px;
}
.preloader-logo {
    height: 86px; width: auto;
    animation: preloaderPulse 1.6s ease-in-out infinite;
    filter: drop-shadow(0 0 24px rgba(201,154,46,0.55));
}
@keyframes preloaderPulse {
    0%,100% { transform: scale(1);    opacity: 0.9; }
    50%      { transform: scale(1.08); opacity: 1;   }
}
.preloader-text {
    color: rgba(255,255,255,0.45);
    font-size: 11px; letter-spacing: 5px;
    text-transform: uppercase; margin: 0;
    animation: preloaderFade 1.4s ease infinite;
}
@keyframes preloaderFade { 0%,100%{opacity:0.4} 50%{opacity:1} }

/* --- Logo bar: bigger bolder text --- */
.pvg-logo-text .school-name {
    font-size: 36px !important;
    font-weight: 900 !important;
    line-height: 1.2;
    letter-spacing: 0;
}

/* --- Hero Slider (reduced height) --- */
.pvg-hero .owl-carousel .item {
    height: 58vh; min-height: 360px;
}
/* Stage outer needs explicit height so animateIn/Out doesn't collapse it */
.pvg-hero .owl-stage-outer {
    height: 58vh !important; min-height: 360px;
}
.pvg-hero .hero-img-wrap {
    position: absolute; inset: 0; overflow: hidden;
}
.pvg-hero .hero-img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover; display: block;
    transform-origin: center center;
    /* Subtle horizontal pan — no zoom, no snap-back on transition */
    animation: heroPan 14s ease-in-out infinite alternate;
}
.pvg-hero .owl-item:nth-child(even) .hero-img-wrap img {
    animation-direction: alternate-reverse; /* opposite pan on even slides */
}
@keyframes heroPan {
    0%   { transform: translateX(-2%) scale(1.04); }
    100% { transform: translateX(2%)  scale(1.04); }
}

/* ─── PVG Custom OWL Transition Animations ─── */
/*
   OWL v2: outgoing = z-index 1 (on top), incoming = z-index 0 (behind).
   Incoming is set to opacity:1 immediately — it acts as the "canvas" being revealed.
   All interesting motion is on the OUTGOING slide.

   Hero → Iris Close: outgoing collapses into a circle (like a camera shutter),
                       revealing the new slide behind it.
   Turf → Wipe Right:  outgoing is erased left-to-right by a clip-path polygon.
*/

/* ── Hero in: immediately visible — iris reveal exposes it ── */
.pvgHeroIn {
    animation-name: pvgHeroInKF;
    animation-duration: 200ms !important;
    animation-fill-mode: both;
}
@keyframes pvgHeroInKF {
    0%, 100% { opacity: 1; }
}

/* ── Hero out: iris-close — circle collapses to center point ── */
.pvgHeroOut {
    animation-name: pvgHeroOutKF;
    animation-duration: 1100ms !important;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: both;
}
@keyframes pvgHeroOutKF {
    0%   { clip-path: circle(150% at 50% 50%); }
    100% { clip-path: circle(0%   at 50% 50%); }
}

/* ── Turf in: immediately visible — wipe reveals it ── */
.pvgTurfIn {
    animation-name: pvgTurfInKF;
    animation-duration: 200ms !important;
    animation-fill-mode: both;
}
@keyframes pvgTurfInKF {
    0%, 100% { opacity: 1; }
}

/* ── Turf out: horizontal wipe left-to-right ── */
.pvgTurfOut {
    animation-name: pvgTurfOutKF;
    animation-duration: 800ms !important;
    animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    animation-fill-mode: both;
}
@keyframes pvgTurfOutKF {
    0%   { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    100% { clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%); }
}
.pvg-hero .slide-overlay {
    background: linear-gradient(160deg, rgba(10,20,50,0.62) 0%, rgba(10,20,50,0.22) 100%);
}
/* Fancy pill dots */
.pvg-hero .owl-dots .owl-dot span {
    width: 8px; height: 8px;
    border-radius: 4px;
    transition: width 0.4s ease, background 0.3s;
}
.pvg-hero .owl-dots .owl-dot.active span {
    width: 30px !important; border-radius: 4px;
    background: var(--accent) !important;
    transform: none;
}
/* Glassy nav arrows */
.pvg-hero .owl-nav button {
    width: 54px; height: 54px;
    background: rgba(255,255,255,0.1) !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.22) !important;
    font-size: 18px !important;
    transition: all 0.3s;
}
.pvg-hero .owl-nav button:hover {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
    transform: scale(1.08);
}
@media (max-width: 767px) { .pvg-hero .owl-carousel .item { height: 40vh; min-height: 240px; } .pvg-hero .owl-stage-outer { height: 40vh !important; min-height: 240px; } }

/* --- About V2 --- */
/* --- About Section — Modern V3 --- */
.pvg-about { background: var(--white); margin-bottom: 50px; }

/* Image box */
.about-img-box {
    position: relative;
    padding: 20px 30px 50px 10px;
    z-index: 1;
}
.about-img-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(92,34,69,0.22);
}
.about-img-frame::after {
    content: '';
    position: absolute; inset: 0;
    border-radius: 20px;
    box-shadow: inset 0 0 0 3px rgba(140,31,63,0.18);
    pointer-events: none;
    z-index: 2;
}
.about-main-img {
    width: 100%; height: 400px;
    object-fit: cover; object-position: top center;
    display: block;
    transition: transform 0.9s ease;
}
.about-img-box:hover .about-main-img { transform: scale(1.05); }

/* Experience badge */
.about-exp-badge {
    position: absolute;
    bottom: 20px; right: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, #1a5faa 100%);
    color: #fff;
    border-radius: 18px;
    padding: 18px 24px;
    display: flex; align-items: center; gap: 14px;
    box-shadow: 0 14px 40px rgba(92,34,69,0.38);
    animation: badgeFloat 3.5s ease-in-out infinite;
    z-index: 3;
}
@keyframes badgeFloat {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-8px); }
}
.about-exp-num {
    font-size: 42px; font-weight: 800; line-height: 1;
    font-family: var(--font-head);
}
.about-exp-num sup { font-size: 22px; vertical-align: super; color: var(--accent); }
.about-exp-lbl { font-size: 13px; font-weight: 600; opacity: 0.85; line-height: 1.5; }

/* Decorative dots pattern */
.about-decor-dots {
    position: absolute; top: 0; left: -6px;
    width: 80px; height: 80px;
    background-image: radial-gradient(circle, var(--accent) 1.8px, transparent 1.8px);
    background-size: 13px 13px;
    opacity: 0.45;
    z-index: -1;
}
/* Decorative ring */
.about-decor-ring {
    position: absolute; bottom: 55px; left: -20px;
    width: 90px; height: 90px;
    border-radius: 50%;
    border: 14px solid rgba(92,34,69,0.1);
    z-index: -1;
}

/* Text column — filled with a colour panel now that the section runs fluid */
.about-text-col {
    background: var(--light);
    padding: 60px 70px;
}

/* Content box */
.about-content-box { padding-left: 10px; }
.about-heading {
    font-family: var(--font-head);
    font-size: 40px; font-weight: 800;
    color: var(--primary);
    line-height: 1.25;
    margin: 14px 0 0;
    padding-left: 22px;
    position: relative;
}
/* Single slanted accent bar leading the heading (left-aligned context) */
.about-heading::before {
    content: '';
    position: absolute;
    left: 0; top: 8px; bottom: 8px;
    width: 5px;
    background: linear-gradient(180deg, var(--secondary), var(--accent));
    transform: skewX(-14deg);
}
.about-heading span { color: var(--secondary); }
.about-lead {
    font-size: 17px; color: var(--text);
    line-height: 1.8; margin-top: 14px;
}

/* Inline stats row */
.about-stats-row {
    display: flex; align-items: center;
    background: var(--white);
    border-radius: 14px;
    padding: 16px 24px;
    margin: 22px 0;
    box-shadow: 0 4px 24px rgba(92,34,69,0.08);
    border: 1px solid rgba(92,34,69,0.06);
    gap: 0;
}
.about-stat { text-align: center; flex: 1; }
.about-stat-div { width: 1px; height: 40px; background: #dde5f0; flex-shrink: 0; }
.as-num {
    display: block;
    font-size: 24px; font-weight: 800;
    color: var(--primary); line-height: 1;
    font-family: var(--font-head);
}
.as-lbl {
    display: block;
    font-size: 11px; font-weight: 600;
    color: #8a9aaa; text-transform: uppercase;
    letter-spacing: 0.5px; margin-top: 4px;
}

/* Checklist */
.about-check-list {
    list-style: none; padding: 0;
    margin: 0 0 8px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 16px;
}
.about-check-list li {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: var(--text); line-height: 1.5;
}
.about-check-list li i {
    color: var(--secondary); font-size: 15px;
    flex-shrink: 0; margin-top: 2px;
    transition: transform 0.3s;
}
.about-check-list li:hover i { transform: scale(1.25) rotate(-10deg); }

@media (max-width: 991px) {
    .about-main-img { height: 280px; }
    .about-heading { font-size: 26px; }
    .about-stats-row { padding: 12px 14px; gap: 0; }
    .as-num { font-size: 20px; }
    .about-check-list { grid-template-columns: 1fr; }
    .about-content-box { padding-left: 0; }
    .about-img-box { padding: 10px 10px 50px 10px; }
    .about-text-col { padding: 40px 30px; }
}

/* --- Founders: image support --- */
.pvg-founder-card .founder-img-wrap {
    width: 100%; height: 280px;
    overflow: hidden; position: relative;
    background: linear-gradient(135deg, var(--primary), #7a2f5c);
    display: flex; align-items: center; justify-content: center;
}
.pvg-founder-card .founder-img-wrap img.founder-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    display: block; transition: transform 0.5s ease;
}
.pvg-founder-card:hover .founder-img-wrap img.founder-img { transform: scale(1.06); }
.pvg-founder-card .founder-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
}
.pvg-founder-card .founder-img-placeholder i {
    font-size: 80px; color: rgba(255,255,255,0.25);
}

/* --- Facilities: subtle top accent tying content to its icon colour --- */
.pvg-facility-card .fac-content { border-top: 3px solid var(--fac-color); }

/* --- Turf Slider (OWL inside pvg-turf-img) --- */
.pvg-turf-img { position: relative; }
.turf-owl-slider .item img {
    width: 100%; height: 260px;
    object-fit: cover; display: block;
}
.turf-owl-slider { position: relative; }
/* Nav arrows */
.turf-owl-slider .owl-nav button {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 42px; height: 42px;
    background: rgba(255,255,255,0.18) !important;
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255,255,255,0.3) !important;
    border-radius: 50% !important;
    color: #fff !important;
    font-size: 15px !important;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}
.turf-owl-slider .owl-nav button:hover {
    background: var(--secondary) !important;
    border-color: var(--secondary) !important;
    transform: translateY(-50%) scale(1.1);
}
.turf-owl-slider .owl-nav .owl-prev { left: 10px; }
.turf-owl-slider .owl-nav .owl-next { right: 10px; }
.turf-owl-slider .owl-dots {
    position: absolute; bottom: 10px; left: 50%;
    transform: translateX(-50%);
}
.turf-owl-slider .owl-dots .owl-dot span {
    background: rgba(255,255,255,0.5) !important;
    width: 8px; height: 8px; border-radius: 4px;
    transition: all 0.3s;
}
.turf-owl-slider .owl-dots .owl-dot.active span {
    background: var(--accent) !important;
    width: 24px; border-radius: 4px;
}



/* --- Admission Popup — Stylish V2 --- */
.pvg-popup-overlay {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(4,10,30,0.82);
    display: flex; align-items: center; justify-content: center;
    padding: 16px;
    opacity: 0; pointer-events: none;
    backdrop-filter: blur(6px);
    transition: opacity 0.45s ease;
}
.pvg-popup-overlay.active {
    opacity: 1; pointer-events: auto;
}
.pvg-popup-box {
    background: var(--white);
    border-radius: 22px; overflow: hidden;
    max-width: 460px; width: 100%;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
    transform: scale(0.78) translateY(40px);
    transition: transform 0.5s cubic-bezier(0.34,1.56,0.64,1);
}
.pvg-popup-overlay.active .pvg-popup-box { transform: scale(1) translateY(0); }
/* Close button */
.pvg-popup-close {
    position: absolute; top: 12px; right: 12px;
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.28);
    border-radius: 50%; color: #fff; font-size: 13px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 20; transition: all 0.28s;
}
.pvg-popup-close:hover { background: var(--secondary); border-color: var(--secondary); transform: rotate(90deg) scale(1.1); }

/* === Header === */
.popup-header {
    background: linear-gradient(140deg, #1c0a17 0%, #5c2245 55%, #7a2f5c 100%);
    padding: 34px 24px 36px;
    text-align: center; position: relative; overflow: hidden;
}
/* Animated glowing orbs */
.popup-header-orb {
    position: absolute; border-radius: 50%; pointer-events: none;
    animation: popupOrbFloat 5s ease-in-out infinite;
}
.popup-orb-1 {
    width: 180px; height: 180px; top: -70px; left: -50px;
    background: radial-gradient(circle, rgba(201,154,46,0.28), transparent 70%);
    animation-delay: 0s;
}
.popup-orb-2 {
    width: 120px; height: 120px; top: -30px; right: -30px;
    background: radial-gradient(circle, rgba(122,47,92,0.55), transparent 70%);
    animation-delay: 1.5s;
}
.popup-orb-3 {
    width: 100px; height: 100px; bottom: -40px; left: 35%;
    background: radial-gradient(circle, rgba(140,31,63,0.3), transparent 70%);
    animation-delay: 0.8s;
}
@keyframes popupOrbFloat {
    0%,100% { transform: translateY(0) scale(1); }
    50%      { transform: translateY(-18px) scale(1.12); }
}
/* Pulsing ribbon tag */
.popup-ribbon {
    display: inline-block;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 100%);
    color: #fff; font-size: 11px; font-weight: 800;
    letter-spacing: 3px; text-transform: uppercase;
    padding: 6px 22px; border-radius: 30px;
    margin-bottom: 18px;
    position: relative; z-index: 2;
    box-shadow: 0 0 0 0 rgba(140,31,63,0.6);
    animation: ribbonGlow 2.2s ease-in-out infinite;
}
@keyframes ribbonGlow {
    0%,100% { box-shadow: 0 0 0 0 rgba(140,31,63,0); }
    50%      { box-shadow: 0 0 22px 6px rgba(140,31,63,0.5); }
}
/* Logo */
.popup-logo {
    height: 82px; width: auto; display: block;
    margin: 0 auto 10px; position: relative; z-index: 2;
    filter: drop-shadow(0 4px 18px rgba(0,0,0,0.45));
    animation: preloaderPulse 3s ease-in-out infinite;
}
.popup-school-name {
    color: rgba(255,255,255,0.88); font-size: 14px; font-weight: 700;
    letter-spacing: 0.5px; position: relative; z-index: 2; margin-bottom: 16px;
}
/* Year badge */
.popup-year-badge {
    display: inline-flex; flex-direction: column; align-items: center;
    background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 14px; padding: 10px 28px;
    position: relative; z-index: 2;
}
.popup-year-text { font-size: 10px; color: rgba(255,255,255,0.55); letter-spacing: 2.5px; text-transform: uppercase; }
.popup-year-num  { font-size: 24px; font-weight: 800; color: var(--accent); line-height: 1.2; font-family: var(--font-head); }

/* === Body === */
.popup-body { padding: 28px 30px 30px; text-align: center; }
.popup-desc  { font-size: 16px; color: #6a5a62; line-height: 1.75; margin-bottom: 20px; }
.popup-desc strong { color: var(--primary); }

/* Merit list items */
.popup-merit-list {
    display: flex; flex-direction: column; gap: 10px;
    margin: 0 0 22px;
    padding: 16px 20px;
    background: var(--light);
    border-radius: 12px;
    border-left: 4px solid var(--secondary);
    text-align: left;
}
.popup-merit-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 15.5px; color: var(--text); line-height: 1.5;
}
.popup-merit-item i { color: var(--secondary); font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.popup-merit-item strong { color: var(--primary); }

/* Course pills grid */
.popup-courses {
    display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
    margin-bottom: 22px;
}
.popup-course-item {
    display: flex; flex-direction: column; align-items: center; gap: 6px;
    background: var(--light); border-radius: 12px;
    padding: 11px 14px; min-width: 78px;
    border: 1px solid rgba(92,34,69,0.08);
    transition: all 0.28s ease; cursor: default;
}
.popup-course-item:hover {
    background: var(--primary); color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(92,34,69,0.22);
}
.popup-course-item i    { font-size: 18px; color: var(--secondary); transition: color 0.25s; }
.popup-course-item span { font-size: 11px; font-weight: 700; color: var(--primary); transition: color 0.25s; }
.popup-course-item:hover i, .popup-course-item:hover span { color: #fff; }
.popup-course-item:hover i { color: var(--accent); }

/* Apply button — gradient shimmer */
.popup-apply-btn {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(90deg, var(--secondary) 0%, var(--accent) 50%, var(--secondary) 100%);
    background-size: 200% 100%;
    color: #fff; text-decoration: none;
    font-size: 15px; font-weight: 700; letter-spacing: 0.5px;
    padding: 14px 32px; border-radius: 50px; width: 100%;
    box-shadow: 0 8px 28px rgba(140,31,63,0.42);
    animation: btnShimmer 2.8s linear infinite;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 16px;
}
@keyframes btnShimmer {
    0%   { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}
.popup-apply-btn:hover { transform: translateY(-3px); box-shadow: 0 14px 36px rgba(140,31,63,0.6); color: #fff; }

/* Phone */
.popup-phone {
    font-size: 14.5px; color: #8a9aaa; margin-bottom: 10px;
    display: flex; align-items: center; justify-content: center; gap: 7px;
}
.popup-phone i { color: var(--secondary); }
.popup-phone a { color: var(--primary); font-weight: 600; text-decoration: none; }
.popup-phone a:hover { color: var(--secondary); }
/* Est line */
.popup-est { font-size: 12px; color: #b0bec5; letter-spacing: 0.3px; }
.popup-est strong { color: var(--primary); }

@media (max-width: 480px) {
    .popup-body { padding: 20px 18px 24px; }
    .popup-courses { gap: 7px; }
    .popup-course-item { min-width: 64px; padding: 8px 10px; }
    .popup-apply-btn { font-size: 14px; padding: 12px 20px; }
}
