/* ================= HOME =================*/
/*==========================================
    TABLE OF CONTENT
--------------------------------------------
    01. Font Face Definitions
    02. Root Variables
    03. Base Reset
    04. Typography
    05. Header Section
    06. Hero Section
    07. Hero Menu
    08. About Section
    09. Why Learning Section
    10. All Course section
    11. Testimonial Section
    12. Our Recuiters Section
    13. Footer Section
    14.Copy Right Section
    15. Responsive
=============================================*/

/* --------------------------------------------------------
01. Font Face Definitions
-------------------------------------------------------- */

@font-face {
    font-family: 'Rekalgera';
    src: url('../fonts/Rekalgera-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('../fonts/Myriad-Pro.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MyriadPro';
    src: url('../fonts/Myriad-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Verlisa';
    src: url('../fonts/Verlisa.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* --------------------------------------------------------
02. Root Variables
-------------------------------------------------------- */

:root {
    /* Colors */
    --primary-color: #09415b;
    --primary-opacity: #09415b21;
    --primary-hover: #ffc107;
    --secondary-color: #ffa729;
    --pink-color: #db7093;
    --pink-opacity: #DB709321;
    --blue-color: #2f57ef;
    --blue-opacity: #2f57ef21;
    --green-color: #28a745;
    --green-opacity: #28a74521;
    --red-color: #dc3545;
    --red-opacity: #dc354521;
    --orange-color: #fd7e14;
    --orange-opacity: #fd7e1421;

    --text-color-light: #ffffff;
    --text-color-gray: #616160;
    --text-color-dark: #030304;

    --heading-color-dark: #010101;
    --heading-color-light: #ffffff;
    --heading-color-gray: #616160;

    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-dark: #000000;
    --bg-gray: #d4dadd;
    --bg-transparent: transparent;

    --bg-overlay-dark: rgba(1, 13, 26, 0.35);
    --bg-overlay-light: rgba(255, 255, 255, 0.2);

    /* Fonts */
    --font-body: 'MyriadPro', sans-serif;
    --font-heading: 'Rekalgera', serif;
    --font-heading-Verlisa: 'Verlisa', serif;
    --font-header-link: 'MyriadPro', sans-serif;

    /* Font Sizes */
    --h1-size: 90px;
    --h2-size: 56px;
    --h3-size: 40px;
    --h4-size: 28px;
    --h5-size: 22px;
    --h6-size: 18px;

    --large-size: 100px;
    --extra-large-size: 140px;

    --paragraph-size: 20px;

    --heading-line-height: 0.7;

    /* Font Weights */
    --base-weight: 400;
    --bold-weight: 600;
    --heading-weight: 400;

    /* Transition */
    --transition-fast: 0.3s ease;

    /*Border Radius*/
    --border-radius: 10px;
}

/* --------------------------------------------------------
03. Base Reset (IMPORTANT for line-height)
-------------------------------------------------------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    font-weight: var(--base-weight);
    color: var(--text-color-dark);
    background: var(--bg-white);
}

/* --------------------------------------------------------
04. Typography
-------------------------------------------------------- */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: var(--heading-weight);
    line-height: var(--heading-line-height);
    color: var(--heading-color-dark);
    margin: 0;
}

h1 {
    font-size: var(--h1-size);
}

h2 {
    font-size: var(--h2-size);
}

h3 {
    font-size: var(--h3-size);
}

h4 {
    font-size: var(--h4-size);
}

h5 {
    font-size: var(--h5-size);
}

h6 {
    font-size: var(--h6-size);
}

/* --------------------------------------------------------
    Animation
-------------------------------------------------------- */
@keyframes animate {
    0% {
        transform: translate(-25%, -75%) rotate(0deg);
    }

    100% {
        transform: translate(-25%, -75%) rotate(360deg);
    }
}

/* --------------------------------------------------------
    page loader
-------------------------------------------------------- */
body.loader-active {
    overflow: hidden;
    height: 100vh;
}

#site-content {
    opacity: 0;
    transform: translateY(30px);
}

#page-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    overflow: hidden;
    background: #000;
}

.loader-liquid {
    position: absolute;
    top: -35%;
    width: 100%;
    height: 200%;
    background: #7293ff;
    box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.7);
    animation: floatUp 6s ease-in-out infinite;
}

.loader-liquid::before,
.loader-liquid::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: 0;
    left: 0;
    transform: translate(-25%, -75%);
}

.loader-liquid::after {
    border-radius: 45%;
    background: rgba(20, 20, 20, 1);
    box-shadow: 0 0 20px 10px #7293ff,
        inset 0 0 10px #7293ff;
    animation: animate 6s linear infinite;
    opacity: 0.9;
}

.loader-liquid::before {
    border-radius: 40%;
    background: rgba(26, 26, 26, 0.5);
    box-shadow: inset 0 0 10px rgba(26, 26, 26, 0.5);
    animation: animate 9s linear infinite;
}

.loader-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.loader-content img {
    max-width: 250px;
    margin-bottom: 15px;
}

.progress-bar-wrapper {
    width: 240px;
    height: 6px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, #fff, #dbe4ff);
    transition: width 0.2s ease;
}

