:root {
    --primary-color: #4DB6FF;
    --secondary-color: blue;
    --primary-bg: #F8FAFC;
    --secondary-bg: #fff;
    --primary-btn-hover: #0B2E5C;
}


.rha-navbar {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, .05);
}

.rha-logo {
    height: 60px;
    width: auto;
}

.rha-nav-link {
    color: #222;
    font-weight: 500;
    padding: 10px 18px !important;
    transition: .3s;
}

.rha-nav-link:hover {
    color: var(--primary-color);
}

.rha-btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.rha-btn:hover {
    background: var(--primary-btn-hover);
    color: #fff;
}

@media (max-width:991.98px) {

    .rha-logo {
        height: 50px;
    }

    .rha-mobile-nav {
        margin-top: 20px;
    }

    .rha-mobile-nav .nav-link {
        padding: 12px 0 !important;
    }

    .rha-mobile-btn {
        margin-top: 20px;
        width: 100%;
    }

}


/*--- Hero Section ---*/

.v1-hero-section {
    padding: 50px 10px;
    background: var(--primary-bg);
    overflow: hidden;
}

.v1-hero-content {
    max-width: 600px;
}

.v1-hero-subtitle {
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.v1-hero-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.1;
    color: #212529;
    margin-bottom: 25px;
}

.v1-hero-text {
    font-size: 16px;
    line-height: 1.8;
    color: #2e2e2e;
    margin-bottom: 35px;
    font-weight: 550;
}

.v1-hero-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 16px 36px;
    border-radius: 10px;
    font-weight: 600;
    transition: .3s;
}

.v1-hero-btn:hover {
    background: var(--primary-btn-hover);
    color: #fff;
}

.v1-hero-image-wrapper {
    text-align: center;
}

.v1-hero-image {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

/* Tablet */

@media (max-width:991.98px) {

    .v1-hero-section {
        padding: 90px 0;
        text-align: center;
    }

    .v1-hero-content {
        max-width: 100%;
    }

    .v1-hero-title {
        font-size: 48px;
    }

}

@media (max-width:767.98px) {

    .v1-hero-section {
        padding: 70px 0;
    }

    .v1-hero-title {
        font-size: 36px;
    }

    .v1-hero-text {
        font-size: 16px;
    }

    .v1-hero-btn {
        width: 100%;
        padding: 14px 20px;
    }

}

/*--- hero Section End ---*/

/*--- Stats Section Start ---*/

.v1-stats-section {
    padding: 20px 10px;
    background: var(--secondary-bg);
}

.v1-stats-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px 30px;
    text-align: center;
    height: 100%;
    border: 1px solid #E2E8F0;
    transition: .4s;
}

.v1-stats-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 76, 129, .12);
}

.v1-stats-icon {
    width: 70px;
    height: 70px;
    margin: auto;
    border-radius: 50%;
    background: rgba(15, 76, 129, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.v1-stats-icon i {
    font-size: 35px;
    color: var(--primary-color);
}

.v1-stats-number {
    font-size: 30px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
}

.v1-stats-text {
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #2e2e2e;
    margin-bottom: 0;
}

@media(max-width:991.98px) {

    .v1-stats-section {
        padding: 80px 0;
    }

    .v1-stats-card {
        padding: 40px 25px;
    }

    .v1-stats-number {
        font-size: 40px;
    }
}

@media(max-width:767.98px) {

    .v1-stats-section {
        padding: 70px 0;
    }

    .v1-stats-card {
        padding: 35px 20px;
    }

    .v1-stats-icon {
        width: 75px;
        height: 75px;
    }

    .v1-stats-icon i {
        font-size: 30px;
    }

    .v1-stats-number {
        font-size: 34px;
    }

    .v1-stats-text {
        font-size: 14px;
    }
}

/*--- Stats Section End ---*/

/*--- About Us Section Start ---*/

.v1-about-section {
    padding: 50px 10px;
    background: var(--secondary-bg);
}

.v1-about-subtitle {
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.v1-about-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 25px;
}

.v1-about-text {
    font-size: 16px;
    line-height: 1.9;
    color: #2e2e2e;
    margin-bottom: 20px;
}

.v1-about-highlight {
    border-left: 4px solid #4DB6FF;
    padding-left: 20px;
    margin: 30px 0;
}

.v1-about-highlight p {
    margin: 0;
    font-size: 16px;
    color: #2e2e2e;
}

.v1-about-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
}

.v1-about-btn:hover {
    background: var(--primary-btn-hover);
    color: #fff;
}

.v1-about-image {
    height: 550px;
    object-fit: cover;
    border-radius: 24px;
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, .5);
    border-radius: 50%;
    padding: 20px;
}

