/* =========================================================
   OMS HEALTHCARE
   MAIN WEBSITE CSS
========================================================= */


/* =========================================================
   ROOT
========================================================= */

:root {

    --oms-blue: #159bd7;
    --oms-blue-dark: #087fb8;

    --oms-green: #52c43e;
    --oms-green-dark: #3da92d;

    --oms-orange: #ed8419;
    --oms-yellow: #f2c51b;

    --oms-dark: #4b565d;
    --oms-text: #66747c;
    --oms-light: #f5fafb;
    --oms-white: #ffffff;

    --oms-border: #e5edef;

    --oms-shadow:
        0 20px 60px rgba(34, 68, 82, 0.10);

    --oms-radius: 18px;

}

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}
/* =========================================================
   GLOBAL
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    background: #ffffff;
    color: var(--oms-text);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

button {
    font-family: inherit;
}

::selection {
    background: var(--oms-blue);
    color: #fff;
}
html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

/* =========================================================
   COMMON
========================================================= */

.section-padding {
    padding: 60px 0;
}

.section-heading {
    max-width: 650px;
}

.section-heading.centered {
    margin: 0 auto;
    text-align: center;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 2px;

    color: var(--oms-blue);

    margin-bottom: 17px;
}

.section-label::before {
    content: "";
    width: 30px;
    height: 3px;

    border-radius: 20px;

    background: var(--oms-green);
}

.section-heading h2 {
    font-size: clamp(32px, 4vw, 48px);

    line-height: 1.15;

    color: var(--oms-dark);

    font-weight: 700;

    margin-bottom: 20px;
}

.section-heading h2 strong {
    color: var(--oms-blue);
    font-weight: 800;
}

.section-heading p {
    font-size: 15px;
    line-height: 1.85;

    color: var(--oms-text);
}


/* =========================================================
   HEADER
========================================================= */

/* .main-header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 999;

    background: rgba(255,255,255,0.96);

    border-bottom: 1px solid rgba(0,0,0,0.04);

    transition: all .35s ease;
}

.main-header.header-scrolled {
    position: fixed;

    background: rgba(255,255,255,0.97);

    box-shadow:
        0 8px 30px rgba(30,60,70,.08);

    backdrop-filter: blur(12px);
}

.navbar {
    min-height: 88px;
    padding: 8px 0;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    width: 205px;
    max-height: 72px;
    object-fit: contain;
}

.navbar-nav {
    gap: 7px;
}

.nav-link {
    position: relative;

    color: #4f5c63 !important;

    font-size: 14px;
    font-weight: 700;

    padding: 12px 15px !important;

    transition: all .3s ease;
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 15px;
    right: 15px;
    bottom: 4px;

    height: 2px;

    background: var(--oms-blue);

    transform: scaleX(0);

    transform-origin: center;

    transition: transform .3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--oms-blue) !important;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-enquire {
    display: inline-flex;

    align-items: center;
    gap: 8px;

    padding: 13px 20px;

    color: #fff;

    background: var(--oms-blue);

    border-radius: 8px;

    font-size: 13px;
    font-weight: 800;

    box-shadow:
        0 10px 25px rgba(21,155,215,.20);

    transition: all .3s ease;
}

.nav-enquire:hover {
    color: #fff;

    background: var(--oms-green);

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px rgba(82,196,62,.20);
}

.navbar-toggler {
    border: 0;
    outline: none;

    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #eef8fb;

    color: var(--oms-blue);

    font-size: 25px;
}

.navbar-toggler:focus {
    box-shadow: none;
} */


/* =========================================================
   OMS FULL WIDTH HERO BANNER
========================================================= */

.oms-full-hero {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #071d29;
}


/* =========================================================
   BANNER SLIDE
========================================================= */

.oms-banner-slide {

    position: relative;

    width: 100%;

    min-height: 720px;

    display: flex;

    align-items: center;

    overflow: hidden;

    background-position: center;

    background-size: cover;

    background-repeat: no-repeat;
}


/* =========================================================
   BANNER IMAGES
========================================================= */

.oms-banner-one {

    background-image:
        url("assets/medical-coding-banner-1.jpg");

}


.oms-banner-two {

    background-image:
        url("assets/medical-coding-banner-2.jpg");

}


.oms-banner-three {

    background-image:
        url("assets/medical-coding-banner-3.jpg");

}


/* =========================================================
   DARK OVERLAY
========================================================= */

.oms-banner-overlay {

    position: absolute;

    inset: 0;

    z-index: 1;

    background:

        linear-gradient(
            90deg,
            rgba(3, 25, 38, .92) 0%,
            rgba(5, 42, 58, .82) 32%,
            rgba(5, 42, 58, .42) 63%,
            rgba(5, 42, 58, .18) 100%
        );

}


/* =========================================================
   SECOND OVERLAY
========================================================= */

.oms-banner-slide::before {

    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:

        linear-gradient(
            135deg,
            rgba(21,155,215,.16),
            transparent 45%
        );

}


/* =========================================================
   BACKGROUND ZOOM ANIMATION
========================================================= */

.carousel-item.active .oms-banner-slide {

    animation: omsBannerZoom 6s ease-in-out forwards;

}


@keyframes omsBannerZoom {

    0% {
        background-size: 100%;
    }

    100% {
        background-size: 108%;
    }

}


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

.oms-banner-content {

    position: relative;

    z-index: 10;

    max-width: 720px;

    padding: 120px 0 110px;

}


/* =========================================================
   LABEL
========================================================= */

.oms-banner-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    color: #ffffff;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 2.5px;

    margin-bottom: 22px;

    opacity: 0;

    transform: translateY(25px);

}


.oms-banner-label span {

    width: 38px;

    height: 3px;

    border-radius: 50px;

    background: #52c43e;

}


/* =========================================================
   HEADING
========================================================= */

.oms-banner-content h1 {

    margin: 0 0 22px;

    color: #ffffff;

    font-size: clamp(42px, 5vw, 70px);

    font-weight: 600;

    line-height: 1.08;

    letter-spacing: -1.5px;

    max-width: 700px;

    opacity: 0;

    transform: translateY(35px);

}


.oms-banner-content h1 strong {

    display: block;

    color: #55d63e;

    font-weight: 800;

}


/* =========================================================
   PARAGRAPH
========================================================= */

.oms-banner-content > p {

    max-width: 600px;

    color: rgba(255,255,255,.82);

    font-size: 15px;

    line-height: 1.85;

    margin: 0 0 30px;

    opacity: 0;

    transform: translateY(30px);

}


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

.oms-banner-buttons {

    display: flex;

    align-items: center;

    gap: 13px;

    flex-wrap: wrap;

    opacity: 0;

    transform: translateY(25px);

}


.oms-btn {

    min-height: 52px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    padding: 13px 23px;

    border-radius: 7px;

    font-size: 12px;

    font-weight: 800;

    transition: all .35s ease;

}


.oms-btn-primary {

    color: #ffffff;

    background: #159bd7;

    border: 1px solid #159bd7;

    box-shadow:
        0 12px 30px rgba(21,155,215,.28);

}


.oms-btn-primary:hover {

    color: #ffffff;

    background: #52c43e;

    border-color: #52c43e;

    transform: translateY(-4px);

    box-shadow:
        0 15px 35px rgba(82,196,62,.28);

}


.oms-btn-light {

    color: #ffffff;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.55);

    backdrop-filter: blur(10px);

}


.oms-btn-light:hover {

    color: #ffffff;

    background: rgba(255,255,255,.16);

    border-color: #ffffff;

    transform: translateY(-4px);

}


/* =========================================================
   POINTS
========================================================= */

.oms-banner-points {

    display: flex;

    align-items: center;

    gap: 22px;

    flex-wrap: wrap;

    margin-top: 30px;

    opacity: 0;

    transform: translateY(20px);

}


.oms-banner-points div {

    display: flex;

    align-items: center;

    gap: 7px;

    color: rgba(255,255,255,.78);

    font-size: 11px;

    font-weight: 700;

}


.oms-banner-points i {

    color: #52c43e;

    font-size: 15px;

}


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

.carousel-item.active .oms-banner-label {

    animation:
        omsFadeUp .7s .25s ease forwards;

}


.carousel-item.active .oms-banner-content h1 {

    animation:
        omsFadeUp .8s .4s ease forwards;

}


.carousel-item.active .oms-banner-content > p {

    animation:
        omsFadeUp .8s .55s ease forwards;

}


.carousel-item.active .oms-banner-buttons {

    animation:
        omsFadeUp .8s .7s ease forwards;

}


.carousel-item.active .oms-banner-points {

    animation:
        omsFadeUp .8s .85s ease forwards;

}


@keyframes omsFadeUp {

    from {

        opacity: 0;

        transform: translateY(35px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =========================================================
   FLOATING INFO CARD
========================================================= */

.oms-float-info {

    position: absolute;

    z-index: 12;

    display: flex;

    align-items: center;

    gap: 11px;

    min-width: 165px;

    padding: 12px 15px;

    border-radius: 12px;

    background: rgba(255,255,255,.95);

    box-shadow:
        0 18px 45px rgba(0,0,0,.18);

    backdrop-filter: blur(10px);

    animation:
        omsFloatCard 4s ease-in-out infinite;

}


.oms-float-top {

    top: 22%;

    right: 10%;

}


.oms-float-bottom {

    right: 7%;

    bottom: 19%;

    animation-delay: 1.2s;

}


.oms-float-icon {

    width: 42px;

    height: 42px;

    flex: 0 0 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 10px;

    color: #159bd7;

    background: rgba(21,155,215,.10);

    font-size: 19px;

}


.oms-float-icon.green {

    color: #3da92d;

    background: rgba(82,196,62,.12);

}


.oms-float-icon.orange {

    color: #ed8419;

    background: rgba(237,132,25,.12);

}


.oms-float-info small {

    display: block;

    color: #7c888d;

    font-size: 9px;

    margin-bottom: 2px;

}


.oms-float-info strong {

    display: block;

    color: #45535a;

    font-size: 12px;

    font-weight: 800;

}


@keyframes omsFloatCard {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-12px);

    }

}


/* =========================================================
   DECORATIVE CIRCLE
========================================================= */

.oms-banner-circle {

    position: absolute;

    z-index: 3;

    width: 480px;

    height: 480px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.14);

    right: -100px;

    top: 50%;

    transform: translateY(-50%);

    pointer-events: none;

}


.oms-banner-circle::before {

    content: "";

    position: absolute;

    inset: 30px;

    border-radius: 50%;

    border: 1px dashed rgba(82,196,62,.25);

    animation:
        omsRotate 20s linear infinite;

}


.oms-banner-circle::after {

    content: "";

    position: absolute;

    width: 13px;

    height: 13px;

    border-radius: 50%;

    background: #52c43e;

    top: 45px;

    right: 95px;

    box-shadow:
        0 0 0 8px rgba(82,196,62,.10),
        0 0 30px rgba(82,196,62,.45);

}


@keyframes omsRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }

}


/* =========================================================
   CIRCLE VARIATIONS
========================================================= */

.oms-circle-two {

    border-color: rgba(21,155,215,.25);

}


.oms-circle-two::after {

    background: #159bd7;

    box-shadow:
        0 0 0 8px rgba(21,155,215,.10),
        0 0 30px rgba(21,155,215,.45);

}


.oms-circle-three {

    border-color: rgba(237,132,25,.20);

}


