    * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* ONE FONT: ICSNI – consistent across site */
        body, button, input, select, textarea, h1, h2, h3, .nav-links a, .btn-login, .modal-card, .download-card, .advantage-card, .program-card {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        }

        body {
            background:
                linear-gradient(115deg, rgba(107, 15, 26, 0.07) 0%, transparent 26%),
                radial-gradient(circle at 14% 10%, rgba(107, 15, 26, 0.20), transparent 0 28%),
                radial-gradient(circle at 86% 84%, rgba(255, 217, 102, 0.24), transparent 0 24%),
                linear-gradient(135deg, #fff7f8 0%, #ffffff 44%, #fbf0f3 100%);
            color: #1e2b3c;
            line-height: 1.5;
            --maroon: #6b0f1a;
            --scroll-shift: 0px;
            --scroll-shift-reverse: 0px;
            --scroll-shift-soft: 0px;
            position: relative;
            overflow-x: hidden;
        }

        body::before,
        body::after {
            content: "";
            position: fixed;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(14px);
            opacity: 0.72;
        }

        body::before {
            width: 420px;
            height: 420px;
            top: 8%;
            left: -120px;
            background: radial-gradient(circle, rgba(107, 15, 26, 0.24) 0%, rgba(107, 15, 26, 0.08) 48%, transparent 74%);
            animation: floatOrbOne 16s ease-in-out infinite;
        }

        body::after {
            width: 360px;
            height: 360px;
            right: -90px;
            bottom: 6%;
            background: radial-gradient(circle, rgba(255, 217, 102, 0.34) 0%, rgba(107, 15, 26, 0.12) 48%, transparent 74%);
            animation: floatOrbTwo 18s ease-in-out infinite;
        }

        main {
            position: relative;
            z-index: 1;
            isolation: isolate;
        }

        main::before,
        main::after {
            content: "";
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            opacity: 0.9;
        }

        main::before {
            width: 220px;
            height: 220px;
            top: 760px;
            right: 2%;
            background: radial-gradient(circle, rgba(107, 15, 26, 0.14) 0%, rgba(107, 15, 26, 0.04) 52%, transparent 74%);
            animation: driftGlow 13s ease-in-out infinite;
        }

        main::after {
            width: 190px;
            height: 190px;
            top: 1600px;
            left: 1%;
            background: radial-gradient(circle, rgba(255, 217, 102, 0.26) 0%, rgba(255, 217, 102, 0.05) 52%, transparent 74%);
            animation: driftGlowReverse 15s ease-in-out infinite;
        }

        @keyframes floatOrbOne {
            0%, 100% { transform: translate3d(var(--scroll-shift-soft), 0, 0) scale(1); }
            50% { transform: translate3d(calc(var(--scroll-shift-soft) + 46px), -28px, 0) scale(1.1); }
        }

        @keyframes floatOrbTwo {
            0%, 100% { transform: translate3d(var(--scroll-shift-reverse), 0, 0) scale(1); }
            50% { transform: translate3d(calc(var(--scroll-shift-reverse) - 36px), -30px, 0) scale(1.08); }
        }

        @keyframes driftGlow {
            0%, 100% { transform: translate3d(0, var(--scroll-shift-soft), 0); }
            50% { transform: translate3d(12px, calc(var(--scroll-shift-soft) - 18px), 0); }
        }

        @keyframes driftGlowReverse {
            0%, 100% { transform: translate3d(0, var(--scroll-shift-reverse), 0); }
            50% { transform: translate3d(-10px, calc(var(--scroll-shift-reverse) + 16px), 0); }
        }

        @keyframes spinSlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .scroll-reveal {
            opacity: 0;
            transform: translateY(42px);
            transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
            will-change: opacity, transform;
        }

        .scroll-reveal.reveal-left {
            transform: translateX(-44px);
        }

        .scroll-reveal.reveal-right {
            transform: translateX(44px);
        }

        .scroll-reveal.is-visible {
            opacity: 1;
            transform: translate3d(0, 0, 0);
        }

        @media (prefers-reduced-motion: reduce) {
            body::before,
            body::after,
            main::before,
            main::after,
            .hero::before,
            .hero::after,
            .scroll-reveal {
                animation: none !important;
                transition: none !important;
                transform: none !important;
                opacity: 1 !important;
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* HEADER – clean, blurred background */
        .site-header {
            background: white;
            box-shadow: 0 4px 20px rgba(0,20,50,0.08);
            position: sticky;
            top: 0;
            z-index: 50;
            backdrop-filter: blur(6px);
            background-color: rgba(255,255,255,0.9);
            width: 100%;
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 80px;
            padding: 8px 20px;
        }

        /* LEFT: logo area (icon + text) */
        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 1;
            min-width: 0;
            max-width: 55%;
        }

        .logo-icon {
            background: none;
            color: white;
            width: 44px;
            height: 44px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            font-weight: 700;
            box-shadow: 0 6px 12px rgba(10,41,66,0.2);
            flex-shrink: 0;
        }

        .logo-text {
            overflow: hidden;
            min-width: 0;
        }

        .logo-text h1 {
            font-size: 1.25rem;
            line-height: 1.2;
            color: #6B0F1A;
            font-weight: 600;
            letter-spacing: -0.01em;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .logo-text span {
            font-size: 0.75rem;
            font-weight: 400;
            color: #3e5a76;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }

        /* RIGHT: hamburger + nav + login */
        .nav-right {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .hamburger {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: #6B0F1A;
            background: #f0f7fe;
            width: 48px;
            height: 48px;
            border-radius: 40px;
            align-items: center;
            justify-content: center;
            transition: 0.2s;
        }

        .hamburger:hover {
            background: #6B0F1A;
            color: white;
        }

        .nav-links {
            display: flex;
            gap: 20px;
            font-weight: 500;
            align-items: center;
            transition: all 0.3s ease;
        }

        .nav-links a {
            text-decoration: none;
            color: #1e3a5f;
            transition: 0.2s;
            font-size: 0.95rem;
            border-bottom: 2px solid transparent;
            padding-bottom: 4px;
            white-space: nowrap;
        }

        .nav-links a:hover {
            border-bottom-color: #6B0F1A;
            color: #6B0F1A;
        }

        .btn-login {
            background: #6B0F1A;
            color: white !important;
            padding: 6px 14px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.85rem;
            border: none;
            transition: background 0.2s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            cursor: pointer;
            white-space: nowrap;
            border-bottom: none !important;
        }

        .btn-login:hover {
            background: #500c15;
            box-shadow: 0 2px 8px rgba(107, 15, 26, 0.3);
        }

        /* Unified & enlarged button styles for hero section */
        .btn-enroll, .btn-outline.hero-btn {
            padding: 14px 34px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.2rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.2s;
            border: 2px solid transparent;
            line-height: 1.2;
        }

        .btn-enroll {
            background: #6B0F1A;
            color: white;
            border: 2px solid #6B0F1A;
        }
        .btn-enroll:hover {
            background: #500c15;
            border-color: #500c15;
            box-shadow: 0 4px 12px rgba(107, 15, 26, 0.3);
        }

        .btn-outline.hero-btn {
            background: transparent;
            color: #6B0F1A;
            border: 2px solid #6B0F1A;
        }
        .btn-outline.hero-btn:hover {
            background: #6B0F1A;
            color: white;
        }

        .btn-outline {
            border:2px solid #6B0F1A; 
            color:#6B0F1A; 
            padding:10px 26px; 
            border-radius:40px; 
            font-weight:600;
            text-decoration: none;
            transition: all 0.2s;
            cursor: pointer;
            background: transparent;
            display: inline-block;
        }
        .btn-outline:hover {
            background: #6B0F1A;
            color: white;
        }

        @media (min-width: 1001px) {
            .hamburger {
                display: none !important;
            }
            .nav-links {
                display: flex !important;
            }
        }

        @media (max-width: 1000px) {
            .hamburger {
                display: flex;
            }
            .nav-links {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                gap: 0;
                padding: 20px 0 30px;
                border-radius: 0 0 30px 30px;
                box-shadow: 0 20px 30px rgba(0,0,0,0.1);
                border-top: 1px solid #d9e6f2;
                display: none;
                z-index: 99;
            }
            .nav-links.show {
                display: flex;
            }
            .nav-links a {
                width: 100%;
                text-align: center;
                padding: 14px 0;
                font-size: 1.1rem;
                border-bottom: none;
            }
            .nav-links a:hover {
                background: #fbedec;
                color: #6B0F1A;
                border-bottom: none;
                font-weight: 600;
            }
            .header-inner {
                flex-wrap: wrap;
            }
            .logo-text h1 {
                font-size: 1.1rem;
                white-space: normal;
                line-height: 1.2;
            }
            .logo-text span {
                font-size: 0.7rem;
                white-space: normal;
            }
            .logo-area {
                gap: 8px;
                max-width: 75%;
            }
            .btn-login {
                padding: 6px 12px;
                font-size: 0.8rem;
            }
        }
        /* for very narrow screens */
        @media (max-width: 500px) {
            .logo-text h1 {
                font-size: 0.95rem;
            }
            .logo-icon {
                width: 36px;
                height: 36px;
                font-size: 18px;
            }
            .btn-login span {
                display: none;
            }
            .btn-login i {
                margin-right: 0;
            }
            .btn-enroll, .btn-outline.hero-btn {
                padding: 12px 24px;
                font-size: 1rem;
            }
        }

        /* ----- ALL CONTENT ----- */
        .about-section {
            padding: 60px 0;
            
        }
        .about-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.3fr) minmax(280px, 1fr);
            gap: clamp(24px, 4vw, 50px);
            align-items: center;
        }
        .about-text {
            min-width: 0;
        }
        .about-text h2 {
            font-size: 2.5rem;
            color: #6B0F1A;
            margin-bottom: 24px;
            position: relative;
            padding-bottom: 12px;
        }
        .about-text h2:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: #6B0F1A;
        }
        .about-text p {
            font-size: 1.1rem;
            color: #2b4058;
            margin-bottom: 20px;
            text-align: justify;
        }
        .about-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 30px;
            line-height: 1.6;
        }
        .about-subheading {
            font-size: 1.4rem;
            color: #6B0F1A;
            margin-top: 28px;
            margin-bottom: 16px;
            font-weight: 600;
        }
        .about-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .about-list li {
            padding: 10px 0 10px 24px;
            position: relative;
            color: #2b4058;
            line-height: 1.7;
        }
        .about-list li:before {
            content: '•';
            position: absolute;
            left: 0;
            color: #6B0F1A;
            font-weight: bold;
            font-size: 1.2rem;
        }
        .about-stats {
            display: grid;
            grid-template-columns: repeat(3, minmax(90px, 1fr));
            gap: 14px;
            margin-top: 30px;
        }
        .stat-item {
            text-align: center;
            background: #ffffff;
            border: 1px solid #d9e8f5;
            border-radius: 14px;
            padding: 12px 10px;
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            color: #6B0F1A;
        }
        .about-image {
            width: 100%;
            max-width: 460px;
            background: transparent;
            border-radius: 32px;
            padding: 40px 20px;
            text-align: center;
            box-shadow: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            justify-self: center;
        }
        .about-carousel {
            width: 100%;
            max-width: 400px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 8px 16px rgba(0,40,70,0.15);
        }
        .about-portrait {
            width: 100%;
            height: 460px;
            max-width: 400px;
            border-radius: 24px;
            object-fit: cover;
            display: block;
        }
        .about-carousel-control {
            width: 42px;
            height: 42px;
            top: 50%;
            bottom: auto;
            transform: translateY(-50%);
            background: rgba(107, 15, 26, 0.78);
            border-radius: 50%;
            opacity: 0.95;
            margin: 0 10px;
        }
        .about-carousel-control .carousel-control-prev-icon,
        .about-carousel-control .carousel-control-next-icon {
            width: 1.2rem;
            height: 1.2rem;
        }
        .about-image i {
            font-size: 6rem;
            color: #6B0F1A;
        }

        /* Mobile responsiveness for about section */
        @media (max-width: 768px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .about-text h2 {
                font-size: 2rem;
                text-align: center;
            }
            .about-text h2:after {
                left: 50%;
                transform: translateX(-50%);
            }
            .about-text p {
                font-size: 1rem;
                text-align: justify;
            }
            .about-image {
                max-width: 100%;
                padding: 8px 0 0;
            }
            .about-carousel {
                max-width: 100%;
            }
            .about-portrait {
                max-width: 100%;
                height: 380px;
            }
            .about-stats {
                grid-template-columns: repeat(3, minmax(80px, 1fr));
                gap: 10px;
            }
            .stat-number {
                font-size: 1.7rem;
            }
        }

        @media (max-width: 480px) {
            .about-section {
                padding: 44px 0;
            }
            .about-text h2 {
                font-size: 1.7rem;
            }
            .about-text p {
                font-size: 0.96rem;
                margin-bottom: 14px;
                text-align: justify;
            }
            .about-stats {
                grid-template-columns: 1fr;
                gap: 8px;
            }
            .stat-item {
                padding: 10px;
            }
        }

        .hero {
            background: transparent;
            padding: 60px 0 56px;
            position: relative;
            overflow: hidden;
            margin-bottom: 0;
        }
        .hero::before {
            content: "";
            position: absolute;
            top: -55px;
            right: 7%;
            width: 220px;
            height: 220px;
            border: 2px dashed rgba(107, 15, 26, 0.14);
            border-radius: 50%;
            animation: spinSlow 28s linear infinite;
            pointer-events: none;
        }
        .hero::after {
            content: "";
            position: absolute;
            bottom: -40px;
            left: 4%;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, transparent 72%);
            animation: floatOrbOne 12s ease-in-out infinite;
            pointer-events: none;
        }
        .hero-grid {
            display: flex;
            align-items: center;
            gap: 40px;
            position: relative;
            z-index: 1;
        }
        .hero-content { flex: 1.1; }
        .hero-badge {
            background: #6B0F1A;
            color: white;
            display: inline-block;
            padding: 8px 22px;
            border-radius: 40px;
            font-size: 0.95rem;
            font-weight: 500;
            margin-bottom: 24px;
        }
        .hero-content h2 {
            font-size: 3rem;
            line-height: 1.1;
            margin-bottom: 16px;
            color: #6B0F1A;
        }
        .school-emphasis {
            color: #6B0F1A;
            font-weight: 800;
            background: #fbedec;
            padding: 4px 14px;
            border-radius: 40px;
            font-size: 3.5rem;
            display: inline-block;
            line-height: 1.2;
        }
        .hero-description {
            font-size: 1.1rem;
            margin-bottom: 20px;
        }
        .hero-pictures {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .pic-row {
            display: flex;
            gap: 16px;
        }
        .pic-item {
            background: #f5dfe5;
            border-radius: 24px;
            padding: 20px 10px;
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            box-shadow: 0 15px 25px -8px rgba(107,15,26,0.2);
            border: 2px solid white;
        }
        .pic-item i { font-size: 3rem; color: #6B0F1A; margin-bottom: 8px; }
        .pic-item span { 
            background: white; 
            padding: 6px 16px; 
            border-radius: 40px; 
            font-weight: 600; 
            font-size: 0.85rem;
            text-transform: uppercase;
        }
        .wide-pic {
            background: #f1d9df;
            border-radius: 24px;
            padding: 24px;
            text-align: center;
            border: 2px solid white;
        }
        .wide-pic i { font-size: 4rem; color: #6B0F1A; margin: 0 8px; }
        .wide-pic div { 
            background: white; 
            border-radius: 40px; 
            padding: 8px 20px; 
            display: inline-block; 
            margin-top: 12px;
            text-transform: uppercase;
            font-weight: 600;
        }

        @media (max-width: 800px) {
            .hero-grid {
                flex-direction: column;
                text-align: center;
            }
            .hero-content {
                display: flex;
                flex-direction: column;
                align-items: center;
            }
            .hero-description {
                text-align: center;
            }
            .hero-content h2 {
                font-size: 2.5rem;
            }
            .school-emphasis {
                font-size: 2.8rem;
            }
        }

        .section-padding { padding: 70px 0; }
        .section-title {
            font-size: 2.3rem;
            margin-bottom: 40px;
            color: #6B0F1A;
            position: relative;
            padding-bottom: 16px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100px;
            height: 5px;
            background: #6B0F1A;
        }
        .bg-soft { background-color: #f4fafd; }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 40px;
        }
        .advantage-card {
            background: white;
            border-radius: 32px;
            padding: 32px;
            box-shadow: 0 12px 24px rgba(0,40,70,0.04);
            border: 1px solid #daeaf8;
        }
        .advantage-icon {
            background: #FBEDEC;
            width: 70px;
            height: 70px;
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: #6B0F1A;
            margin-bottom: 22px;
        }

        /* ----- ACADEMIC PROGRAMS: CENTERED & MOBILE RESPONSIVE ----- */
        .program-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr); /* 4 on desktop */
            gap: 30px;
            margin-top: 20px;
            justify-content: center; /* centers the grid container if needed */
        }

        .program-card {
            background: white;
            border-radius: 28px;
            padding: 30px 24px;
            box-shadow: 0 12px 28px rgba(0,40,70,0.06);
            border: 1px solid #d5e7f7;
            transition: 0.2s;
            cursor: pointer;
            text-align: center; /* center text inside cards */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
        }
        /* .program-card:hover { transform: translateY(-8px); border-color: #6B0F1A; } */
        .program-icon {
            background: #e1effc;
            width: 70px;
            height: 70px;
            border-radius: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.2rem;
            color: #6B0F1A;
            margin-bottom: 22px;
        }
        .program-card h3 {
            margin-bottom: 8px;
            font-size: 1.4rem;
        }
        .program-card p {
            margin-bottom: 12px;
            color: #2e4c6b;
        }
        .program-card span {
            background: #f0f7fe;
            padding: 6px 18px;
            border-radius: 40px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #6B0F1A;
            transition: 0.2s;
        }
        .program-card:hover span {
            background: #6B0F1A;
            color: white;
        }

        /* Mobile responsiveness for program grid */
        @media (max-width: 900px) {
            .program-grid {
                grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
                gap: 20px;
            }
        }
        @media (max-width: 500px) {
            .program-grid {
                grid-template-columns: 1fr; /* 1 column on mobile */
                gap: 20px;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }
        }
        /* ------------------------------------------------------------ */

        .campus-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 30px;
        }
        .campus-photo {
            background: #fbedec;
            border-radius: 28px;
            padding: 30px 15px;
            text-align: center;
            border: 2px solid white;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .campus-photo i { font-size: 3.5rem; color: #6B0F1A; margin-bottom: 12px; }
        .campus-photo p { font-weight: 600; background: rgba(255,255,255,0.8); padding: 6px 12px; border-radius: 40px; display: inline-block; }

        .download-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 30px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        .download-card {
            background: white;
            border-radius: 28px;
            padding: 32px;
            text-align: center;
            border: 2px dashed #6B0F1A;
        }
        .download-card i { font-size: 3rem; color: #6B0F1A; margin-bottom: 16px; }
        .download-btn {
            background: #6B0F1A; color: white; padding: 10px 22px; border-radius: 40px;
            text-decoration: none; display: inline-block; margin-top: 16px; font-weight: 600;
        }

        .schedule-panel {
            background: #e8f2fc; 
            border-radius: 40px; 
            padding: 40px;
            text-align: center;
        }
        .schedule-detail-grid {
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 30px;
            text-align: left;
        }
        .schedule-block { 
            background: white; 
            border-radius: 28px; 
            padding: 28px;
            text-align: center;
        }
        .schedule-block i {
            font-size: 2.5rem;
            color: #6B0F1A;
        }
        .schedule-block h3 {
            margin: 16px 0;
        }
        .uppercase-title { 
            text-transform: uppercase; 
            text-align: center;
        }
        
        /* Hero section buttons container */
        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
        }
        
        /* Modal gallery variant */
        .modal-card.gallery {
            max-width: 900px;
        }
        
        /* Modal form styling */
        .modal-form-title {
            margin-bottom: 24px;
        }
        
        .modal-form-note {
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        /* Alert/warning message in modals */
        .alert-warning {
            font-size: 1rem;
            background: #ffd966;
            padding: 12px;
            border-radius: 30px;
            margin-top: 20px;
        }
        
        /* Form visibility utilities */
        .hidden {
            display: none !important;
        }
        
        /* Result sections visibility */
        .hidden-result {
            display: none;
        }
        
        /* About portrait display */
        .about-portrait {
            display: block;
        }
        .section-title.center {
            text-align: center;
        }
        .section-title.center:after {
            left: 50%;
            transform: translateX(-50%);
        }

        .site-footer {
            position: relative;
            background: linear-gradient(135deg, #4f0b14 0%, #6B0F1A 55%, #7f1a26 100%);
            color: #f7e9ec;
            padding: 70px 0 24px;
            margin-top: 60px;
            overflow: hidden;
        }
        .site-footer::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at top right, rgba(255, 217, 102, 0.16), transparent 32%);
            pointer-events: none;
        }
        .site-footer .container {
            position: relative;
            z-index: 1;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
            gap: 22px;
            margin-bottom: 28px;
            align-items: stretch;
        }
        .footer-brand-card,
        .footer-col {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 20px;
            padding: 24px;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
            backdrop-filter: blur(4px);
        }
        .footer-brand-header {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 14px;
        }
        .footer-brand-logo {
            width: 62px;
            height: 62px;
            object-fit: cover;
            border-radius: 50%;
            background: #fff;
            padding: 5px;
            box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
        }
        .footer-col p,
        .footer-col ul {
            margin-top: 0;
            margin-bottom: 0;
        }
        .footer-school {
            font-weight: 800;
            font-size: 1.45rem;
            color: #fff;
            margin-bottom: 4px;
            letter-spacing: 0.02em;
        }
        .footer-tagline {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }
        .footer-description {
            color: #f8d9df;
            line-height: 1.7;
            margin: 14px 0 18px;
        }
        .footer-action-row {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 18px;
        }
        .footer-action-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 16px;
            border-radius: 999px;
            font-weight: 700;
            text-decoration: none;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }
        .footer-action-btn.primary {
            background: #fff;
            color: #6B0F1A;
        }
        .footer-action-btn.secondary {
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        .footer-action-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
            color: #6B0F1A;
            background: #ffd966;
        }
        .social-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 4px;
        }
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            color: #fff;
            background: rgba(255, 255, 255, 0.10);
            border: 1px solid rgba(255, 255, 255, 0.16);
            font-size: 1.05rem;
            transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
        }
        .social-links a:hover {
            color: #6B0F1A;
            background: #fff;
            transform: translateY(-2px);
        }
        .footer-col h5 {
            color: #fff;
            font-size: 1.02rem;
            margin-bottom: 16px;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .footer-col ul {
            list-style: none;
            padding-left: 0;
        }
        .footer-col ul li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 12px;
            line-height: 1.6;
            color: #f8d9df;
        }
        .footer-col ul li a {
            color: #f8eef0;
            text-decoration: none;
            transition: color 0.2s ease, transform 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .footer-col ul li a:hover {
            color: #ffd966;
            text-decoration: none;
            transform: translateX(2px);
        }
        .footer-col ul li i {
            width: 16px;
            color: #ffd966;
            margin-top: 4px;
            flex-shrink: 0;
        }
        .footer-contact ul li span {
            display: block;
        }
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.16);
            padding-top: 18px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            text-align: left;
            font-size: 0.95rem;
            color: rgba(255, 255, 255, 0.84);
        }
        .footer-copy-brand {
            color: #ffd966;
            font-weight: 600;
        }

        .card {
            padding: 24px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            max-width: 420px;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }
        .card h3 {
            color: var(--maroon);
            font-size: 20px;
            line-height: 1.3;
        }
        .card h3 span {
            font-size: 32px;
            font-weight: 700;
        }
        .card .primary-btn {
            text-align: center;
            margin-top: 10px;
        }
        .primary-btn {
            background: var(--maroon);
            color: white;
            padding: 12px 24px;
            border-radius: 30px;
            text-decoration: none;
            display: inline-block;
            font-weight: 600;
        }
        .highlight-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .highlight-list li {
            margin-bottom: 8px;
        }
        .highlight-list li span {
            color: var(--maroon);
            font-weight: bold;
        }

        .modal-overlay {
            display: none; 
            position: fixed; 
            top:0; left:0; width:100%; height:100%;
            background: rgba(0,0,0,0.4); 
            backdrop-filter: blur(4px); 
            align-items: center; 
            justify-content: center;
            z-index: 1000;
        }
        .modal-card {
            background: white; 
            max-width: 750px;   
            width: 95%;
            border-radius: 48px; 
            padding: 40px 45px;
            box-shadow: 0 40px 60px rgba(0,20,40,0.4); 
            position: relative; 
            max-height: 85vh; 
            overflow-y: auto;
        }
        .modal-close {
            position: absolute; top: 24px; right: 28px; font-size: 32px; cursor: pointer; color: #6b8aa8;
        }

        /* Program Modal Content Wrapper */
        .modal-content-wrapper {
            max-height: 60vh;
            overflow-y: auto;
            padding-right: 10px;
        }

        .modal-content-wrapper h3 {
            color: var(--maroon);
            font-size: 1.4rem;
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .modal-content-wrapper h4 {
            color: var(--maroon);
            font-size: 1.2rem;
            margin: 1.5rem 0 0.5rem 0;
            font-weight: 600;
        }

        .modal-content-wrapper ul {
            list-style: none;
            padding: 0;
            margin: 0 0 1rem 0;
        }

        .modal-content-wrapper ul li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 0.5rem;
            color: #333;
        }

        .modal-content-wrapper ul li span {
            color: var(--maroon);
            font-weight: bold;
            margin-right: 8px;
            flex-shrink: 0;
        }

        .modal-content-wrapper p {
            margin-bottom: 1rem;
            line-height: 1.6;
            color: #555;
        }

        /* Apply Now Button */
        .btn-apply {
            background: var(--maroon);
            color: #fff;
            border: none;
            border-radius: 6px;
            padding: 12px 24px;
            font-size: 1rem;
            font-weight: 600;
            text-align: center;
            margin-top: 1.5rem;
            cursor: pointer;
            transition: background 0.2s;
            display: inline-block;
        }

        .btn-apply:hover {
            background: #500c15;
        }

        /* Mobile responsiveness for modals */
        @media (max-width: 768px) {
            .modal-card {
                padding: 20px 25px;
                border-radius: 24px;
                max-width: 95%;
                width: 95%;
            }
            .modal-close {
                top: 12px;
                right: 16px;
                font-size: 24px;
            }
            .modal-content-wrapper {
                max-height: 50vh;
            }
        }

        /* intro image styling */
        #introImage .container {
            text-align: center;
        }
        #introImage img {
            max-width: 100%;
            height: auto;
            display: inline-block;
            border-radius: 16px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        #introImage img:hover {
            transform: scale(1.02);
        }

        .hero,
        .statistics-section,
        .announcements-section,
        .campus-highlights-section,
        .academic-calendar-section,
        .academic-programs-section,
        .about-section {
            background: transparent;
        }

        /* STATISTICS SECTION */
        .statistics-section {
            position: relative;
            margin: 0;
            padding: 16px 0 40px;
            overflow: visible;
        }

        .statistics-section::before {
            display: none;
        }

        .stats-grid {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-card {
            padding: 30px 20px;
            background: #6B0F1A;
            border-radius: 12px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .stat-card:hover {
            background: #6B0F1A;
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .statistics-section {
                padding: 12px 0 28px;
                margin: 0;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-label {
                font-size: 0.9rem;
            }
        }

        /* ACADEMIC PROGRAMS SECTION */
        .academic-programs-section {
            padding: 60px 0;
        }

        .programs-title {
            text-align: center;
            font-size: 2.8rem;
            color: #6B0F1A;
            margin-bottom: 12px;
            font-weight: 700;
            position: relative;
            padding-bottom: 20px;
        }

        .programs-title:after {
            content: '';
            display: block;
            width: 100px;
            height: 5px;
            background: #6B0F1A;
            margin: 20px auto 0;
            border-radius: 3px;
        }

        .programs-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 50px;
        }

        .programs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
            justify-items: center;
        }

        .program-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            max-width: 400px;
            width: 100%;
        }

        .program-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(107, 15, 26, 0.2);
        }

        .program-image {
            width: 100%;
            height: 280px;
            overflow: hidden;
            background: #f0f0f0;
        }

        .program-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .program-card:hover .program-image img {
            transform: scale(1.08);
        }

        .program-info {
            padding: 28px 24px;
        }

        .program-title {
            font-size: 1.5rem;
            color: #6B0F1A;
            margin-bottom: 12px;
            font-weight: 700;
        }

        .program-description {
            font-size: 1rem;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .program-link {
            color: #6B0F1A;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .program-link:hover {
            color: #500c15;
            text-decoration: underline;
        }

        /* Academic Programs Responsive */
        @media (max-width: 768px) {
            .programs-title {
                font-size: 2.2rem;
            }

            .programs-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .program-card {
                max-width: 100%;
            }
        }

        @media (max-width: 480px) {
            .programs-title {
                font-size: 1.8rem;
            }

            .programs-subtitle {
                font-size: 0.95rem;
            }

            .program-image {
                height: 200px;
            }

            .program-info {
                padding: 20px 16px;
            }

            .program-title {
                font-size: 1.3rem;
            }
        }

        /* ANNOUNCEMENTS SECTION */
        .announcements-section {
            padding: 60px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .announcements-title {
                    text-align: center;
            font-size: 2.8rem;
            color: #6B0F1A;
            margin-bottom: 12px;
            font-weight: 700;
            position: relative;
            padding-bottom: 20px;

        }

        .announcements-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: #6B0F1A;
            margin: 16px auto 0;
            border-radius: 2px;
        }

        .announcements-subtitle {
            color: #666;
            font-size: 1.1rem;
            margin-top: 20px;
        }

        .announcements-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 32px;
        }

        .announcement-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .announcement-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        }

        .announcement-image {
            width: 100%;
            height: 240px;
            overflow: hidden;
            background: #e8e8e8;
        }

        .announcement-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .announcement-card:hover .announcement-image img {
            transform: scale(1.05);
        }

        .announcement-content {
            padding: 24px;
        }

        .announcement-content h3 {
            color: #6B0F1A;
            font-size: 1.3rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .announcement-content p {
            color: #555;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .announcements-section {
                padding: 40px 0;
            }

            .announcements-title {
                font-size: 1.8rem;
            }

            .announcements-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .announcement-image {
                height: 200px;
            }
        }

        /* CAMPUS HIGHLIGHTS SECTION */
        .campus-highlights-section {
            padding: 80px 0;
        }

        .highlights-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .highlights-title {
             text-align: center;
            font-size: 2.8rem;
            color: #6B0F1A;
            margin-bottom: 12px;
            font-weight: 700;
            position: relative;
            padding-bottom: 20px;

        }

        .highlights-title:after {
            content: '';
            display: block;
            width: 100px;
            height: 5px;
            background: #6B0F1A;
            margin: 20px auto 0;
            border-radius: 3px;
        }

        .highlights-subtitle {
            color: #777;
            font-size: 1.15rem;
            line-height: 1.6;
            margin-top: 24px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .highlights-image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
        }

        .highlights-image {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 20px;
            object-fit: cover;
        }

        .carousel-control-prev,
        .carousel-control-next {
            width: auto;
            height: auto;
            z-index: 10;
            top: 50%;
            transform: translateY(-50%);
            border-radius: 50%;
            padding: 12px 18px;
            transition: all 0.3s ease;
        }



        .carousel-control-prev-icon,
        .carousel-control-next-icon {
            filter: invert(1);
        }

        @media (max-width: 768px) {
            .campus-highlights-section {
                padding: 60px 0;
            }

            .highlights-title {
                font-size: 2rem;
            }

            .highlights-subtitle {
                font-size: 1rem;
            }

            .highlights-image-wrapper {
                border-radius: 12px;
            }

            .highlights-image {
                border-radius: 12px;
            }
        }

        /* ACADEMIC CALENDAR SECTION */
        .academic-calendar-section {
            padding: 80px 0;
            }

        .calendar-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .calendar-title {
               text-align: center;
            font-size: 2.8rem;
            color: #6B0F1A;
            margin-bottom: 12px;
            font-weight: 700;
            position: relative;
            padding-bottom: 20px;

        }

        .calendar-title:after {
            content: '';
            display: block;
            width: 100px;
            height: 5px;
            background: #6B0F1A;
            margin: 20px auto 0;
            border-radius: 3px;
        }

        .calendar-subtitle {
            color: #777;
            font-size: 1.15rem;
            line-height: 1.6;
            margin-top: 24px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .calendar-table-wrapper {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
        }

        .calendar-table {
            width: 100%;
            border-collapse: collapse;
        }

        .calendar-table thead {
            background: #6B0F1A;
            color: white;
        }

        .calendar-table th {
            padding: 24px;
            text-align: left;
            font-weight: 700;
            font-size: 1.1rem;
            letter-spacing: 0.5px;
        }

        .calendar-table td {
            padding: 20px 24px;
            border-bottom: 1px solid #f0f0f0;
            font-size: 1rem;
            color: #333;
        }

        .calendar-table tbody tr {
            transition: all 0.3s ease;
        }

        .calendar-table tbody tr:nth-child(even) {
            background: #f5dfe5;
        }

        .calendar-table tbody tr:nth-child(odd) {
            background: #ffffff;
        }

        .calendar-table tbody tr:hover {
            background: #fbedec;
        }

        .calendar-table tbody tr:last-child td {
            border-bottom: none;
        }

        @media (max-width: 768px) {
            .academic-calendar-section {
                padding: 60px 0;
            }

            .calendar-title {
                font-size: 2rem;
            }

            .calendar-subtitle {
                font-size: 1rem;
            }

            .calendar-table-wrapper {
                border-radius: 12px;
                overflow-x: auto;
            }

            .calendar-table th,
            .calendar-table td {
                padding: 16px 12px;
                font-size: 0.9rem;
            }

            .calendar-table th {
                font-size: 0.95rem;
            }
        }

        @media (max-width: 500px) {
            .calendar-title {
                font-size: 1.6rem;
            }

            .calendar-table th,
            .calendar-table td {
                padding: 12px 8px;
                font-size: 0.85rem;
            }
        }

        .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 22px;
            flex-wrap: wrap;
        }
        .form-group {
            flex: 1 1 200px;
            margin-bottom: 0;
        }
        .form-group.full-width {
            flex: 1 1 100%;
        }
        .form-group > label {
            font-weight: 600;
            display: block;
            margin-bottom: 8px;
            text-transform: uppercase;
            font-size: 0.85rem;
        }
        .student-type-options {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            margin-top: 8px;
        }
        .student-type-option {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin: 0;
            font-weight: 500;
            font-size: 1rem;
            text-transform: none;
            color: #1e2b3c;
            cursor: pointer;
            line-height: 1.2;
            white-space: nowrap;
        }
        .student-type-option span {
            white-space: nowrap;
        }
        .student-type-option input[type="radio"] {
            margin: 0;
            width: 18px;
            height: 18px;
            accent-color: #6B0F1A;
            cursor: pointer;
        }

        @media (max-width: 576px) {
            .student-type-options {
                flex-direction: column;
                gap: 12px;
            }
        }
        .form-group input:not([type="radio"]):not([type="checkbox"]), .form-group select, .form-group textarea {
            width: 100%;
            padding: 14px 18px;
            border: 1.5px solid #d0e2f2;
            border-radius: 30px;
            font-size: 0.95rem;
            background: white;
            transition: all 0.3s ease;
        }

        /* Hide number input spinners */
        input[type="number"]::-webkit-outer-spin-button,
        input[type="number"]::-webkit-inner-spin-button {
            -webkit-appearance: none;
            margin: 0;
        }
        input[type="number"] {
            appearance: textfield;
            -moz-appearance: textfield;
        }

        .form-group input:not([type="radio"]):not([type="checkbox"]):focus, .form-group select:focus, .form-group textarea:focus {
            border-color: #6B0F1A;
            background: #f5f9fc;
            box-shadow: 0 0 0 3px rgba(29, 111, 165, 0.1);
            outline: none;
        }
        .btn-submit {
            background: #6B0F1A; color: white; border: none; padding: 16px 28px;
            border-radius: 40px; font-weight: 700; width: 100%; font-size: 1.2rem; cursor: pointer;
            margin-top: 10px;
        }
        .credentials-box { 
            background: #e8f3ff; 
            border-radius: 32px; 
            padding: 28px; 
            text-align: center; 
        }
        .credentials-box p {
            margin: 12px 0;
            font-size: 1.1rem;
        }
        .credentials-box .highlight {
            background: #ffd966;
            padding: 4px 10px;
            border-radius: 30px;
            font-weight: 700;
            display: inline-block;
        }

        .section-anchor { scroll-margin-top: 100px; }

        @media (max-width: 800px) {
            .why-grid { grid-template-columns: 1fr; }
            .campus-grid { grid-template-columns: repeat(2,1fr); }
            .download-grid { grid-template-columns: 1fr; }
            .schedule-detail-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .footer-brand-card { grid-column: 1 / -1; }
        }
        @media (max-width: 600px) {
            .footer-grid { grid-template-columns: 1fr; }
            .footer-brand-header {
                flex-direction: column;
                align-items: flex-start;
            }
            .footer-action-row {
                flex-direction: column;
            }
            .footer-action-btn {
                justify-content: center;
            }
            .copyright {
                flex-direction: column;
                text-align: center;
            }
        }

        