@media(max-width:991.98px) {

    .v1-about-section {
        padding: 50px 10px;
    }

    .v1-about-title {
        font-size: 35px;
    }

    .v1-about-image {
        height: 450px;
    }

}

@media(max-width:575.98px) {

    .v1-about-section {
        padding: 50px 10px;
    }

    .v1-about-title {
        font-size: 30px;
    }

    .v1-about-text {
        font-size: 16px;
    }

    .v1-about-image {
        height: 320px;
    }

}

/*--- Service Section Start ---*/

.v1-services-section {
    padding: 100px 0;
    background: var(--primary-bg);
}

.v1-services-subtitle {
    display: inline-block;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.v1-services-title {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.v1-services-description {
    font-size: 16px;
    color: #2e2e2e;
    line-height: 1.8;
    font-weight: 550;
}

.v1-service-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    height: 100%;
    border: 1px solid #E2E8F0;
    transition: .4s;
    position: relative;
    overflow: hidden;
}

.v1-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 4px;
    background: var(--primary-color);
    transition: .4s;
}

.v1-service-card:hover::before {
    width: 100%;
}

.v1-service-card:hover {
    transform: translateY(-10px);
    box-shadow: rgba(255, 255, 255, .08);
}

.v1-service-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: #EDF7FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.v1-service-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.v1-service-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0F172A;
}

.v1-service-text {
    color: #64748B;
    line-height: 1.8;
    margin-bottom: 25px;
}

.v1-service-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
}

.v1-service-link:hover {
    color: var(--primary-btn-hover);
}

@media(max-width:991.98px) {

    .v1-services-title {
        font-size: 40px;
    }

    .v1-service-card {
        padding: 30px;
    }

}

@media(max-width:767.98px) {

    .v1-services-section {
        padding: 70px 0;
    }

    .v1-services-title {
        font-size: 30px;
    }

    .v1-services-description {
        font-size: 16px;
    }

    .v1-service-title {
        font-size: 24px;
    }

    .v1-service-card {
        padding: 25px;
    }

}

/*--- Service Section End ---*/

/*--- Testimonial Section Start ---*/

.v1-testimonial-section {
    padding: 50px 10px;
    background: var(--secondary-bg);
}

.v1-testimonial-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: 2px;
}

.v1-testimonial-title {
    font-size: 40px;
    font-weight: 700;
    margin: 15px 0;
    color: #000000;
}

.v1-testimonial-description {
    font-size: 16px;
    color: #2e2e2e;
    line-height: 1.8;
    font-weight: 550;
}

.v1-testimonial-card {
    max-width: 850px;
    margin: auto;
    background: #fff;
    border-radius: 30px;
    padding: 60px;
    text-align: center;
    border: 1px solid #E2E8F0;
    box-shadow: 0 20px 60px rgba(15, 76, 129, .08);
}

.v1-testimonial-quote {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 30px;
}

.v1-testimonial-quote i {
    font-size: 42px;
    color: var(--primary-color);
}

.v1-testimonial-text {
    font-size: 24px;
    line-height: 1.9;
    color: #2e2e2e;
    margin-bottom: 40px;
}

