/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #003986;   /* Navy */
    --accent: #ffc700;    /* Gold */
    --white: #ffffff;
    --text: #1a1a1a;
    --light-gray: #f5f7fa;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
     background: linear-gradient(
        to bottom,
        #ffffff,
        #f5f8ff
    );
    color: var(--text);
}
/* NAVBAR BASE */
/* 🔥 DEFAULT (transparent) */
.navbar {
    position: fixed; /* 🔥 change from absolute */
    top: 0;
    width: 100%;
    z-index: 1000;

    backdrop-filter: blur(10px);
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.2),
        transparent
    );

    transition: all 0.4s ease;
}

/* 🔥 PAG NAG SCROLL */
.navbar.scrolled {
    background: rgba(0, 20, 50, 0.95); /* solid navy */
    backdrop-filter: blur(15px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}
.nav-menu a.active {
    color: #003986;
}

.nav-menu a.active::after {
    width: 100%;
}

/* CENTER CONTENT */
.nav-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 20px;
}

/* MENU */
.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    letter-spacing: 0.5px;
    align-items: center;
    
}

/* LINKS */
.nav-menu a,
.dropdown-toggle {
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    background: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

/* HOVER */
.nav-menu a:hover,
.dropdown-toggle:hover {
    color: #003986;
}
.nav-menu a {
    position: relative;
    transition: all 0.25s ease;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #ffc700;
    transition: 0.3s;
}
.nav-menu li:hover {
    transform: translateY(-2px);
}
.nav-menu a:hover::after {
    width: 100%;
}
/* DROPDOWN */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%);

    background: white;
    border-radius: 10px;
    padding: 10px 0;

    display: none;
    min-width: 180px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ITEMS */
.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
}

.dropdown-menu a:hover {
    background: #f5f5f5;
}

/* SHOW */
.dropdown.active .dropdown-menu {
    display: block;
}
/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 95%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-logo {
    position: absolute;
    top: 400px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.hero-logo img {
    width: 700px;
    max-width: 90%;
    filter: 
        drop-shadow(0 0 20px rgba(0,0,0,0.9))
        drop-shadow(0 10px 30px rgba(0,0,0,0.8));
    animation: fadeIn 1.5s ease forwards;
    opacity: 0;
}

.hero-buttons {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ===== BUTTONS ===== */
.btn-main,
.btn-outline {
    width: 260px;
    text-align: center;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;

    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.4);
    color: white;
}

.btn-main:hover,
.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    color: #003986;
    text-shadow: 0 0 10px rgba(0, 57, 134, 0.6); /* 🔥 subtle glow */
    transform: scale(1.05);
    transition: all 0.25s ease;
}

/* ===== SCROLL BUTTON (PREMIUM) ===== */
.scroll-down {
    position: fixed;
    right: 30px;
    bottom: 40px;
    width: 60px;
    height: 60px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    z-index: 999;

    /* 🔥 GLASS EFFECT */
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.3);

    /* SHADOW */
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);

    /* HIDDEN */
    opacity: 0;
    transform: translateY(40px) scale(0.9);
    pointer-events: none;

    transition: all 0.4s ease;
}

/* 🔥 SHOW */
.scroll-down.show {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

/* ICON */
.scroll-down img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* pag hover → dark arrow */
.scroll-down:hover img {
    filter: none;
}

/* 🔥 HOVER (GLOW EFFECT) */
.scroll-down:hover {
    transform: scale(1.15);
    background: rgba(0, 57, 134, 0.9);

    box-shadow: 
        0 0 15px rgba(0,57,134,0.6),
        0 0 30px rgba(0,57,134,0.3);
}

@keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}
.scroll-down::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0,57,134,0.4);
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ===== COURSES SECTION ===== */
.courses-multi {
    margin-top: -40px;
    padding: 60px 40px;
    background: #ffffff;
}

