


h1, h2, h3, h4 { font-family: 'Playfair Display', serif; color: var(--uop-navy); }

/* 2. Unified Hero Logic */
.hero {
    position: relative;
    width: 100%;
    height: 90vh;
    background-color: #000;
    overflow: hidden;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    display: flex;
    align-items: center; /* Desktop: Vertical Center */
    justify-content: flex-start; /* Desktop: Left Aligned */
    z-index: 1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Cinematic Zoom Effect */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.15);
    transition: transform 10s ease-out;
    z-index: -1;
}

.slide.active .slide-bg {
    transform: scale(1);
}

/* 3. Hero Content (The Royal Box) */
.hero-content {
    position: relative;
    z-index: 10;
    top: 30%;
    margin-left: 8%;
    max-width: 650px;
    padding: 50px;
    border-left: 6px solid var(--p-orange);
    background: rgba(0, 33, 71, 0.4);
   
}
.hero-content h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    color: #fff;
    line-height: 1.1;
    margin: 15px 0;
    text-transform: uppercase;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 300;
    margin-bottom: 30px;
}

/* NACC Logo Positioning */
.nacc-logo {
    position: absolute;
top: 159px !important;
   /* right: 30px; */
    z-index: 99;
    width: 120px; /* Adjust size as needed */
    height: auto;
}

/* 4. Navigation & Interactive Elements */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    cursor: pointer;
    font-size: 2rem;
    color: #fff;
    background: rgba(0,0,0,0.2);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.arrow:hover { background: var(--p-orange); color: #fff; }
.arrow-prev { left: 20px; }
.arrow-next { right: 20px; }
/* This hides the mobile slider on ALL screens by default */
/* 2. Smooth Ticker */
.marquee-wrp { background: var(--white); padding: 15px 0; border-bottom: 1px solid rgba(0,0,0,0.05); }
.ticker-content { display: inline-block; white-space: nowrap; animation: scrollTicker 30s linear infinite; }
.ticker-content a { font-family: "Poppins", sans-serif; font-weight: 700; color: var(--uop-navy); text-decoration: none; margin: 0 40px; font-size: 13px; }
@keyframes scrollTicker { from { transform: translateX(0); } to { transform: translateX(-100%); } }
/* 5. Responsive Adjustments (The Switch) */
@media only screen and (max-width: 767px) {
    .nacc-logo {
    position: absolute;
    top: 194px !important;
    left: auto !important;
    z-index: 999;
    right: 6px !important;
}

}
@media (max-width: 768px) {


    /* 2. Show the mobile slider now */
    .desktop-slider {
        display: block !important; /* Or 'flex' if you use flexbox alignment */
    }
    
    /* 3. Move text to bottom (as you requested) */
    .desktop-slider .slide {
        align-items: flex-end;
        padding-bottom: 50px;
    }
    .hero { height: 85vh; }

    .slide {
        align-items: flex-end; /* TEXT TO BOTTOM */
        justify-content: center;
        padding-bottom: 60px;
    }

    .hero-content {
        top: 0;
        margin-left: 0;
        width: 92%;
        padding: 25px;
        text-align: center;
        border-left: none;
        border-top: 4px solid var(--p-orange); /* Move border to top for bottom-aligned text */
    }

    .nacc-logo {
        top: 20px;
        right: 20px;
        width: 80px;
    }

    .arrow {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        background: rgba(0,0,0,0.4);
    }
}

/* 6. The Royal Modal (Optimized) */
/* 1. Modal Backdrop */
#imageModalDev.modal {
    display: none; /* Hidden by default, JS will change this to flex */
    position: fixed;
    inset: 0;
    z-index: 999999; /* Stay on top of everything */
    background: rgba(0, 33, 71, 0.85); /* UOP Navy with transparency */
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* 2. Content Box (The Plaque) */
#imageModalDev .modal-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 720px; /* Standard popup size */
   /* border-radius: var(--sig-radius); /* Your 0 60 0 60 shape */
    border: 5px solid var(--p-gold);
    box-shadow: 0 30px 70px rgba(0,0,0,0.5);
    padding: 0;
    max-height: 90vh;  
    overflow: hidden;
    overflow-y: auto; 
    transform: scale(0.7);
    transition: transform 0.6s cubic-bezier(0.17, 0.67, 0.22, 1.15);
}