.v1-testimonial-user {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.v1-testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v1-testimonial-name {
    margin-bottom: 5px;
    font-size: 20px;
    font-weight: 700;
}

.v1-testimonial-role {
    color: #64748B;
}

.v1-testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.v1-testimonial-controls button {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: #fff;
    font-size: 20px;
    opacity: 1;
}

.v1-testimonial-controls button:hover {
    background: var(--primary-btn-hover);
}

@media(max-width:991px) {

    .v1-testimonial-section {
        padding: 50px 10px;
    }

    .v1-testimonial-title {
        font-size: 35px;
    }

    .v1-testimonial-card {
        padding: 45px;
    }

    .v1-testimonial-text {
        font-size: 20px;
    }

}

@media(max-width:575px) {



    .v1-testimonial-title {
        font-size: 30px;
    }

    .v1-testimonial-description {
        font-size: 16px;
    }

    .v1-testimonial-card {
        padding: 30px 20px;
    }

    .v1-testimonial-text {
        font-size: 17px;
    }

    .v1-testimonial-avatar {
        width: 60px;
        height: 60px;
    }

}

/*--- Testimonial Section End ---*/

/*--- Contact Us section Start ---*/

.v1-contact-section {
    padding: 50px 10px;
    background: var(--primary-bg);
}

.v1-contact-subtitle {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 2px;
}

.v1-contact-title {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin: 15px 0;
}

.v1-contact-description {
    color: #2e2e2e;
    font-size: 18px;
    line-height: 1.8;
    font-weight: 550;
}

.v1-contact-info-card {
    background: var(--primary-btn-hover);
    color: #fff;
    border-radius: 30px;
    padding: 40px;
    height: 100%;
}

.v1-contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.v1-contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.v1-contact-icon i {
    font-size: 24px;
}

.v1-contact-info-item h5 {
    margin-bottom: 5px;
}

.v1-contact-info-item p {
    margin: 0;
    opacity: .85;
}

.v1-contact-social {
    display: flex;
    gap: 12px;
    margin-top: 40px;
}

.v1-contact-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
}

.v1-contact-form-card {
    background: #fff;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
}

.v1-contact-input {
    height: 60px;
    border-radius: 14px;
    border: 1px solid #E2E8F0;
}

textarea.v1-contact-input {
    height: auto;
    resize: none;
}

.v1-contact-input:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.v1-contact-btn {
    background: var(--primary-color);
    color: #fff;
    padding: 16px 35px;
    border-radius: 14px;
    font-weight: 600;
}

.v1-contact-btn:hover {
    background: var(--primary-btn-hover);
    color: #fff;
}

@media(max-width:991px) {

    .v1-contact-title {
        font-size: 40px;
    }

    .v1-contact-info-card,
    .v1-contact-form-card {
        padding: 30px;
    }

}

@media(max-width:767px) {

    .v1-contact-section {
        padding: 70px 0;
    }

    .v1-contact-title {
        font-size: 30px;
    }

    .v1-contact-description {
        font-size: 16px;
    }

    .v1-contact-info-card,
    .v1-contact-form-card {
        border-radius: 20px;
        padding: 25px;
    }

    .v1-contact-btn {
        width: 100%;
    }

}

/*--- Conatct Us Section End ---*/

/*--- Footer Section Start ---*/

.v1-footer-section {
    background: var(--secondary-bg);
    padding: 50px 0 30px;
    color: #fff;
}

.v1-footer-logo {
    max-width: 220px;
    margin-bottom: 25px;
}

.v1-footer-about {
    color: #2e2e2e;
    line-height: 1.9;
    margin-bottom: 30px;
    font-size: 16px;
}

.v1-footer-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
}

.v1-footer-title::after {
    content: '';
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    bottom: -10px;
}

.v1-footer-links,
.v1-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.v1-footer-links li {
    margin-bottom: 15px;
}

.v1-footer-links a {
    color: #2e2e2e;
    text-decoration: none;
    transition: .3s;
}

.v1-footer-links a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.v1-footer-contact li {
    display: flex;
    gap: 12px;
    color: #2e2e2e;
    margin-bottom: 18px;
    line-height: 1.7;
}

.v1-footer-contact i {
    color: var(--primary-color);
}

.v1-footer-social {
    display: flex;
    gap: 12px;
}

.v1-footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.v1-footer-social a:hover {
    background: var(--primary-btn-hover);
    transform: translateY(-5px);
}

.v1-footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.v1-footer-bottom p {
    margin: 0;
    color: #2e2e2e;
}

@media(max-width:991px) {

    .v1-footer-section {
        padding: 50px 0 30px;
    }

}

@media(max-width:767px) {

    .v1-footer-section {
        text-align: center;
    }

    .v1-footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .v1-footer-social {
        justify-content: center;
    }

    .v1-footer-contact li {
        justify-content: center;
    }

    .v1-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

}


/*--- Footer Section End ---*/

#home,
#about,
#services,
#testimonial,
#contact {
    scroll-margin-top: 100px;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

.rha-nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 700;
    position: relative;
}

.rha-nav-link.active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 24px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 50px;
}

.offcanvas .nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 700;
    border: 2px solid var(--primary-btn-hover);
    border-radius: 10px;
    padding-left: 15px !important;
}


/*============= Plumbing Service ============*/

/*--- HERO SECTION ---*/