.section-title {
    text-align: center; 
    width: 100%;
    text-transform: uppercase;
    font-size: 3rem; /* 🔥 mas malaki */
    font-weight: 800;
    color: #003986;
    margin: 0 auto 40px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #ffc700;
    display: block;
    margin: 10px auto 0;
}

.course-group {
    margin-bottom: 5px;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.course-label {
    position: relative;
    color: #003986; /* 🔥 navy na (no yellow) */
    font-size: 1.8rem; /* mas malaki */
    font-weight: 700;
    margin-bottom: 25px;
}
.course-label::after {
    content: "";
    display: block;
    width: 40px;
    height: 3px;
    background: #003986;
    margin-top: 5px;
    border-radius: 5px;
}

/* ===== SLIDER ===== */
.slider {
    max-width: 1280px;
    margin: auto;
    position: relative;
    overflow: visible;
    padding: 0; /* ❌ tanggalin yung padding */
}
.slider-inner {
    overflow: hidden; /* 🔥 dito natin itatago slides */
    width: 100%;
}

.track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    will-change: transform;
    
}

.slide {
    flex: 0 0 calc((100% - 60px) / 4);
    max-width: calc((100% - 60px) / 4); /* 🔥 ADD THIS */
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;

    background: rgba(0, 57, 134, 0.85); /* navy glass */
    backdrop-filter: blur(10px);

    transition: all 0.3s ease;
    transform: translateZ(0);
}

/* 🔥 HOVER (blue glow, hindi yellow) */
.slide:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 0 20px rgba(0, 57, 134, 0.5);
}

/* IMAGE */
.course-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
    pointer-events: none; /* 🔥 smoother drag */
    
}
.slide:hover .course-img {
    transform: scale(1.08);
}

/* OVERLAY */
.course-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 18px;
    transition: 0.3s;
    color: #fff;
    pointer-events: none;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.9),
        rgba(0,0,0,0.6),
        rgba(0,0,0,0.2),
        transparent
    );
}
.slide:hover .course-overlay {
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.95),
        rgba(0,0,0,0.7),
        rgba(0,0,0,0.3),
        transparent
    );
}

/* HOVER ZOOM */
.slide:hover img {
    transform: scale(1.1);
    transition: 0.4s;
}


/* ===== SLIDER BUTTONS ===== */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    width: 35px;
    height: 35px;

    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);

    color: #003986;
    font-size: 16px;

    border-radius: 50%;
    border: none;
    cursor: pointer;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
}

/* POSITION */
.prev { left: -20px; }
.next { right: -20px; }

/* 🔥 HOVER (blue glow, hindi yellow) */
.prev:hover, .next:hover {
    background: rgba(0, 57, 134, 0.9);
    color: white;
    box-shadow: 0 0 10px rgba(0, 57, 134, 0.6);
    transform: translateY(-50%) scale(1.1);
}

/* ===== SEE ALL ===== */
.see-all-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
}

.see-all {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    transition: 0.3s;
}

.see-all:hover {
    color: var(--accent);
    transform: translateX(5px);
}

/* ===== ANIMATION ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.course-overlay h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;

    display: -webkit-box;
    -webkit-line-clamp: 2; /* 🔥 max 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.course-overlay p {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-bottom: 10px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 🔥 text glow lang */
.slide:hover .course-overlay h4 {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(0, 57, 134, 0.8);
}
.enroll-btn {
    display: inline-block;
    padding: 6px 14px;
    font-size: 0.8rem;
    pointer-events: auto;


    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);

    border-radius: 20px;
    color: #fff;
    text-decoration: none;

    transition: 0.3s;
}

.enroll-btn:active {
    transform: scale(0.95);
}
.enroll-btn:hover {
    color: #003986;
    background: rgba(255,255,255,0.9);
}
/* 🔥 FULL SCREEN MODAL */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;

    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.8);

    justify-content: center;
    align-items: center;
}