/* --------------------------------------------------------
    badge
-------------------------------------------------------- */
.nfa-badge {
    display: inline-block;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    border-radius: 999px;
    cursor: default;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

/* Smooth hover shine */
.nfa-badge::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, 0.25),
            transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.nfa-badge:hover::before {
    transform: translateX(100%);
}

.badge-outline {
    color: var(--primary-color);
    border: 1.5px solid var(--primary-color);
    background: transparent;
}

.badge-outline:hover {
    background: var(--primary-color);
    color: #fff;
}

.badge-fill {
    background: var(--primary-color);
    color: #fff;
}

.badge-fill:hover {
    background: #000;
}

.badge-soft {
    background: rgba(13, 110, 253, 0.1);
    color: var(--primary-color);
}

.badge-soft:hover {
    background: var(--primary-color);
    color: #fff;
}

.badge-dark {
    background: #111;
    color: #fff;
}

.badge-dark:hover {
    background: var(--primary-color);
}

/* --------------------------------------------------------
    Feture Icon
-------------------------------------------------------- */
.feature .icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
    background: var(--primary-opacity);
    display: flex;
    border-radius: 100%;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.icon-primary {
    color: var(--primary-color);
    background: var(--primary-opacity);
}

.icon-pink {
    color: var(--pink-color);
    background: var(--pink-opacity);
}

.icon-blue {
    color: var(--blue-color);
    background: var(--blue-opacity);
}

.icon-orange {
    color: var(--orange-color);
    background: var(--orange-opacity);
}

.icon-red {
    color: var(--red-color);
    background: var(--red-opacity);
}

.icon-green {
    color: var(--green-color);
    background: var(--green-opacity);
}

/* --------------------------------------------------------
    slider btn
-------------------------------------------------------- */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.testimonial-nav i {
    color: #000;
    font-size: 18px;
}

.testimonial-nav:hover {
    background: rgba(255, 255, 255, 0.45);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* --------------------------------------------------------
    video btn
-------------------------------------------------------- */
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-color-light);
    border: none;
    font-size: 20px;
    cursor: pointer;
    z-index: 2;
    transition: all var(--transition-fast);
}

.video-play-btn:hover {
    background: var(--primary-hover);
    color: var(--text-color-dark);
    transform: translate(-50%, -50%) scale(1.1);
}

/*-----------------------
    Modern Button  
------------------------*/
a.rbt-moderbt-btn {
    position: relative;
    height: 60px;
    line-height: 56px;
    transition: all 0.2s ease;
    padding: 0 26px;
    display: inline-block;
    z-index: 1;
    color: var(--text-color-dark);
    text-decoration: none;
    outline: none;
}

@media only screen and (max-width: 767px) {
    a.rbt-moderbt-btn {
        padding: 0 10px;
    }
}

a.rbt-moderbt-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 28px;
    background: var(--primary-color);
    opacity: 0.5;
    width: 56px;
    height: 56px;
    transition: all 0.3s ease;
    z-index: -1;
}

a.rbt-moderbt-btn i {
    position: relative;
    top: 2px;
    margin-left: 10px;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    display: inline-block;
}

a.rbt-moderbt-btn:hover {
    color: var(--text-color-light);
}

a.rbt-moderbt-btn:hover i {
    transform: translateX(0);
}

a.rbt-moderbt-btn:hover::before {
    width: 100%;
    background: var(--primary-color);
    opacity: 1;
}

/* --------------------------------------------------------
05. Header
-------------------------------------------------------- */

.header-top {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
    background: var(--bg-transparent);
}

.logo-lg-image {
    height: 140px;
    object-fit: cover;
    overflow: hidden;
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #1e4063;
    padding: 15px 0;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.4s ease;
}

.sticky-header.active {
    transform: translateY(0);
}

.sticky-header a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
}

.logo-sm {
    height: 60px;
}

.mobile-header {
    display: none;
}
.header-btn-group{
    display:flex;
    align-items:center;
}
/* --------------------------------------------------------
06. Hero Section
-------------------------------------------------------- */
.hero-section.home {
    min-height: 100vh;
    background: url('../images/nif_home_banner.png') no-repeat center center / cover;
    position: relative;
    padding-top: 180px;
}

.hero-section.home .container-fluid {
    position: relative;
    z-index: 1;
}

.hero-section.home h1 {
    color: var(--heading-color-light);
}

.home-banner-symbol {
    position: absolute;
    content: "";
    height: 660px;
    top: 25px;
    left: 60px;
    width: 90%;
}

.apply-box {
    background: #d7e7f4;
    width: 100%;
    max-width: 430px;
    border: 15px solid var(--bg-white);
    padding: 40px 0px 15px 0px;
    position: absolute;
    z-index: 20;
    bottom: -250px;
    right: 400px;
    box-sizing: border-box;
}

.apply-content {
    position: relative;
    z-index: 25;
}

.form-image-symbol {
    position: absolute;
    content: "";
    height: 400px;
    z-index: -1;
    top: 0;
    left: 50px;
}

.apply-content .apply-title {
    font-family: var(--font-body);
    color: var(--text-color-dark);
    font-weight: 700;
    font-size: clamp(20px, 4vw, 28px);
    padding-bottom: 5px;
    letter-spacing: 1px;
    margin: 0px;
}

.apply-content .underline {
    width: 55px;
    height: 3px;
    background: #073d59;
}