.s1-hero-section {
    position: relative;
    padding: 60px 0 140px;
    background: linear-gradient(135deg, #081C3A 0%, #0F3D75 50%, #0A274F 100%);
    overflow: hidden;
}

.s1-hero-section::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 450px;
    height: 450px;
    background: rgba(255, 255, 255, .04);
    border-radius: 50%;
}

.s1-hero-section::after {
    content: "";
    position: absolute;
    bottom: -200px;
    left: -200px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, .03);
    border-radius: 50%;
}

/*--- BREADCRUMB ---*/

.s1-hero-breadcrumb {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.s1-hero-breadcrumb a {
    color: #fff;
    text-decoration: none;
    opacity: .8;
    transition: .3s;
}

.s1-hero-breadcrumb a:hover {
    opacity: 1;
}

.s1-hero-breadcrumb span {
    color: #BFD8FF;
}

.s1-hero-active {
    color: #4DB6FF !important;
}

/*--- CONTENT ---*/

.s1-hero-content {
    position: relative;
    z-index: 5;
}

.s1-hero-subtitle {

    display: inline-block;
    color: #4DB6FF;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 18px;

}

.s1-hero-title {

    font-size: 70px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;

}

.s1-hero-line {

    width: 90px;
    height: 5px;
    border-radius: 50px;
    background: #2EA9FF;
    margin-bottom: 30px;

}

.s1-hero-text {

    color: #D6E6FF;
    font-size: 18px;
    line-height: 1.9;
    margin-bottom: 20px;

}

/*--- FEATURES ---*/

.s1-hero-feature {

    display: flex;
    gap: 15px;
    align-items: center;

}

.s1-hero-feature-icon {

    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: center;

}

.s1-hero-feature-icon i {

    color: #4DB6FF;
    font-size: 24px;

}

.s1-hero-feature h6 {

    color: #fff;
    margin-bottom: 3px;
    font-size: 16px;

}

.s1-hero-feature span {

    color: #BFD8FF;
    font-size: 14px;

}

/*--- BUTTONS ---*/

.s1-hero-btn-group {

    display: flex;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;

}

.s1-hero-primary-btn {

    background: #2EA9FF;
    color: #fff;
    padding: 15px 34px;
    border-radius: 12px;
    font-weight: 600;
    transition: .35s;

}

.s1-hero-primary-btn:hover {

    background: #fff;
    color: #0B2E5C;

}

.s1-hero-secondary-btn {

    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .25);
    padding: 15px 34px;
    border-radius: 12px;
    font-weight: 600;

}

.s1-hero-secondary-btn:hover {

    background: #fff;
    color: #0B2E5C;

}

/*--- IMAGE ---*/

.s1-hero-image-wrapper {

    position: relative;
    text-align: right;

}

.s1-hero-image {

    width: 100%;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);

}

.s1-hero-experience-card {

    position: absolute;
    left: -20px;
    bottom: 40px;

    background: #fff;

    border-radius: 18px;

    padding: 25px 35px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);

}

.s1-hero-experience-card h2 {

    font-size: 42px;
    color: #0B2E5C;
    margin-bottom: 5px;

}

.s1-hero-experience-card p {

    margin: 0;
    color: #64748B;
    font-weight: 500;

}

/*--- FLOATING SERVICES ---*/

.s1-hero-services {

    margin-top: -90px;
    position: relative;
    z-index: 10;

}

.s1-hero-service-card {

    background: #fff;
    border-radius: 22px;

    padding: 35px 25px;

    text-align: center;

    height: 100%;

    box-shadow: 0 15px 40px rgba(15, 23, 42, .08);

    transition: .35s;

}

.s1-hero-service-card:hover {

    transform: translateY(-10px);

    box-shadow: 0 25px 50px rgba(15, 23, 42, .15);

}

.s1-hero-service-icon {

    width: 80px;
    height: 80px;

    margin: auto;

    margin-bottom: 20px;

    border-radius: 20px;

    background: #EDF7FF;

    display: flex;

    align-items: center;

    justify-content: center;

}

.s1-hero-service-icon i {

    color: #2EA9FF;

    font-size: 36px;

}

.s1-hero-service-card h5 {

    font-weight: 700;
    margin-bottom: 10px;

}

.s1-hero-service-card p {

    margin: 0;

    color: #64748B;

    line-height: 1.7;

}

/*--- TABLET (992px) ---*/

