/* ======================================
   HERO BANNER - FULL SCREEN VERSION
====================================== */

.fg-hero-banner {
    padding: 150px 0 !important;
    position: relative;
    color: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: 100% !important;
}

/* Background Layer */
.fg-hero-background {
    width: 100% !important;
    position: absolute;
    inset: 0;
    z-index: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ======================================
   INNER CONTAINER
====================================== */

.fg-hero-inner {
    max-width: 1680px;
    padding: 0 12px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* ======================================
   HERO CONTENT
====================================== */

.fg-hero-content {
    max-width: 100%;
}

/* Title */
.fg-hero-banner .fg-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: capitalize;
    color: #ffffff;
}

/* Highlight words */
.fg-hero-title .journey {
    color: #9292FF;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.fg-hero-title .abroad {
    color: #FF3C33;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.fg-hero-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    max-width: 650px;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* ======================================
   BUTTONS
====================================== */

.fg-hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.fg-hero-button {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 90px;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    min-width: 160px;
    border: none;
    cursor: pointer;
}

.fg-hero-button.apply {
    background: linear-gradient(135deg, #D2221A 0%, #FF3C33 100%);
    color: #ffffff;
}

.fg-hero-button.apply:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(210, 34, 26, 0.4);
}

.fg-hero-button.learn {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.fg-hero-button.learn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
    transform: translateY(-3px);
}

/* ======================================
   TAGLINE + LOGOS
====================================== */

.fg-hero-tagline {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 2rem;
    position: relative;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.fg-accreditation-logos {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.fg-accreditation-logo {
    height: 90px;
    transition: opacity 0.3s ease;
}

.fg-accreditation-logo:hover {
    opacity: 1;
}

/* ======================================
   RESPONSIVE — BOOTSTRAP BREAKPOINTS
   xs  <576px
   sm  ≥576px
   md  ≥768px
   lg  ≥992px
   xl  ≥1200px
   xxl ≥1400px
====================================== */

/* XL — 1200px and below */
@media (max-width: 1199.98px) {
    .fg-hero-banner .fg-hero-title {
        font-size: 3.25rem;
    }
}

/* LG — 992px and below */
@media (max-width: 991.98px) {
    .fg-hero-banner .fg-hero-title {
        font-size: 3rem;
    }

    .fg-hero-inner {
        padding: 0 24px;
    }

    .fg-accreditation-logo {
        height: 70px;
    }
}

/* MD — 768px and below (Tablet) */
@media (max-width: 767.98px) {
    .fg-hero-banner .fg-hero-title {
        font-size: 2.5rem;
        line-height: 1.15;
    }

    .fg-hero-description {
        font-size: 1rem;
        max-width: 100%;
    }

    .fg-hero-buttons {
        flex-direction: column;
        margin-bottom: 3rem;
    }

    .fg-hero-button {
        width: 100%;
        text-align: center;
    }

    .fg-hero-tagline {
        font-size: 1rem;
    }

    .fg-accreditation-logos {
        justify-content: flex-start;
        gap: 1.25rem;
    }

    .fg-accreditation-logo {
        height: 55px;
    }

    .fg-hero-inner {
        padding: 0 20px;
    }
}

/* SM — 576px and below (Large Mobile) */
@media (max-width: 575.98px) {
    .fg-hero-banner .fg-hero-title {
        font-size: 2rem !important;
        line-height: 1.3;
        margin-bottom: 1.25rem;
        margin-top: 25px;

    }



    .fg-hero-banner {
        position: relative;
        color: #ffffff;
        margin-top: 0;
        min-height: 900px;
        display: flex;
        align-items: start;
        overflow: hidden;
        width: 100% !important;
    }

    /* Background Layer */
    .fg-hero-background {

        background-color: #06064E;
        width: 100% !important;
        position: absolute;
        inset: 0;
        z-index: 1;
        background-size: auto 30%;
        background-position: right bottom;
        background-position-x: 98%;
        background-repeat: no-repeat;
    }


    .fg-hero-button {
        padding: 14px 24px;
        font-size: 1rem;
    }

    .fg-hero-buttons {
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }

    .fg-hero-tagline {
        font-size: 1rem;
        line-height: 1.5;
    }

    .fg-accreditation-logos {
        justify-content: flex-start;
        gap: 1rem;

    }

    .fg-accreditation-logo {
        height: 50px;
    }

    .fg-hero-inner {
        padding: 0 16px;
    }
}

/* XS — 375px and below (Small Mobile) */
@media (max-width: 375px) {
    .fg-hero-banner .fg-hero-title {
        font-size: 1.85rem;
    }

    .fg-hero-description {
        font-size: 0.9rem;
    }

    .fg-hero-button {
        padding: 13px 20px;
        font-size: 0.95rem;
    }

    .fg-accreditation-logo {
        height: 38px;
    }
}

/* ======================================
   ANIMATION
====================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fg-hero-content>* {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.fg-hero-title {
    animation-delay: 0.1s;
}

.fg-hero-description {
    animation-delay: 0.2s;
}

.fg-hero-buttons {
    animation-delay: 0.3s;
}

.fg-hero-tagline {
    animation-delay: 0.4s;
}

.fg-accreditation-logos {
    animation-delay: 0.5s;
}