.apply-content .course-title {
    font-family: var(--font-body);
    color: var(--text-color-dark);
    font-weight: 600;
    margin: 15px 0px 0px 0px;
    font-size: clamp(16px, 3vw, 22px);
}

.apply-content .eligibility {
    color: var(--text-color-dark);
    font-size: clamp(11px, 2vw, 13px);
    margin-top: 5px;
    padding: 0 10px;
}

.apply-form {
    padding: 15px;
}

.apply-form .form-label {
    color: var(--text-color-dark);
    font-size: clamp(11px, 2vw, 13px);
    font-weight: 600;
    margin-bottom: 3px;
}

.apply-form .custom-input {
    border: 1px solid #9da7af;
    background: var(--bg-transparent);
    border-radius: 2px;
    height: 32px;
    font-size: clamp(11px, 2vw, 13px);
    width: 100%;
}

.form-select.custom-input {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.apply-form .custom-input:focus {
    border-color: #073d59;
    box-shadow: none;
}

.submit-btn {
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font-body);
    color: #fff;
    background: #000;
    text-transform: uppercase;
    padding: 4px 0;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    transition: 0.2s;
    border: none;
}

.submit-btn.apply-now {
    padding: 15px 30px;
    border-radius: 30px;
}

.submit-btn.contact {
    padding: 15px 0px;
}

.submit-btn span {
    position: relative;
    z-index: 2;
    color: #fff;
}

.submit-btn .liquid {
    position: absolute;
    top: -60px;
    left: 0;
    width: 100%;
    height: 200px;
    background: #7293ff;
    box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.7);
    z-index: 1;
    transition: 0.6s;
}

.submit-btn .liquid::before,
.submit-btn .liquid::after {
    content: "";
    position: absolute;
    width: 200%;
    height: 200%;
    top: 0;
    left: 0;
    transform: translate(-25%, -75%);
}

.submit-btn .liquid::after {
    border-radius: 45%;
    background: rgba(20, 20, 20, 1);
    box-shadow: 0 0 10px 5px #7293ff,
        inset 0 0 5px #7293ff;
    animation: animate 5s linear infinite;
    opacity: 0.8;
}

.submit-btn .liquid::before {
    border-radius: 40%;
    background: rgba(26, 26, 26, 0.5);
    box-shadow: 0 0 10px rgba(26, 26, 26, 0.5),
        inset 0 0 5px rgba(26, 26, 26, 0.5);
    animation: animate 7s linear infinite;
}

.submit-btn:hover .liquid {
    top: -120px;
}

.submit-btn:hover {
    box-shadow: 0 0 5px #7293ff,
        inset 0 0 5px #7293ff;
    transition-delay: 0.2s;
}

.hero-back-btn {
    position: relative;
    z-index: 5;
}

/* Back Button */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

/* Icon */
.back-btn i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

/* Hover Effect */
.back-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Arrow Animation */
.back-btn:hover i {
    transform: translateX(-4px);
}


/* --------------------------------------------------------
07. Hero Menu
-------------------------------------------------------- */

.hero-menu.home li {
    margin-bottom: 18px;
}

.hero-menu.home a {
    position: relative;
    display: inline-block;
    color: var(--text-color-light);
    font-family: var(--font-header-link);
    font-weight: 600;
    text-decoration: none;
    padding-bottom: 6px;
    letter-spacing: 1px;
    transition: color var(--transition-fast);
}

.hero-menu.home a {
    position: relative;
    display: inline-block;
    color: var(--text-color-light);
    text-decoration: none;
}

.hero-menu.home a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 25px;
    height: 2px;
    background-color: var(--primary-hover);
    transition: width var(--transition-fast);
}

.hero-menu.home a:hover::before {
    width: 100%;
}

.hero-menu.home a:hover {
    color: var(--primary-hover);
}

.hero-menu.home .hero-btn::before {
    display: none;
}

.hero-btn .submit-btn.apply-now {
    padding: 10px 20px;
    border-radius: 10px;
}

/* --------------------------------------------------------
08. About Section
-------------------------------------------------------- */

.about-section {
    position: relative;
}

.about-banner-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-banner-image img {
    height: 800px;
    object-fit: cover;
    overflow: hidden;
}

.about-us {
    padding-top: 280px;
}

.about-us-title {
    position: relative;
}

.about-us-title .main-title {
    color: var(--heading-color-gray);
    font-size: var(--large-size);
}

.about-us-title .sub-part {
    position: absolute;
    color: var(--primary-color);
    font-family: var(--font-heading-Verlisa);
    font-size: var(--extra-large-size);
    top: -35px;
    left: 120px;
}

.about-description {
    padding-top: 120px;
}

.about-description p {
    font-size: var(--paragraph-size);
    margin-bottom: 30px;
}

/* --------------------------------------------------------
09. Why Learning Section
-------------------------------------------------------- */

.why-larning-section {
    position: relative;
    background: url('../images/why-learning-banner.png') no-repeat center center / cover;
    padding: 100px 0px 100px 0px;
}

.why-larning-title {
    position: relative;
    z-index: 9;
}

.why-larning-title .main-title {
    color: var(--heading-color-light);
    font-family: var(--font-heading);
    font-size: var(--large-size);
    padding-left: 50px;
}