@media (max-width:991.98px) {

    .s1-hero-section {
        padding: 50px 0 120px;
    }

    .s1-hero-breadcrumb {
        margin-bottom: 40px;
    }

    .s1-hero-title {
        font-size: 52px;
    }

    .s1-hero-text {
        font-size: 17px;
    }

    .s1-hero-image-wrapper {
        margin-top: 20px;
        text-align: center;
    }

    .s1-hero-image {
        max-width: 650px;
    }

    .s1-hero-experience-card {

        left: -10px;
        bottom: 20px;

        padding: 20px 20px;

    }

    .s1-hero-experience-card h2 {

        font-size: 34px;

    }

    .s1-hero-services {

        margin-top: -60px;

    }

    .s1-hero-service-card {

        padding: 30px 20px;

    }

}


/*--- MOBILE (768px) ---*/

@media (max-width:767.98px) {

    .s1-hero-section {

        padding: 40px 0 80px;

        text-align: center;

    }

    .s1-hero-breadcrumb {

        justify-content: center;

        gap: 8px;

        margin-bottom: 30px;

    }

    .s1-hero-subtitle {

        font-size: 13px;

        letter-spacing: 1px;

    }

    .s1-hero-title {

        font-size: 38px;

        line-height: 1.2;

    }

    .s1-hero-line {

        margin: 20px auto 25px;

    }

    .s1-hero-text {

        font-size: 16px;

    }

    .s1-hero-feature {

        justify-content: center;

        text-align: left;

    }

    .s1-hero-btn-group {

        justify-content: center;

        margin-top: 35px;

    }

    .s1-hero-primary-btn,
    .s1-hero-secondary-btn {

        width: 100%;

        padding: 16px;

    }

    .s1-hero-image {

        margin-top: 20px;

    }

    .s1-hero-experience-card {

        position: relative;

        left: 0;
        bottom: 0;

        margin-top: 20px;

        width: 100%;

    }

    .s1-hero-services {

        margin-top: 40px;

    }

    .s1-hero-service-card {

        border-radius: 18px;

    }

}


/*--- EXTRA SMALL DEVICES ---*/

@media (max-width:575.98px) {

    .s1-hero-title {

        font-size: 32px;

    }

    .s1-hero-text {

        font-size: 15px;

    }

    .s1-hero-feature {

        flex-direction: column;

        text-align: center;

    }

    .s1-hero-feature-icon {

        margin-bottom: 10px;

    }

    .s1-hero-experience-card {

        text-align: center;

    }

}


/*--- HOVER EFFECTS ---*/

.s1-hero-image {

    transition: .5s;

}

.s1-hero-image:hover {

    transform: scale(1.02);

}

.s1-hero-primary-btn,
.s1-hero-secondary-btn {

    transition: .35s;

}

.s1-hero-feature {

    transition: .3s;

}

.s1-hero-feature:hover {

    transform: translateY(-5px);

}

.s1-hero-service-icon {

    transition: .35s;

}

.s1-hero-service-card:hover .s1-hero-service-icon {

    transform: rotate(10deg) scale(1.08);

}


/*--- SMOOTH ANIMATION ---*/

.s1-hero-content {

    animation: s1HeroFadeLeft .9s ease;

}

.s1-hero-image-wrapper {

    animation: s1HeroFadeRight .9s ease;

}

@keyframes s1HeroFadeLeft {

    from {

        opacity: 0;
        transform: translateX(-60px);

    }

    to {

        opacity: 1;
        transform: translateX(0);

    }

}

@keyframes s1HeroFadeRight {

    from {

        opacity: 0;
        transform: translateX(60px);

    }

    to {

        opacity: 1;
        transform: translateX(0);

    }

}

/*--- About Us Section Start ---*/


.s1-about-section {
    padding: 120px 10px;
    background: #ffffff;
    overflow: hidden;
}

/*==========================================
        CONTENT
==========================================*/

.s1-about-content {
    padding-right: 35px;
}

.s1-about-subtitle {

    display: inline-block;

    color: #1683E2;

    font-size: 15px;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;

    margin-bottom: 18px;

}

.s1-about-title {

    font-size: 40px;

    line-height: 1.2;

    font-weight: 700;

    color: #0F172A;

    margin-bottom: 25px;

}

.s1-about-description {

    font-size: 16px;

    color: #64748B;

    line-height: 1.9;

    margin-bottom: 40px;

}

/*==========================================
            CHECK LIST
==========================================*/