.oms-circle-three::after {

    background: #ed8419;

    box-shadow:
        0 0 0 8px rgba(237,132,25,.10),
        0 0 30px rgba(237,132,25,.40);

}


/* =========================================================
   GLOW
========================================================= */

.oms-banner-glow {

    position: absolute;

    z-index: 2;

    width: 450px;

    height: 450px;

    border-radius: 50%;

    filter: blur(70px);

    opacity: .20;

    pointer-events: none;

}


.oms-glow-one {

    right: 3%;

    top: 15%;

    background: #52c43e;

}


.oms-glow-two {

    right: 7%;

    top: 10%;

    background: #159bd7;

}


.oms-glow-three {

    right: 4%;

    top: 20%;

    background: #ed8419;

}


/* =========================================================
   PLUS SYMBOLS
========================================================= */

.oms-plus {

    position: absolute;

    z-index: 8;

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.18);

    backdrop-filter: blur(10px);

    font-size: 25px;

    animation:
        omsPlusFloat 4s ease-in-out infinite;

}


.oms-plus-one {

    right: 29%;

    top: 19%;

    color: #52c43e;

}


.oms-plus-two {

    right: 34%;

    bottom: 18%;

    color: #159bd7;

    animation-delay: 1.3s;

}


@keyframes omsPlusFloat {

    0%,
    100% {

        transform: translateY(0) rotate(0);

    }

    50% {

        transform: translateY(-12px) rotate(8deg);

    }

}


/* =========================================================
   CAROUSEL ARROWS
========================================================= */

.oms-carousel-arrow {

    width: 75px;

    opacity: 1;

    z-index: 30;

}


.oms-carousel-arrow span {

    width: 48px;

    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: rgba(255,255,255,.10);

    border: 1px solid rgba(255,255,255,.30);

    backdrop-filter: blur(8px);

    transition: all .3s ease;

}


.oms-carousel-arrow:hover span {

    color: #ffffff;

    background: #159bd7;

    border-color: #159bd7;

    transform: scale(1.08);

}


/* =========================================================
   INDICATORS
========================================================= */

.oms-hero-indicators {

    z-index: 40;

    bottom: 28px;

    gap: 7px;

}


.oms-hero-indicators button {

    width: 25px;

    height: 4px;

    border: 0;

    border-radius: 20px;

    margin: 0 !important;

    opacity: .45;

    background: #ffffff;

    transition: all .35s ease;

}


.oms-hero-indicators button.active {

    width: 55px;

    opacity: 1;

    /* background: #52c43e; */

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .oms-banner-slide {

        min-height: 650px;

    }


    .oms-banner-content {

        max-width: 650px;

        padding: 120px 0 100px;

    }


    .oms-banner-content h1 {

        font-size: 50px;

    }


    .oms-float-top {

        right: 5%;

        top: 15%;

    }


    .oms-float-bottom {

        right: 5%;

        bottom: 12%;

    }


    .oms-banner-circle {

        width: 400px;

        height: 400px;

        right: -130px;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .oms-banner-slide {

        min-height: 680px;

        align-items: flex-start;

        background-position: center;

    }


    .oms-banner-overlay {

        background:

            linear-gradient(
                90deg,
                rgba(3,25,38,.91),
                rgba(5,42,58,.70)
            );

    }


    .oms-banner-content {

        padding: 130px 20px 100px;

        text-align: center;

        margin: auto;

    }


    .oms-banner-label {

        justify-content: center;

        font-size: 10px;

        letter-spacing: 1.7px;

    }


    .oms-banner-content h1 {

        font-size: 38px;

        line-height: 1.1;

        letter-spacing: -1px;

    }


    .oms-banner-content > p {

        font-size: 13px;

        line-height: 1.75;

        margin-left: auto;

        margin-right: auto;

    }


    .oms-banner-buttons {

        justify-content: center;

    }


    .oms-btn {

        min-width: 170px;

    }


    .oms-banner-points {

        justify-content: center;

        gap: 10px 18px;

    }


    .oms-banner-points div {

        font-size: 10px;

    }


    .oms-float-info {

        min-width: 130px;

        padding: 9px 11px;

        gap: 7px;

    }


    .oms-float-icon {

        width: 34px;

        height: 34px;

        flex-basis: 34px;

        font-size: 15px;

    }


    .oms-float-info small {

        font-size: 8px;

    }


    .oms-float-info strong {

        font-size: 10px;

    }


    .oms-float-top {

        top: 25px;

        right: 15px;

    }


    .oms-float-bottom {

        bottom: 28px;

        right: 15px;

    }


    .oms-banner-circle {

        width: 300px;

        height: 300px;

        right: -150px;

        top: 55%;

    }


    .oms-banner-glow {

        width: 300px;

        height: 300px;

    }


    .oms-plus {

        width: 35px;

        height: 35px;

        font-size: 18px;

    }


    .oms-plus-one {

        right: 25%;

        top: 25%;

    }


    .oms-plus-two {

        right: 30%;

        bottom: 15%;

    }


    .oms-carousel-arrow {

        display: none;

    }


    .oms-hero-indicators {

        bottom: 15px;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .oms-banner-slide {

        min-height: 650px;

    }


    .oms-banner-content {

        padding-top: 120px;

    }


    .oms-banner-content h1 {

        font-size: 32px;

    }


    .oms-banner-content > p {

        font-size: 12px;

    }


    .oms-btn {

        width: 100%;

        min-width: 0;

    }


    .oms-banner-points {

        display: grid;

        grid-template-columns: 1fr;

        gap: 8px;

    }


    .oms-banner-points div {

        justify-content: center;

    }


    .oms-float-info {

        transform: scale(.85);

    }


    .oms-float-top {

        right: -5px;

    }


    .oms-float-bottom {

        right: -5px;

    }

}

/* =========================================================
   STATS
========================================================= */

.stats-section {
    position: relative;

    z-index: 20;

    margin-top: -40px;

    padding-bottom: 20px;
}

.stats-wrapper {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    background: #fff;

    border-radius: 18px;

    box-shadow:
        0 20px 60px rgba(35,65,75,.10);

    border: 1px solid #edf2f3;

    overflow: hidden;
}

.stat-item {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 28px 25px;

    border-right: 1px solid #edf0f1;

    transition: all .35s ease;
}

.stat-item:last-child {
    border-right: 0;
}

.stat-item:hover {
    background: #f8fcfd;

    transform: translateY(-3px);
}

.stat-icon {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 12px;

    color: var(--oms-blue);

    background: rgba(21,155,215,.09);

    font-size: 21px;
}

.stat-item:nth-child(2) .stat-icon {
    color: var(--oms-green-dark);
    background: rgba(82,196,62,.10);
}

.stat-item:nth-child(3) .stat-icon {
    color: var(--oms-orange);
    background: rgba(237,132,25,.10);
}

.stat-item:nth-child(4) .stat-icon {
    color: #d2aa00;
    background: rgba(242,197,27,.13);
}

.stat-item h3 {
    margin: 0;

    color: var(--oms-dark);

    font-size: 27px;

    font-weight: 800;
}

.stat-item p {
    margin: 3px 0 0;

    color: #7a858a;

    font-size: 11px;

    font-weight: 600;
}


/* =========================================================
   ABOUT
========================================================= */

.about-section {
    background: #fff;
}

.about-image-wrapper {
    position: relative;

    padding-right: 35px;
    padding-bottom: 35px;
}

.about-image {
    position: relative;

    overflow: hidden;

    border-radius: 22px;

    box-shadow:
        0 20px 60px rgba(30,60,70,.12);
}

.about-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            135deg,
            rgba(21,155,215,.05),
            transparent
        );
}

.about-image img {
    width: 100%;

    height: 500px;

    object-fit: cover;

    transition: transform .7s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-image-wrapper::before {
    content: "";

    position: absolute;

    left: -15px;
    bottom: 5px;

    width: 120px;
    height: 120px;

    border-radius: 50%;

    border: 20px solid rgba(82,196,62,.12);
}

.about-image-wrapper::after {
    content: "";

    position: absolute;

    top: -20px;
    right: 0;

    width: 80px;
    height: 80px;

    border-radius: 50%;

    background: rgba(21,155,215,.08);
}

.about-experience {
    position: absolute;

    right: 0;
    bottom: 0;

    z-index: 5;

    width: 175px;

    padding: 20px;

    display: flex;

    align-items: center;

    gap: 10px;

    background: #fff;

    border-radius: 15px;

    box-shadow:
        0 18px 45px rgba(30,60,70,.12);
}

.about-experience strong {
    color: var(--oms-blue);

    font-size: 35px;

    line-height: 1;

    font-weight: 800;
}

.about-experience span {
    color: #66747a;

    font-size: 10px;

    line-height: 1.5;

    font-weight: 700;
}

.about-points {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 14px;

    margin: 25px 0 30px;
}

.about-point {
    display: flex;

    align-items: center;

    gap: 9px;

    font-size: 12px;

    color: #58666c;

    font-weight: 700;
}

.about-point i {
    color: var(--oms-green);

    font-size: 17px;
}

.about-btn {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 13px 21px;

    border-radius: 8px;

    color: #fff;

    background: var(--oms-blue);

    font-size: 12px;

    font-weight: 800;

    transition: all .3s ease;
}

.about-btn:hover {
    color: #fff;

    background: var(--oms-green);

    transform: translateY(-3px);
}


/* =========================================================
   OMS COURSES SECTION
========================================================= */

.oms-courses-section {

    position: relative;

    padding: 60px 0 30px;

    overflow: hidden;

    background: #062431;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.courses-bg-image {

    position: absolute;

    inset: 0;

    background-image:
        url("assets/courses-bg.jpg");

    background-size: cover;

    background-position: center;

    opacity: .20;

    transform: scale(1.05);

    animation: coursesBgZoom 12s ease-in-out infinite alternate;

}


@keyframes coursesBgZoom {

    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.13);
    }

}


/* =========================================================
   BACKGROUND OVERLAY
========================================================= */

.courses-bg-overlay {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            135deg,
            rgba(3,30,42,.97),
            rgba(4,61,75,.90),
            rgba(3,29,42,.97)
        );

}


/* =========================================================
   HEADING
========================================================= */

.courses-heading {

    position: relative;

    z-index: 5;

    max-width: 720px;

    margin: 0 auto 55px;

    text-align: center;

}


.courses-label {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    color: #52c43e;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2.5px;

    margin-bottom: 17px;

}


.courses-label span {

    width: 32px;

    height: 2px;

    border-radius: 20px;

    background: #52c43e;

}


.courses-heading h2 {

    margin: 0;

    color: #ffffff;

    font-size: clamp(34px, 4vw, 52px);

    font-weight: 500;

    line-height: 1.12;

}


.courses-heading h2 strong {

    display: block;

    color: #52c43e;

    font-weight: 800;

}


.courses-heading p {

    max-width: 620px;

    margin: 20px auto 0;

    color: rgba(255,255,255,.68);

    font-size: 14px;

    line-height: 1.8;

}


/* =========================================================
   SLIDER WRAPPER
========================================================= */

.courses-slider-wrapper {

    position: relative;

    z-index: 5;

    width: 100%;

    overflow: hidden;

    margin-left: 0;

}


/* =========================================================
   CONTINUOUS SLIDER
========================================================= */