/* State when Visible */
#imageModalDev.show {
    display: flex;
    opacity: 1;
}

#imageModalDev.show .modal-content {
    transform: scale(1);
}

/* 3. Close Button Styling */
#imageModalDev .close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--p-orange);
    color: white;
    border: 2px solid var(--p-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.cinzel {  letter-spacing: 3px; text-transform: uppercase; }
#imageModalDev .close-btn:hover {
    background: var(--uop-navy);
    transform: rotate(90deg);
}

/* 4. Image inside Modal */
.slider img.sliders {
    width: 100%;
    height: 90vh;
   /* object-fit: cover; /* Keeps images from stretching */
    display: none;     /* Hide all images by default */
}
.slider img.sliders.active {
    display: block;
}

.uop-brand-excellence {
    background: var(--royal-cream);
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.excellence-wrapper {
    display: flex;
    flex-wrap: wrap;
    min-height: 650px;
}

.excellence-col {
    flex: 1;
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

/* 2. Intro Zone (Left) */
.intro-zone {
    padding: 60px 50px;
    background: var(--royal-cream);
    justify-content: center;
}

.top-tag { color: var(--p-orange); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; }
.intro-zone h2 { font-size: clamp(2rem, 4vw, 3rem); color: var(--uop-navy); font-weight: 800; margin: 15px 0; line-height: 1.1; font-family: 'Playfair Display', serif; }
.brand-color { color: var(--p-orange); }
.brand-line { width: 60px; height: 4px; background: var(--p-orange); margin-bottom: 30px; }

.no1-badge { 
    display: flex; align-items: center; gap: 15px; margin-bottom: 40px; 
    background: #fff; padding: 15px; border-radius: 12px; border: 1px solid #eee; width: fit-content;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
}
.badge-icon { font-size: 2rem; color: var(--p-orange); }
.badge-text strong { display: block; font-size: 1.5rem; color: var(--uop-navy); line-height: 1; }
.badge-text small { font-size: 0.75rem; text-transform: uppercase; color: var(--uop-gold); font-weight: 700; }

.btn-brand {
    background: var(--p-orange);
    color: #fff;
    padding: 16px 35px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 5px;
    transition: var(--transition);
    display: inline-block;
    width: fit-content;
}
.btn-brand:hover { background: var(--uop-navy); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 82, 0, 0.2); }

/* 3. Stats Zone (Middle) */
.stats-zone {
    background-image: var(--bg);
    background-size: cover;
    background-position: center;
    position: relative;
    background-attachment: fixed;
}

.stats-overlay {
    flex: 1;
    background: linear-gradient(135deg, rgba(0, 33, 71, 0.9) 0%, rgba(255, 82, 0, 0.2) 100%);
    display: grid; 
    grid-template-columns: 1fr 1fr;
    padding: 40px; 
    align-content: center; 
    gap: 30px;
}

.stat-box { text-align: center; color: #fff; }
.stat-box h3 { font-size: 3.5rem; font-weight: 800; margin: 0; text-shadow: 2px 2px 10px rgba(0,0,0,0.3); }
.stat-box p { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 2px; font-weight: 600; opacity: 0.8; }
.prestige-zone {
    background: #050c1f; /* The dark navy from your image */
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 50px 20px;
    color: #fff;
    border-left: 1px solid rgba(255, 82, 0, 0.1);
}

/* 1. RANK BLOCK */
.rank-badge { position: relative; }
.laurel-wrapper { display: flex; align-items: center; justify-content: center; gap: 25px; }

.side-badge { font-size: 2.8rem; color: #4b5563; opacity: 0.6; } /* Grey/Silver badges */
.flipped { transform: scaleX(-1); }

.rank-main-box { text-align: center; }
.hash-mark { color: #ff5200; font-size: 1.5rem; font-weight: 900; vertical-align: top; margin-right: 2px; }
.rank-number { font-size: 5rem; font-weight: 900; line-height: 0.8; }
.rank-label { font-size: 1rem; font-weight: 700; margin-top: 10px; color: #111827; } /* Dark text like image */
.rank-sub { font-size: 0.75rem; font-weight: 600; color: #111827; letter-spacing: 1px; }

/* 2. PLACEMENT HUD */
.hud-ring {
    width: 190px;
    height: 190px;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-top: 4px solid #ff5200; /* The orange arc */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
}

.hud-icon { color: #ff5200; font-size: 2.5rem; margin-bottom: 5px; }
.hud-title { font-size: 1rem; font-weight: 800; text-transform: uppercase; }
.hud-subtitle { font-size: 0.8rem; color: #9ca3af; margin-top: 4px; }

/* 3. SCHOLARSHIP LINES */
.scholarship-line-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 80%;
    margin: 0 auto 15px;
}

.glow-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, transparent, #ff5200, transparent);
}

.scholarship-line-wrapper i { font-size: 2.5rem; color: #fff; }
.scholar-text { font-size: 1.1rem; font-weight: 700; line-height: 1.3; }

/* Responsive Mobile Fix */
@media (max-width: 991px) {
    .prestige-zone { flex-direction: row; flex-wrap: wrap; }
    .prestige-badge { flex: 1 1 50%; padding: 30px 10px; }
    .scholarship-badge { flex: 1 1 100%; }
}
     .prestige-badge {
    text-align: center;
    padding: 20px 0;
    font-family: 'Poppins', sans-serif;
}

/* THE LINE HEADER */
.badge-header-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 10px;
}

.orange-glow-line {
    flex: 1;
    height: 2px;
    max-width: 120px;
    background: linear-gradient(to right, transparent, #ff5200, transparent);
}

.badge-header-line i {
    font-size: 2.2rem;
    color: #fff;
}

/* THE MAIN CONTENT */
.main-display {
    display: flex;
    align-items: baseline; /* Aligns NAAC to the bottom of A++ */
    justify-content: center;
    gap: 8px;
    line-height: 1;
    margin-bottom: 5px;
}

.orange-prefix {
    color: #ff5200;
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.white-hero {
    font-size: 4.8rem; /* Makes A++ the star */
    font-weight: 900;
    color: #fff;
    letter-spacing: -2px;
}

.white-hero sup {
    font-size: 2.5rem; /* Makes the ++ look premium */
    top: -0.6em;
    margin-left: 2px;
}

.sub-caption {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Responsive Fix */
@media (max-width: 768px) {
    .white-hero { font-size: 3.5rem; }
    .white-hero sup { font-size: 1.8rem; }
    .orange-glow-line { max-width: 70px; }
}
.news-gazette-wrap { 
    padding: 35px 0; 
}


.news-grid { 
    display: grid; 
    grid-template-columns: 1.3fr 0.7fr; 
    gap: 60px; 
    align-items: start;
}
.slider img.sliders {
    width: 100%;
    height: auto;
}
#imageModalDev .close-btn {
    position: absolute;
    top: -2px;
    right: -3px;
    background: var(--p-orange);
    color: #fff;
    border: 2px solid var(--p-gold);
    width: 27px;
    height: 27px;
    border-radius: 50%;
    font-size: 13px;

}
/* 1. Featured News: The Royal Plaque */
.featured-news { 
    position: relative; 
}

.featured-image-wrapper {
    overflow: hidden;
    border-radius: var(--sig-radius); /* 0 60 0 60 */
    box-shadow: 0 30px 60px rgba(0, 33, 71, 0.1);
    border: 1px solid rgba(197, 160, 89, 0.2);
}

.featured-image-wrapper img { 
    width: 100%; 
    height: 520px; 
    object-fit: cover; 
    transition: transform 1s ease;
}

.featured-news:hover img {
    transform: scale(1.05);
}

.news-overlay-card {
    position: absolute; 
    bottom: -40px; 
    right: -20px; 
    width: 85%;
    background: var(--white); 
    padding: 45px; 
    border-left: 8px solid var(--p-orange);
    border-top: 1px solid rgba(197, 160, 89, 0.2);
    box-shadow: 20px 20px 60px rgba(0, 33, 71, 0.12);
}

/* 2. Announcement Vault: The Royal Ledger */
.announcement-vault {
    background: var(--uop-navy); 
    color: #fff; 
    padding: 50px 40px;
    border-radius: 40px 0 40px 0; 
    border-top: 6px solid var(--p-gold);
    position: relative;
    box-shadow: var(--uop-shadow);
}

.announcement-vault::after {
    content: "";
    position: absolute;
    top: 15px; right: 15px; bottom: 15px; left: 15px;
    border: 1px solid rgba(255, 204, 0, 0.1);
    pointer-events: none;
}

.bulletin-item { 
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

/* Date Badge Style */
.date-badge {
    min-width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--p-gold);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.date-badge span { font-size: 18px; font-weight: 800; color: var(--p-gold); line-height: 1; }
.date-badge small { font-size: 10px; text-transform: uppercase; color: #fff; }

.bulletin-info h5 { 
    margin: 0 0 5px 0; 
    font-size: 1.15rem; 
    color: #fff; 
    font-family: 'Playfair Display', serif; 
}

.bulletin-item:hover { transform: translateX(10px); }
.bulletin-item:hover .date-badge { background: var(--p-orange); border-color: var(--p-orange); }

/* Responsive */
@media (max-width: 992px) {
    .news-grid { grid-template-columns: 1fr; gap: 80px; }
    .news-overlay-card { position: static; width: 100%; margin-top: -20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
}
/* --- Unique Section Scoping --- */
.uop-vision-experience {
    padding: 50px 0;
    background-color: var(--uop-cream);
}

/* 1. Top Section Styling */
.vision-top-row {
    margin-bottom: 70px;
    align-items: center;
}

.vision-tag {
    color: var(--p-orange);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.vision-title h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    color: var(--uop-navy);
    line-height: 1.1;
}

.vision-title h2 span {
    color: var(--p-orange);
    font-weight: 800;
}

/* 2. The Royal Quote */
.vision-quote {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    border-bottom: 4px solid var(--p-gold);
    font-style: italic;
    color: var(--uop-navy);
    line-height: 1.8;
    box-shadow: 0 15px 40px rgba(0, 33, 71, 0.05);
    position: relative;
    font-family: 'Rubik', sans-serif;
}

.vision-quote i {
    font-size: 3rem;
    color: var(--p-gold);
    position: absolute;
    top: -20px;
    left: 20px;
    opacity: 0.4;
}

/* 3. Feature Cards */
.vision-feature-card {
    background: #fff;
    border-radius: var(--sig-radius); /* 0 60 0 60 Patanjali Shape */
    overflow: hidden;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.vision-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.vision-card-img {
    height: 300px;
    overflow: hidden;
}

.vision-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.vision-feature-card:hover .vision-card-img img {
    transform: scale(1.1);
}

/* 4. Card Content */
.vision-card-content {
    padding: 40px;
}

.vision-card-content h3 {
    color: var(--uop-navy);
    font-size: 1.8rem;
    margin-bottom: 15px;
    border-left: 4px solid var(--p-orange);
    padding-left: 15px;
}

.vision-card-content p {
    font-size: 1rem;
    color: var(--text-main);
    line-height: 1.7;
}

/* --- Responsive Layout --- */
@media (max-width: 991px) {
    .uop-vision-experience { padding: 60px 0; }
    .vision-top-row { text-align: center; }
    .vision-card-content { padding: 25px; }
    .vision-quote { margin-top: 40px; }
}

@media (max-width: 768px) {
    .vision-cards-grid .col-xs-12 {
        margin-bottom: 30px;
    }
}
:root {
    --gold-grad: linear-gradient(135deg, #fc0 0%, #d4af37 100%);
    --navy-grad: linear-gradient(135deg, #002147 0%, #00152e 100%);
}

.uop-pathway-premium {
    padding: 56px 0;
    background: var(--uop-cream);
    position: relative;
}

/* 1. Header Design */
.premium-header {
    text-align: center;
    margin-bottom: 80px;
}

.premium-header h2 {
    font-size: 3rem;
    color: var(--uop-navy);
    margin-bottom: 15px;
}

.gold-text { color: var(--p-orange); font-weight: 800; }

.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.separator .line {
    height: 2px;
    width: 60px;
    background: var(--gold-grad);
}

.separator i { color: var(--p-orange); font-size: 1.5rem; }

/* 2. Grid & Card Physics */
.premium-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
}

.premium-card {
    position: relative;
    flex: 1;
    min-width: 240px;
    background: #fff;
    border-radius: var(--sig-radius); /* Your 0 60 0 60 shape */
    padding: 2px; /* For the gradient border effect */
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 1;
}

/* Floating Border Effect */
.premium-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--sig-radius);
    padding: 2px;
    background: var(--gold-grad);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.3;
    transition: 0.5s;
}

.premium-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.premium-card:hover::before { opacity: 1; }

/* 3. Card Content Inner */
.card-inner {
    background: #fff;
    border-radius: var(--sig-radius);
    padding: 50px 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.icon-wrap {
    width: 80px;
    height: 80px;
    background: var(--uop-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2.2rem;
    color: var(--uop-navy);
    transition: 0.5s;
    box-shadow: inset 0 0 15px rgba(0,0,0,0.05);
}

.premium-card:hover .icon-wrap {
    background: var(--p-orange);
    color: #fff;
    transform: rotateY(360deg);
}

.premium-card h3 {
    font-size: 1.4rem;
    color: var(--uop-navy);
    margin-bottom: 15px;
    font-weight: 700;
}

.premium-card p {
    text-align:center;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 25px;
}

.card-btn {
    margin-top: auto;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--p-orange);
    text-decoration: none;
    letter-spacing: 1px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.card-btn:hover { border-color: var(--p-orange); }

/* 4. Featured Card (Navy) */
.premium-card.featured .card-inner {
    background: var(--navy-grad);
    color: #fff;
}

.premium-card.featured h3 { color: #fff; }
.premium-card.featured p { color: rgba(255,255,255,0.8); }
.premium-card.featured .icon-wrap { background: rgba(255,255,255,0.1); color: var(--p-gold); }

.popular-tag {
    position: absolute;
    top: 20px;
    right: -10px;
    background: var(--p-orange);
    color: #fff;
    padding: 5px 15px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 4px;
    z-index: 10;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.2);
}

/* 5. Responsive */
@media (max-width: 1024px) {
    .premium-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
    .premium-card.featured { grid-column: span 2; }
}

@media (max-width: 600px) {
    .premium-grid { grid-template-columns: 1fr; }
    .premium-card.featured { grid-column: span 1; }
    .premium-header h2 { font-size: 2.2rem; }
}
.campus-stage-section { padding: 35px 0;}
.video-container { 
    position: relative; padding-bottom: 56.25%; height: 0; 
    border: 10px solid #fff; border-radius: var(--sig-radius); 
    overflow: hidden; box-shadow: 0 30px 60px rgba(0,33,71,0.1); 
}
.video-container iframe { position: absolute; top:0; left:0; width:100%; height:100%; }

.tour-feature { 
    background:#fff; padding:20px; margin-bottom:15px; 
    border-radius:10px; border-left:5px solid var(--p-orange); 
    transition: var(--transition);
}
.tour-feature:hover { transform: translateX(10px); background: var(--uop-navy); color:#fff; }
/* --- Research Vault Section --- */
.research-vault-section {
    padding: 120px 0;
    background: var(--uop-navy);
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* Background watermark effect */
.research-vault-section::before {
    content: "RESEARCH";
    position: absolute;
    font-size: 15rem;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    top: 0; left: -50px;
    font-family: 'Playfair Display';
}
/* 1. Header Typography */
.res-vault-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: #fff;
    margin-top: 15px;
    margin-bottom: 25px;
}

.res-vault-title span {
    color: var(--p-orange);
    font-weight: 300;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.res-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 90%;
    border-left: 3px solid var(--p-orange);
    padding-left: 25px;
}

/* 2. The Stat Grid */
.res-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.res-stat-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.res-stat-card:hover {
    background: var(--white);
    transform: translateY(-10px);
    border-color: var(--p-gold);
}

.res-stat-card h3 {
    font-size: 3rem;
    color: var(--p-gold);
    font-weight: 800;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.res-stat-card h6 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.5;
    transition: 0.3s;
}

.res-stat-card h6 strong {
    color: #fff;
    display: block;
    margin-top: 5px;
    font-size: 1rem;
}

/* Hover Colors Switch */
.res-stat-card:hover h3 { color: var(--uop-navy); }
.res-stat-card:hover h6 { color: var(--text-main); }
.res-stat-card:hover h6 strong { color: var(--p-orange); }

/* 3. Image Frame & Badge */

.res-image-frame {
    position: relative;
    border-radius: var(--sig-radius);
    padding: 15px;
    border: 1px solid var(--p-gold);
}
.res-image-frame img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    filter: saturate(1.1) brightness(0.9);
}


.res-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--p-orange);
    color: #fff;
    padding: 20px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 82, 0, 0.3);
    border: 4px solid var(--uop-navy);
    animation: pulseBadge 3s infinite;
}


@keyframes pulseBadge {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 82, 0, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(255, 82, 0, 0); }
    100% { transform: scale(1); }
}

/* 4. Action Button */
.view-all-research-btn {
    display: block;
    width: 100%;
    margin-top: 30px;
    background: var(--p-gold);
    color: var(--uop-navy);
    padding: 18px;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: var(--transition);
}

.view-all-research-btn:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* 5. Responsive Adjustments */
@media (max-width: 991px) {
    .res-stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .res-image-frame img { height: 350px; }
}

@media (max-width: 576px) {
    .res-stat-grid {
        grid-template-columns: 1fr;
    }
    .res-vault-title { font-size: 2.2rem; }
    .res-description { border-left: none; border-top: 3px solid var(--p-orange); padding: 20px 0 0 0; }
}
/* --- Campus Experience Section --- */
.uop-campus-experience {
    padding: 100px 0;
    background-color: var(--uop-cream);
}

.experience-header {
    text-align: center;
    margin-bottom: 60px;
}

.experience-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--uop-navy);
}

.experience-header .gold-text {
    color: var(--p-orange);
    font-weight: 300;
}

/* 1. Grid Construction */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr; /* Asymmetrical columns */
    gap: 25px;
    height: 700px; /* Fixed height for desktop grid alignment */
}

/* 2. Card Styling */
.exp-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.exp-card.tall {
    height: 100%;
}

.exp-stack {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.exp-stack .exp-card {
    height: calc(50% - 12.5px);
}

/* 3. Thumb & Overlay Physics */
.exp-thumb {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.exp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.exp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 33, 71, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    opacity: 0;
    transition: all 0.4s ease;
    transform: translateY(20px);
}

.exp-overlay p {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Hover States */
.exp-card:hover .exp-thumb img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.exp-card:hover .exp-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* 4. Labels */
.exp-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--p-orange);
    color: #fff;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: 0.4s ease;
    z-index: 5;
}

.exp-card:hover .exp-label {
    opacity: 0; /* Hide label when overlay text appears */
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .experience-grid {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }
    .exp-card.tall:last-child {
        grid-column: span 2;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .experience-grid {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .exp-card, .exp-card.tall, .exp-stack .exp-card {
        height: 350px;
        grid-column: span 1;
    }

    .exp-overlay {
        opacity: 1; /* Keep text visible on mobile since there is no hover */
        background: rgba(0, 33, 71, 0.6);
        transform: translateY(0);
    }
    
    .exp-label {
        top: 20px;
        bottom: auto;
        left: 20px;
    }
}
/* --- Global Partners Scoped Styles --- */
.uop-global-partners {
    padding: 100px 0;
    background: linear-gradient(135deg,rgba(0,33,71,.9) 0%,rgba(255,82,0,.2) 100%);/* Clean white for logos to pop */
}

/* 1. Header Design */
.partners-header {
    text-align: center;
    margin-bottom: 50px;
}

.gold-tag {
    color: var(--p-orange);
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.partners-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #fff;
}

.partners-header h2 span {
    color: var(--p-orange);
}

.header-divider {
    width: 60px;
    height: 4px;
    background: var(--p-gold);
    margin: 20px auto;
}

/* 2. Banner with Signature Shape */
.partners-banner {
    position: relative;
    margin-bottom: 60px;
    border-radius: var(--sig-radius); /* 0 60 0 60 */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.partners-banner img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: brightness(0.8);
}

.banner-glass-label {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 15px 30px;
    color: #fff;
    font-family: 'Cinzel', serif;
    border-left: 4px solid var(--p-gold);
    font-size: 1.2rem;
}

/* 3. Logo Slider Logic */
.partners-slider-wrap {
    padding: 20px 0;
}

.logo-box {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #fff;
    border: 1px solid #f0f0f0;
    margin: 5px;
    border-radius: 8px;
    transition: all 0.4s ease;
}

.logo-box img {
    max-height: 80px;
    width: auto !important; /* Overriding Owl Carousel full-width */
    object-fit: contain;
    filter: grayscale(100%); /* Uniform look */
    opacity: 0.6;
    transition: 0.4s ease;
}

.logo-box:hover {
    border-color: var(--p-gold);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* 4. Footer Button */
.partners-footer {
    text-align: center;
    margin-top: 50px;
}
/* Buttons */
.btn-royal { 
    background: var(--p-orange); color: var(--white); padding: 14px 40px; 
    font-family: "Poppins", sans-serif; font-weight: 700; text-transform: uppercase; 
    border: none; border-radius: 4px; transition: var(--transition); display: inline-block; text-decoration: none;
}
.btn-royal:hover { background: var(--uop-navy); color: var(--p-gold); transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.btn-royal-outline {
    background: #ff5200;
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid #ff5200;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    transition: var(--transition);
}

.btn-royal-outline:hover {
    background: var(--uop-navy);
    color: var(--p-gold);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    .partners-banner img { height: 250px; }
    .banner-glass-label { font-size: 0.9rem; bottom: 15px; left: 15px; padding: 10px 20px; }
    .logo-box { height: 100px; }
    .logo-box img { max-height: 60px; }
}
/* Add this to your existing CSS */
.logo-box {
    position: relative;
    overflow: hidden; /* Important for the shine effect */
}

.logo-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255,255,255,0) 0%, 
        rgba(255,255,255,0.3) 50%, 
        rgba(255,255,255,0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
}

.logo-box:hover::after {
    left: 150%;
    transition: all 0.6s ease;
}

.logo-box:hover {
    border-color: var(--p-gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 33, 71, 0.1);
}
.uop-authority-bar {
    padding: 30px 0;
    background: var(--uop-navy); /* #002147 */
    border-top: 4px solid var(--p-gold); /* The Gold Anchor */
    position: relative;
    overflow: hidden;
}

/* Subtle pattern for institutional feel */
.uop-authority-bar::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 204, 0, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* 2. Flex Layout for Approvals */
.authority-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

/* 3. Item Styling - The "Seal" Look */
.approval-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 500;
    transition: var(--transition);
}

.approval-item i {
    color: var(--p-gold);
    font-size: 1.4rem;
}

.approval-item a {
    color: #fff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 204, 0, 0.3);
    transition: var(--transition);
}

.approval-item a:hover {
    color: var(--p-gold);
    border-bottom-color: var(--p-gold);
}

/* 4. The Vertical Divider */
.auth-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 204, 0, 0.2);
}

/* 5. Achievements Badge - The "Action" Item */
.achievements-badge {
    background: var(--p-orange); /* #ff5200 */
    color: #fff;
    padding: 10px 25px;
    border-radius: 50px;
    font-family: "Poppins", sans-serif, serif;
    font-size: 0.8rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(255, 82, 0, 0.3);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.achievements-badge:hover {
    background: #fff;
    color: var(--p-orange);
    transform: translateY(-3px);
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .authority-flex { justify-content: center; text-align: center; flex-direction: column; }
    .auth-divider { display: none; }
    .approval-item { flex-direction: column; gap: 5px; }
}
sub {
    bottom: 13px;
}
/* --- Royal Modal Overrides --- */
.uop-modal-premium .modal-content {
    border-radius: var(--sig-radius); /* 0 60 0 60 */
    border: 5px solid var(--p-gold);
    background-color: var(--white);
    box-shadow: 0 40px 100px rgba(0, 33, 71, 0.3);
    overflow: hidden;
}

/* Header Styling */
.uop-modal-premium .modal-header {
    background-color: var(--uop-cream);
    color: #fff;
    padding: 40px 30px 20px;
    border: none;
    position: relative;
    justify-content: center;
    text-align: center;
}

.header-main i {
    font-size: 2.5rem;
    color: var(--p-gold);
    display: block;
    margin-bottom: 10px;
}

.uop-modal-premium .modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.gold-divider {
    width: 50px;
    height: 3px;
    background: var(--p-gold);
    margin: 15px auto 0;
}

/* Close Button Override */
.close-btn-royal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--p-orange);
    color: white;
    border: 2px solid var(--p-gold);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn-royal:hover {
    transform: rotate(90deg);
    background: #fff;
    color: var(--p-orange);
}

/* Course Items Styling */
.course-grid-pop {
    padding: 10px 15px;
}

.course-item {
    padding: 15px 20px;
    margin-bottom: 10px;
    background: var(--uop-cream);
    border-left: 4px solid var(--p-gold);
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.course-item span {
    font-weight: 600;
    color: var(--uop-navy);
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.course-item span::before {
    content: "●";
    color: var(--p-orange);
    margin-right: 15px;
    font-size: 0.8rem;
}

.course-item:hover {
    background: var(--uop-navy);
    border-left-color: var(--p-orange);
    transform: translateX(10px);
}

.course-item:hover span {
    color: #fff;
}

/* Footer Action */
.modal-footer-royal {
    padding: 20px 30px 40px;
    text-align: center;
}

.btn-apply-now {
    background: var(--p-orange);
    color: #fff;
    padding: 12px 35px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.4s;
}

.btn-apply-now:hover {
    background: var(--uop-navy);
    color: var(--p-gold);
}
/* Ensure the Modal is the highest layer on the page */
.uop-modal-premium {
    z-index: 100001 !important;
}

/* Ensure the dark background is right behind the modal */
.modal-backdrop {
    z-index: 100000 !important;
}

/* Fix for the card click - ensures the link is clickable */
.card-btn {
    position: relative;
    z-index: 50;
    cursor: pointer !important;
}
/* Announcement Bar Styling */
.announcement-bar {
    background: #b30000; /* Deep Red for Urgency */
    color: #ffffff;
    padding: 12px 20px;
    text-align: center;
    font-family: 'Cinzel', serif; /* Matching your existing typography */
    font-weight: bold;
    font-size: 19px;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    
    /* The Flash Animation */
    animation: pulse-red 2s infinite;
}

.announcement-content {
    display: inline-block;
}

.flash-icon {
    color: #ffd700; /* Gold Icon */
    margin-right: 8px;
    animation: blink 1s steps(5, start) infinite;
}

.apply-link {
    color: #ffd700;
    text-decoration: underline;
    margin-left: 15px;
    text-transform: uppercase;
    font-size: 13px;
}

/* Keyframes for the Pulse effect */
@keyframes pulse-red {
    0% { background-color: #b30000; }
    50% { background-color: #e60000; } /* Lighter red flash */
    100% { background-color: #b30000; }
}

/* Keyframes for the blinking dot */
@keyframes blink {
    to { visibility: hidden; }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .announcement-bar {
        font-size: 13px;
        padding: 10px;
    }
    
}
/* Update: Changed from .sliders to .achievement-slide */

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* Navigation Button Styling */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%; /* Center vertically */
    width: auto;
    padding: 16px;
    margin-top: -22px; /* Offset for exact centering */
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.4s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0, 0, 0, 0.3); /* Subtle dark background */
    border: none;
    z-index: 2001; /* Stay above the image */
}

/* Position the "next" button to the right */
.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

/* Position the "prev" button to the left */
.prev {
    left: 0;
}

/* Hover Effect: Patanjali Gold Accent */
.prev:hover, .next:hover {
    background-color: #c2912e; /* Matches your --accent-gold */
    color: #ffffff;
    text-shadow: 0 0 5px rgba(0,0,0,0.5);
}

/* Close Button (Integrated for consistency) */
.close-btn {
    position: absolute;
    top: -40px;
    right: 0;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    background: none;
    border: none;
    cursor: pointer;
}

.close-btn:hover {
    color: #bbb;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
    .prev, .next {
        padding: 10px;
        font-size: 18px;
    }
}
/* Hide all achievement images by default */
.sliders {
    display: none; 
    width: 100%;
    height: auto;
    object-join: contain;
}

/* Optional: Add a fade-in for a professional feel */
.sliders.active {
    display: block !important;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