.s1-about-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.s1-about-list-item {

    display: flex;

    align-items: center;

    gap: 18px;

}

.s1-about-list-icon {

    width: 42px;

    height: 42px;

    background: #EAF5FF;

    color: #1683E2;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    font-size: 18px;

}

.s1-about-list-item span {

    color: #334155;

    font-size: 18px;

    font-weight: 500;

}


/*==========================================
            IMAGE
==========================================*/

.s1-about-image-wrapper {

    position: relative;

}

.s1-about-image {

    width: 100%;

    border-radius: 28px;

    box-shadow: 0 30px 70px rgba(15, 23, 42, .12);

    transition: .4s;

}

.s1-about-image:hover {

    transform: scale(1.02);

}

/*==========================================
        FLOATING CARD
==========================================*/

.s1-about-floating-card {

    position: absolute;

    left: 35px;

    bottom: 35px;

    background: #0F3D75;

    color: #fff;

    border-radius: 22px;

    padding: 24px 30px;

    display: flex;

    align-items: center;

    gap: 18px;

    box-shadow: 0 20px 45px rgba(15, 23, 42, .25);

    min-width: 280px;

}

.s1-about-floating-icon {

    width: 65px;

    height: 65px;

    border-radius: 18px;

    background: rgba(255, 255, 255, .15);

    display: flex;

    align-items: center;

    justify-content: center;

}

.s1-about-floating-icon i {

    font-size: 34px;

    color: #fff;

}

.s1-about-floating-card h3 {

    margin: 0;

    font-size: 42px;

    font-weight: 700;

}

.s1-about-floating-card span {

    color: #D9E8FF;

    font-size: 17px;

}

/*==========================================
        TABLET (≤991px)
==========================================*/

@media (max-width:991.98px) {

    .s1-about-section {
        padding: 90px 0;
    }

    .s1-about-content {
        padding-right: 0;
    }

    .s1-about-title {
        font-size: 42px;
    }

    .s1-about-description {
        font-size: 17px;
    }

    .s1-about-image-wrapper {
        margin-top: 30px;
    }

    .s1-about-floating-card {

        left: 25px;
        bottom: 25px;

        min-width: 250px;

        padding: 20px;

    }

    .s1-about-floating-card h3 {
        font-size: 34px;
    }

    .s1-about-floating-icon {

        width: 58px;
        height: 58px;

    }

    .s1-about-floating-icon i {
        font-size: 30px;
    }

    .s1-about-badge {

        right: 20px;
        top: 20px;

    }

}


/*==========================================
            MOBILE (≤767px)
==========================================*/

@media (max-width:767.98px) {

    .s1-about-section {

        padding: 70px 0;

    }

    .s1-about-content {

        text-align: center;

    }

    .s1-about-subtitle {

        font-size: 13px;

    }

    .s1-about-title {

        font-size: 34px;

    }

    .s1-about-description {

        font-size: 16px;

        margin-bottom: 30px;

    }

    .s1-about-list {

        gap: 18px;

    }

    .s1-about-list-item {

        justify-content: flex-start;

        text-align: left;

    }

    .s1-about-buttons {

        justify-content: center;

    }

    .s1-about-primary-btn,
    .s1-about-secondary-btn {

        width: 100%;

        padding: 15px;

    }

    .s1-about-image-wrapper {

        margin-top: 20px;

    }

    .s1-about-floating-card {

        position: relative;

        left: 0;
        bottom: 0;

        width: 100%;

        margin-top: 20px;

        min-width: 100%;

    }

    .s1-about-badge {

        top: 20px;

        right: 20px;

        padding: 16px 20px;

    }

    .s1-about-badge h4 {

        font-size: 28px;

    }

}


/*==========================================
        EXTRA SMALL (≤575px)
==========================================*/

@media (max-width:575.98px) {

    .s1-about-title {

        font-size: 30px;

    }

    .s1-about-description {

        font-size: 15px;

    }

    .s1-about-list-item {

        align-items: flex-start;

        gap: 12px;

    }

    .s1-about-list-item span {

        font-size: 16px;

    }

    .s1-about-floating-card {

        flex-direction: column;

        text-align: center;

        gap: 15px;

        padding: 20px;

    }

    .s1-about-floating-card h3 {

        font-size: 30px;

    }

    .s1-about-floating-card span {

        font-size: 15px;

    }

    .s1-about-badge {

        width: 90px;

        padding: 12px;

    }

    .s1-about-badge h4 {

        font-size: 22px;

    }

    .s1-about-badge p {

        font-size: 12px;

    }

}


