/* --- COLORS FROM REFERENCE --- */
:root {
    --primary-blue: #0066f5;   /* Your exact primary blue */
    --success-green: #00c853;  /* The calling/utility green */
    --dark-text: #1a1a1a;
    --border-light: #e2e8f0;
    --font-serif: "Times New Roman", Times, serif;
}

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

body {
    font-family: var(--font-serif);
    background-color: #ffffff;
    color: var(--dark-text);
}

/* --- NAVIGATION --- */
.elite-navbar {
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    height: 40px;
    width: auto;
}

.action-area {
    display: flex;
    align-items: center;
    gap: 30px;
}

.call-cta {
    text-decoration: none;
    color: var(--success-green); /* Using green for call visibility */
    display: flex;
    flex-direction: column;
    text-align: right;
    border-right: 1px solid var(--border-light);
    padding-right: 20px;
}

.call-sub {
    font-size: 9px;
    letter-spacing: 1.5px;
    font-weight: bold;
    color: #888;
}

.call-main {
    font-size: 15px;
    font-weight: bold;
}

.apply-trigger {
    background: var(--primary-blue); /* Your primary color */
    color: #ffffff;
    border: 1px solid var(--primary-blue);
    padding: 10px 25px;
    font-family: var(--font-serif);
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.apply-trigger:hover {
    background: transparent;
    color: var(--primary-blue);
}

/* --- MODAL / FORM --- */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.modal-window {
    background: #ffffff;
    width: 90%;
    max-width: 420px;
    padding: 50px 40px;
    position: relative;
    border-top: 4px solid var(--primary-blue);
}

.close-x {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #999;
}

.modal-header h2 {
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.separator {
    width: 30px;
    height: 2px;
    background: var(--primary-blue);
    margin: 15px auto 35px;
}

.input-container {
    margin-bottom: 20px;
}

.input-container label {
    display: block;
    font-size: 10px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 5px;
    color: #666;
}

.admission-form input {
    width: 100%;
    padding: 10px 0;
    border: none;
    border-bottom: 1px solid var(--border-light);
    font-family: var(--font-serif);
    font-size: 16px;
    outline: none;
}

.admission-form input:focus {
    border-bottom-color: var(--primary-blue);
}

.submit-action {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 15px;
    font-family: var(--font-serif);
    font-weight: bold;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 10px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .call-cta { display: none; }
    .nav-container { padding: 0 20px; }
    .modal-window { padding: 40px 20px; }
}



:root {
    --primary-blue: #0066f5;
    --gold: #ffb400;
    --dark: #0a1118;
    --heading-font: 'Montserrat', sans-serif;
    --body-font: 'Inter', sans-serif;
}

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

body {
    font-family: var(--body-font);
    background: #fff;
    color: var(--dark);
    line-height: 1.6;
}

/* Hero Section Styling */
.hero-block {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(0, 102, 245, 0.95) 0%, rgba(0, 31, 90, 0.98) 100%),
                url('https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.hero-inner {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

/* Content Area */
.hero-content { color: white; flex: 1; }

.tagline {
    font-size: 12px;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
}

h1 {
    font-family: var(--heading-font);
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}

.highlight { color: var(--gold); }

.description {
    font-size: 18px;
    max-width: 500px;
    opacity: 0.9;
    margin-bottom: 40px;
}

/* Slider Style */
.uni-slider-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.slider-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.arrow { background: none; border: none; color: white; font-size: 20px; cursor: pointer; }

.uni-text h3 { font-family: var(--heading-font); font-size: 24px; }
.uni-text p { font-size: 14px; opacity: 0.7; font-style: italic; }

.dots-wrapper { display: flex; justify-content: center; gap: 6px; margin-top: 20px; }
.dot { height: 6px; width: 6px; background: rgba(255,255,255,0.3); border-radius: 50%; }
.dot.active { background: var(--gold); width: 18px; border-radius: 10px; }

/* Buttons */
.hero-actions { display: flex; gap: 15px; }

.btn-gold {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 16px 32px;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--heading-font);
}

.btn-white {
    background: transparent;
    border: 1px solid white;
    color: white;
    padding: 16px 32px;
    font-weight: 700;
    cursor: pointer;
}

/* The Card */
.form-card {
    background: white;
    padding: 50px 40px;
    border-radius: 16px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.3);
    width: 420px;
    color: var(--dark);
}

.form-title h2 { font-family: var(--heading-font); font-size: 26px; margin-bottom: 5px; }
.form-title p { color: #666; font-size: 14px; margin-bottom: 30px; }

.input-row { margin-bottom: 20px; }
.input-row label { display: block; font-size: 10px; font-weight: 700; color: #999; letter-spacing: 1px; margin-bottom: 8px; }

.form-card input, .form-card select {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 1.5px solid #eee;
    font-family: var(--body-font);
    font-size: 16px;
    outline: none;
}

.form-card input:focus { border-bottom-color: var(--primary-blue); }

.btn-submit {
    width: 100%;
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 18px;
    font-weight: 700;
    font-family: var(--heading-font);
    cursor: pointer;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .hero-inner { flex-direction: column; text-align: center; }
    .hero-actions { justify-content: center; }
    .form-card { width: 100%; }
}






.uni-portal-final {
    padding: 80px 0;
    background-color: #fcfcfc; /* Slight off-white to make cards stand out */
    font-family: 'Inter', sans-serif;
}

.uni-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.uni-header {
    text-align: center;
    margin-bottom: 60px;
}

.uni-kicker {
    font-size: 11px;
    font-weight: 700;
    color: #0066f5;
    letter-spacing: 1.5px;
}

.uni-title {
    font-size: 38px;
    font-weight: 800;
    color: #0f172a;
    margin-top: 10px;
}

.uni-sub {
    color: #64748b;
    font-size: 16px;
    margin-top: 8px;
}

/* 4-COLUMN GRID */
.uni-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* THE CARD - VISIBLE BORDERS */
.uni-card {
    background: #ffffff;
    border: 1px solid #d1d5db; /* DEFINED BORDER */
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    z-index: 1;
}

/* HOVER EFFECT: Lift + Darker Border + Shadow */
.uni-card:hover {
    transform: translateY(-8px);
    border-color: #9ca3af; /* Border darkens on hover */
    z-index: 10;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.08);
}

.uni-card-top {
    padding: 16px 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.uni-pill {
    font-size: 10px;
    font-weight: 700;
    background: #eff6ff;
    color: #0066f5;
    padding: 4px 10px;
    border-radius: 100px;
}

.uni-rating {
    font-size: 12px;
    font-weight: 700;
    color: #fbbf24;
}

/* LOGO EQUALIZER */
.uni-logo-box {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px; 
}

.uni-logo-box img {
    max-height: 40px;
    max-width: 100%;
    object-fit: contain;
}

.uni-body {
    padding: 0 20px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.uni-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
}

.uni-specs {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}

.uni-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.uni-tags span {
    font-size: 10px;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    padding: 2px 8px;
    border-radius: 4px;
}

/* FEE ROW */
.uni-fee-row {
    margin-top: auto;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #f1f5f9;
}

.uni-fee-row small {
    display: block;
    font-size: 9px;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 2px;
}

.uni-fee-row strong {
    font-size: 22px;
    color: #0f172a;
    font-weight: 800;
}

/* BUTTON */
.uni-btn {
    text-align: center;
    background: #ffffff;
    color: #1e293b !important;
    text-decoration: none !important;
    border: 1px solid #d1d5db;
    padding: 10px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.uni-btn:hover {
    background: #0066f5;
    color: #ffffff !important;
    border-color: #0066f5;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .uni-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .uni-grid { grid-template-columns: 1fr; }
}



.premium-cta {
    position: relative;
    padding: 80px 0;
    background: #01317a; /* Solid base */
    background: radial-gradient(circle at center, #024db5 0%, #01317a 100%);
    font-family: 'Inter', -apple-system, sans-serif;
    color: #ffffff;
    overflow: hidden;
}

/* Background accents for a premium feel */
.glow-element {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(0, 102, 245, 0.2);
    filter: blur(100px);
    border-radius: 50%;
    z-index: 1;
}
.top-left { top: -100px; left: -100px; }
.bottom-right { bottom: -100px; right: -100px; }

.cta-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.cta-tagline {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #fbbf24;
    display: block;
    margin-bottom: 15px;
}

.cta-heading {
    font-size: 34px; /* Reduced from 48px */
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.cta-description {
    font-size: 16px; /* Reduced from 20px */
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    max-width: 550px;
    margin: 0 auto 35px;
}

/* Horizontal Feature Row */
.feature-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 45px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px; /* Smaller, cleaner font */
    font-weight: 500;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 14px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.check-icon {
    color: #fbbf24;
    font-weight: 900;
}

/* Action Buttons */
.cta-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-main {
    background: #fbbf24;
    color: #01317a !important;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-main:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-ghost {
    background: transparent;
    color: #ffffff !important;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    .cta-heading { font-size: 28px; }
    .feature-grid { gap: 10px; }
    .cta-actions { flex-direction: column; }
    .btn-main, .btn-ghost { width: 100%; text-align: center; justify-content: center; }
}





.test-section-slim {
    padding: 60px 0; /* Reduced section padding */
    background-color: #ffffff;
    font-family: 'Inter', sans-serif;
}

.slim-container {
    max-width: 1400px; /* Narrowed container for better focus */
    margin: 0 auto;
    padding: 0 20px;
}

.slim-header {
    text-align: center;
    margin-bottom: 40px; /* Reduced spacing */
}

.slim-kicker {
    font-size: 10px; /* Smaller kicker */
    font-weight: 700;
    color: #0066f5;
    letter-spacing: 1.2px;
    text-transform: uppercase;
}

.slim-title {
    font-size: 30px; /* Scaled down title */
    font-weight: 800;
    color: #0f172a;
    margin-top: 8px;
}

.slim-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; /* Tighter gap */
}

.slim-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px; /* Slightly smaller radius */
    padding: 25px; /* Significantly reduced card padding */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.slim-card:hover {
    border-color: #0066f5;
    transform: translateY(-4px); /* Subtle lift */
}

.slim-quote {
    font-size: 35px; /* Scaled down quote */
    color: #cbd5e1;
    font-family: Georgia, serif;
    line-height: 1;
    margin-bottom: 5px;
}

.slim-text {
    font-size: 14px; /* Reduced body text */
    line-height: 1.6;
    color: #475569;
    margin-bottom: 15px;
    flex-grow: 1;
}

.slim-stars {
    color: #fbbf24;
    font-size: 12px;
    margin-bottom: 15px;
}

.slim-user {
    border-top: 1px solid #f1f5f9;
    padding-top: 15px;
}

.slim-user strong {
    display: block;
    font-size: 14px; /* Smaller name */
    color: #1e293b;
    margin-bottom: 2px;
}

.slim-user span {
    font-size: 12px; /* Smaller subtitle */
    color: #94a3b8;
}

/* Tablet/Mobile Adjustments */
@media (max-width: 900px) {
    .slim-grid { grid-template-columns: 1fr; max-width: 450px; margin: 0 auto; }
}





.counsel-portal {
    padding: 80px 0;
    background-color: #f8fafc; /* Subtle off-white */
    font-family: 'Inter', sans-serif;
}

.counsel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

/* LEFT CONTENT SECTION */
.counsel-text-side {
    flex: 1;
}

.counsel-label {
    font-size: 11px;
    font-weight: 700;
    color: #0066f5; /* Theme Blue */
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 15px;
}

.counsel-main-title {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.counsel-para {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 35px;
}

.contact-rows {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-block strong {
    display: block;
    font-size: 14px;
    color: #1e293b;
    margin-bottom: 4px;
}

.contact-block p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

/* RIGHT FORM CARD */
.counsel-card {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #e2e8f0;
}

.card-headline {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 25px;
    text-align: left;
}

.counsel-fields input, 
.counsel-fields textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 14px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    background: #fcfcfc;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
}

.counsel-fields input:focus, 
.counsel-fields textarea:focus {
    border-color: #0066f5;
}

.counsel-submit {
    width: 100%;
    background: #0066f5; /* Button color matching card grid */
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s ease;
}

.counsel-submit:hover {
    background: #0052cc;
}

/* RESPONSIVE */
@media (max-width: 850px) {
    .counsel-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    .counsel-card { margin: 0 auto; }
}






.elite-footer {
    background-color: #0b121d;
    color: #ffffff;
    padding: 70px 0 30px;
    font-family: 'Inter', sans-serif;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
    gap: 40px;
}

/* BRAND COLUMN & LOGO */
.footer-brand {
    padding-right: 40px;
}

.footer-logo {
    margin-bottom: 25px;
}

.brand-img {
    height: 32px; /* Set height to match the header logo scale */
    width: auto;
    display: block;
    object-fit: contain;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    max-width: 280px;
}

/* LINK COLUMNS */
.footer-column h3 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.8px;
    margin-bottom: 25px;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ffffff;
}

/* BOTTOM BAR */
.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo {
        display: flex;
        justify-content: center;
    }
    .footer-brand {
        padding-right: 0;
    }
    .footer-tagline {
        margin: 0 auto;
    }
}