/* 🔥 FULL IMAGE STYLE */
.modal-content {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 80vh;

    border-radius: 20px;
    overflow: hidden;

    animation: zoomIn 0.4s ease;
}

/* IMAGE FULL */
.modal-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 🔥 DARK GRADIENT OVERLAY */
.modal-content::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 50%);
}

/* TEXT CONTENT */
.modal-info {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    color: white;
    z-index: 2;
}

.modal-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.modal-info p {
    font-size: 16px;
    opacity: 0.9;
}
.modal-inquire-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background: #003986;
    color: white;
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}

.modal-inquire-btn:hover {
    background: #ffc700;
    color: black;
    transform: translateY(-2px);
}

/* 🔥 DAYS BADGE */
.course-days {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 14px;
}
.course-type {
    display: inline-block;
    margin-left: 10px;
    padding: 6px 12px;

    background: rgba(0, 57, 134, 0.8); /* 🔥 navy */
    border-radius: 20px;

    font-size: 13px;
}
.course-code {
    display: inline-block;
    margin-left: 10px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 20px;
    font-size: 13px;
}
/* CLOSE BUTTON */
.close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 3;
}

.accreditations {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(to bottom, #ffffff, #f5f8ff);
}

/* GRID */
.accreditation-container {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

/* CARD (IBALIK NATIN PERO MINIMAL LANG) */
.accredit-card {
    width: 220px;
    padding: 25px 20px;

    border-radius: 16px;
    background: white;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    box-shadow: 0 5px 15px rgba(0,0,0,0.06);
    transition: 0.3s;
}

/* HOVER */
.accredit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,57,134,0.15);
}

/* LOGO (FIX NA FIX NA ITO) */
.accredit-card img {
    max-width: 120px;   /* 🔥 CONTROL WIDTH */
    max-height: 70px;   /* 🔥 CONTROL HEIGHT */
    width: 100%;

    object-fit: contain;

    margin-bottom: 15px;
    transition: 0.3s;
}
.accredit-card img.seasafe {
    max-width: 180px;   /* 🔥 palakihin */
    max-height: 60px;   /* keep proportion */
}
/* HOVER LOGO */
.accredit-card:hover img {
    transform: scale(1.08);
}

/* TITLE */
.accredit-card h4 {
    font-size: 15px;
    color: #003986;
    margin-top: 10px;
    margin-bottom: 6px;
}

/* DESC */
.accredit-card p {
    font-size: 12px;
    color: #666;
    line-height: 1.4;
}
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ANIMATION */
@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}
.survey-section {
    padding: 100px 20px;
    background: #f8f9fb;
}

.survey-card {
    
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;

    background: white;
    padding: 50px;
    border-radius: 25px;

    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    background: linear-gradient(
        135deg,
        #ffffff,
        #f5f8ff
    );
}
.survey-card:hover {
    transform: translateY(-5px);
}

/* LEFT */
.survey-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px; /* spacing between circle & note */
}