.why-larning-main {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.larning-main-image {
    height: 250vh;
}

.why-larning-stats {
    position: absolute;
    z-index: 10;
    top: -70px;
    right: 80px;
}

.stats-image {
    height: 350px;
}

.why-larning-symbol {
    position: absolute;
    z-index: 10;
    bottom: -115px;
    left: 80px;
}

/* --------------------------------------------------------
10. All Course section
-------------------------------------------------------- */
.all-course-title .main-title {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: var(--large-size);
}

.all-course-description p {
    font-size: var(--paragraph-size);
    margin-top: 30px;
}

.course {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 40px;
}

.course-image {
    height: 250px;
    width: 250px;
    object-fit: cover;
    overflow: hidden;
}

.course-image img {
    height: 100%;
    width: 100%;
}

.course-title a {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-size: var(--h6-size);
    font-weight: var(--bold-weight);
    width: 80%;
}

/* --------------------------------------------------------
11. Testimonial Section
-------------------------------------------------------- */
.testimonial-section {
    position: relative;
    background: var(--bg-gray);
}

.testimonial-title .main-title {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: var(--large-size);
    margin-bottom: 40px;
}

.testimonial-description p {
    font-size: var(--paragraph-size);
}

.testimonial-image {
    display: flex;
    justify-content: end;
    align-items: center;
}

.testimonial-image img {
    height: 550px;
    object-fit: cover;
    overflow: hidden;
}

.testimonial-person {
    margin-top: 80px;
}

.testimonial-person p {
    font-size: var(--paragraph-size);
    font-weight: var(--bold-weight);
}

/* --------------------------------------------------------
12. Our Recuiters Section
-------------------------------------------------------- */

.our-recuiters-section {
    position: relative;
    background: var(--bg-white);
}

.our-recuiters-title .main-title {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: var(--large-size);
    margin-bottom: 40px;
}

.recruiter-box {
    background: var(--bg-white);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.recruiter-box-four {
    background: var(--bg-white);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.recruiter-logo {
    height: 80px;
}

/* --------------------------------------------------------
13. Footer Section
-------------------------------------------------------- */
.footer-section {
    position: relative;
    background: var(--bg-dark);
}

.footer-logo {
    height: 140px;
}

.footer-description {
    color: var(--text-color-light);
}

.footer-social-icons a {
    color: var(--text-color-light);
    font-size: 18px;
    margin-right: 10px;
    transition: var(--transition-fast);
    background: var(--bg-overlay-light);
    padding: 5px 10px;
    border-radius: var(--border-radius);
    text-decoration: none;
}

.footer-social-icons a:hover {
    color: var(--primary-hover);
}

.footer-divider {
    width: 2px;
    background-color: var(--primary-color);
    height: 100%;
}

.footer-heading {
    color: var(--primary-hover);
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

.footer-address,
.footer-number,
.footer-email {
    display: flex;
    align-items: start;
    margin-bottom: 20px;
}

.footer-address i,
.footer-number i,
.footer-email i {
    color: var(--primary-color);
    font-size: 18px;
}

.footer-address p,
.footer-number p,
.footer-email p {
    font-size: 15px;
}

.footer-list {
    list-style: none;
    padding-left: 0;
}

.footer-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 15px;
}

.footer-list li::before {
    content: "•";
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    line-height: 16px;
}

.footer-list li a {
    text-decoration: none;
    color: #ffffff;
    font-size: small;
}

.footer-symbol {
    position: absolute;
    height: 180px;
    width: 180px;
    object-fit: cover;
    bottom: -20px;
    right: 20px;
}

/* --------------------------------------------------------
14.Copy Right Section
-------------------------------------------------------- */
.copy-right-content {}

/* ================= ABOUT =================*/
/*==========================================
    TABLE OF CONTENT
--------------------------------------------
    01. Hero Section
    02. About Section
=============================================*/
/* --------------------------------------------------------
01. Hero Section
-------------------------------------------------------- */

.hero-section.about {
    min-height: 100vh;
    background: url('../images/about-us-banner.webp') no-repeat center center / cover;
    position: relative;
    padding-top: 180px;
}

.hero-section.about .container-fluid {
    position: relative;
    z-index: 1;
}

.hero-section.about h1 {
    color: var(--heading-color-light);
}

.hero-section .banner-description {
    font-size: 20px;
}

/* --------------------------------------------------------
02. About Section
-------------------------------------------------------- */

.about-section .about-us-title.about .main-title {
    color: var(--heading-color-gray);
    font-size: var(--h2-size);
    line-height: 1;
}

.about-section .about-us.about {
    padding-top: 20px;
}

.about-description.about {
    padding-top: 50px;
}

.why-choose-us {
    position: relative;
    background: var(--bg-gray);
}

.why-choose-us .about-us-title.about .main-title {
    color: var(--primary-color);
    font-size: var(--h2-size);
    line-height: 1;
}

.why-choose-us .about-us {
    padding-top: 0px;
}

.why-nfa-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-nfa-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 15px;
    color: var(--text-dark);
}

.why-nfa-title {
    font-size: 20px;
}

.icon-box {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: transform 0.3s ease;
}

.icon-box i {
    font-size: 22px;
}

.icon-box:hover {
    transform: translateY(-3px);
}

.why-icon-box-items-area {
    position: relative;
    z-index: 9;
}

.why-choose-us .why-icon-box-items-area::before {
    position: absolute;
    top: 50%;
    left: 50%;
    background: var(--primary-color);
    content: "";
    width: 600px;
    height: 600px;
    border-radius: 50%;
    z-index: -1;
    transform: translate(-50%, -50%);
}

.why-choose-us .why-icon-box-items-area .why-box-items.style-2 {
    margin-top: 200px;
}

.why-choose-us .why-icon-box-items-area .why-box-items .why-box {
    border-radius: var(--border-radius);
    background: #fff;
    padding: 30px 30px;
    text-align: center;
    margin-top: 30px;
}

.why-choose-us .why-icon-box-items-area .why-box-items .why-box.style-3 {
    background-color: var(--secondary-color);
}

.why-choose-us .why-icon-box-items-area .why-box-items .why-box.style-4 {
    background-color: var(--bg-dark);
}

.why-choose-us .why-icon-box-items-area .why-box-items .why-box.style-4 .why-counter-item {
    color: var(--text-color-light);
}

.why-choose-us .why-icon-box-items-area .why-box-items .why-box .icon {
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    border-radius: 50%;
    background-color: var(--bg-gray);
    margin: 0 auto;
    margin-bottom: 15px;
}

.why-choose-us .why-icon-box-items-area .why-box-items .why-box .why-counter-item .why-counter-item-count {
    font-size: 40px;
    font-weight: var(--bold-weight);
}

.our-mission .about-us-title.mission .main-title {
    color: var(--heading-color-gray);
    font-size: var(--h2-size);
    line-height: 1;
}

.about-description.mission {
    padding-top: 35px;
}

.video-preview-card {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 250px;
}

.video-preview-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: var(--bg-overlay-dark);
}

.video-preview-card:hover img {
    transform: scale(1.06);
}

/* ================= COURSES =================*/
/*==========================================
    TABLE OF CONTENT
--------------------------------------------
    01. Hero Section
    
=============================================*/

/* --------------------------------------------------------
01. Hero Section
-------------------------------------------------------- */

.hero-section.courses {
    min-height: 100vh;
    background: url('../images/courses-banner.webp') no-repeat center center / cover;
    position: relative;
    padding-top: 180px;
}

.hero-section.courses .container-fluid {
    position: relative;
    z-index: 1;
}

.hero-section.courses h1 {
    color: var(--heading-color-light);
}

.suggested-courses-section {
    position: relative;
    background: var(--bg-overlay-dark);
}

/* ================= CONTACT US =================*/
/*==========================================
    TABLE OF CONTENT
--------------------------------------------
    01. Hero Section
    02. Contact Section
=============================================*/

/* --------------------------------------------------------
01. Hero Section
-------------------------------------------------------- */

.hero-section.contact {
    min-height: 100vh;
    background: url('../images/contact-us-banner.webp') no-repeat center center / cover;
    position: relative;
    padding-top: 180px;
}

.hero-section.contact .container-fluid {
    position: relative;
    z-index: 1;
}

.hero-section.contact h1 {
    color: var(--heading-color-light);
}

/* --------------------------------------------------------
02. Contact Section
-------------------------------------------------------- */
.contact-us-form {
    background: #d7e7f4;
    padding: 35px 0px 15px 0px;
    border: 15px solid #1e4063;
}

.contact-icon i {
    font-size: 40px;
    color: var(--primary-color);
}

.contact-info p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 4px;
}

