:root {
    --navy-blue : #05305F;
    --light-blue : #236FC2;
    --light-blue-1 : #EEF5FC;
    --maroon : #872019;
    --maroon-1 : #710B04;
    --red : #B93207;
    --white : #FFFFFF;

    /* Fonts */
    --font-size-h2 : 65px;
}

.btn-blue {
    background: var(--light-blue)!important;
    color: var(--white);
    position: relative;
    line-height: 1.5em;
    padding-left: 20px!important;

    &::after {
        content: url(https://inclinator.com/content/uploads/2025/10/arrow_forward.svg);
        position: absolute;
        right: 20px;
        top: 11px;
    }

    &:hover {
        opacity: 0.8;
    }
}

a.btn-white {
    background: var(--white)!important;
    color: var(--light-blue)!important;
    position: relative;
    line-height: 1.5em;
    padding-left: 20px!important;

    &::after {
        content: url(https://inclinator.com/content/uploads/2025/10/arrow_forward-blue.svg);
        position: absolute;
        right: 20px;
        top: 11px;
    }

    &:hover {
        opacity: 0.8;
    }
}

a.btn-dark-blue {
    background: var(--navy-blue)!important;
    color: var(--white)!important;
    position: relative;
    line-height: 1.5em;
    padding-left: 20px!important;

    &::after {
        content: url(https://inclinator.com/content/uploads/2025/10/arrow_forward.svg);
        position: absolute;
        right: 20px;
        top: 11px;
    }

    &:hover {
        opacity: 0.8;
    }
}

/* Half Text Half Image With Stats */
.half-text-half-image-with-stats {
    padding-top: 40px;
    padding-bottom: 40px;

    @media( min-width : 1200px ) {
        padding-top: 125px;
        padding-bottom: 125px;
    }

    & h2 {
        color: var(--navy-blue);
        line-height: 1em;
        margin-bottom: 20px;

        @media( max-width : 768px ) {
            font-size: 32px;
        }

        @media( min-width : 768px ) {
            font-size: 45px;
        }

        @media( min-width : 1200px ) {
            font-size: var(--font-size-h2);
        }
    }

    .container {
        max-width: 1240px;
    }

    & .btn {
        margin-top: 20px;
        font-weight: 900;
        letter-spacing: 0.02em;
        display: inline-block;
    }

    & .stats-container {
        display: flex;
        gap: 20px;
        margin-top: 30px;
        position: relative;

        @media( max-width : 768px ) {
            margin-top: 70px;
        }

        & .stat-item {
            width: 173px;

            @media( min-width : 768px ) {
                width: 100%;
            }

            & img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            &:nth-child(2) {
                margin-top: 30px;
            }

            &:nth-child(3) {
                margin-top: 60px;
            }
        }

        & .stat-logo {
            position: absolute;
            bottom: -10%;
            left: 10%;

            @media( max-width : 768px ) {
                max-width: 100px;
                height: auto;

                & img {
                    width: 100%;
                }
            }
        }

        & .stat-text {
            position: absolute;
            right: -50%;
            top: 30%;
            transform: rotate(-90deg);
            color: rgba(5, 48, 95, 0.25);
            font-weight: 900;
            font-size: 100px;
            
            & span {
                color: var(--navy-blue);
            }

            @media( max-width : 768px ) {
                font-size: 50px;
                right: -32%;
                top: 0;
            }
        }

    }

    @media( max-width : 1199px ) {
        & .row {
            & > div {
                width: 100%
            }
        }
    }
}

/* Half Text Half Image Carousel */
.half-text-half-image-carousel {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: var(--maroon);

    @media( min-width : 1200px ) {
        padding-top: 125px;
        padding-bottom: 125px;
    }

    .container {
        max-width: 1240px;
    }

    & h2 {
        color: var(--white);
        line-height: 1em;
        margin-bottom: 20px;

        @media( max-width : 768px ) {
            font-size: 32px;
        }

        @media( min-width : 768px ) {
            font-size: 45px;
        }

        @media( min-width : 1200px ) {
            font-size: var(--font-size-h2);
        }
    }

    & p {
        color: var(--white);
    }

    & .btn {
        margin-top: 20px;
        font-weight: 900;
        letter-spacing: 0.02em;
        display: inline-block;
    }

    @media( max-width : 768px ) {
        & .row {
            gap: 30px;
            display: flex;
            flex-wrap: wrap;

            & > div {
                width: 100%
            }
        }
    }
}

.image-slider-container {
    position: relative;
    padding-bottom: 40px;

    &::before {
        content: '';
        position: absolute;
        background-color: var(--maroon-1);
        border-bottom-left-radius: 50px;
        width: 100%;
        height: 100%;
        left: 27%;
    }

    @media( min-width : 1200px ) {
        & .right-overlay {
            content: '';
            top: -125px;
            position: absolute;
            background-color: var(--maroon-1);
            width: 100%;
            height: 809px;
            right: -121%;
        }
    }

    & .top-overlay {
        position: absolute;
        background-color: var(--maroon-1);
        width: 100%;
        height: 125px;
        top: -125px;
        left: 27%;

        @media( max-width : 768px ) {
            display: none;
        }
    }

    & .slide-arrows {
       display: flex;
       gap: 20px;
       padding-left: 20px;

       @media( min-width : 1200px ) {
            padding-left: 200px;
       }
    }

    & .slick-arrow {
        position: relative;
        background: transparent;
        border-radius: 50%;
        border: 1px solid var(--white)!important;
        height: 58px;
        width: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background-color 0.3s ease;
        padding: 17px;

        & img {
            height: 100%;
            width: 100%;
        }

        &:hover {
            background-color: var(--red);
            border: 1px solid var(--red)!important;
        }

        &.slick-prev {
            & img {
                transform: rotate(180deg);
            }
        }
    }
}

.icon-text-container {
    margin-top: 20px;

    @media( min-width : 768px ) {
        margin-top: 75px;
    }

    & .icon-text-item {
        display: flex;
        gap: 12px;
        background-color: var(--light-blue);
        border-radius: 8px;
        transition: background-color 0.3s ease;
        padding: 20px 18px;

        &:hover {
            background-color: var(--navy-blue);

            & .icon-text-item-icon {
                background-color: var(--light-blue);
            }
        }

        & .icon-text-item-icon {
            width: 59px;
            height: 59px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 10px;
            background-color: var(--navy-blue); 
            border-radius: 50%;

            & img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }
        }

        & p {
            color: var(--white);
            padding: 0;
            display: flex;
            align-items: center;
            font-size: 23px;
            font-weight: 900;
        }
    }
}

/* Testimonials  */

.testimonial-section {
    margin-top: 40px;
    margin-bottom: 40px;
    background-color: var(--white)!important;
    padding: 0!important;

    @media( min-width : 1200px ) {
        margin-top: 125px!important;
        margin-bottom: 125px!important;
    }
}

.testimonial {
    border: 2px solid var(--light-blue);
    border-radius: 15px;
}


.testimonial-section-heading {
    @media( min-width : 1200px ) {
        font-size: var(--font-size-h2)!important;
        color: var(--navy-blue)!important;
        margin-bottom: 85px!important;
    }
}

/* Contained Half Media Half Text */
.contained-half-media-half-text {
    margin-top: 40px;
    margin-bottom: 40px;
    padding: 0!important;

    @media( min-width : 1200px ) {
        margin-top: 125px;
        margin-bottom: 125px;
    }

    & .container {
        max-width: 1240px;
    }

    & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    & h2 {
        color: var(--navy-blue)!important;
        line-height: 1.1em;
        display: inline-block;
        margin-bottom: 25px;

        @media( max-width : 768px ) {
            font-size: 32px;
        }

        @media( min-width : 768px ) {
            font-size: 45px;
        }

        @media( min-width : 1200px ) {
            font-size: var(--font-size-h2);
        }
    }

    .row {
        margin-left: -10px;
        margin-right: -10px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;

        @media( max-width : 768px ) {
            gap: 30px;
        }

        @media( max-width : 1199px ) {
            flex-direction: column-reverse;
        }

        @media( min-width : 1200px ) {
            margin-left: -30px!important;
            margin-right: -30px!important;
        }

        & .col-md-6 {
            @media( min-width : 1200px ) {
                padding-left: 30px!important;
                padding-right: 30px!important;
            }
        }
    }

    & .btn {
        margin-top: 20px;
        font-weight: 900;
        letter-spacing: 0.02em;
        display: inline-block;
    }

    & .video-bttn {
        border-radius: 8px;
        overflow: hidden;
        position: relative;
        display: block;
    }

    & .play-button {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 50px;
        height: 50px;
        object-fit: contain;

        @media( min-width : 768px ) {
            width: 141px;
            height: 141px;
        }
    }
}

/* CTA Banner */
.cta-banner-container {
    padding-top: 60px;
    padding-bottom: 100px;
    position: relative;

    @media( min-width : 1200px ) {
        padding-top: 125px;
        padding-bottom: 125px;
    }


   & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
   }

    & .container {
        max-width: 1240px;
    }

    & .content-container {
        background: var( --maroon);
        padding: 20px;
        border-radius: 3px;

        @media( min-width : 768px ) {
            padding: 75px 60px;
        }

        & h2 {
            color: var(--white)!important;
            @media( min-width : 1200px ) {
                font-size: var(--font-size-h2)!important;
                line-height: 1.1em;
                display: inline-block;
                margin-bottom: 25px;
            }
        }

        & p {
            color: var(--white)!important;
        }
        
        & ul li {
            color: var(--white)!important;
        }
    }

    & .btn {
        margin-top: 20px;
        font-weight: 900;
        letter-spacing: 0.02em;
        display: inline-block;
    }

    .text-overlay {
        position: absolute;
        bottom: -110px;
        right: 15%;
        transform: translate(-50%, -50%);
        color: var(--white)!important;
        font-size: 100px!important;
        font-weight: 900!important;
        line-height: 1em!important;
        text-transform: uppercase!important;
        z-index: 1;

        & span {
            opacity: 0.7;
            position: relative;
            bottom: -28px;
        }

        @media( max-width : 768px ) {
            bottom: -44px;
            font-size: 38px !important;

            & span {
                bottom: 0;
            }
        }
    }

}

/* Icon Banner */
.icon-banner-container {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: var(--light-blue-1);

    @media( min-width : 1200px ) {
        padding-top: 125px;
        padding-bottom: 125px;
    }

    & .icon-banner-item {
        width: 100%;
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 20px;

        @media( max-width : 768px ) {
            padding: 0 20px;
        }

        @media( min-width : 1200px ) {
            width: 20%;
            padding-left: 15px;
            padding-right: 15px;
        }

        & a {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;

            &:hover {
                text-decoration: none;
                opacity: 0.8;
            }
        }

        @media( min-width : 1200px ) {
            &:not(:last-child) {
                &::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    right: 0;
                    width: 1px;
                    height: 100%;
                    background-color: var(--navy-blue);
                }
            }
        }

        
    }

    & .container {
        max-width: 1240px;
    }

    & .row {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;

        @media( max-width : 768px ) {
            gap: 20px;
        }
    }

    & .icon-banner-item-icon {
        width: 94px;
        height: 94px;
        padding: 20px;
        border-radius: 50%;
        background: var( --light-blue );

        & img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    & .icon-banner-title {
        font-size: 21px;
        font-weight: 900;
        color: var(--navy-blue);
        text-align: center;

        @media( min-width : 768px ) {
            font-size: 28px;
        }
    }



}