.courses-slider {
    display: flex;
    width: max-content;
    gap: 22px;
    animation: courseContinuous 38s linear infinite;
}


.courses-slider:hover {
    animation-play-state: paused;
}


@keyframes courseContinuous {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 11px));
    }
}


/* =========================================================
   COURSE CARD
========================================================= */

.course-slide {

    position: relative;

    width: 345px;

    flex: 0 0 345px;

    overflow: hidden;

    border-radius: 18px;

    background: rgba(255,255,255,.96);

    box-shadow:
        0 20px 50px rgba(0,0,0,.20);

    transition:
        transform .4s ease,
        box-shadow .4s ease;

}


.course-slide:hover {

    transform: translateY(-10px);

    box-shadow:
        0 30px 70px rgba(0,0,0,.30);

}


/* =========================================================
   IMAGE
========================================================= */

.course-slide-image {

    position: relative;

    height: 225px;

    overflow: hidden;

}


.course-slide-image img {

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition:
        transform .7s ease;

}


.course-slide:hover .course-slide-image img {

    transform: scale(1.08);

}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.course-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(3,25,35,.65),
            transparent 55%
        );

}


/* =========================================================
   NUMBER
========================================================= */

.course-slide-number {

    position: absolute;

    top: 15px;

    right: 15px;

    width: 45px;

    height: 45px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    color: #ffffff;

    background: #159bd7;

    font-size: 12px;

    font-weight: 800;

    box-shadow:
        0 8px 25px rgba(21,155,215,.35);

}


/* =========================================================
   CARD CONTENT
========================================================= */

.course-slide-content {

    padding: 25px 25px 27px;

}


.course-slide-tag {

    display: inline-flex;

    align-items: center;

    padding: 6px 10px;

    border-radius: 5px;

    color: #159bd7;

    background: rgba(21,155,215,.09);

    font-size: 9px;

    font-weight: 800;

    letter-spacing: 1.2px;

}


.course-slide-content h3 {

    margin: 14px 0 9px;

    color: #102f3c;

    font-size: 21px;

    font-weight: 800;

}


.course-slide-content p {

    min-height: 67px;

    margin: 0 0 18px;

    color: #68777d;

    font-size: 12px;

    line-height: 1.75;

}


.course-slide-content a {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #0b6d8e;

    font-size: 11px;

    font-weight: 800;

    text-decoration: none;

    transition: all .3s ease;

}


.course-slide-content a i {

    transition: transform .3s ease;

}


.course-slide-content a:hover {

    color: #52a936;

}


.course-slide-content a:hover i {

    transform: translateX(5px);

}


/* =========================================================
   BOTTOM POINTS
========================================================= */

.courses-bottom {

    position: relative;

    z-index: 5;

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 30px;

    margin-top: 45px;

}


.courses-bottom span {

    display: flex;

    align-items: center;

    gap: 7px;

    color: rgba(255,255,255,.72);

    font-size: 11px;

    font-weight: 600;

}