/* 🔥 DONUT CIRCLE */
/* DONUT BASE */
.circle-wrap {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    position: relative;

    background: conic-gradient(#00c6ff 0%, #2e7d32 0%, #e0e0e0 0%);
    transition: all 0.6s ease;

    box-shadow: 0 0 0 rgba(0,198,255,0);
}

/* 🔥 GLOW EFFECT */
.circle-wrap.glow {
    box-shadow: 0 0 25px rgba(0,198,255,0.5),
                0 0 50px rgba(46,125,50,0.3);
}

/* INNER CIRCLE */
.circle {
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* TEXT */
.score {
    font-size: 36px;
    font-weight: 800;
    color: #003986;
}
.outof {
    font-size: 13px;
    color: #777;
}

.percent {
    font-size: 12px;
    color: #2e7d32;
    margin-top: 4px;
    font-weight: 600;
}

.survey-note {
    font-size: 11px;
    color: #999;
    text-align: center;
    max-width: 180px;
    line-height: 1.4;
}

/* RIGHT */
.survey-right {
    max-width: 450px;
}

.survey-right h2 {
    font-size: 26px;
    color: #003986;
    margin-bottom: 20px;
}

.criteria-title {
    font-weight: 600;
    margin-bottom: 15px;
}

.criteria-list {
    list-style: none;
    padding: 0;
}

.criteria-list li {
    margin-bottom: 10px;
    font-size: 15px;
}
/* TOGGLE */
.survey-toggle {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 10;
}

.toggle-btn {
    padding: 10px 20px;
    border: none;
    background: #ddd;
    margin: 0 5px;
    border-radius: 20px;
    cursor: pointer;
    transition: 0.3s;
    position: relative;
    z-index: 20;
}

.toggle-btn.active {
    background: #003986;
    color: white;
}

/* FADE ANIMATION */
.survey-right {
    transition: 0.4s;
}

.fade {
    opacity: 0;
    transform: translateY(10px);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .survey-card {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .survey-right {
        max-width: 100%;
    }
}
/* I-reset natin ang spacing para siguradong gagana */
section#social.facebook-section {
    padding: 80px 20px !important;
    background: #f4f7fa !important;
    display: block !important;
}

/* Force grid layout */
#social .fb-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Siguraduhin na ang mga boxes ay may white background at shadow */
#social .map-wrapper, 
#social .fb-wrapper {
    background: #ffffff !important;
    border-radius: 16px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
    overflow: hidden !important;
    height: 100% !important;
    border: 1px solid #eee !important;
}

/* Force the height of iframes */
#social .map-wrapper iframe, 
#social .fb-wrapper iframe {
    width: 100% !important;
    height: 550px !important; /* Taasan natin para makita ang difference */
    border: none !important;
    display: block !important;
}

/* Card titles */
#social .box-title {
    padding: 15px 20px !important;
    margin: 0 !important;
    background: #ffffff !important;
    color: #003986 !important;
    font-weight: bold !important;
    border-bottom: 1px solid #eee !important;
}

/* Mobile fix */
@media (max-width: 900px) {
    #social .fb-container {
        grid-template-columns: 1fr !important;
    }
}

/* CONTACT WITH ICON */
.footer-contact {
    display: flex;
    align-items: flex-start;
    gap: 10px;

    font-size: 14px;
    margin-bottom: 12px;
    color: #ccc;
}

.footer-contact img {
    width: 16px;
    height: 16px;
    margin-top: 3px; /* align sa text */
    object-fit: contain;
}

/* CONTACT LINKS (email/phone clickable) */
.footer-contact a {
    color: #ccc;
    text-decoration: none;
}

.footer-contact a:hover {
    color: #fff;
}

/* SOCIAL LINKS FIX */
.footer-social a {
    display: block;
    margin-top: 6px;
    font-size: 14px;
}
.footer {
    background: #003986;
    color: #ccc;
    padding: 60px 20px 30px;
}

/* 🔥 GRID FIX */
.footer-container {
    max-width: 1200px;
    margin: auto;

    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 50px;
}

/* LOGO */
.footer-logo {
    width: 160px;
    margin-bottom: 15px;
}

/* TEXT */
.footer-desc {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 350px;
}

/* BUTTON */
.footer-btn {
    display: inline-block;
    padding: 8px 18px;
    border: 1px solid #fff;
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: 0.3s;
}

.footer-btn:hover {
    background: #ffc700;
    color: black;
    border-color: #ffc700;
}

/* HEADINGS */
.footer-col h3 {
    color: white;
    margin-bottom: 15px;
}

/* LINKS */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ffc700;
    padding-left: 5px;
}

/* CONTACT */
.footer-col p {
    font-size: 14px;
    margin-bottom: 10px;
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    font-size: 13px;
    color: rgba(255,255,255,0.7); /* 🔥 soft white */
        letter-spacing: 0.3px;

}
.footer-col a {
    display: block;
    color: #ccc; /* 🔥 soft white (not pure white) */
    text-decoration: none;
    margin-top: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #ffffff; /* 🔥 clean white hover */
    transform: translateX(3px); /* subtle movement */
}

