html {
    scroll-behavior: smooth;
}
/* =========================
DARK BLUE SCROLLBAR
========================= */


/* For WebKit browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 14px;
}

::-webkit-scrollbar-track {
  background: #0d1117; /* dark base */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(
    270deg,
    #0f1c3f,
    #1c3f8f,
    #274fd3,
    #0f1c3f
  );
  background-size: 400% 400%;
  animation: scrollGlow 6s ease infinite;
}

@keyframes scrollGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}


/* Hover effect */
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(
    180deg,
    #1c3f8f,
    #274fd3,
    #6b9cff
  );
  box-shadow: 
    0 0 18px rgba(31,79,163,0.7),
    inset 0 0 8px rgba(255,255,255,0.2);
}


/* ================= NAVBAR ================= */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 9999;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 10px 20px;
    background: white;

    box-shadow:
        0 1px 0 rgba(255,255,255,0.8),
        0 8px 24px rgba(0,32,173,0.06),
        0 20px 50px rgba(0,32,173,0.04);
}

@keyframes navbarFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* LEFT SIDE */

.nav-left{
    display:flex;
    align-items:center;
    gap:15px;
}

.nav-left img{
    height:100px;

}

.college-text h1{
    font-size:28px;
    color:#1c3f8f;
}

.college-text p{
    font-size:18px;
    color:#666;
}

/* RIGHT MENU */

.nav-menu {
    display: flex;
    gap: 10px;
    font-weight: 600;
}

.nav-menu a {
    position: relative;
    text-decoration: none;
    color: #0b1c3d;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 999px;
    background: white;
    transition: all 0.4s cubic-bezier(.19,1,.22,1);
    z-index: 1;

    opacity: 0;
    transform: translateY(8px) scale(0.96);
    animation: navItemReveal 0.6s ease-out forwards;
}

/* Nav reveal animation */
@keyframes navItemReveal {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Stagger animation */
.nav-menu a:nth-child(1) { animation-delay: 0.35s; }
.nav-menu a:nth-child(2) { animation-delay: 0.42s; }
.nav-menu a:nth-child(3) { animation-delay: 0.49s; }
.nav-menu a:nth-child(4) { animation-delay: 0.56s; }
.nav-menu a:nth-child(5) { animation-delay: 0.63s; }
.nav-menu a:nth-child(6) { animation-delay: 0.70s; }
.nav-menu a:nth-child(7) { animation-delay: 0.77s; }
.nav-menu a:nth-child(8) { animation-delay: 0.84s; }
.nav-menu a:nth-child(9) { animation-delay: 0.91s; }

/* Gradient capsule */
.nav-menu a::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #1c3f8f, #274fd3);
    background-size: 200% 200%;
    transition: 0.6s cubic-bezier(.19,1,.22,1);
    opacity: 0;
    z-index: -1;
}

/* Glow border */
.nav-menu a::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 999px;
    border: 2px solid #1c3f8f;
    opacity: 0;
    transition: 0.35s ease;
    pointer-events: none;
}

/* Hover */
.nav-menu a:hover {
    color: white;
    transform: scale(1.08);
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    opacity: 1;
    background-position: 100% 50%;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    opacity: 1;
    box-shadow:
        0 6px 20px rgba(28,63,143,0.25),
        0 15px 40px rgba(28,63,143,0.18);
}

.nav-menu a.active {
    color: white;
    font-weight: 700;
}
/* ================= PREMIUM FOOTER ================= */

.premium-footer {
    color: #dbeafe;
    padding: 80px 100px 40px;
    background: linear-gradient(270deg, #0f1f3d, #02101f, #0f1f3d);
    background-size: 400% 400%;
    animation: gradientMove 12s ease infinite;
}
@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}
/* FOOTER COLUMN REVEAL STAGGER */
.footer-column {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(.19,1,.22,1);
}

.footer-column.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay */
.footer-column:nth-child(1) { transition-delay: 0.1s; }
.footer-column:nth-child(2) { transition-delay: 0.2s; }
.footer-column:nth-child(3) { transition-delay: 0.3s; }
.footer-column:nth-child(4) { transition-delay: 0.4s; }

.footer-column h3 {
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
}