.courses-bottom i {

    color: #52c43e;

    font-size: 14px;

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .oms-courses-section {

        padding: 90px 0;

    }


    .course-slide {

        width: 315px;

        flex-basis: 315px;

    }


    .course-slide-image {

        height: 210px;

    }


    .courses-slider {

        animation-duration: 34s;

    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .oms-courses-section {

        padding: 75px 0;

    }


    .courses-heading {

        padding: 0 18px;

        margin-bottom: 38px;

    }


    .courses-heading h2 {

        font-size: 34px;

    }


    .courses-heading p {

        font-size: 12px;

    }


    .course-slide {

        width: 285px;

        flex-basis: 285px;

    }


    .course-slide-image {

        height: 195px;

    }


    .course-slide-content {

        padding: 21px;

    }


    .course-slide-content h3 {

        font-size: 19px;

    }


    .course-slide-content p {

        font-size: 11px;

    }


    .courses-bottom {

        gap: 12px 20px;

        margin-top: 35px;

        padding: 0 15px;

    }


    .courses-bottom span {

        font-size: 13px;

    }


    .courses-slider {

        animation-duration: 30s;

    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .course-slide {

        width: 270px;

        flex-basis: 270px;

    }


    .course-slide-image {

        height: 180px;

    }


    .courses-heading h2 {

        font-size: 30px;

    }

}
/* =========================================================
   WHY SECTION
========================================================= */

.why-section {
    background: #fff;
}

.why-card {
    position: relative;

    height: 100%;

    padding: 30px;

    background: #fff;

    border: 1px solid #e8eff1;

    border-radius: 17px;

    transition: all .4s ease;

    overflow: hidden;
}

.why-card::after {
    content: "";

    position: absolute;

    width: 100px;
    height: 100px;

    right: -55px;
    bottom: -55px;

    border-radius: 50%;

    background: rgba(21,155,215,.04);

    transition: all .4s ease;
}

.why-card:hover {
    transform: translateY(-7px);

    border-color: rgba(21,155,215,.20);

    box-shadow:
        0 20px 50px rgba(30,65,75,.09);
}

.why-card:hover::after {
    transform: scale(2);
}

.why-icon {
    width: 55px;
    height: 55px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 13px;

    font-size: 22px;

    margin-bottom: 20px;
}

.blue-bg {
    color: var(--oms-blue);

    background: rgba(21,155,215,.10);
}

.green-bg {
    color: var(--oms-green-dark);

    background: rgba(82,196,62,.10);
}

.orange-bg {
    color: var(--oms-orange);

    background: rgba(237,132,25,.10);
}

.why-card h3 {
    color: var(--oms-dark);

    font-size: 18px;

    font-weight: 800;

    margin-bottom: 10px;
}

.why-card p {
    color: #738087;

    font-size: 12px;

    line-height: 1.8;

    margin: 0;
}


/* =========================================================
   LEARNING JOURNEY
========================================================= */

.journey-section {
    background:
        linear-gradient(
            135deg,
            #f5fbfc,
            #ffffff
        );
}

.journey-wrapper {
    display: flex;

    align-items: center;

    justify-content: center;

    max-width: 1050px;

    margin: 60px auto 0;
}

.journey-step {
    position: relative;

    flex: 1;

    text-align: center;

    max-width: 190px;
}

.journey-number {
    position: absolute;

    top: -8px;
    right: 15px;

    width: 28px;
    height: 28px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;

    background: var(--oms-blue);

    font-size: 9px;

    font-weight: 800;

    border: 3px solid #f5fbfc;
}

.journey-step:nth-of-type(3) .journey-number {
    background: var(--oms-green);
}

.journey-step:nth-of-type(5) .journey-number {
    background: var(--oms-orange);
}

.journey-step > i {
    width: 75px;
    height: 75px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 17px;

    border-radius: 50%;

    color: var(--oms-blue);

    background: #fff;

    border: 1px solid #e1ebee;

    box-shadow:
        0 12px 30px rgba(30,65,75,.08);

    font-size: 26px;

    transition: all .35s ease;
}

.journey-step:hover > i {
    color: #fff;

    background: var(--oms-blue);

    transform: translateY(-6px) rotate(5deg);
}

.journey-step h3 {
    color: var(--oms-dark);

    font-size: 17px;

    font-weight: 800;

    margin-bottom: 7px;
}

.journey-step p {
    color: #7a858a;

    font-size: 11px;

    margin: 0;
}

.journey-line {
    width: 90px;
    height: 2px;

    flex: 0 0 90px;

    margin: -55px 5px 0;

    background:
        repeating-linear-gradient(
            90deg,
            var(--oms-blue) 0,
            var(--oms-blue) 7px,
            transparent 7px,
            transparent 13px
        );

    opacity: .35;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 40px 0 50px;

    background: #fff;
}

.cta-box {
    position: relative;

    overflow: hidden;

    padding: 65px 70px;

    border-radius: 25px;

    background:
        linear-gradient(
            120deg,
            #087fb8,
            #159bd7
        );

    box-shadow:
        0 25px 60px rgba(21,155,215,.18);
}

.cta-box::before {
    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    border-radius: 50%;

    right: -150px;
    top: -230px;

    border: 70px solid rgba(255,255,255,.07);
}

.cta-box::after {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border-radius: 50%;

    left: -130px;
    bottom: -170px;

    border: 45px solid rgba(82,196,62,.12);
}

.cta-content {
    position: relative;

    z-index: 3;

    max-width: 720px;
}

.cta-content > span {
    color: rgba(255,255,255,.75);

    font-size: 11px;

    font-weight: 800;

    letter-spacing: 2px;
}

.cta-content h2 {
    color: #fff;

    font-size: clamp(30px, 4vw, 45px);

    line-height: 1.2;

    margin: 12px 0 15px;

    font-weight: 700;
}

.cta-content h2 strong {
    color: #c8f6c0;

    font-weight: 800;
}

.cta-content p {
    max-width: 580px;

    color: rgba(255,255,255,.78);

    font-size: 14px;

    line-height: 1.8;

    margin-bottom: 25px;
}

.cta-button {
    display: inline-flex;

    align-items: center;

    gap: 10px;

    padding: 14px 23px;

    border-radius: 8px;

    color: var(--oms-dark);

    background: #fff;

    font-size: 12px;

    font-weight: 800;

    transition: all .3s ease;
}

.cta-button:hover {
    color: #fff;

    background: var(--oms-green);

    transform: translateY(-3px);
}

.cta-icon {
    position: absolute;

    z-index: 3;

    right: 100px;
    top: 50%;

    transform: translateY(-50%);

    width: 150px;
    height: 150px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: rgba(255,255,255,.85);

    background: rgba(255,255,255,.08);

    border: 1px solid rgba(255,255,255,.13);

    font-size: 65px;

    animation:
        pulseIcon 3s ease-in-out infinite;
}

@keyframes pulseIcon {

    0%,
    100% {
        transform: translateY(-50%) scale(1);
    }

    50% {
        transform: translateY(-50%) scale(1.06);
    }

}


/* =========================================================
   FOOTER
========================================================= */

.main-footer {
    position: relative;

    padding: 80px 0 0;

    color: #aab8be;

    background: #26343a;
}

.footer-logo {
    width: 115px;

    max-height: 80px;

    object-fit: contain;

    object-position: left;

    margin-bottom: 20px;

    /* White background makes original logo visible */
    background: #fff;

    padding: 8px 12px;

    border-radius: 8px;
}

.footer-about {
    max-width: 400px;

    color: #9eabb0;

    font-size: 12px;

    line-height: 1.9;

    margin-bottom: 22px;
}

.main-footer h5 {
    color: #fff;

    font-size: 15px;

    font-weight: 800;

    margin-bottom: 22px;
}

.main-footer .col-lg-2 > a {
    display: block;

    color: #9eabb0;

    font-size: 12px;

    margin-bottom: 12px;

    transition: all .3s ease;
}

.main-footer .col-lg-2 > a:hover {
    color: var(--oms-green);

    transform: translateX(4px);
}

.footer-social {
    display: flex;

    gap: 8px;
}

.footer-social a {
    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #c3ced2;

    background: rgba(255,255,255,.07);

    transition: all .3s ease;
}

.footer-social a:hover {
    color: #fff;

    background: var(--oms-blue);

    transform: translateY(-3px);
}

.footer-contact p {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #aab5b9;

    font-size: 12px;

    line-height: 1.7;

    margin-bottom: 15px;
}

.footer-contact i {
    color: var(--oms-green);

    font-size: 16px;

    margin-top: 2px;
}

.footer-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    margin-top: 55px;

    padding: 20px 0;

    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom p {
    margin: 0;

    color: #829095;

    font-size: 10px;
}


/* =========================================================
   SCROLL REVEAL
========================================================= */

.reveal {
    opacity: 0;

    transform: translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.active {
    opacity: 1;

    transform: translateY(0);
}


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

.course-card:nth-child(2),
.why-card:nth-child(2),
.stat-item:nth-child(2) {
    transition-delay: .08s;
}

.course-card:nth-child(3),
.why-card:nth-child(3),
.stat-item:nth-child(3) {
    transition-delay: .16s;
}

.course-card:nth-child(4),
.why-card:nth-child(4),
.stat-item:nth-child(4) {
    transition-delay: .24s;
}

.course-card:nth-child(5),
.why-card:nth-child(5) {
    transition-delay: .32s;
}

.course-card:nth-child(6),
.why-card:nth-child(6) {
    transition-delay: .40s;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .navbar-brand img {
        width: 180px;
    }

    .nav-link {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    .nav-enquire {
        padding: 12px 15px;
    }

    .hero-slide {
        min-height: 700px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .hero-visual {
        height: 520px;
    }

    .hero-round {
        width: 390px;
        height: 390px;
    }

    .hero-image-box {
        width: 370px;
    }

    .floating-left {
        left: 0;
    }

    .floating-right {
        right: 0;
    }

    .cta-icon {
        right: 60px;
    }

}


/* =========================================================
   TABLET / MOBILE NAV
========================================================= */

@media (max-width: 991px) {

    .main-header {
        position: absolute;
    }

    .navbar {
        min-height: 76px;
    }

    .navbar-brand img {
        width: 175px;
        max-height: 60px;
    }

    .navbar-collapse {
        margin-top: 12px;

        padding: 15px;

        border-radius: 12px;

        background: #fff;

        box-shadow:
            0 15px 40px rgba(30,60,70,.10);
    }

    .navbar-nav {
        gap: 0;

        align-items: stretch !important;
    }

    .nav-link {
        padding: 12px 10px !important;
    }

    .nav-link::after {
        display: none;
    }

    .nav-enquire {
        display: flex;

        justify-content: center;

        margin-top: 8px;
    }

    .hero-slide {
        min-height: auto;

        padding-top: 125px;
        padding-bottom: 70px;
    }

    .hero-content {
        max-width: 700px;

        margin: 0 auto;

        text-align: center;
    }

    .hero-small-title {
        justify-content: center;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-visual {
        height: 470px;

        margin-top: 25px;
    }

    .hero-round {
        width: 370px;
        height: 370px;
    }

    .hero-image-box {
        width: 340px;
    }

    .stats-section {
        margin-top: 0;

        padding-top: 20px;
    }

    .stats-wrapper {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: 0;
    }

    .stat-item:nth-child(-n+2) {
        border-bottom: 1px solid #edf0f1;
    }

    .section-padding {
        padding: 80px 0;
    }

    .journey-wrapper {
        flex-wrap: wrap;

        gap: 35px;
    }

    .journey-line {
        display: none;
    }

    .journey-step {
        flex: 0 0 40%;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .section-padding {
        padding: 65px 0;
    }

    .navbar-brand img {
        width: 160px;
    }

    .hero-slide {
        padding-top: 105px;
        padding-bottom: 55px;
    }

    .hero-content h1 {
        font-size: 40px;

        letter-spacing: -1px;
    }

    .hero-content p {
        font-size: 14px;

        line-height: 1.75;
    }

    .hero-buttons {
        gap: 10px;
    }

    .hero-buttons .btn {
        width: 100%;

        max-width: 230px;
    }

    .hero-features {
        gap: 12px 20px;
    }

    .hero-visual {
        height: 380px;

        margin-top: 15px;
    }

    .hero-round {
        width: 290px;
        height: 290px;
    }

    .hero-image-box {
        width: 275px;
    }

    .hero-floating-card {
        min-width: 130px;

        padding: 9px 11px;
    }

    .hero-floating-card small {
        font-size: 8px;
    }

    .hero-floating-card strong {
        font-size: 10px;
    }

    .floating-icon {
        width: 34px;
        height: 34px;

        flex-basis: 34px;

        font-size: 16px;
    }

    .floating-left {
        left: 0;
        top: 55px;
    }

    .floating-right {
        right: 0;
        bottom: 45px;
    }

    .plus-one {
        top: 20px;
        right: 35px;
    }

    .plus-two {
        bottom: 25px;
        left: 30px;
    }

    .hero-career-badge {
        top: 30px;
        right: 10px;

        padding: 8px 11px;
    }

    .hero-career-badge i {
        font-size: 20px;
    }

    .hero-arrow {
        width: 38px;
        height: 38px;

        font-size: 13px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
    }

    .carousel-indicators {
        bottom: 12px;
    }

    .stats-wrapper {
        grid-template-columns: 1fr;
    }

    .stat-item {
        border-right: 0 !important;

        border-bottom: 1px solid #edf0f1;
    }

    .stat-item:last-child {
        border-bottom: 0;
    }

    .stat-item {
        padding: 22px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .about-image-wrapper {
        padding-right: 15px;

        padding-bottom: 25px;
    }

    .about-image img {
        height: 350px;
    }

    .about-experience {
        width: 155px;

        padding: 15px;
    }

    .about-experience strong {
        font-size: 30px;
    }

    .about-points {
        grid-template-columns: 1fr;
    }

    .course-image {
        height: 210px;
    }

    .why-card {
        padding: 25px;
    }

    .journey-wrapper {
        margin-top: 40px;

        gap: 40px 20px;
    }

    .journey-step {
        flex: 0 0 calc(50% - 10px);
    }

    .journey-step > i {
        width: 65px;
        height: 65px;

        font-size: 22px;
    }

    .cta-section {
        padding-bottom: 65px;
    }

    .cta-box {
        padding: 45px 25px;

        border-radius: 20px;

        text-align: center;
    }

    .cta-content p {
        font-size: 13px;
    }

    .cta-icon {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        margin-top: 40px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .navbar-brand img {
        width: 145px;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .hero-small-title {
        font-size: 10px;

        letter-spacing: 1.5px;
    }

    .hero-visual {
        height: 340px;
    }

    .hero-round {
        width: 250px;
        height: 250px;
    }

    .hero-image-box {
        width: 235px;
    }

    .hero-floating-card {
        min-width: 112px;

        padding: 7px 9px;

        gap: 7px;
    }

    .floating-icon {
        width: 30px;
        height: 30px;

        flex-basis: 30px;

        font-size: 14px;
    }

    .floating-left {
        left: -5px;
        top: 50px;
    }

    .floating-right {
        right: -5px;
        bottom: 40px;
    }

    .hero-floating-card small {
        font-size: 7px;
    }

    .hero-floating-card strong {
        font-size: 9px;
    }

    .hero-features {
        flex-direction: column;

        gap: 8px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }

    .course-content {
        padding: 22px;
    }

    .journey-step {
        flex: 0 0 100%;
    }

    .journey-step p {
        max-width: 200px;

        margin-left: auto;
        margin-right: auto;
    }

    .footer-logo {
        width: 115px;
    }

}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: .01ms !important;
    }

}

/* =========================================================
   HIRING PARTNERS
========================================================= */

.hiring-partners-section {
    position: relative;
    padding: 37px 0 30px;
    background: #f7faff;
    overflow: hidden;
}


/* SUBTLE BACKGROUND */

.hiring-partners-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: rgba(20, 92, 180, 0.05);
    border-radius: 50%;
    top: -180px;
    left: -150px;
}

.hiring-partners-section::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(0, 172, 193, 0.05);
    border-radius: 50%;
    bottom: -180px;
    right: -120px;
}


/* =========================================================
   HEADING
========================================================= */

.hiring-partners-heading {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 750px;
    margin: 0 auto 55px;
}

.hiring-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #0879c9;
    margin-bottom: 15px;
}

.hiring-eyebrow::before,
.hiring-eyebrow::after {
    content: "";
    width: 28px;
    height: 2px;
    background: #0879c9;
}

.hiring-partners-heading h2 {
    margin: 0;

    font-size: clamp(36px, 4vw, 58px);
    line-height: 1.1;
    font-weight: 700;

    color: #102d4f;
}

.hiring-partners-heading h2 strong {
    color: #0879c9;
    font-weight: 800;
}

.hiring-partners-heading p {
    margin: 18px auto 0;

    max-width: 620px;

    font-size: 15px;
    line-height: 1.8;
    color: #718096;
}


/* =========================================================
   LOGO MARQUEE
========================================================= */

.hiring-logo-marquee {
    position: relative;
    z-index: 2;

    width: 100%;
    overflow: hidden;

    padding: 25px 0;
}


/* FADE EDGES */

.hiring-logo-marquee::before,
.hiring-logo-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 130px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.hiring-logo-marquee::before {
    left: 0;

    background: linear-gradient(
        to right,
        #f7faff,
        transparent
    );
}

.hiring-logo-marquee::after {
    right: 0;

    background: linear-gradient(
        to left,
        #f7faff,
        transparent
    );
}


/* =========================================================
   TRACK
========================================================= */

.hiring-logo-track {
    display: flex;
    align-items: center;
    width: max-content;

    gap: 28px;

    animation: hiringLogoScroll 28s linear infinite;
}


/* =========================================================
   LOGO CARD
========================================================= */

.hiring-logo-card {
    width: 220px;
    height: 125px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid rgba(20, 75, 120, 0.09);

    border-radius: 18px;

    box-shadow:
        0 10px 35px rgba(20, 65, 100, 0.08);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}


/* LOGO */

.hiring-logo-card img {
    width: 80%;
    height: 75%;

    object-fit: contain;

    filter: grayscale(10%);

    transition:
        transform 0.4s ease,
        filter 0.4s ease;
}


/* HOVER */

.hiring-logo-card:hover {
    transform: translateY(-8px);

    border-color: rgba(8, 121, 201, 0.25);

    box-shadow:
        0 18px 45px rgba(8, 121, 201, 0.15);
}

.hiring-logo-card:hover img {
    transform: scale(1.08);
    filter: grayscale(0);
}


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

@keyframes hiringLogoScroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(
            calc(-50% - 14px)
        );
    }

}


/* PAUSE ON HOVER */

.hiring-logo-marquee:hover .hiring-logo-track {
    animation-play-state: paused;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .hiring-partners-section {
        padding: 80px 0 90px;
    }

    .hiring-partners-heading {
        margin-bottom: 40px;
    }

    .hiring-logo-card {
        width: 190px;
        height: 110px;
    }

    .hiring-logo-track {
        gap: 22px;
        animation-duration: 24s;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 576px) {

    .hiring-partners-section {
        padding: 65px 0 75px;
    }

    .hiring-partners-heading {
        padding: 0 15px;
        margin-bottom: 30px;
    }

    .hiring-eyebrow {
        font-size: 10px;
        letter-spacing: 2px;
    }

    .hiring-eyebrow::before,
    .hiring-eyebrow::after {
        width: 18px;
    }

    .hiring-partners-heading h2 {
        font-size: 34px;
    }

    .hiring-partners-heading p {
        font-size: 14px;
        line-height: 1.7;
    }

    .hiring-logo-marquee {
        padding: 20px 0;
    }

    .hiring-logo-card {
        width: 155px;
        height: 95px;
        border-radius: 14px;
    }

    .hiring-logo-card img {
        width: 78%;
        height: 70%;
    }

    .hiring-logo-track {
        gap: 16px;
        animation-duration: 20s;
    }

    .hiring-logo-marquee::before,
    .hiring-logo-marquee::after {
        width: 60px;
    }

}

/* =========================================================
   HOW WE TRAIN - PREMIUM LOGO THEME
========================================================= */

.how-train-flow {
    position: relative;

    padding: 60px 0 52px;

    background: #f7fafc;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND DECORATION
========================================================= */

.how-train-flow::before {
    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    top: -230px;
    right: -150px;

    border-radius: 50%;

    background: rgba(8, 45, 78, 0.045);
}

.how-train-flow::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -180px;
    left: -130px;

    border-radius: 50%;

    background: rgba(8, 125, 204, 0.035);
}


/* =========================================================
   HEADING
========================================================= */

.train-flow-heading {
    position: relative;

    z-index: 2;

    max-width: 760px;

    margin: 0 auto 70px;

    text-align: center;
}

.train-flow-heading > span {
    position: relative;

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 15px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: #087dcc;
}

.train-flow-heading > span::before,
.train-flow-heading > span::after {
    content: "";

    width: 32px;
    height: 1px;

    background: #9bb7c8;
}

.train-flow-heading h2 {
    margin: 0;

    font-size: clamp(38px, 4vw, 58px);

    line-height: 1.1;

    font-weight: 700;

    color: #4b565d;
}

.train-flow-heading h2 strong {
    color: #087dcc;
}

.train-flow-heading p {
    max-width: 680px;

    margin: 20px auto 0;

    font-size: 15px;

    line-height: 1.8;

    color: #71818d;
}


/* =========================================================
   FLOW AREA
========================================================= */

.training-flow {
    position: relative;

    z-index: 2;

    display: flex;

    align-items: flex-start;

    justify-content: center;

    width: 100%;
}


/* =========================================================
   STEP
========================================================= */

.training-step {
    position: relative;

    width: 225px;

    flex-shrink: 0;

    text-align: center;
}


/* =========================================================
   TOP AREA
========================================================= */

.step-top {
    position: relative;

    height: 185px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================================================
   MAIN CIRCLE
========================================================= */

.step-circle {
    position: relative;

    width: 145px;
    height: 145px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    /*
       White center
       Soft grey ring
       Small cyan accent
    */

    background:
        radial-gradient(
            circle,
            #ffffff 57%,
            #edf3f7 58%,
            #edf3f7 68%,
            #d9e7ee 69%,
            #d9e7ee 72%,
            #ffffff 73%
        );

    border: 1px solid #c8d9e3;

    color: #092d4e;

    font-size: 42px;

    box-shadow:
        0 12px 30px rgba(9, 45, 78, 0.08);

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease,
        color 0.4s ease;
}


/* =========================================================
   NUMBER
========================================================= */

.step-number {
    position: absolute;

    top: 4px;
    left: 23px;

    width: 46px;
    height: 46px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #092d4e;

    color: #ffffff;

    font-size: 13px;

    font-weight: 800;

    border: 5px solid #f7fafc;

    z-index: 3;

    box-shadow:
        0 6px 15px rgba(9, 45, 78, 0.18);
}


/* =========================================================
   HOVER
========================================================= */

.training-step:hover .step-circle {

    transform: translateY(-8px) scale(1.04);

    border-color: #087dcc;

    color: #087dcc;

    box-shadow:
        0 20px 40px rgba(9, 45, 78, 0.13);
}

.training-step:hover .step-number {

    background: #087dcc;
}


/* =========================================================
   STEP CONTENT
========================================================= */

.step-content {
    padding: 0 10px;
}

.step-content h3 {

    margin: 8px 0 10px;

    font-size: 19px;

    font-weight: 700;

    line-height: 1.35;

    color: #092d4e;
}

.step-content p {

    margin: 0;

    font-size: 13px;

    line-height: 1.7;

    color: #71818d;
}


/* =========================================================
   CONNECTOR
========================================================= */

.flow-connector {

    position: relative;

    width: 105px;

    height: 185px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* LINE */

.flow-connector span {

    position: absolute;

    left: 0;

    top: 88px;

    width: 100%;

    height: 1px;

    background:
        linear-gradient(
            90deg,
            #c6d7e1,
            #087dcc,
            #c6d7e1
        );

    border-radius: 20px;
}


/* SMALL DOT */

.flow-connector span::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    width: 7px;
    height: 7px;

    transform: translateY(-50%);

    border-radius: 50%;

    background: #9bb7c8;
}


/* =========================================================
   ARROW
========================================================= */

.flow-connector i {

    position: relative;

    z-index: 2;

    width: 36px;
    height: 36px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #ffffff;

    color: #087dcc;

    font-size: 13px;

    border: 1px solid #cbdce5;

    box-shadow:
        0 7px 18px rgba(9, 45, 78, 0.09);

    animation: flowPulse 2.5s ease-in-out infinite;
}


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

@keyframes flowPulse {

    0% {
        transform: scale(1);

        box-shadow:
            0 7px 18px rgba(9, 45, 78, 0.09);
    }

    50% {
        transform: scale(1.1);

        box-shadow:
            0 10px 25px rgba(8, 125, 204, 0.15);
    }

    100% {
        transform: scale(1);

        box-shadow:
            0 7px 18px rgba(9, 45, 78, 0.09);
    }

}


/* DIFFERENT DELAYS */

.flow-connector:nth-of-type(2) i {
    animation-delay: .6s;
}

.flow-connector:nth-of-type(4) i {
    animation-delay: 1.2s;
}

.flow-connector:nth-of-type(6) i {
    animation-delay: 1.8s;
}


/* =========================================================
   STEP VARIATION
========================================================= */

/* Step 1 */

.training-step:nth-child(1) .step-circle {
    color: #092d4e;
}

/* Step 2 */

.training-step:nth-child(3) .step-circle {
    color: #087dcc;
}

/* Step 3 */

.training-step:nth-child(5) .step-circle {
    color: #0b7f83;
}

/* Step 4 */

.training-step:nth-child(7) .step-circle {
    color: #092d4e;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

    .training-step {
        width: 190px;
    }

    .flow-connector {
        width: 65px;
    }

    .step-circle {
        width: 125px;
        height: 125px;

        font-size: 36px;
    }

    .step-number {

        left: 18px;

        width: 42px;
        height: 42px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .how-train-flow {

        padding: 75px 0 80px;
    }

    .train-flow-heading {

        margin-bottom: 50px;
    }

    .train-flow-heading h2 {

        font-size: 36px;
    }

    .train-flow-heading p {

        font-size: 14px;
    }


    /* VERTICAL FLOW */

    .training-flow {

        display: flex;

        flex-direction: column;

        align-items: center;
    }

    .training-step {

        width: 100%;

        max-width: 360px;
    }

    .step-top {

        height: 145px;
    }


    /* CIRCLE */

    .step-circle {

        width: 115px;
        height: 115px;

        font-size: 32px;
    }


    /* NUMBER */

    .step-number {

        top: 0;

        left: calc(50% - 57px);

        width: 40px;
        height: 40px;

        font-size: 12px;
    }


    /* CONTENT */

    .step-content {

        padding: 0 25px;
    }

    .step-content h3 {

        font-size: 19px;
    }

    .step-content p {

        font-size: 13px;
    }


    /* =====================================================
       VERTICAL CONNECTOR
    ===================================================== */

    .flow-connector {

        width: 2px;

        height: 65px;

        margin: 5px 0;
    }

    .flow-connector span {

        left: 0;

        top: 0;

        width: 2px;

        height: 100%;

        background:
            linear-gradient(
                180deg,
                #c6d7e1,
                #087dcc,
                #c6d7e1
            );
    }

    .flow-connector span::before {

        left: 50%;

        top: 0;

        transform: translateX(-50%);

        width: 6px;

        height: 6px;
    }

    .flow-connector i {

        width: 34px;
        height: 34px;

        transform: rotate(90deg);
    }

}/* =========================================================
   WHO CAN APPLY
========================================================= */

.who-apply-section {
    position: relative;

    padding: 60px 0;

    background: #f4faff;

    overflow: hidden;
}


/* BACKGROUND SHAPE */

.who-apply-section::before {
    content: "";

    position: absolute;

    width: 550px;
    height: 550px;

    right: -250px;
    top: -250px;

    border-radius: 50%;

    background: rgba(8, 125, 204, 0.055);
}


/* =========================================================
   MAIN WRAPPER
========================================================= */

.who-apply-wrapper {

    display: grid;

    grid-template-columns: 0.95fr 1.05fr;

    gap: 80px;

    align-items: center;

    position: relative;

    z-index: 2;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.who-apply-content {
    max-width: 620px;
}


/* LABEL */

.who-apply-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 15px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: #087dcc;
}

.who-apply-label::before {

    content: "";

    width: 30px;

    height: 2px;

    background: #087dcc;
}


/* HEADING */

.who-apply-content > h2 {

    margin: 0;

    font-size: clamp(40px, 4vw, 60px);

    line-height: 1.08;

    font-weight: 700;

    color: #0a2c4b;
}

.who-apply-content > h2 strong {

    color: #087dcc;

    font-weight: 800;
}


/* INTRO */

.who-apply-intro {

    max-width: 570px;

    margin: 20px 0 32px;

    font-size: 15px;

    line-height: 1.8;

    color: #70818e;
}


/* =========================================================
   APPLY ITEMS
========================================================= */

.apply-info-item {

    position: relative;

    display: flex;

    align-items: center;

    gap: 17px;

    padding: 17px 18px;

    margin-bottom: 10px;

    border-radius: 14px;

    border: 1px solid transparent;

    cursor: pointer;

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease;
}


/* ICON */

.apply-info-icon {

    width: 52px;
    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background: #ffffff;

    color: #087dcc;

    font-size: 21px;

    box-shadow:
        0 7px 22px rgba(15, 80, 120, 0.08);

    transition: all 0.35s ease;
}


/* TEXT */

.apply-info-text {

    flex: 1;
}

.apply-info-text h3 {

    margin: 0 0 5px;

    font-size: 17px;

    font-weight: 700;

    color: #0c304f;
}

.apply-info-text p {

    margin: 0;

    font-size: 13px;

    line-height: 1.6;

    color: #758590;
}


/* ARROW */

.apply-arrow {

    width: 35px;
    height: 35px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    border-radius: 50%;

    background: #e8f5fc;

    color: #087dcc;

    font-size: 14px;

    opacity: 0;

    transform: translateX(-8px);

    transition: all 0.35s ease;
}


/* ACTIVE */

.apply-info-item.active,
.apply-info-item:hover {

    background: #ffffff;

    border-color: #d8ebf5;

    transform: translateX(6px);

    box-shadow:
        0 12px 30px rgba(20, 75, 105, 0.07);
}

.apply-info-item.active .apply-info-icon,
.apply-info-item:hover .apply-info-icon {

    background: #087dcc;

    color: #ffffff;

    transform: scale(1.05);
}

.apply-info-item.active .apply-arrow,
.apply-info-item:hover .apply-arrow {

    opacity: 1;

    transform: translateX(0);
}


/* =========================================================
   RIGHT VISUAL
========================================================= */

.who-apply-visual {

    position: relative;

    height: 610px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* BACKGROUND */

.apply-visual-bg {

    position: absolute;

    width: 460px;
    height: 500px;

    border-radius: 45% 45% 20% 20%;

    background:
        linear-gradient(
            145deg,
            #dff3fc,
            #eefaff
        );

    transform: rotate(5deg);

    box-shadow:
        0 30px 70px rgba(20, 90, 130, 0.10);
}


/* =========================================================
   IMAGE
========================================================= */

.apply-image {

    position: absolute;

    width: 440px;

    height: 500px;

    overflow: hidden;

    border-radius: 28px;

    opacity: 0;

    transform:
        translateY(25px)
        scale(0.96);

    transition:
        opacity 0.6s ease,
        transform 0.6s ease;

    box-shadow:
        0 25px 60px rgba(15, 65, 100, 0.18);
}

.apply-image.active {

    opacity: 1;

    transform:
        translateY(0)
        scale(1);

}


/* IMAGE */

.apply-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* OVERLAY */

.apply-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            to top,
            rgba(5, 32, 55, 0.78),
            rgba(5, 32, 55, 0.05) 60%
        );
}


/* =========================================================
   IMAGE CAPTION
========================================================= */

.apply-image-caption {

    position: absolute;

    left: 28px;
    right: 28px;
    bottom: 27px;

    display: flex;

    align-items: center;

    gap: 15px;

    color: #ffffff;
}

.apply-image-caption > span {

    width: 44px;
    height: 44px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,0.18);

    border: 1px solid rgba(255,255,255,0.35);

    backdrop-filter: blur(10px);

    font-size: 13px;

    font-weight: 700;
}

.apply-image-caption small {

    display: block;

    margin-bottom: 3px;

    font-size: 9px;

    letter-spacing: 1.5px;

    color: rgba(255,255,255,0.75);
}

.apply-image-caption h4 {

    margin: 0;

    font-size: 22px;

    font-weight: 700;
}


/* =========================================================
   BADGE
========================================================= */

.apply-visual-badge {

    position: absolute;

    left: -35px;

    bottom: 35px;

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 15px 19px;

    border-radius: 15px;

    background: #ffffff;

    color: #0b3150;

    box-shadow:
        0 15px 40px rgba(15, 70, 100, 0.14);

    animation: badgeFloat 3s ease-in-out infinite;
}

.apply-visual-badge i {

    width: 42px;
    height: 42px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 11px;

    background: #087dcc;

    color: #ffffff;

    font-size: 18px;
}

.apply-visual-badge span {

    font-size: 12px;

    font-weight: 700;

    line-height: 1.45;
}


@keyframes badgeFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .who-apply-section {
        padding: 85px 0;
    }

    .who-apply-wrapper {

        grid-template-columns: 1fr;

        gap: 60px;
    }

    .who-apply-content {

        max-width: 750px;

        margin: auto;
    }

    .who-apply-visual {

        height: 560px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 575px) {

    .who-apply-section {
        padding: 70px 0;
    }

    .who-apply-content > h2 {
        font-size: 36px;
    }

    .who-apply-intro {
        font-size: 14px;
    }

    .apply-info-item {
        padding: 14px;

        gap: 12px;
    }

    .apply-info-icon {
        width: 45px;
        height: 45px;

        font-size: 18px;
    }

    .apply-info-text h3 {
        font-size: 15px;
    }

    .apply-info-text p {
        font-size: 12px;
    }

    .apply-arrow {
        display: none;
    }


    /* VISUAL */

    .who-apply-visual {

        height: 440px;

        margin-top: 10px;
    }

    .apply-visual-bg {

        width: 82%;

        height: 380px;
    }

    .apply-image {

        width: 88%;

        height: 390px;

        border-radius: 22px;
    }

    .apply-image-caption {

        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .apply-image-caption h4 {
        font-size: 18px;
    }

    .apply-visual-badge {

        left: 0;

        bottom: 5px;

        padding: 11px 13px;
    }

    .apply-visual-badge i {

        width: 35px;
        height: 35px;

        font-size: 15px;
    }

    .apply-visual-badge span {
        font-size: 10px;
    }

}

/* =========================================================
   FAQ SECTION
========================================================= */

.faq-section {

    position: relative;

    padding: 65px 0;

    background: #ffffff;

    overflow: hidden;
}


/* BACKGROUND */

.faq-section::before {

    content: "";

    position: absolute;

    width: 420px;
    height: 420px;

    right: -220px;
    top: -180px;

    border-radius: 50%;

    background: rgba(8, 125, 204, 0.035);
}


/* =========================================================
   WRAPPER
========================================================= */

.faq-wrapper {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 90px;

    align-items: center;
}


/* =========================================================
   LEFT
========================================================= */

.faq-intro {

    max-width: 470px;
}

.faq-label {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    margin-bottom: 16px;

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: #087dcc;
}

.faq-label::before {

    content: "";

    width: 30px;
    height: 2px;

    background: #087dcc;
}


.faq-intro h2 {

    margin: 0;

    font-size: clamp(38px, 4vw, 56px);

    line-height: 1.1;

    color: #092d4e;

    font-weight: 700;
}

.faq-intro h2 strong {

    display: block;

    color: #087dcc;
}


.faq-intro > p {

    margin: 22px 0 30px;

    font-size: 14px;

    line-height: 1.8;

    color: #71818d;
}


/* =========================================================
   HELP BOX
========================================================= */

.faq-help-box {

    display: flex;

    align-items: center;

    gap: 14px;

    padding: 17px;

    border-radius: 15px;

    background: #f5f9fc;

    border: 1px solid #e1edf3;
}

.faq-help-icon {

    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #092d4e;

    color: #ffffff;

    font-size: 19px;
}

.faq-help-box small {

    display: block;

    margin-bottom: 3px;

    font-size: 9px;

    letter-spacing: 1.4px;

    color: #7b8d99;
}

.faq-help-box h4 {

    margin: 0;

    font-size: 14px;

    font-weight: 700;

    color: #092d4e;
}

.faq-help-arrow {

    margin-left: auto;

    color: #087dcc;

    font-size: 17px;
}


/* =========================================================
   FAQ LIST
========================================================= */

.faq-list {

    width: 100%;
}


/* ITEM */

.faq-item {

    margin-bottom: 12px;

    border: 1px solid #dce8ef;

    border-radius: 13px;

    overflow: hidden;

    background: #ffffff;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.faq-item.active {

    border-color: #a9cfe5;

    box-shadow:
        0 12px 30px rgba(9, 45, 78, 0.07);
}


/* QUESTION */

.faq-question {

    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    padding: 20px 22px;

    border: 0;

    outline: 0;

    background: transparent;

    text-align: left;

    color: #092d4e;

    font-size: 15px;

    font-weight: 700;

    cursor: pointer;
}

.faq-question i {

    width: 30px;
    height: 30px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #edf6fb;

    color: #087dcc;

    font-size: 12px;

    transition: transform 0.3s ease;
}


/* ANSWER */

.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition:
        max-height 0.4s ease;
}

.faq-answer p {

    margin: 0;

    padding: 0 22px 20px;

    font-size: 13px;

    line-height: 1.75;

    color: #71818d;
}


/* ACTIVE */

.faq-item.active .faq-answer {

    max-height: 180px;
}

.faq-item.active .faq-question i {

    transform: rotate(45deg);

    background: #087dcc;

    color: #ffffff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .faq-wrapper {

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .faq-intro {

        max-width: 700px;
    }

}


@media (max-width: 575px) {

    .faq-section {

        padding: 75px 0;
    }

    .faq-intro h2 {

        font-size: 36px;
    }

    .faq-question {

        padding: 17px;

        font-size: 14px;
    }

    .faq-answer p {

        padding: 0 17px 18px;

        font-size: 12px;
    }

}

/* =========================================================
   TESTIMONIAL SECTION
========================================================= */

.testimonial-section {

    position: relative;

    padding: 50px 0 40px;

    background: #092d4e;

    overflow: hidden;
}


/* BACKGROUND SHAPES */

.testimonial-section::before {

    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    top: -270px;
    left: -180px;

    border-radius: 50%;

    background: rgba(255,255,255,0.035);
}

.testimonial-section::after {

    content: "";

    position: absolute;

    width: 400px;
    height: 400px;

    right: -200px;
    bottom: -250px;

    border-radius: 50%;

    background: rgba(8,125,204,0.13);
}


/* =========================================================
   HEADING
========================================================= */

.testimonial-heading {

    position: relative;

    z-index: 2;

    max-width: 700px;

    margin: 0 auto 65px;

    text-align: center;
}

.testimonial-heading > span {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 15px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2.5px;

    color: #72c7ef;
}

.testimonial-heading > span::before,
.testimonial-heading > span::after {

    content: "";

    width: 28px;

    height: 1px;

    background: rgba(255,255,255,0.35);
}


.testimonial-heading h2 {

    margin: 0;

    font-size: clamp(38px, 4vw, 56px);

    line-height: 1.1;

    color: #ffffff;

    font-weight: 700;
}

.testimonial-heading h2 strong {

    color: #72c7ef;
}

.testimonial-heading p {

    max-width: 620px;

    margin: 20px auto 0;

    font-size: 14px;

    line-height: 1.8;

    color: rgba(255,255,255,0.62);
}


/* =========================================================
   GRID
========================================================= */

.testimonial-grid {

    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


/* =========================================================
   CARD
========================================================= */

.testimonial-card {

    position: relative;

    padding: 30px;

    min-height: 340px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;

    border-radius: 20px;

    background: rgba(255,255,255,0.055);

    border: 1px solid rgba(255,255,255,0.11);

    transition:
        transform 0.4s ease,
        background 0.4s ease,
        border-color 0.4s ease;
}


/* HOVER */

.testimonial-card:hover {

    transform: translateY(-8px);

    background: rgba(255,255,255,0.085);

    border-color: rgba(114,199,239,0.35);
}


/* FEATURED */

.testimonial-card.featured {

    background: #ffffff;

    border-color: #ffffff;

    transform: translateY(-15px);

    box-shadow:
        0 25px 60px rgba(0,0,0,0.20);
}

.testimonial-card.featured:hover {

    transform: translateY(-23px);
}


/* =========================================================
   TOP
========================================================= */

.testimonial-top {

    display: flex;

    align-items: center;

    justify-content: space-between;
}


/* QUOTE */

.testimonial-quote {

    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 13px;

    background: rgba(114,199,239,0.12);

    color: #72c7ef;

    font-size: 25px;
}

.testimonial-card.featured .testimonial-quote {

    background: #edf7fc;

    color: #087dcc;
}


/* STARS */

.testimonial-stars {

    display: flex;

    gap: 3px;

    color: #e9b94b;

    font-size: 11px;
}


/* =========================================================
   TEXT
========================================================= */

.testimonial-text {

    margin: 28px 0;

    font-size: 14px;

    line-height: 1.85;

    color: rgba(255,255,255,0.70);
}

.testimonial-card.featured .testimonial-text {

    color: #687984;
}


/* =========================================================
   PERSON
========================================================= */

.testimonial-person {

    display: flex;

    align-items: center;

    gap: 13px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,0.10);
}

.testimonial-card.featured .testimonial-person {

    border-color: #e5edf1;
}


.testimonial-avatar {

    width: 45px;
    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #087dcc;

    color: #ffffff;

    font-size: 12px;

    font-weight: 800;
}


.testimonial-person h4 {

    margin: 0 0 3px;

    font-size: 14px;

    font-weight: 700;

    color: #ffffff;
}

.testimonial-card.featured .testimonial-person h4 {

    color: #092d4e;
}


.testimonial-person span {

    font-size: 11px;

    color: rgba(255,255,255,0.50);
}

.testimonial-card.featured .testimonial-person span {

    color: #7b8a94;
}


/* =========================================================
   TRUST
========================================================= */

.testimonial-trust {

    position: relative;

    z-index: 2;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 25px;

    margin-top: 55px;
}

.trust-line {

    width: 100px;

    height: 1px;

    background: rgba(255,255,255,0.15);
}

.testimonial-trust span {

    display: flex;

    align-items: center;

    gap: 7px;

    font-size: 11px;

    letter-spacing: 1px;

    color: rgba(255,255,255,0.55);
}

.testimonial-trust i {

    color: #72c7ef;

    font-size: 15px;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .testimonial-grid {

        grid-template-columns: 1fr 1fr;
    }

    .testimonial-card.featured {

        transform: none;
    }

    .testimonial-card.featured:hover {

        transform: translateY(-8px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .testimonial-section {

        padding: 75px 0 80px;
    }

    .testimonial-heading {

        margin-bottom: 45px;
    }

    .testimonial-heading h2 {

        font-size: 36px;
    }

    .testimonial-grid {

        grid-template-columns: 1fr;

        gap: 15px;
    }

    .testimonial-card {

        min-height: 300px;

        padding: 24px;
    }

    .testimonial-card.featured {

        transform: none;
    }

    .testimonial-card.featured:hover {

        transform: translateY(-6px);
    }

    .testimonial-text {

        margin: 22px 0;

        font-size: 13px;
    }

    .trust-line {

        width: 45px;
    }

}

/* =========================================================
   FINAL MOBILE RESPONSIVE FIX
========================================================= */

@media (max-width: 767px) {

    /* HERO */
    .oms-banner-slide {
        min-height: 680px;
        height: auto;
        align-items: flex-start;
        background-position: center center;
        background-size: cover;
    }

    /* OVERLAY */
    .oms-banner-overlay {
        background:
            linear-gradient(
                180deg,
                rgba(3, 25, 38, .88) 0%,
                rgba(5, 42, 58, .78) 55%,
                rgba(3, 25, 38, .94) 100%
            );
    }

    /* CONTENT */
    .oms-banner-content {
        width: 100%;
        max-width: 100%;
        padding: 125px 18px 90px;
        margin: 0 auto;
        text-align: center;
    }

    /* LABEL */
    .oms-banner-label {
        justify-content: center;
        gap: 7px;
        font-size: 9px;
        letter-spacing: 1.5px;
        margin-bottom: 16px;
    }

    .oms-banner-label span {
        width: 25px;
        height: 2px;
    }

    /* HEADING */
    .oms-banner-content h1 {
        max-width: 100%;
        margin-bottom: 18px;
        font-size: 34px;
        line-height: 1.12;
        letter-spacing: -.8px;
    }

    .oms-banner-content h1 strong {
        display: block;
    }

    /* DESCRIPTION */
    .oms-banner-content > p {
        max-width: 330px;
        margin: 0 auto 25px;
        font-size: 13px;
        line-height: 1.7;
    }

    /* BUTTONS */
    .oms-banner-buttons {
        width: 100%;
        justify-content: center;
        gap: 10px;
        flex-direction: column;
        align-items: center;
    }

    .oms-btn {
        width: 210px;
        min-width: 0;
        min-height: 48px;
        padding: 12px 18px;
        font-size: 11px;
    }

    /* POINTS */
    .oms-banner-points {
        width: 100%;
        justify-content: center;
        gap: 8px 15px;
        margin-top: 24px;
    }

    .oms-banner-points div {
        font-size: 9px;
        gap: 5px;
    }

    .oms-banner-points i {
        font-size: 13px;
    }


    /* =====================================================
       FLOATING INFO CARDS
    ===================================================== */

    .oms-float-info {
        min-width: 0;
        width: 135px;
        padding: 8px 10px;
        gap: 7px;
        border-radius: 9px;
    }

    .oms-float-icon {
        width: 32px;
        height: 32px;
        flex: 0 0 32px;
        font-size: 14px;
        border-radius: 8px;
    }

    .oms-float-info small {
        font-size: 7px;
        line-height: 1.2;
    }

    .oms-float-info strong {
        font-size: 9px;
        line-height: 1.25;
    }

    .oms-float-top {
        top: 25px;
        right: 12px;
    }

    .oms-float-bottom {
        right: 12px;
        bottom: 45px;
    }


    /* =====================================================
       DECORATIVE CIRCLE
    ===================================================== */

    .oms-banner-circle {
        width: 260px;
        height: 260px;
        right: -145px;
        top: 58%;
        opacity: .7;
    }

    .oms-banner-circle::before {
        inset: 20px;
    }

    .oms-banner-circle::after {
        width: 9px;
        height: 9px;
        top: 25px;
        right: 55px;
    }


    /* =====================================================
       GLOW
    ===================================================== */

    .oms-banner-glow {
        width: 250px;
        height: 250px;
        filter: blur(55px);
        opacity: .15;
        right: -60px;
        top: 30%;
    }


    /* =====================================================
       PLUS SYMBOLS
    ===================================================== */

    .oms-plus {
        width: 30px;
        height: 30px;
        font-size: 15px;
    }

    .oms-plus-one {
        right: 22%;
        top: 23%;
    }

    .oms-plus-two {
        right: 27%;
        bottom: 18%;
    }


    /* =====================================================
       CAROUSEL ARROWS
    ===================================================== */

    .oms-carousel-arrow {
        display: none;
    }


    /* =====================================================
       INDICATORS
    ===================================================== */

    .oms-hero-indicators {
        bottom: 13px;
        gap: 5px;
    }

    .oms-hero-indicators button {
        width: 18px;
        height: 3px;
    }

    .oms-hero-indicators button.active {
        width: 38px;
    }
}


/* =========================================================
   EXTRA SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .oms-banner-slide {
        min-height: 650px;
    }

    .oms-banner-content {
        padding: 115px 15px 80px;
    }

    .oms-banner-label {
        font-size: 8px;
        letter-spacing: 1.2px;
        margin-bottom: 13px;
    }

    .oms-banner-content h1 {
        font-size: 30px;
        line-height: 1.12;
        margin-bottom: 16px;
    }

    .oms-banner-content > p {
        max-width: 300px;
        font-size: 12px;
        line-height: 1.65;
        margin-bottom: 22px;
    }

    .oms-btn {
        width: 190px;
        min-height: 45px;
        font-size: 10px;
    }

    .oms-banner-points {
        gap: 7px;
        margin-top: 20px;
    }

    .oms-banner-points div {
        font-size: 8px;
    }

    .oms-float-info {
        width: 120px;
        padding: 7px 8px;
    }

    .oms-float-icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
        font-size: 12px;
    }

    .oms-float-info small {
        font-size: 6.5px;
    }

    .oms-float-info strong {
        font-size: 8px;
    }

    .oms-float-top {
        top: 20px;
        right: 8px;
    }

    .oms-float-bottom {
        right: 8px;
        bottom: 38px;
    }

    .oms-banner-circle {
        width: 220px;
        height: 220px;
        right: -125px;
        top: 60%;
    }

    .oms-plus {
        width: 27px;
        height: 27px;
        font-size: 13px;
    }

    .oms-plus-one {
        right: 18%;
        top: 25%;
    }

    .oms-plus-two {
        right: 22%;
        bottom: 17%;
    }
}


/* =========================================================
   VERY SMALL DEVICES
========================================================= */

@media (max-width: 360px) {

    .oms-banner-slide {
        min-height: 630px;
    }

    .oms-banner-content {
        padding: 105px 12px 75px;
    }

    .oms-banner-content h1 {
        font-size: 27px;
    }

    .oms-banner-content > p {
        font-size: 11px;
        max-width: 280px;
    }

    .oms-btn {
        width: 175px;
        min-height: 43px;
    }

    .oms-banner-points div {
        font-size: 7.5px;
    }

    .oms-float-info {
        width: 110px;
    }
}

/* =========================================================
   MOBILE HERO IMAGE FIX
========================================================= */

@media (max-width: 767px) {

    .oms-banner-slide {
        min-height: 650px;
        height: 650px;

        /* Image full banner-la visible */
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat;

        display: flex;
        align-items: flex-start;

        overflow: hidden;
    }

    /* Mobile image overlay */
    .oms-banner-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;

        background:
            linear-gradient(
                180deg,
                rgba(3, 25, 38, .78) 0%,
                rgba(3, 25, 38, .58) 38%,
                rgba(3, 25, 38, .68) 70%,
                rgba(3, 25, 38, .88) 100%
            ) !important;
    }

    /* Keep image visible */
    .oms-banner-slide::before {
        z-index: 2;
        background:
            linear-gradient(
                135deg,
                rgba(21,155,215,.12),
                transparent 55%
            );
    }

    /* Content */
    .oms-banner-content {
        position: relative;
        z-index: 10;

        width: 100%;
        max-width: 100%;

        padding: 115px 18px 70px;

        text-align: center;
        margin: 0 auto;
    }

    /* Label */
    .oms-banner-label {
        justify-content: center;
        margin-bottom: 15px;

        font-size: 9px;
        letter-spacing: 1.5px;
    }

    .oms-banner-label span {
        width: 25px;
        height: 2px;
    }

    /* Heading */
    .oms-banner-content h1 {
        max-width: 340px;

        margin: 0 auto 17px;

        font-size: 34px;
        line-height: 1.08;
        letter-spacing: -.8px;
    }

    /* Paragraph */
    .oms-banner-content > p {
        max-width: 330px;

        margin: 0 auto 23px;

        font-size: 12px;
        line-height: 1.65;

        color: rgba(255,255,255,.9);
    }

    /* Buttons */
    .oms-banner-buttons {
        justify-content: center;
        align-items: center;

        gap: 9px;
    }

    .oms-btn {
        width: 185px;
        min-width: 185px;

        min-height: 45px;

        padding: 11px 16px;

        font-size: 10px;
        border-radius: 7px;
    }

    /* Points */
    .oms-banner-points {
        justify-content: center;

        gap: 7px 15px;

        margin-top: 20px;
    }

    .oms-banner-points div {
        font-size: 8px;
    }

    /* Floating cards */
    .oms-float-info {
        z-index: 15;

        width: 125px;
        min-width: 125px;

        padding: 8px 9px;

        gap: 7px;

        border-radius: 9px;
    }

    .oms-float-icon {
        width: 30px;
        height: 30px;
        flex-basis: 30px;

        font-size: 13px;
    }

    .oms-float-info small {
        font-size: 7px;
    }

    .oms-float-info strong {
        font-size: 9px;
    }

    .oms-float-top {
        top: 25px;
        right: 10px;
    }

    .oms-float-bottom {
        right: 10px;
        bottom: 42px;
    }

    /* Decorative circle */
    .oms-banner-circle {
        width: 270px;
        height: 270px;

        right: -145px;
        top: 55%;

        opacity: .55;
    }

    /* Glow */
    .oms-banner-glow {
        width: 250px;
        height: 250px;

        opacity: .13;
        filter: blur(55px);
    }

    /* Plus */
    .oms-plus {
        width: 30px;
        height: 30px;

        font-size: 15px;
    }

    .oms-plus-one {
        right: 20%;
        top: 23%;
    }

    .oms-plus-two {
        right: 24%;
        bottom: 17%;
    }

    /* Hide arrows */
    .oms-carousel-arrow {
        display: none;
    }

    /* Indicators */
    .oms-hero-indicators {
        bottom: 13px;
    }

    .oms-hero-indicators button {
        width: 20px;
        height: 3px;
    }

    .oms-hero-indicators button.active {
        width: 40px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .oms-banner-slide {
        min-height: 630px;
        height: 630px;

        /* Move image slightly upward */
        background-position: center 45% !important;
    }

    .oms-banner-content {
        padding: 108px 15px 65px;
    }

    .oms-banner-content h1 {
        font-size: 31px;
        max-width: 310px;
    }

    .oms-banner-content > p {
        max-width: 300px;
        font-size: 11px;
        line-height: 1.65;
    }

    .oms-btn {
        width: 180px;
        min-width: 180px;
        min-height: 44px;
    }

    .oms-banner-points {
        margin-top: 17px;
    }

    .oms-banner-points div {
        font-size: 12px;
    }

    .oms-float-info {
        width: 115px;
        min-width: 115px;
    }

    .oms-float-top {
        top: 18px;
        right: 7px;
    }

    .oms-float-bottom {
        right: 7px;
        bottom: 38px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

    .oms-banner-slide {
        min-height: 610px;
        height: 610px;

        background-position: center 42% !important;
    }

    .oms-banner-content {
        padding: 100px 12px 60px;
    }

    .oms-banner-content h1 {
        font-size: 28px;
    }

    .oms-banner-content > p {
        font-size: 11px;
        max-width: 275px;
    }

    .oms-btn {
        width: 170px;
        min-width: 170px;
    }

    .oms-float-info {
        transform: scale(.9);
    }
}

/* =========================================================
   FOOTER LINKS - COURSES SAME AS QUICK LINKS
========================================================= */

.main-footer h5 {
    color: #ffffff;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 24px;
}

.main-footer > .container .row > div > a {
    display: block;

    color: rgba(255,255,255,.70);

    font-size: 14px;
    font-weight: 400;

    text-decoration: none;

    margin-bottom: 15px;

    line-height: 1.5;

    transition: all .3s ease;
}

.main-footer > .container .row > div > a:hover {
    color: #52c43e;
    padding-left: 4px;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    width: 100%;

    margin-top: 55px;

    padding: 18px 0;

    border-top: 1px solid rgba(255,255,255,.12);

    background: rgba(0,0,0,.08);
}

.footer-bottom .container {
    width: 100%;
}

.copyright {
    width: 100%;
}

.copyright-text {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-wrap: wrap;

    gap: 4px;

    margin: 0;

    color: rgba(255,255,255,.55);

    font-size: 11px;

    line-height: 1.5;
}

.company-name {
    color: #159bd7;

    text-decoration: none;

    margin: 0 2px;
}

.company-name:hover {
    color: #52c43e;
}


/* =========================================================
   DEVELOPER
========================================================= */

.developer-text {
    display: inline-flex;

    align-items: center;

    gap: 5px;

    margin-left: 3px;

    white-space: nowrap;
}

.technest-link {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;
}

.technest-logo {
    display: block;

    width: 22px;
    height: 22px;

    object-fit: contain;

    vertical-align: middle;
}

@media (max-width: 767px) {

    .footer-bottom {
        margin-top: 35px;
        padding: 16px 15px;
    }

    .copyright-text {
        justify-content: center;

        text-align: center;

        font-size: 10px;

        line-height: 1.8;
    }

    .developer-text {
        width: 100%;

        justify-content: center;

        margin-left: 0;
    }

    .technest-logo {
        width: 24px;
        height: 24px;
    }

}
/* =========================================================
   HEADER - TRANSPARENT
========================================================= */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: transparent;

    transition:
        background .35s ease,
        box-shadow .35s ease,
        padding .35s ease;
}


/* Navbar */
.main-header .navbar {
    padding: 15px 0;

    transition: padding .35s ease;
}


/* =========================================================
   LOGO
========================================================= */

.main-header .navbar-brand img {
    width: 145px;
    height: auto;

    transition: all .35s ease;
}


/* =========================================================
   NAV LINKS - TRANSPARENT HEADER
========================================================= */

.main-header .nav-link {
    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    padding: 10px 14px !important;

    transition: color .3s ease;
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
    color: #52c43e;
}


/* =========================================================
   ENQUIRE BUTTON
========================================================= */

.nav-enquire {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 11px 20px;

    color: #ffffff;

    background: #159bd7;

    border: 1px solid #159bd7;

    border-radius: 6px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}

.nav-enquire:hover {
    color: #ffffff;

    background: #52c43e;

    border-color: #52c43e;

    transform: translateY(-2px);
}


/* =========================================================
   SCROLLED HEADER
========================================================= */

.main-header.scrolled {
    background: #ffffff;

    box-shadow:
        0 5px 25px rgba(0, 0, 0, .08);
}


/* Navbar smaller after scroll */

.main-header.scrolled .navbar {
    padding: 9px 0;
}


/* Logo */

.main-header.scrolled .navbar-brand img {
    width: 125px;
}


/* Links become dark */

.main-header.scrolled .nav-link {
    color: #26343a;
}

.main-header.scrolled .nav-link:hover,
.main-header.scrolled .nav-link.active {
    color: #159bd7;
}


/* Enquire button remains */

.main-header.scrolled .nav-enquire {
    color: #ffffff;
}


/* =========================================================
   MOBILE MENU BUTTON
========================================================= */

.navbar-toggler {
    border: 0;

    padding: 8px;

    color: #ffffff;

    font-size: 28px;

    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}


/* Scrolled mobile toggler */

.main-header.scrolled .navbar-toggler {
    color: #26343a;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .main-header .navbar {
        padding: 10px 0;
    }

    .main-header .navbar-brand img {
        width: 125px;
    }


    /* Mobile dropdown */

    .main-header .navbar-collapse {
        margin-top: 10px;

        padding: 15px;

        border-radius: 10px;

        background: rgba(255,255,255,.98);

        box-shadow:
            0 10px 30px rgba(0,0,0,.12);
    }

    .main-header .nav-link {
        color: #26343a;

        padding: 10px 5px !important;
    }

    .main-header .nav-link:hover,
    .main-header .nav-link.active {
        color: #159bd7;
    }

    .main-header .nav-item.ms-lg-3 {
        margin-left: 0 !important;

        margin-top: 10px;
    }

    .nav-enquire {
        width: 100%;
    }
}

/* =========================================================
   TRANSPARENT HEADER
========================================================= */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: transparent;

    transition: all .35s ease;
}


/* =========================================================
   TRANSPARENT HEADER MENU
========================================================= */

.main-header .nav-link {
    color: #ffffff !important;

    font-size: 14px;
    font-weight: 600;

    padding: 10px 14px !important;

    transition: color .3s ease;
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
    color: #ffffff !important;
}


/* =========================================================
   SCROLL HEADER
========================================================= */

.main-header.scrolled {
    background: #ffffff;

    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
}


/* =========================================================
   SCROLLED MENU COLOR
========================================================= */

.main-header.scrolled .nav-link {
    color: #4f5c63 !important;
}

.main-header.scrolled .nav-link:hover,
.main-header.scrolled .nav-link.active {
    color: #4f5c63 !important;
}


/* =========================================================
   ENQUIRE BUTTON
========================================================= */

.nav-enquire {
    color: #ffffff !important;

    background: #159bd7;

    border: 1px solid #159bd7;

    transition: all .3s ease;
}

.nav-enquire:hover {
    color: #ffffff !important;
    background: #52c43e;
    border-color: #52c43e;
}


/* =========================================================
   MOBILE TOGGLER
========================================================= */

.navbar-toggler {
    color: #ffffff;

    border: 0;

    box-shadow: none !important;
}


/* Scroll pannumbothu toggler */
.main-header.scrolled .navbar-toggler {
    color: #4f5c63;
}

/* =========================================================
   HEADER
========================================================= */

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: transparent;

    transition: background .35s ease,
                box-shadow .35s ease;
}


/* =========================================================
   NAVBAR
========================================================= */

.main-header .navbar {
    padding: 15px 0;
    transition: padding .35s ease;
}


/* =========================================================
   LOGO
========================================================= */

.main-header .navbar-brand img {
    width: 145px;
    height: auto;
    transition: all .35s ease;
}


/* =========================================================
   TRANSPARENT HEADER
   MENU WHITE
========================================================= */

.main-header .nav-link {
    color: #ffffff !important;

    font-size: 14px;
    font-weight: 600;

    padding: 10px 14px !important;

    transition: color .3s ease;
}

.main-header .nav-link:hover,
.main-header .nav-link.active {
    color: #ffffff !important;
}


/* =========================================================
   ENQUIRE
========================================================= */

.nav-enquire {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 11px 20px;

    color: #ffffff !important;

    background: #159bd7;

    border: 1px solid #159bd7;
    border-radius: 6px;

    font-size: 12px;
    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}

.nav-enquire:hover {
    color: #ffffff !important;

    background: #52c43e;
    border-color: #52c43e;

    transform: translateY(-2px);
}


/* =========================================================
   SCROLLED HEADER
========================================================= */

.main-header.scrolled {
    background: #ffffff;

    box-shadow:
        0 5px 25px rgba(0, 0, 0, .08);
}

.main-header.scrolled .navbar {
    padding: 9px 0;
}


/* =========================================================
   SCROLLED LOGO
========================================================= */

.main-header.scrolled .navbar-brand img {
    width: 125px;
}


/* =========================================================
   SCROLLED MENU
   #4f5c63
========================================================= */

.main-header.scrolled .nav-link {
    color: #4f5c63 !important;
}

.main-header.scrolled .nav-link:hover,
.main-header.scrolled .nav-link.active {
    color: #4f5c63 !important;
}


/* =========================================================
   MOBILE TOGGLER
========================================================= */

.navbar-toggler {
    border: 0;

    padding: 8px;

    color: #ffffff;

    font-size: 28px;

    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}


/* =========================================================
   SCROLLED MOBILE TOGGLER
========================================================= */

.main-header.scrolled .navbar-toggler {
    color: #4f5c63;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 991px) {

    .main-header .navbar {
        padding: 10px 0;
    }

    .main-header .navbar-brand img {
        width: 125px;
    }


    /* Mobile menu */

    .main-header .navbar-collapse {
        margin-top: 10px;

        padding: 15px;

        border-radius: 10px;

        background: rgba(255,255,255,.98);

        box-shadow:
            0 10px 30px rgba(0,0,0,.12);
    }


    /* Mobile menu always dark on white dropdown */

    .main-header .navbar-collapse .nav-link {
        color: #4f5c63 !important;
    }

    .main-header .navbar-collapse .nav-link:hover,
    .main-header .navbar-collapse .nav-link.active {
        color: #4f5c63 !important;
    }


    .main-header .nav-item.ms-lg-3 {
        margin-left: 0 !important;
        margin-top: 10px;
    }

    .nav-enquire {
        width: 100%;
    }
}