/* ABOUT*/ 
.section-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #003986;
    margin-bottom: 10px;
    position: relative;
}

.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #ffc700, #ffdd33);
    margin: 12px auto 0;
    border-radius: 10px;
}

/* ===== MAIN ===== */
.about-main {
    padding: 80px 20px 60px; /* 🔥 reduced */
    background: #fff;
}

.container {
    max-width: 1000px;
    margin: auto;
    text-align: center;
}

.about-main p {
    color: #555;
    line-height: 1.7;
}

/* ===== SCROLL REVEAL BASE ===== */
.reveal {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ACTIVE STATE */
.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* 🔥 VARIATIONS */
.reveal-left {
    transform: translateX(-80px);
}
.reveal-right {
    transform: translateX(80px);
}

.reveal-left.active,
.reveal-right.active {
    transform: translateX(0);
}

/* ===== PAGE LOADER ===== */
/* 🔥 TOP PROGRESS BAR */
#top-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, #ffc700, #003986);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* 🔥 FULL SCREEN LOADER */
#page-loader {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #003986, #002c6b);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998;
    transition: opacity 0.5s ease;
}

#page-loader.hidden {
    opacity: 0;
    pointer-events: none;
}

/* CONTENT */
.loader-content {
    text-align: center;
    color: white;
}

/* LOGO */
.loader-logo {
    width: 120px;
    margin-bottom: 20px;
    animation: float 2s ease-in-out infinite;
}

/* FLOAT ANIMATION */
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* SPINNER */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(255,255,255,0.2);
    border-top: 4px solid #ffc700;
    border-radius: 50%;
    margin: 0 auto 10px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* TEXT */
.loader-content p {
    font-size: 14px;
    opacity: 0.8;
}
/* SHRINK NAVBAR */
.navbar.shrink {
    padding: 5px 0;
    backdrop-filter: blur(20px);
    background: rgba(0, 20, 50, 0.9);
}

.navbar.shrink .nav-container {
    padding: 8px 20px;
}

.navbar.shrink .nav-menu a {
    font-size: 13px;
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {

    /* GENERAL */
    body {
        overflow-x: hidden;
    }

    .section-title {
        font-size: 22px;
    }

    /* HERO */
    .hero-logo img {
        width: 200px;
    }

    /* NAVBAR */
    .nav-menu {
        flex-direction: column;
        background: #003986;
        position: absolute;
        top: 70px;
        right: 0;
        width: 100%;
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    /* COURSES */
    .courses-multi {
        padding: 40px 15px;
    }

    .course-group {
        margin-bottom: 40px;
    }

    .slider {
        overflow-x: auto;
    }

    .track {
        display: flex;
        gap: 15px;
    }

    .slide {
        min-width: 80%;
    }

    /* BUTTONS */
    .prev,
    .next {
        display: none;
    }

    /* SEE ALL */
    .see-all-wrapper {
        text-align: center;
        margin-top: 10px;
    }

    /* ACCREDITATIONS */
    .accreditation-container {
        flex-direction: column;
        gap: 20px;
    }

    .accredit-card {
        width: 100%;
    }

    /* FOOTER */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-logo {
        margin: auto;
    }

    .footer-col {
        align-items: center;
    }

}
/* HAMBURGER */
.menu-toggle {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
        top: 15px;
        z-index: 1001;
    }

    .nav-container {
        justify-content: space-between;
    }

    .nav-menu {
        flex-direction: column;
        background: #003986;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        display: none;
        padding: 20px 0;
    }

    .nav-menu li {
        text-align: center;
        padding: 10px 0;
    }

    .nav-menu.active {
        display: flex;
    }

    /* DROPDOWN FIX */
    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
    }
}