/*==========================================
            HOVER EFFECTS
==========================================*/

.s1-about-list-item {

    transition: .35s;

}

.s1-about-list-item:hover {

    transform: translateX(8px);

}

.s1-about-list-item:hover .s1-about-list-icon {

    background: #1683E2;

    color: #fff;

}

.s1-about-floating-card {

    transition: .35s;

}

.s1-about-floating-card:hover {

    transform: translateY(-8px);

}

.s1-about-badge {

    transition: .35s;

}

.s1-about-badge:hover {

    transform: scale(1.08);

}

.s1-about-image {

    transition: .5s;

}

.s1-about-image:hover {

    transform: scale(1.03);

}


/*==========================================
        ENTRANCE ANIMATION
==========================================*/

.s1-about-content {

    animation: s1FadeLeft .8s ease;

}

.s1-about-image-wrapper {

    animation: s1FadeRight .8s ease;

}

@keyframes s1FadeLeft {

    from {

        opacity: 0;

        transform: translateX(-60px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}

@keyframes s1FadeRight {

    from {

        opacity: 0;

        transform: translateX(60px);

    }

    to {

        opacity: 1;

        transform: translateX(0);

    }

}

/*--- About Section End ---*/

/*---- CTA Section Start ----*/

/*==============================
        CTA SECTION
===============================*/

.s3-cta-section {

    padding: 100px 0;

}

.s3-cta-wrapper {

    background: linear-gradient(135deg, #0A2D63, #0F4FA8);

    border-radius: 30px;

    padding: 70px;

    position: relative;

    overflow: hidden;

    box-shadow: 0 25px 60px rgba(0, 0, 0, .18);

}

.s3-cta-wrapper::before {

    content: "";

    position: absolute;

    width: 320px;

    height: 320px;

    background: rgba(255, 255, 255, .05);

    border-radius: 50%;

    top: -120px;

    right: -100px;

}

.s3-cta-wrapper::after {

    content: "";

    position: absolute;

    width: 240px;

    height: 240px;

    background: rgba(255, 255, 255, .04);

    border-radius: 50%;

    bottom: -120px;

    left: -80px;

}

.s3-cta-content {

    position: relative;

    z-index: 2;

}

.s3-cta-subtitle {

    color: #72D2FF;

    font-weight: 700;

    letter-spacing: 2px;

    font-size: 14px;

    display: block;

    margin-bottom: 15px;

}

.s3-cta-title {

    color: #fff;

    font-size: 48px;

    font-weight: 700;

    margin-bottom: 20px;

}

.s3-cta-text {

    color: #D8E9FF;

    font-size: 18px;

    line-height: 1.8;

    margin: 0;

}

.s3-cta-buttons {

    display: flex;

    flex-direction: column;

    gap: 18px;

    justify-content: center;

    align-items: flex-end;

    height: 100%;

    position: relative;

    z-index: 2;

}

.s3-cta-btn-primary {

    background: #fff;

    color: #0A2D63;

    padding: 16px 35px;

    border-radius: 12px;

    font-weight: 600;

    transition: .3s;

}

.s3-cta-btn-primary:hover {

    background: var(--primary-btn-hover);

    color: #FFF;

}

.s3-cta-btn-secondary {

    background: transparent;

    border: 2px solid rgba(255, 255, 255, .25);

    color: #fff;

    padding: 16px 35px;

    border-radius: 12px;

    font-weight: 600;

    transition: .3s;

}

.s3-cta-btn-secondary:hover {

    background: #fff;

    color: #0A2D63;

}

.s3-cta-btn-secondary i {

    margin-right: 8px;

}

/*==============================
        Responsive
===============================*/

@media(max-width:991px) {

    .s3-cta-wrapper {

        padding: 50px 35px;

        text-align: center;

    }

    .s3-cta-title {

        font-size: 38px;

    }

    .s3-cta-buttons {

        align-items: center;

        margin-top: 20px;

    }

}

@media(max-width:767px) {

    .s3-cta-wrapper {

        padding: 40px 25px;

    }

    .s3-cta-title {

        font-size: 30px;

    }

    .s3-cta-text {

        font-size: 16px;

    }

    .s3-cta-btn-primary,

    .s3-cta-btn-secondary {

        width: 100%;

    }

}

/*--- CTA Section End ---*/