.contact-info a,
.contact-info span {
    color: var(--text-color-dark);
    text-decoration: none;
    font-size: 16px;
}

.contact-info a:hover {
    text-decoration: underline;
}


.map-location {
    height: 400px;
    width: 100%;
    overflow: hidden;
}

/* ================= Courses Detail =================*/
/*==========================================
    TABLE OF CONTENT
--------------------------------------------
    01. Hero Section
    02. Coures Detail
=============================================*/

/* --------------------------------------------------------
01. Hero Section
-------------------------------------------------------- */

.hero-section.courses-detail {
    min-height: 70vh;
    background: url('../images/contact-us-banner.webp') no-repeat center center / cover;
    position: relative;
    padding-top: 180px;
}

.hero-section.courses-detail .container-fluid {
    position: relative;
    z-index: 1;
}

.hero-section.courses-detail h3 {
    color: var(--heading-color-light);
}

.course-meta {
    font-size: 14px;
    gap: 18px;
}

.meta-item i {
    margin-right: 8px;
    color: #f5c451;
    font-size: 15px;
}

.stars i {
    color: #f5c451;
    font-size: 14px;
}

/* --------------------------------------------------------
02. Coures Detail
-------------------------------------------------------- */

.section-title.courses-detail {
    color: var(--primary-color);
}

.course-detail-image {
    height: 500px;
    width: 500px;
    object-fit: cover;
    overflow: hidden;
}