.footer-column h3::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #3a6df0;
    position: absolute;
    bottom: -8px;
    left: 0;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 12px;
    font-size: 14px;
    opacity: 0.8;
    cursor: pointer;
    transition: 0.3s ease;
}

.footer-column ul li:hover {
    
    opacity: 1;
    transform: translateX(5px);
    color: white;
    
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 60px;
    padding-top: 20px;
    font-size: 14px;
    opacity: 0.7;
}


/* ================= REVEAL SYSTEM ================= */

.reveal {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(60px) scale(0.95);
    transition:
        opacity 0.9s cubic-bezier(0.22,1,0.36,1),
        transform 0.9s cubic-bezier(0.22,1,0.36,1),
        filter 0.9s ease;
}

/* Directions */
.reveal[data-reveal="left"] {
    transform: translateX(-80px) scale(0.95);
}

.reveal[data-reveal="right"] {
    transform: translateX(80px) scale(0.95);
}

.reveal[data-reveal="bottom"] {
    transform: translateY(80px) scale(0.95);
}

.reveal.active {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0) translateY(0) scale(1);
    transition-delay: 0.1s;
}

.notification-card:nth-child(1) { transition-delay: 0.1s; }
.notification-card:nth-child(2) { transition-delay: 0.2s; }
.notification-card:nth-child(3) { transition-delay: 0.3s; }
.notification-card:nth-child(4) { transition-delay: 0.4s; }
/* ================= FOOTER SOCIALS ================= */

.footer-socials {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}
.footer-socials .social i {
    position: relative;
    z-index: 1;
}
.footer-socials .social:hover::before {
    transform: scale(1);
}

