/* -------------------- NAVBAR (TRANSPARENT) -------------------- */
.navbar-custom {
    background: rgba(0, 36, 88, 0.85); /* #002458 with transparency */
    backdrop-filter: blur(10px);
    box-shadow: none;
}


/* Force ALL navbar text to white */
.navbar-custom,
.navbar-custom .nav-link,
.navbar-custom .navbar-brand,
.navbar-custom .navbar-toggler,
.navbar-custom .navbar-text {
    color: #FFBD39 !important;
    font-weight: 600;
}


/* Hover effect */
.navbar-custom .nav-link:hover {
    color: #ffffff !important;
}


/* -------------------- GLOBAL PAGE BACKGROUND -------------------- */
html, body {
    background-color: #002458; /* IELTS navy */
    min-height: 100vh;
    margin: 0;
    padding: 0;
    color: #FFBD39; /* default text */
}


/* -------------------- Section Small Navbar -------------------- */
.section-navbar {
    background: rgba(0, 0, 0, 0.15);  /* same as main navbar */
    backdrop-filter: blur(10px);
    box-shadow: none;
    border-radius: 0;                 /* no rounding to match main navbar */
    margin: 0;                        /* flush with edges */
}

.section-navbar .btn-outline-light {
    color: #ffffff;
    border-color: #ffffff;
}

.section-navbar .btn-outline-light:hover {
    background-color: #ffffff;
    color: #003366;
}

.navbar-custom .navbar-toggler {
    border-color: #FFBD39;
}

.navbar-custom .navbar-toggler-icon {
    filter: invert(82%) sepia(60%) saturate(600%) hue-rotate(350deg);
}


/* ===== HOME WRAPPER ===== */
.home-wrapper{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.home-hero{
    flex: 1;
}

/* ===== CORPORATE FOOTER ===== */
.footer-corporate{
    width: 100%;
    margin-top: auto;
    color: #fff;
    background: linear-gradient(180deg, rgba(6,15,40,0.95), rgba(3,10,26,0.98));
    border-top: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 -15px 40px rgba(0,0,0,0.4);
    padding-top: 30px;
}

.footer-container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.footer-section h3,
.footer-section h4{
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-section p{
    margin: 0 0 8px;
    font-size: 14px;
    opacity: 0.85;
}

.footer-section a{
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-section a:hover{
    color: #4da6ff;
    padding-left: 5px;
}

.footer-bottom{
    text-align: center;
    padding: 15px;
    font-size: 14px;
    opacity: 0.8;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px){
    .footer-container{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px){
    .footer-container{
        grid-template-columns: 1fr;
        text-align: center;
    }
}