/* Card wrapper */
.course-info-card {
    background: #f8f9fb;
    padding: 28px 30px;
    border-radius: 14px;
    height: 100%;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

/* Title */
.course-info-card .section-title {
    margin-bottom: 20px;
}

/* List reset */
.course-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.course-info-list li {
    display: flex;
    align-items: center;
    padding: 14px 0;
    font-size: 15px;
    color: #374151;
    border-bottom: 1px solid #e5e7eb;
}

.course-info-list li:last-child {
    border-bottom: none;
}

.course-info-list li span {
    font-weight: 500;
    color: #6366f1;
    margin-left: 15px;
}

.course-info-list li::before {
    content: "✓";
    font-size: 15px;
    color: #10b981;
    margin-right: 15px;
}

/* Rating breakdown */
.rating-breakdown {
    margin-top: 20px;
}

.rating-row {
    display: grid;
    grid-template-columns: 60px 1fr 40px;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #374151;
}

.progress {
    height: 8px;
    background: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, #facc15, #f59e0b);
    border-radius: 10px;
}

/* Reviews */
.course-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* Review Card */
.review-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* Header */
.review-header {
    display: flex;
    align-items: center;
}

/* Avatar */
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* User & stars */
.review-user {
    display: flex;
    flex-direction: column;
}

.review-stars i {
    color: #f5c451;
    font-size: 14px;
}

.review-name {
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

/* Review text */
.review-card p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.6;
    color: #374151;
}

.review-card span {
    font-size: 13px;
    color: #6b7280;
}

/* ================= ADMISSION =================*/
/*==========================================
    TABLE OF CONTENT
--------------------------------------------
    01. Hero Section
    02. About Section
=============================================*/

/* --------------------------------------------------------
01. Hero Section
-------------------------------------------------------- */

.hero-section.admission {
    min-height: 100vh;
    background: url('../images/about-us-banner.webp') no-repeat center center / cover;
    position: relative;
    padding-top: 180px;
}

.hero-section.admission .container-fluid {
    position: relative;
    z-index: 1;
}

.hero-section.admission h1 {
    color: var(--heading-color-light);
}

.hero-section .banner-description {
    font-size: 20px;
}

/* ================= Placement =================*/

.placement-content {
    position: relative;
    background: var(--bg-gray);
}

.placement-content .placement-content-title .main-title {
    color: var(--primary-color);
    font-size: var(--h2-size);
    line-height: 1;
    margin-bottom: 10px;
}

.placement-content-description {
    padding-top: 10px;
}

.placement-content-description p {
    font-size: var(--paragraph-size);
    text-align: justify;
}

/* --------------------------------------------------------
15.Pesponsive
-------------------------------------------------------- */

@media (min-width: 1600px) and (max-height: 1100px) {

    .apply-box {
        width: 420px;
        padding: 30px 0px 15px 0px;
        bottom: -200px;
        right: 400px;
    }

    .larning-main-image {
        height: 200vh;
    }
}

/* Large devices (laptops) */
@media (max-width: 1200px) {
    :root {
        /* Font Sizes */
        --h1-size: 75px;
        --h2-size: 56px;
        --h3-size: 40px;
        --h4-size: 28px;
        --h5-size: 22px;
        --h6-size: 16px;

        --large-size: 100px;
        --extra-large-size: 140px;

        --paragraph-size: 18px;
    }

    .logo-lg-image {
        height: 125px;
    }

    .hero-section.home {
        min-height: 95vh;
        padding-top: 160px;
    }

    .hero-section.about {
        min-height: 95vh;
        padding-top: 160px;
    }

    .hero-section.courses {
        min-height: 95vh;
        padding-top: 160px;
    }

    .hero-section.courses {
        min-height: 95vh;
        padding-top: 160px;
    }

    .hero-section.courses-detail {
        min-height: 70vh;
        padding-top: 160px;
    }

    .home-banner-symbol {
        position: absolute;
        content: "";
        height: 570px;
        top: 20px;
        left: 70px;
        width: 90%;
    }

    .apply-box {
        width: 420px;
        padding: 35px 0px 15px 0px;
        position: absolute;
        z-index: 20;
        bottom: -70%;
        right: 12%;
    }

    .form-image-symbol {
        height: 380px;
    }

    .apply-content .apply-title {
        font-size: 24px;
    }

    .apply-content .course-title {
        margin: 15px 0px 0px 0px;
        font-size: 18px;
    }

    .apply-content .eligibility {
        font-size: 10px;
    }

    .about-banner-image img {
        height: 760px;
    }

    .about-description p {
        font-size: var(--paragraph-size);
        margin-bottom: 25px;
    }

    .why-larning-section {
        padding: 95px 0px 95px 0px;
    }

    .why-larning-stats {
        right: 90px;
    }

    .stats-image {
        height: 320px;
    }

    .why-larning-symbol {
        left: 25px;
    }

    .all-course-description p {
        font-size: var(--paragraph-size);
    }

    .course-image {
        height: 230px;
        width: 230px;
        object-fit: cover;
        overflow: hidden;
    }

    .course-title a {
        font-size: var(--h6-size);
        width: 85%;
    }

    .larning-main-image {
        height: 180vh;
    }

    .testimonial-description p {
        font-size: var(--paragraph-size);
    }

    .recruiter-logo {
        height: 60px;
    }

    .footer-logo {
        height: 130px;
    }

    .footer-description {
        color: var(--text-color-light);
        font-size: 15px;
    }

    .footer-address p,
    .footer-number p,
    .footer-email p {
        font-size: 14px;
    }

    .footer-list li {
        font-size: 14px;
    }

    .footer-symbol {
        height: 170px;
        width: 170px;
    }
}

@media (max-width: 1400px) and (min-width: 1200px) {
    .apply-box {
        max-width: 400px;
        bottom: -320px;
        right: 220px;
    }
}

@media (max-width: 1199px) and (min-width: 1025px) {
    .apply-box {
        max-width: 380px;
        bottom: -300px;
        right: 180px;
        padding: 30px 0px 15px 0px;
    }

    .form-image-symbol {
        height: 320px;
    }
}

@media (max-width: 1024px) and (min-width: 993px) {
    .apply-box {
        max-width: 360px;
        bottom: -300px;
        right: 130px;
        padding: 25px 0px 15px 0px;
        border-width: 12px;
    }

    .form-image-symbol {
        height: 280px;
        left: 30px;
    }
}

/* Tablets */
@media (max-width: 992px) {
    :root {
        /* Font Sizes */
        --h1-size: 65px;
        --h2-size: 56px;
        --h3-size: 40px;
        --h4-size: 28px;
        --h5-size: 22px;
        --h6-size: 16px;

        --large-size: 90px;
        --extra-large-size: 130px;

        --paragraph-size: 16px;

        --heading-line-height: 0.7;
    }

    .logo-lg-image {
        height: 115px;
    }

    .hero-section.home {
        min-height: 90vh;
        padding-top: 200px;
    }

    .hero-section.about {
        min-height: 90vh;
        padding-top: 200px;
    }

    .hero-section.courses {
        min-height: 90vh;
        padding-top: 200px;
    }

    .hero-section.contact {
        min-height: 90vh;
        padding-top: 200px;
    }

    .home-banner-symbol {
        position: absolute;
        content: "";
        height: 600px;
        top: 30px;
        left: 0;
        width: 100%;
    }

    .apply-box {
        max-width: 340px;
        padding: 25px 0px 15px 0px;
        position: absolute;
        z-index: 20;
        bottom: -400px;
        right: 100px;
        border-width: 10px;
    }

    .form-image-symbol {
        height: 260px;
        left: 25px;
    }

    .apply-content .apply-title {
        font-size: 22px;
    }

    .apply-content .course-title {
        font-size: 18px;
    }

    .apply-form {
        padding: 12px;
    }

    .about-banner-image img {
        height: 550px;
    }

    .about-us {
        padding-top: 10px;
    }

    .about-us-title .sub-part {
        left: 50%;
    }

    .about-description {
        padding-top: 100px;
    }

    .larning-main-image {
        height: 175vh;
    }

    .testimonial-image img {
        height: 450px;
        object-fit: cover;
        overflow: hidden;
    }
}

/* Tablet portrait */
@media (max-width: 767px) {
    :root {
        /* Font Sizes */
        --h1-size: 60px;
        --h2-size: 56px;
        --h3-size: 40px;
        --h4-size: 28px;
        --h5-size: 22px;
        --h6-size: 16px;

        --large-size: 60px;
        --extra-large-size: 100px;

        --paragraph-size: 13px;

        --heading-line-height: 0.7;
    }

    .logo-lg-image {
        height: 100px;
    }

    .hero-section.home {
        min-height: 80vh;
        padding-top: 180px;
    }

    .hero-section.about {
        min-height: 80vh;
        padding-top: 180px;
    }

    .hero-section.courses {
        min-height: 80vh;
        padding-top: 180px;
    }

    .hero-section.contact {
        min-height: 80vh;
        padding-top: 180px;
    }

    .home-banner-symbol {
        position: absolute;
        content: "";
        height: 550px;
        top: 0px;
        left: 0;
        width: 100%;
        object-fit: contain;
    }

    .apply-box {
        width: 90%;
        max-width: 320px;
        padding: 18px 0px 12px 0px;
        border-width: 8px;
        position: absolute;
        z-index: 20;
        bottom: -300px;
        right: 150px;
        left: auto;
    }

    .apply-content .apply-title {
        font-size: 20px;
    }

    .apply-content .course-title {
        margin: 10px 0px 0px 0px;
        font-size: 15px;
    }

    .apply-content .eligibility {
        font-size: 11px;
    }

    .apply-form {
        padding: 12px;
    }

    .apply-form .form-label {
        font-size: 11px;
    }

    .apply-form .custom-input {
        height: 30px;
        font-size: 11px;
    }

    .form-image-symbol {
        height: 250px;
        left: 30px;
    }

    .about-us {
        padding-top: 320px;
    }

    .about-description {
        padding-top: 80px;
    }

    .why-larning-title .main-title {
        padding-left: 0px;
    }

    .stats-image {
        height: 265px;
    }

    .why-larning-stats {
        right: 50px;
    }

    .why-larning-symbol {
        left: 50px;
    }

    .testimonial-image img {
        height: 300px;
        object-fit: cover;
        overflow: hidden;
    }
}

/* Mobile */
@media (max-width: 575px) {
    :root {
        /* Font Sizes */
        --h1-size: 60px;
        --h2-size: 40px;
        --h3-size: 30px;
        --h4-size: 28px;
        --h5-size: 22px;
        --h6-size: 13px;

        --large-size: 60px;
        --extra-large-size: 100px;

        --paragraph-size: 15px;

        --heading-line-height: 0.7;
    }

    .loader-liquid {
        position: absolute;
        top: 0px;
        width: 150%;
        height: 100%;
        background: #7293ff;
        box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.7);
        animation: floatUp 6s ease-in-out infinite;
    }

    .header-top {
        display: none;
    }

    .sticky-header {
        display: none;
    }

    .mobile-header {
        display: flex;
    }

    .mobile-header {
        position: fixed;
        top: 0;
        width: 100%;
        background: #000;
        border-bottom: 1px solid #ffffff;
        padding: 12px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 1000;
    }

    .menu-toggle {
        background: none;
        border: none;
        color: #fff;
        font-size: 26px;
    }

    .mobile-overlay-menu {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.96);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 2000;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition:
            opacity 0.4s ease,
            transform 0.4s ease,
            visibility 0.4s;
    }

    .mobile-overlay-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .mobile-nav li {
        margin: 18px 0;
    }

    .mobile-nav a {
        color: #fff;
        font-size: 24px;
        font-family: var(--font-heading);
        text-decoration: none;
        transition: opacity 0.3s ease;
    }

    .mobile-nav a:hover {
        opacity: 0.7;
    }

    /* CLOSE BUTTON */
    .close-menu {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #fff;
        font-size: 28px;
    }

    .hero-section.home {
        min-height: 60vh;
        padding-top: 180px;
        max-height: 60vh;
    }

    .hero-section.about {
        min-height: 60vh;
        padding-top: 180px;
    }

    .hero-section.courses {
        min-height: 60vh;
        padding-top: 180px;
        background-position: 15%;
    }

    .hero-section.contact {
        min-height: 60vh;
        padding-top: 180px;
    }

    .hero-section.courses-detail {
        min-height: 60vh;
        padding-top: 140px;
    }

    .hero-section.courses-detail h3 {
        line-height: 1;
    }

    .apply-box {
        position: relative;
        width: 100%;
        max-width: 100%;
        right: 0;
        top: 70%;
    }

    .home-banner-symbol {
        position: absolute;
        content: "";
        height: 500px;
        top: -50px;
        left: 0;
        width: 100%;
        object-fit: contain;
    }

    .about-us {
        padding-top: 690px;
    }

    .about-us.about {
        padding-top: 0px;
    }

    .about-us-title .sub-part {
        left: 47%;
    }

    .about-description {
        padding-top: 70px;
    }

    .why-larning-main {
        position: absolute;
        bottom: 0;
        left: 40%;
        transform: translateX(-50%);
        z-index: 0;
    }

    .larning-main-image {
        height: 160vh;
    }

    .stats-image {
        height: 180px;
    }

    .why-larning-symbol {
        left: 100px;
        bottom: -40px;
    }

    .testimonial-nav {
        position: absolute;
        top: 70%;
        transform: translateY(-70%);
        width: 40px;
        height: 40px;
    }

    .course-nav {
        top: 95% !important;
    }

    .prev-btn {
        left: 35%;
    }

    .next-btn {
        right: 35%;
    }

    .testimonial-description p {
        margin-bottom: 65px;
    }

    .testimonial-image img {
        position: absolute;
        content: "";
        height: 150px;
        padding: 5px;
        bottom: 0px;
        object-fit: cover;
        overflow: hidden;
    }

    .recruiter-box {
        background: var(--bg-white);
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .recruiter-logo {
        height: 60px;
    }

    .course-image {
        height: 150px;
        width: 150px;
        object-fit: cover;
        overflow: hidden;
    }

    .course-title a {
        font-size: var(--h6-size);
        width: 100%;
    }

    .course-detail-image {
        height: 350px;
        width: 350px;
        object-fit: cover;
        overflow: hidden;
    }

    .course-card .course-name {
        font-size: var(--h6-size);
    }

    .footer-symbol {
        height: 120px;
        width: 120px;
        bottom: -10px;
    }

    .contact-icon i {
        font-size: 20px;
    }

    .stars i {
        color: #f5c451;
        font-size: 8px;
    }

    .about-section .about-us-title.about .main-title {
        color: var(--heading-color-gray);
        font-size: var(--h2-size);
        line-height: 1;
    }

    .about-description.about {
        padding-top: 25px;
    }

    .about-description.about p {
        text-align: justify;
    }

    .why-nfa-title {
        font-size: var(--paragraph-size);
    }

    .icon-box {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .icon-box i {
        font-size: 18px;
    }

    .why-choose-us .why-icon-box-items-area::before {
        display: none;
    }

    .why-choose-us .why-icon-box-items-area .why-box-items .why-box {
        padding: 15px 30px;
        margin-top: 15px;
    }

    .why-choose-us .why-icon-box-items-area .why-box-items .why-box .icon {
        width: 70px;
        height: 70px;
        line-height: 70px;
        margin-bottom: 5px;
    }

    .why-choose-us .why-icon-box-items-area .why-box-items .why-box .why-counter-item .why-counter-item-count {
        font-size: 35px;
        font-weight: var(--bold-weight);
        margin-bottom: 10px;
    }

    .why-choose-us .why-icon-box-items-area .why-box-items.style-2 {
        margin-top: 0px;
    }

    .video-preview-card {
        height: 250px;
    }
}