.footer-socials .social {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 2px solid rgba(255,255,255,0.2);
    transition: all 0.4s cubic-bezier(.19,1,.22,1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}


/* Individual colors */

.social.facebook { color: #1877f2; }
.social.youtube { color: #ff0000; }
.social.instagram { color: #e1306c; }
.social.linkedin { color: #0077b5; }

/* HOVER ANIMATION */
.footer-socials a {
    text-decoration: none;
}
.premium-footer a {
    text-decoration: none;
}

.footer-socials .social:hover {
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
}
.footer-socials .social::before {
    content: "";
    position: absolute;
    inset: 0;
    background: white;
    transform: scale(0);
    transition: 0.4s ease;
    border-radius: 12px;
    z-index: 0;
}
@keyframes floatSocial {
    0% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
    100% { transform: translateY(0); }
}

.footer-socials .social {
    animation: floatSocial 4s ease-in-out infinite;
}

.footer-socials .social:nth-child(2) { animation-delay: 0.5s; }
.footer-socials .social:nth-child(3) { animation-delay: 1s; }
.footer-socials .social:nth-child(4) { animation-delay: 1.5s; }
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    padding-top: 120px;
    background: #f8faff;
    animation: pageFade 0.8s ease;
    overflow-x: hidden;
    
}

@keyframes pageFade {
    from { opacity: 0; }
    to { opacity: 1; }
}
/* ================= GPT STYLE DISCLOSURE ================= */

.gpt-section {
    padding-top: 50px;
    padding-bottom: 50px;
    background: #f7f7f8; /* GPT neutral background */
}

.gpt-container {
    max-width: 900px;
    margin: auto;
    padding: 60px;
    background: white;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}
.fa-file-pdf {
    color: #dc2626;
}


/* Title */

.gpt-title h2 {
    font-size: 28px;
    font-weight: 600;
    color: #111827;
}

.gpt-title p {
    margin-top: 6px;
    color: #6b7280;
    font-size: 14px;
}

.gpt-title {
    margin-bottom: 40px;
}

/* Rows */

.gpt-list {
    display: flex;
    flex-direction: column;
}

.gpt-row {
    display: grid;
    grid-template-columns: 220px 1fr;
    padding: 18px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.3s ease;
}

.gpt-row:last-child {
    border-bottom: none;
}

.gpt-row:hover {
    background: #f9fafb; /* subtle GPT hover */
}

.gpt-label {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
}

.gpt-value {
    font-size: 14px;
    color: #111827;
    line-height: 1.6;
}

/* Responsive */

@media (max-width: 768px) {

    .gpt-container {
        padding: 40px 25px;
    }

    .gpt-row {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .gpt-label {
        font-size: 12px;
    }

}
/* ================= GPT PREMIUM ENHANCEMENT ================= */

/* Softer container depth */

.gpt-container {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gpt-container:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* Row animation on load */

.gpt-row {
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    animation: rowFade 0.6s ease forwards;
}

.gpt-row:nth-child(1) { animation-delay: 0.1s; }
.gpt-row:nth-child(2) { animation-delay: 0.15s; }
.gpt-row:nth-child(3) { animation-delay: 0.2s; }
.gpt-row:nth-child(4) { animation-delay: 0.25s; }
.gpt-row:nth-child(5) { animation-delay: 0.3s; }
.gpt-row:nth-child(6) { animation-delay: 0.35s; }
.gpt-row:nth-child(7) { animation-delay: 0.4s; }
.gpt-row:nth-child(8) { animation-delay: 0.45s; }
.gpt-row:nth-child(9) { animation-delay: 0.5s; }
.gpt-row:nth-child(10) { animation-delay: 0.55s; }
.gpt-row:nth-child(11) { animation-delay: 0.6s; }

@keyframes rowFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Left accent bar (GPT subtle indicator) */

.gpt-row::before {
    content: "";
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px;
    height: 60%;
    background: #1028a3; /* ChatGPT green */
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.gpt-row:hover::before {
    transform: translateY(-50%) scaleY(1);
}

/* Smoother hover background */

.gpt-row:hover {
    background: #f3f4f6;
}

/* Better spacing */

.gpt-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* Copy Button */

.copy-btn {
    border: none;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    font-size: 14px;
    opacity: 0;
    transition: all 0.25s ease;
}

.gpt-row:hover .copy-btn {
    opacity: 1;
}

.copy-btn:hover {
    color: #1028a3;
    transform: scale(1.1);
}

/* ================= DOCUMENT ROW ENHANCEMENT ================= */

.doc-row .gpt-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.doc-row .gpt-label i {
    color: #9ca3af;
    font-size: 15px;
    transition: 0.3s ease;
}

.doc-row:hover .gpt-label i {
    color: #1028a3;
}

/* Status Badge */

.status {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 999px;
    font-weight: 500;
}

.status.pending {
    background: #f3f4f6;
    color: #6b7280;
    border: 1px solid #e5e7eb;
}

/* Document Link Button */

.doc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 13px;
    text-decoration: none;
    color: #111827;
    border: 1px solid #e5e7eb;
    transition: all 0.25s ease;
}

.doc-link i {
    font-size: 12px;
    transition: transform 0.25s ease;
}

.doc-link:hover {
    background: #1028a3;
    color: white;
    border-color: #1028a3;
}

.doc-link:hover i {
    transform: translateX(3px);
}
/* ================= RESULT SECTION ================= */

.result-block {
    margin-top: 40px;
}

.result-block h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #111827;
}

/* Table */

.table-wrapper {
    overflow-x: auto;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
}

.modern-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.modern-table thead {
    background: #f3f4f6;
}

.modern-table th {
    padding: 16px;
    text-align: left;
    font-weight: 600;
    color: #6b7280;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-table td {
    padding: 16px;
    border-top: 1px solid #f0f0f0;
    color: #111827;
    font-weight: 500;
}

/* Row hover */

.modern-table tbody tr {
    transition: background 0.25s ease, transform 0.25s ease;
}

.modern-table tbody tr:hover {
    background: #f9fafb;
}

/* Percentage Badges */

.percent {
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
}

.percent.excellent {
    background: #dcfce7;
    color: #166534;
}

.percent.good {
    background: #e0f2fe;
    color: #075985;
}

.percent.average {
    background: #fef3c7;
    color: #92400e;
}
/* STAFF SECTION SUBTLE BLUE ACCENT */

.gpt-title h2 {
    position: relative;
}

.gpt-title h2::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #1028a3, #274fd3);
    border-radius: 4px;
}
/* Infrastructure numeric emphasis */

.gpt-row .gpt-value strong {
    font-size: 15px;
    color: #1028a3;
    font-weight: 600;
}
/* HERO PREMIUM UPGRADE */

.disclosure-hero {
    height: 360px;
    background: linear-gradient(rgba(10,20,60,0.75), rgba(10,20,60,0.75)),
                url('Images/primary\ building.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.disclosure-overlay {
    backdrop-filter: blur(6px);
    padding: 40px 60px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    animation: fadeUpHero 1s ease forwards;
}

@keyframes fadeUpHero {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: 999px;
    font-size: 12px;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.hero-line {
    margin: 25px auto 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg,#1028a3,#6b9cff);
    border-radius: 4px;
}

.disclosure-overlay h1 {
    font-size: 42px;
    font-weight: 700;
}

.disclosure-overlay p {
    margin-top: 12px;
    font-size: 16px;
    opacity: 0.85;
}
.stats-section {
    padding: 80px 100px;
    background: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 30px;
}

/* PREMIUM STATS */

.stat-card {
    background: linear-gradient(145deg,#f8faff,#ffffff);
    padding: 45px;
    border-radius: 22px;
    text-align: center;
    transition: all 0.4s cubic-bezier(.19,1,.22,1);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,#1028a3,#274fd3);
    opacity: 0;
    transition: 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(16,40,163,0.15);
}

.stat-card:hover::before {
    opacity: 0.05;
}

.stat-card h3 {
    font-size: 36px;
    color: #1028a3;
    font-weight: 700;
}


.stat-card p {
    margin-top: 10px;
    color: #6b7280;
}
.progress-bar {
    width:100%;
    height:8px;
    background:#e5e7eb;
    border-radius:20px;
    margin-bottom:6px;
}

.progress-fill {
    height:100%;
    background:linear-gradient(90deg,#1028a3,#274fd3);
    border-radius:20px;
}
.infra-gallery {
    display:grid;
    grid-template-columns: repeat(3,1fr);
    gap:20px;
    margin-bottom:40px;
}

.infra-gallery img {
    width:100%;
    border-radius:16px;
    transition:0.4s ease;
}

.infra-gallery img:hover {
    transform:scale(1.05);
}
.staff-banner {
    height: 260px;
    border-radius: 20px;
    background:
                url('Images/slide4.jpeg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 50px;
    color: white;
    overflow: hidden;
}

.staff-banner-overlay h3 {
    font-size: 28px;
    font-weight: 600;
}

.staff-banner-overlay p {
    margin-top: 12px;
    font-size: 14px;
    opacity: 0.9;
}
.principal-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 40px;
}

.principal-photo img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: 0.4s ease;
}

.principal-photo img:hover {
    transform: translateY(-5px);
}

.principal-info .gpt-row {
    margin-bottom: 18px;
}
.principal-quote {
    margin-top: 25px;
    padding: 20px;
    background: #f8faff;
    border-left: 4px solid #1028a3;
    border-radius: 12px;
    font-style: italic;
    color: #374151;
}

@media (max-width: 768px) {
    .principal-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .principal-photo {
        max-width: 220px;
        margin: 0 auto 30px auto;
    }
}

/* ================= HAMBURGER ================= */

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 10001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #1c3f8f;
    transition: 0.4s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ================= FULL MOBILE FIX ================= */

@media (max-width: 992px) {

    /* Navbar */
    .navbar {
        height: 80px;
        padding: 10px 20px;
    }

    body {
        padding-top: 80px;
    }

    .nav-left img {
        height: 60px;
    }

    .college-text {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background: linear-gradient(135deg,#0f1c3f,#1c3f8f);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 25px;
        transition: 0.4s ease;
    }

    .nav-menu a {
        font-size: 18px;
        background: transparent;
        color: white;
        opacity: 1;
        transform: none;
        animation: none;
    }

    .nav-menu.active {
        right: 0;
    }

    /* Hero */
    .disclosure-hero {
        height: 260px;
    }

    .disclosure-overlay {
        padding: 30px;
    }

    .disclosure-overlay h1 {
        font-size: 28px;
    }

    /* GPT container */
    .gpt-container {
        padding: 30px 20px;
    }

    /* Infra gallery */
    .infra-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    /* Principal layout */
    .principal-layout {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }

    .principal-photo {
        max-width: 220px;
        margin: auto;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .premium-footer {
        padding: 60px 25px 30px;
    }
}