/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Modern Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(230, 247, 217, 0.98) 0%, rgba(249, 249, 197, 0.98) 100%);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.page-loader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-container {
    text-align: center;
    position: relative;
}

.loader-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto 30px;
    animation: logoFloat 3s ease-in-out infinite;
    position: relative;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(255, 215, 0, 0.4));
    animation: logoPulse 2s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.loader-text {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);
    letter-spacing: 2px;
    animation: textFade 2s ease-in-out infinite;
}

@keyframes textFade {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.loader-progress {
    width: 300px;
    height: 4px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    margin: 0 auto 30px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    background-size: 200% 100%;
    border-radius: 10px;
    transition: width 0.3s ease;
    animation: progressShine 2s linear infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

@keyframes progressShine {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.loader-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: #ffd700;
    border-radius: 50%;
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(1) {
    animation-duration: 1.5s;
    border-top-color: #ffd700;
}

.spinner-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    animation-duration: 1.2s;
    animation-direction: reverse;
    border-top-color: #ffed4e;
    opacity: 0.8;
}

.spinner-ring:nth-child(3) {
    width: 50%;
    height: 50%;
    top: 25%;
    left: 25%;
    animation-duration: 1s;
    border-top-color: rgba(255, 215, 0, 0.6);
    opacity: 0.6;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Responsive Loader */
@media (max-width: 768px) {
    .loader-logo {
        width: 90px;
        height: 90px;
        margin-bottom: 20px;
    }
    
    .loader-text {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .loader-progress {
        width: 250px;
    }
    
    .loader-spinner {
        width: 60px;
        height: 60px;
    }
}

.container {
    width: 100%;
    max-width: 1320px;
    /* adjust based on your design */
    margin: 0 auto;
    /* centers the container */
    padding: 0 16px;
    /* horizontal padding for small devices */
    box-sizing: border-box;
}

/* For smaller breakpoints (Bootstrap-like behavior) */
@media (max-width: 1400px) {
    .container {
        max-width: 1140px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 12px;
    }
}

/* Top Bar */
.top-bar {
    color: white;
    padding: 12px 30px;
    font-size: 14px;
    position: absolute;
    width: 100%;
    z-index: 100;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 10px;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-width: 490px;
}

.logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.main-logo {
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.separator {
    font-weight: 300;
    font-size: 18px;
    margin: 0 2px;
}

.sub-logo {
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.top-links {
    display: flex;
    gap: 20px;
    align-self: flex-start;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}

.top-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 13px;
}

.top-links a:hover {
    color: #ffd700;
}

/* Header */
.header {
    position: absolute;
    top: 55px;
    left: 0;
    right: 30px;
    z-index: 101;
}

/* Subpage header (non-hero) — solid background and positioned in flow */
body.subpage .top-bar {
    position: relative;
    background: #fff;
    color: #333;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    margin-top: 0px;
}

body.subpage .top-links {
    border-bottom: none;
    padding-bottom: 0;
}

body.subpage .top-links a {
    color: #333;
}

body.subpage .header {
    position: relative;
    top: 0;
    background: #fff;
    color: #333;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    z-index: 100;
}

body.subpage .nav-link {
    color: #333;
}

body.subpage .nav-link:hover,
body.subpage .nav-link.active {
    color: #ffd700;
}

/* Ensure active underline is visible on light header */
body.subpage .nav-link.active::after {
    background: #ffd700;
}

/* Adjust hero-specific absolute elements only on home (no change needed) */

.navbar {
    display: flex;
    justify-content: center;
    align-items: normal;
    /* background: rgba(44, 62, 80, 0.95); */
    /* backdrop-filter: blur(10px); */
    padding: 12px 0px;
    /* border-radius: 0; */
    margin: 0;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 13px;
    transition: color 0.3s ease;
    position: relative;
    text-transform: capitalize;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #ffd700;
}

/* Redesigned header / menu styles */
.top-bar.header-bar {
    position: relative;
    background: #ffffff;
    color: #222;
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.top-bar.header-bar .top-bar-content {
    align-items: center;
}

.top-bar.header-bar .top-links {
    align-items: center;
    border-bottom: none;
    padding-bottom: 0;
}

.subpage .top-bar.header-bar .top-links {
    margin-top: 15px;
}

.menu-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 6px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.06);
    color: inherit;
    cursor: pointer;
    transition: all .18s ease;
    font-weight: 600;
}

.menu-btn:focus {
    outline: 3px solid rgba(255, 215, 0, 0.22);
    outline-offset: 3px;
}

.menu-btn .hamburger {
    width: 18px;
    height: 2px;
    background: currentColor;
    display: inline-block;
    position: relative;
}

.menu-btn .hamburger::before,
.menu-btn .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: currentColor;
}

.menu-btn .hamburger::before {
    top: -6px;
}

.menu-btn .hamburger::after {
    top: 6px;
}

.menu-btn:hover {
    background: rgba(0, 0, 0, 0.04);
    transform: translateY(-1px);
}

/* Full-screen menu refinements */
.full-menu {
    position: fixed;
    inset: 0;
    display: flex;
    z-index: 20000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    background: rgba(0, 0, 0, 0.35);
    align-items: stretch;
}

.full-menu {
    overflow: hidden;
    /* prevent scroll on the overlay itself */
}

.full-menu.open {
    opacity: 1;
    visibility: visible;
}

.full-menu .full-menu-left {
    width: 40%;
    min-width: 320px;
    background: linear-gradient(180deg, rgba(230, 247, 217, 0.9) 0%, rgba(249, 249, 197, 0.9) 100%);
    color: #fff;
    padding: 80px 40px;
    overflow: auto;
}

.full-menu .full-menu-left {
    width: 38%;
    min-width: 280px;
    padding: 40px 24px;
    /* reduced vertical padding to avoid overflow */
    overflow: hidden;
    /* avoid internal scrolling */
}

.full-menu .main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.full-menu .main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.full-menu .main-menu li {
    font-size: 22px;
    cursor: pointer;
}

.full-menu .main-menu li {
    font-size: 18px;
    cursor: pointer;
    padding: 6px 0;
    line-height: 1.05;
}

.full-menu .main-menu li a {
    display: inline-block;
    padding: 4px 0;
}

.full-menu .main-menu li a {
    color: inherit;
    text-decoration: none;
}

.full-menu .main-menu li:hover {
    color: #ffd700;
}

.full-menu .full-menu-right {
    width: 60%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.full-menu .panel-inner {
    background: rgba(0, 0, 0, 0.45);
    padding: 40px;
    width: 100%;
    height: 100%;
    overflow: auto;
}

.submenu-panel {
    display: none;
}

.submenu-panel.active {
    display: block;
}

.close-full {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 21000;
    background: transparent;
    border: none;
    font-size: 28px;
    color: #fff;
    cursor: pointer;
}

/* Responsive adjustments */

/* small screens: compact header */
@media (max-width: 480px) {
    .logo-circle {
        width: 48px;
        height: 48px;
    }

    .main-logo {
        font-size: 14px;
    }
}

/* Modern creative full-menu enhancements */
.full-menu {
    perspective: 1200px;
}

.full-menu .decor-shape {
    position: absolute;
    pointer-events: none;
    filter: blur(40px) saturate(1.1);
    opacity: 0.18;
}

.full-menu .decor-shape.one {
    right: 10%;
    top: 8%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 30% 30%, #ffd700, transparent 40%);
    transform: translateZ(-60px);
}

.full-menu .decor-shape.two {
    left: 8%;
    bottom: 6%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle at 70% 70%, #4CAF50, transparent 40%);
    transform: translateZ(-30px);
}

/* menu items animation */
@keyframes menuItemIn {
    from {
        opacity: 0;
        transform: translateX(-18px) scale(.98);
    }

    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.full-menu .main-menu li {
    opacity: 0;
    transform: translateX(-18px);
}

.full-menu.open .main-menu li {
    animation: menuItemIn .42s cubic-bezier(.2, .9, .2, 1) forwards;
}

.full-menu.open .main-menu li:nth-child(1) {
    animation-delay: .06s;
}

.full-menu.open .main-menu li:nth-child(2) {
    animation-delay: .12s;
}

.full-menu.open .main-menu li:nth-child(3) {
    animation-delay: .18s;
}

.full-menu.open .main-menu li:nth-child(4) {
    animation-delay: .24s;
}

.full-menu.open .main-menu li:nth-child(5) {
    animation-delay: .30s;
}

.full-menu.open .main-menu li:nth-child(6) {
    animation-delay: .36s;
}

.full-menu.open .main-menu li:nth-child(7) {
    animation-delay: .42s;
}

.full-menu.open .main-menu li:nth-child(8) {
    animation-delay: .48s;
}

.full-menu.open .main-menu li:nth-child(9) {
    animation-delay: .54s;
}

.full-menu .main-menu li::before {
    content: '';
    position: absolute;
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: linear-gradient(180deg, #ffd700, #ff8a00);
    opacity: .95;
}

.full-menu .main-menu li::before {
    /* removed decorative bullets for a cleaner compact list */
    content: none;
}

.full-menu .panel-inner {
    background: rgba(0, 0, 0, 0.45);
    padding: 24px;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.full-menu .main-menu li {
    opacity: 0;
    transform: translateX(-12px);
}

.full-menu.open .main-menu li {
    animation: menuItemIn .36s cubic-bezier(.2, .9, .2, 1) forwards;
}

.full-menu.open .main-menu li:nth-child(1) {
    animation-delay: .04s;
}

.full-menu.open .main-menu li:nth-child(2) {
    animation-delay: .08s;
}

.full-menu.open .main-menu li:nth-child(3) {
    animation-delay: .12s;
}

.full-menu.open .main-menu li:nth-child(4) {
    animation-delay: .16s;
}

.full-menu.open .main-menu li:nth-child(5) {
    animation-delay: .20s;
}

.full-menu.open .main-menu li:nth-child(6) {
    animation-delay: .24s;
}

.full-menu.open .main-menu li:nth-child(7) {
    animation-delay: .28s;
}

.full-menu.open .main-menu li:nth-child(8) {
    animation-delay: .32s;
}

.full-menu.open .main-menu li:nth-child(9) {
    animation-delay: .36s;
}

.full-menu .full-menu-right::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.45));
    mix-blend-mode: multiply;
    pointer-events: none;
}

.full-menu .panel-inner {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.12));
    padding: 48px;
    border-radius: 8px;
}

.full-menu .submenu-panel h3 {
    font-size: 26px;
    margin-bottom: 12px;
    color: #fff;
    letter-spacing: .6px;
}

.full-menu .submenu-panel ul li a {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
}

.full-menu .submenu-panel ul li a:hover {
    color: #ffd700;
    text-decoration: auto;
}

.close-full {
    background: rgba(255, 255, 255, 0.08);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

/* subtle parallax transform on right panel when opening */
.full-menu.open .full-menu-right {
    transform-origin: right center;
    animation: rightPanelIn .5s cubic-bezier(.2, .9, .2, 1) both;
}

@keyframes rightPanelIn {
    from {
        transform: translateZ(-40px) scale(.98);
        filter: blur(2px);
    }

    to {
        transform: translateZ(0) scale(1);
        filter: none;
    }
}

/* focus states and keyboard visibility */
.full-menu:focus {
    outline: none;
}

.full-menu .main-menu li:focus {
    outline: 3px solid rgba(255, 215, 0, 0.16);
    outline-offset: 6px;
}

/* small polish for mobile: full-screen single column with cards */
@media (max-width: 900px) {
    .full-menu .panel-inner {
        padding: 24px;
        border-radius: 6px;
    }

    .full-menu .main-menu li {
        font-size: 18px;
    }
}


/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 3;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 30px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Social Media Icons in Hero */
.hero-social-icons {
    position: absolute;
    bottom: 40px;
    right: 40px;
    display: flex;
    gap: 12px;
    z-index: 4;
}

.hero-social-icon {
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-social-icon:hover {
    background: rgba(255, 215, 0, 0.8);
    color: #000;
    transform: translateY(-2px);
}

.hero-social-icon i {
    font-size: 14px;
}

/* News Scrolling Behind Hero */
.hero-news-scroll {
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
    z-index: 5;
    height: 60px;
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.hero-news-ticker {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.hero-news-content {
    display: inline-block;
    animation: hero-scroll-left 25s linear infinite;
    padding-right: 50px;
}

.hero-news-item {
    display: inline-block;
    margin-right: 80px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

@keyframes hero-scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.hero-news-ticker:hover .hero-news-content {
    animation-play-state: paused;
}

/* Feature Section */
.feature-section {
    padding: 0 0 80px;
    background: white;
}

.feature-tabs {
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, rgba(230, 247, 217, 0.9) 0%, rgba(249, 249, 197, 0.9) 100%);
    border-radius: 15px;
}

.feature-tab-nav {
    display: flex;
    position: absolute;
    z-index: 100;
    padding-top: 20px;
    padding-left: 20px;
}

.tab-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 60px;
    margin-right: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.tab-number .tab-num {
    font-size: 24px;
    font-weight: 700;
    color: #999;
    transition: all 0.3s ease;
}

.tab-number.active .tab-num {
    color: #fff;
}

.tab-number.active,
.tab-number:hover {
    background: #ffd700;
    border-radius: 50px;
}

.tab-number:hover .tab-num {
    color: #fff;
}



.tab-number.active::before,
.tab-number:hover::before {
    width: 100%;
}

.feature-tab-content {
    position: relative;
    padding-left: 30px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.feature-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.feature-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

.feature-image {
    margin-bottom: -6px;
}

.feature-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

/* Why Choose Us Section */
.why-choose-us {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
    background: url('https://images.unsplash.com/photo-1562774053-701939374585?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2086&q=80');
    background-size: cover;
    background-position: center;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(230, 247, 217, 0.9) 0%, rgba(249, 249, 197, 0.9) 100%);
    z-index: 1;
}

.why-choose-us .container {
    position: relative;
    z-index: 2;
}

.why-choose-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #e6b800;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
    text-align: left;
    margin-left: 20px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.why-choose-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.why-choose-image {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-text {
    color: #e6b800;
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 0px;
    text-align: center;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}

.why-choose-item {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-10px);
}

.why-choose-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

.why-choose-item p {
    font-weight: 600;
    color: #333;
}

/* College Experience Section */
.college-experience {
    background: #000;
    padding: 100px 0;
    color: white;
}

.college-experience-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 20px;
}

.college-experience-title strong {
    color: #ffd700;
}

.college-experience-subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 60px;
    max-width: 600px;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.experience-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.experience-item:hover {
    transform: scale(1.05);
}

.experience-label {
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    background: #ffd700;
    color: #000;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 14px;
    z-index: 2;
    border-radius: 5px;
}

.experience-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: filter 0.3s ease;
}

.experience-item:hover img {
    filter: brightness(0.8);
}

/* What's Happening Section */
.whats-happening {
    padding: 80px 0;
    background: white;
}

.whats-happening-title {
    font-size: 2.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 40px;
    text-align: left;
}

.title-bold {
    font-weight: 700;
}

.whats-happening-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.events-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    height: 600px;
    /* Fixed height to match right column */
}

.event-item {
    display: flex;
    flex-direction: row;
    gap: 20px;
    transition: transform 0.3s ease;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.event-image {
    flex: 0 0 40%;
    max-width: 40%;
}

.event-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.event-content {
    flex: 0 0 60%;
    max-width: 60%;
}

.event-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.event-content p {
    color: #666;
    line-height: 1.6;
    font-size: 0.9rem;
}

.schedule-column {
    border-left: 1px solid #eee;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    height: 600px;
    /* Fixed height to match left column */
    position: relative;
}

.schedule-slider {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    height: 80px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.schedule-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #f5f5f5;
}

.schedule-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.slider-btn {
    background-color: #f0f0f0;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: background-color 0.3s;
}

.slider-btn:hover {
    background-color: #ddd;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.schedule-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.schedule-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.schedule-content {
    flex: 1;
}

.schedule-content h4 {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.schedule-content p {
    color: #666;
    font-size: 0.8rem;
}

.whats-happening-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-dark {
    background: #000;
    color: white;
}

.btn-dark:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Magazine Section */
.magazine-section {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(230, 247, 217, 0.9) 0%, rgba(249, 249, 197, 0.9) 100%);
}

.magazine-content {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
}

.magazine-label {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffd700;
    transform: rotate(180deg);
    text-shadow: 0 0 6px rgba(0, 0, 0, 0.7),
        0 0 10px rgba(0, 0, 0, 0.5);
}

.magazine-main {
    position: relative;
    text-align: center;
}

.magazine-main-link {
    display: block;
    border-radius: 15px;
    overflow: hidden;
}

.magazine-main img {
    width: 100%;
    max-height: 100vh;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.magazine-nav {
    position: absolute;
    top: 20px;
    right: 20px;
    /*display: flex;*/
    gap: 10px;
    display: none;
}

.magazine-main {
    position: relative;
    text-align: center;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.magazine-main:hover {
    /*transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);*/
}

.magazine-main img {
    width: 100%;
    max-height: calc(100vh - 40px);
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease-in-out;
}

.magazine-main:hover img {
    filter: brightness(1.1);
	transform: scale(1.01);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.magazine-access-btn {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 36px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    letter-spacing: 1px;
    background: rgba(255, 215, 0);
    color: #3b2b00;
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(18px);
    box-shadow: 0 25px 40px rgba(41, 32, 0, 0.35),
        inset 0 0 40px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 10;
}

.magazine-access-btn:hover {
    transform: translateX(-50%) translateY(-4px) scale(1.04);
    background: rgba(255, 215, 0, 0.35);
    box-shadow: 0 35px 60px rgba(41, 32, 0, 0.45),
        inset 0 0 50px rgba(255, 255, 255, 0.25);
}

.magazine-access-btn:active {
    transform: translateX(-50%) translateY(-1px) scale(1.01);
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.nav-dot.active {
    background: white;
}

.magazine-main-url {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    /*display: flex;*/
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 14px 18px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff5bf;
    font-size: 14px;
    text-align: left;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.magazine-main-url span {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 245, 191, 0.8);
}

.magazine-main-url a {
    color: #ffe066;
    text-decoration: none;
    font-weight: 600;
    word-break: break-word;
}

.magazine-main-url a:hover {
    text-decoration: underline;
}

.magazine-thumbnails {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.magazine-thumbnails img {
    width: 100px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.magazine-thumbnails img:hover {
    transform: scale(1.1);
}

.magazine-thumbnails img.active {
    outline: 3px solid rgba(255, 215, 0, 0.9);
    transform: scale(1.05);
}

/* Take First Step Section */
.take-first-step {
    background: #ffd700;
    padding: 80px 0;
}

.take-first-step-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: center;
}

.take-first-step-text h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 20px;
}

.take-first-step-text p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 30px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.3rem;
    font-weight: 600;
    color: #000;
}

.contact-info i {
    font-size: 1.5rem;
}

.take-first-step-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-link {
    padding: 15px 25px;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.step-link:hover {
    background: #333;
    transform: translateY(-2px);
}

/* All About You Section */
.all-about-you {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.all-about-you-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.all-about-you-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.all-about-you::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1470&q=80') center/cover no-repeat;
    z-index: 1;
}

.all-about-you-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 60px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.all-about-you-title strong {
    color: #ffd700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: white;
    font-weight: 600;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-circle {
    width: 150px;
    height: 150px;

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

img {
    max-width: 100%;
}

.logo-text {
    display: flex;
}

.light-text {
    font-size: 12px;
    font-weight: 600;
    color: #ffd700;
}

.academy-text {
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin-top: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-3px);
}

.timeline-select {
    background: #333;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 16px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    color: #ffd700;
    width: 20px;
}

.footer-links {
    display: grid;
    /* grid-template-columns: repeat(4, 1fr); */
    gap: 40px;
    border-top: 1px solid #333;
    padding-top: 40px;
}

.text-center {
    text-align: center !important;
}

.footer-column h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        display: block;
        margin-top: -30px;
        float: right;
        margin-right: 10px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-social-icons {
        bottom: 20px;
        right: 20px;
        gap: 8px;
    }

    .hero-social-icon {
        width: 30px;
        height: 30px;
    }

    .hero-social-icon i {
        font-size: 12px;
    }

    .hero-news-scroll {
        height: 50px;
    }

    .hero-news-item {
        font-size: 12px;
        margin-right: 60px;
    }

    .feature-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .whats-happening-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .magazine-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .magazine-label {
        writing-mode: horizontal-tb;
        transform: none;
    }

    .magazine-thumbnails {
        flex-direction: row;
        /*justify-content: center;*/
    }

    .take-first-step-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    /* .footer-links {
        grid-template-columns: repeat(2, 1fr); 
    } */
    .footer-logo {
        text-align: center;
        margin: 0 auto;
    }

    .feature-tab-nav {
        position: relative;
    }

    .mobile-menu-toggle {
        text-align: right;
    }

    header.header {
        right: 0px;
    }

    .top-links {
        margin-top: 20px;
        border: 0px;
        text-align: end;
        display: block;
    }

    .top-links a {
        padding: 10px;
    }

    .logo-section {
        display: block;
    }

    .full-menu .full-menu-left {
        width: 100%;
        min-width: auto;
        padding: 40px 20px;
    }

    .full-menu .full-menu-right {
        display: none;
    }

    .text-menus {
        display: none;
    }

    .top-bar-content {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-social-icons {
        bottom: 15px;
        right: 15px;
        gap: 6px;
    }

    .hero-social-icon {
        width: 28px;
        height: 28px;
    }

    .hero-social-icon i {
        font-size: 11px;
    }

    .hero-news-scroll {
        height: 45px;
    }

    .hero-news-item {
        font-size: 11px;
        margin-right: 50px;
    }

    .why-choose-title,
    .college-experience-title,
    .all-about-you-title {
        font-size: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* News Scroll Section */
.news-scroll-section {
    background: #f8f9fa;
    padding: 20px 0;
    border-top: 1px solid #dee2e6;
    position: relative;
}

.social-media-icons {
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.social-icon {
    width: 35px;
    height: 35px;
    background: #2c3e50;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #ffd700;
    color: #2c3e50;
    transform: translateY(-2px);
}

.social-icon i {
    font-size: 14px;
}

.news-ticker {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.news-content {
    display: inline-block;
    animation: scroll-left 30s linear infinite;
    padding-right: 50px;
}

.news-item {
    display: inline-block;
    margin-right: 100px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Pause animation on hover */
.news-ticker:hover .news-content {
    animation-play-state: paused;
}

.slider_media {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0
}

.video-background-controls {
    display: none;
}

/* Subpage content styles: cards, grids, gallery, contact form and FAQ */
.page-hero {
    padding: 60px 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(255, 255, 255, 0.02));
}

.page-hero h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.page-hero p {
    color: #555;
    max-width: 900px;
}

.content.container {
    padding: 60px 0;
}

.section-block {
    margin: 50px 0;
    padding: 10px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 16px;
}

.two-col {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.two-col img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 12px;
}

.metrics-banner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 24px 0 60px;
}

.metrics-banner .metric {
    background: #000;
    color: #fff;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.metrics-banner .metric .value {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffd700;
}

.metrics-banner .metric .label {
    font-weight: 600;
    color: #eaeaea;
}

.icon-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.icon-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.icon-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffd700;
    color: #000;
    font-size: 22px;
    margin-bottom: 10px;
}

.icon-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.icon-card p {
    color: #666;
}

.timeline {
    position: relative;
    margin: 30px 0 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #eee;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 18px;
}

.timeline-year {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffd700;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

.timeline-content {
    background: #fff;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.history-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 24px 0 10px;
    align-items: start;
}

.history-card {
    background: #fff;
    border-radius: 12px;
    padding: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    position: relative;
}

.history-year {
    position: absolute;
    top: -12px;
    left: 12px;
    background: #ffd700;
    color: #000;
    font-weight: 800;
    padding: 6px 10px;
    border-radius: 6px;
}

.history-card p {
    margin-top: 20px;
    color: #555;
}

.faculties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.faculty-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.faculty-card i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #ffd700;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 18px;
}

.image-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.campus-intro {
    color: #555;
    margin-top: 8px;
    margin-bottom: 16px;
}

.visit-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 20px 0 10px;
}

.visit-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.visit-card i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #ffd700;
    color: #000;
    margin-bottom: 8px;
}

.visit-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.visit-card p {
    color: #666;
}

.cta-visit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: #f5f5f5;
    border-radius: 12px;
    padding: 24px;
    margin-top: 30px;
}

.cta-visit h3 {
    font-size: 1.6rem;
    font-weight: 800;
}

.cta-visit p {
    color: #666;
}

.search-bar {
    display: flex;
    gap: 12px;
    margin-top: 18px;
}

.search-bar input {
    flex: 1;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.card .card-body {
    padding: 18px;
}

.card .card-title {
    font-weight: 700;
    color: #222;
    margin-bottom: 8px;
}

.card .card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.team-member h4 {
    margin-top: 12px;
    font-size: 1.05rem;
}

.team-member p {
    color: #777;
    font-size: 0.95rem;
}

.gallery-grid .grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gallery-grid .grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.services-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.services-list li {
    background: #fff;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 30px;
    align-items: start;
}

.contact-form .form {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: 1px solid #e6e6e6;
    margin-bottom: 14px;
}

.contact-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.contact-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 12px;
}

.faq-list .faq-item {
    background: #fff;
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}

.faq-answer {
    margin-top: 10px;
    color: #555;
    display: none;
}

/* Responsive adjustments for new subpage sections */
@media (max-width: 1024px) {
    .section-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid .grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .icon-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .visit-highlights {
        grid-template-columns: repeat(2, 1fr);
    }

    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .history-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-form {
        grid-template-columns: 1fr;
    }

    .gallery-grid .grid img {
        height: 140px;
    }

    .two-col {
        grid-template-columns: 1fr;
    }

    .two-col img {
        height: 220px;
    }

    .metrics-banner {
        grid-template-columns: repeat(2, 1fr);
    }

    .icon-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .faculties-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .image-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-visit {
        flex-direction: column;
        text-align: center;
    }

    .search-bar {
        flex-direction: column;
    }

    .visit-highlights {
        grid-template-columns: 1fr;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .history-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gallery-grid .grid {
        grid-template-columns: 1fr;
    }

    .card img {
        height: 160px;
    }

    .metrics-banner {
        grid-template-columns: 1fr;
    }

    .icon-cards {
        grid-template-columns: 1fr;
    }

    .faculties-grid {
        grid-template-columns: 1fr;
    }

    .image-grid {
        grid-template-columns: 1fr;
    }

    .two-col {
        gap: 24px;
    }
}

/* Dark header and full-screen menu styles (appended) */
body.subpage.dark-header .top-bar,
body.subpage.dark-header .header {
    background: linear-gradient(90deg, #0b1220 0%, #0e1a2b 100%);
    color: #fff;
}

body.subpage.dark-header .top-links a,
body.subpage.dark-header .nav-link {
    color: rgba(255, 255, 255, 0.95);
}

body.subpage.dark-header .top-links a:hover,
body.subpage.dark-header .nav-link:hover,
body.subpage.dark-header .nav-link.active {
    color: #ffd700;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.text-menus {
    display: flex;
    gap: 18px;
    align-items: center;
}

.text-menus a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.text-menus a:hover {
    color: #ffd700;
}

.menu-btn {
    margin-left: auto;
    display: flex;
    gap: 10px;
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.menu-btn .hamburger {
    width: 18px;
    height: 2px;
    background: white;
    position: relative;
    display: inline-block;
}

.menu-btn .hamburger::before,
.menu-btn .hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: white;
}

.menu-btn .hamburger::before {
    top: -6px;
}

.menu-btn .hamburger::after {
    top: 6px;
}

.menu-btn .menu-text {
    font-weight: 700;
    font-size: 13px;
}

.full-menu {
    position: fixed;
    inset: 0;
    background: rgba(8, 12, 18, 0.96);
    display: none;
    z-index: 99999;
}

.full-menu.open {
    display: flex;
}

.full-menu .full-menu-left {
    width: 40%;
    padding: 60px;
    overflow: auto;
}

.full-menu .full-menu-right {
    width: 60%;
    position: relative;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-size: cover;
    background-position: center;
    filter: brightness(0.6);
}

.full-menu .main-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.full-menu .main-menu li {
    font-size: 25px;
    font-weight: 700;
    padding: 5px 0;
    cursor: pointer;
    color: #000;
    opacity: 0.95;
}

.full-menu .main-menu li:hover {
    color: #ffd700;
}

.submenu-panel {
    display: none;
    max-width: 520px;
}

.submenu-panel.active {
    display: block;
}

.full-menu .full-menu-right .panel-inner {
    position: relative;
    z-index: 2;
}

.full-menu .panel-inner h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.full-menu .panel-inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.full-menu .panel-inner li {
    margin-bottom: 8px;
}

.close-full {
    position: absolute;
    right: 18px;
    top: 18px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .full-menu {
        flex-direction: column;
    }

    .full-menu .full-menu-left,
    .full-menu .full-menu-right {
        width: 100%;
        padding: 30px;
    }

    .full-menu .main-menu li {
        font-size: 20px;
    }

    .menu-btn {
        padding: 8px 10px;
    }
}

/* Why Choose Us */
.why-choose-us1 {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: url('img/poster.jpg') center / cover no-repeat fixed;
}

.why-choose-us1::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 215, 64, 0.30);
    /* soft yellow tint */
    pointer-events: none;
}

.why-choose-us1 .wc-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 24px 24px;
}

.wc-title {
    margin: 0 0 16px;
    font-size: 48px;
    line-height: 1.1;
    font-weight: 800;
    color: #FFD54F;
    /* bold yellow heading */
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

/* Slider layout */
.wc-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 60px;
}

.wc-viewport {
    overflow: hidden;
    width: 100%;
}

.wc-track {
    --gap: 24px;
    display: flex;
    gap: var(--gap);
    padding: 8px 0;
    will-change: transform;
    transition: transform 360ms ease;
}

/* Each card shows as 1/4 of viewport */
.wc-card {
    --cards-visible: 4;
    flex: 0 0 calc((100% - (var(--gap) * (var(--cards-visible) - 1))) / var(--cards-visible));
    background: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

/* Image must be twice as tall as it is wide */
.wc-card__image {
    width: 100%;
    aspect-ratio: 1 / 1.5;
    /* height = 1.5 × width */
    overflow: hidden;
    background: #ddd;
}

.wc-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Card content */
.wc-card__content {
    padding: 12px 14px 16px;
}

.wc-card__content h3 {
    margin: 0 0 6px;
    font-size: 18px;
    color: #333;
}

.wc-card__content p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* Navigation arrows */
.wc-nav {
    position: relative;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    color: #3A2E00;
    background: #FFD54F;
    font-size: 28px;
    line-height: 44px;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: transform 160ms ease, opacity 160ms ease;
}

.wc-nav:hover {
    transform: scale(1.06);
}

.wc-nav:disabled {
    opacity: 0.5;
    cursor: default;
}

/* Responsive tweaks: fewer cards on small screens */
@media (max-width: 1024px) {
    .wc-card {
        --cards-visible: 3;
    }
}

@media (max-width: 768px) {
    .wc-card {
        --cards-visible: 2;
    }
}

@media (max-width: 520px) {
    .wc-card {
        --cards-visible: 1;
    }
}

/* Optional: keep the title readable against bright backgrounds */
@supports (backdrop-filter: blur(4px)) {
    .wc-title {
        backdrop-filter: blur(2px);
    }
}

/* Why Choose Us slider container spacing (use site container instead of wc-inner) */
.why-choose-us1 .container {
    position: relative;
    z-index: 1;
    padding: 48px 24px 24px;
}

/* Stylish nav buttons positioned outside container */
.wc-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    color: #1a1400;
    background: linear-gradient(135deg, #FFD54F 0%, #FFC107 100%);
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    transition: transform 160ms ease, opacity 160ms ease, box-shadow 160ms ease;
}

.wc-prev {
    left: 20px;
}

.wc-next {
    right: 20px;
}

.wc-nav:hover {
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.wc-nav:disabled {
    opacity: 0.5;
    cursor: default;
}

@media (max-width: 520px) {
    .wc-nav {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }

    .wc-prev {
        left: 12px;
    }

    .wc-next {
        right: 12px;
    }
}

body.hero-header .top-bar.header-bar {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    color: #fff;
    box-shadow: none;
    z-index: 1000;
}

body.hero-header .top-bar.header-bar .top-links a {
    color: #fff;
}

body.hero-header .top-bar.header-bar .top-links a:hover {
    color: #ffd700;
}

body.hero-header .menu-btn {
    border-color: rgba(255, 255, 255, 0.18);
    color: #fff;
}

body.hero-header .menu-btn .hamburger {
    background: #fff;
}

body.hero-header .menu-btn .hamburger::before,
body.hero-header .menu-btn .hamburger::after {
    background: #fff;
}

.page-hero.hero-bg {
    position: relative;
    min-height: 60vh;
    padding: 120px 0 60px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.page-hero.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.25));
}

.page-hero.hero-bg .container {
    position: relative;
    z-index: 1;
}

.page-hero.hero-bg h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
}

.page-hero.hero-bg p {
    color: #eaeaea;
}

.page-hero.hero-bg h1 strong {
    color: #ffd700;
}

body.subpage .content h2 {
    color: #ffd700;
}

body.subpage .btn {
    background: #000;
    color: #fff;
}

body.subpage .btn:hover {
    background: #333;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.mv-card {
    background: #fff;
    border-radius: 12px;
    padding: 22px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    text-align: left;
}

.mv-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #000;
    color: #ffd700;
    font-size: 22px;
    margin-bottom: 10px;
}

.mv-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.mv-card p {
    color: #666;
}

/* Gallery Lightbox */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 100000;
}

.lightbox-overlay.open {
    display: flex;
}

.lightbox-container {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    border-radius: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    backdrop-filter: blur(4px);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffd700, #ffb300);
    color: #1a1400;
    font-size: 22px;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.lightbox-prev {
    left: 24px;
}

.lightbox-next {
    right: 24px;
}

@media (max-width: 600px) {
    .lightbox-nav {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }
}

/* Admin Grid Styles */
.admin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 50px;
}

.admin-card {
    text-align: center;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.admin-card:hover {
    transform: translateY(-5px);
}

.admin-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.admin-card h2 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

.admin-card h2 span {
    font-size: 1rem;
    font-weight: 500;
    color: #666;
    display: block;
    margin-top: 5px;
}

.admin-card p {
    font-size: 0.9rem;
    color: #888;
}

@media (max-width: 992px) {
    .admin-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }
}

/* Scrollable Text for Founder Section */
.scrollable-text-content {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 15px;
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.dropdown .nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-content {
    display: block;
    position: absolute;
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    top: 100%;
    right: 0;
    border-radius: 8px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    color: #333;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #d4af37;
    border-left-color: #d4af37;
    padding-left: 25px;
}

.dropdown:hover .nav-link i {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
}

/* Dropdown menu icon styles */
.dropdown-content a i {
    color: #999;
    margin-right: 10px;
    font-size: 14px;
    width: 18px;
    text-align: center;
    transition: color 0.2s ease;
}

.dropdown-content a:hover i {
    color: #d4af37;
}
