/* =====================================
   GLOBAL
===================================== */

body,
p,
li,
a,
span,
input,
textarea,
select,
button {
    font-family: "DM Sans", sans-serif;
}


a {
    text-decoration:none;
}

/* HEADINGS */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
    font-weight: 500;
}


p,
li,
a,
span {
    font-weight: 400;
}

.ws-header {
    width: 100%;
    position: relative;
    z-index: 999;
    font-family: "DM Sans", sans-serif;
}

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

.ws-top-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
    background: linear-gradient(
        90deg,
        #26a9e0 0%,
        #32bdd0 50%,
        #49E398 100%
    );
    color: #fff;
    padding: 11px 0;
}

.ws-marquee-track {
    width: max-content;
    display: flex;
    align-items: center;
    animation: wsMarquee 65s linear infinite;
    will-change: transform;
}

.ws-marquee-group {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.ws-marquee-group span {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    margin-right: 75px;

    font-size: 15px;
    font-weight: 600;
}

.ws-marquee-group i {
    margin-right: 9px;
    color: #fff;
}


/* SEPARATOR */

.ws-marquee-group span::after {
    content: "";
    width: 5px;
    height: 5px;

    margin-left: 75px;

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

    border-radius: 50%;
}


/* ANIMATION */

@keyframes wsMarquee {

    from {
        transform: translateX(0);
    }

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

}


/* PAUSE ON HOVER */

.ws-top-marquee:hover .ws-marquee-track {
    animation-play-state: paused;
}


/* MOBILE */

@media (max-width: 767px) {

    .ws-top-marquee {
        padding: 9px 0;
    }

     .ws-marquee-track {
        animation-duration: 50s;
    }

    .ws-marquee-group span {
        font-size: 13px;
        margin-right: 45px;
    }

    .ws-marquee-group span::after {
        margin-left: 45px;
    }

}

.ws-info-bar {
    background: #062b3f;
    color: #fff;
    padding: 13px 0;
    font-size: 15px;
    font-weight: 600;
}

.ws-info-content,
.ws-info-left,
.ws-info-right {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.ws-info-content i {
    color: #49E398;
    margin-right: 7px;
}

.ws-navbar {
    background: #fff;
    padding: 10px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.ws-brand {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ws-logo {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, #26a9e0, #49E398);
    color: #fff;
    border-radius: 18px 4px 18px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    position: relative;
    box-shadow: 0 10px 25px rgba(38, 169, 224, 0.28);
}

.ws-logo::after {
    content: "";
    width: 18px;
    height: 18px;
    background: rgba(73, 227, 152, 0.8);
    border-radius: 50%;
    position: absolute;
    right: -7px;
    top: -7px;
}

.ws-brand h4 {
    margin: 0;
    color: #082032;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.ws-brand p {
    margin: 7px 0 0;
    color: #26a9e0;
    font-size: 15px;
    font-weight: 700;
}

.ws-navbar .nav-link {
    color: #253040;
    font-size: 17px;
    font-weight: 700;
    padding: 10px 17px !important;
    position: relative;
}

.ws-navbar .nav-link::after {
    content: "";
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #26a9e0, #49E398);
    position: absolute;
    left: 17px;
    bottom: 3px;
    transition: 0.3s;
}

.ws-navbar .nav-link:hover,
.ws-navbar .nav-link.active {
    color: #26a9e0;
}

.ws-navbar .nav-link:hover::after,
.ws-navbar .nav-link.active::after {
    width: 28px;
}

.ws-quote-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #26a9e0, #49E398);
    color: #fff;
    padding: 15px 34px;
    border-radius: 8px 22px 8px 22px;
    font-size: 16px;
    font-weight: 800;
    transition: 0.3s;
}

.ws-quote-btn:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(38, 169, 224, 0.3);
}

/* Responsive */
@media (max-width: 991px) {
    .ws-top-content,
    .ws-info-content,
    .ws-info-left,
    .ws-info-right {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .ws-info-right {
        display: none;
    }

    .ws-brand h4 {
        font-size: 25px;
    }

    .ws-logo {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }

    .navbar-collapse {
        padding-top: 20px;
    }

    .ws-navbar .nav-link {
        padding: 12px 0 !important;
    }

    .ws-navbar .nav-link::after {
        left: 0;
    }
}

@media (max-width: 575px) {
    .ws-top-strip {
        display: none;
    }

    .ws-info-bar {
        font-size: 13px;
    }

    .ws-info-left {
        gap: 12px;
    }

    .ws-brand p {
        font-size: 13px;
    }

    .ws-brand h4 {
        font-size: 22px;
    }
}


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



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

.ws-footer {
    position: relative;
    background: #062b3f;
    color: #fff;
}


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

.ws-footer-cta {
    background: #26a9e0;
    padding: 30px 0;
}

.ws-footer-cta-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.ws-footer-cta-icon {
    flex: 0 0 68px;
    width: 68px;
    height: 68px;

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

    background: #fff;
    color: #26a9e0;

    border-radius: 50%;

    font-size: 27px;
}

.ws-footer-cta-content span {
    display: block;

    margin-bottom: 5px;

    color: #dff6ff;

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

    text-transform: uppercase;
    letter-spacing: 1px;
}

.ws-footer-cta-content h3 {
    margin: 0;

    color: #fff;

    font-size: 28px;
    font-weight: 600;
}

.ws-footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;

    padding: 15px 24px;

    background: #062b3f;
    color: #fff;

    border: 1px solid #062b3f;
    border-radius: 5px;

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

    transition: all 0.3s ease;
}

.ws-footer-cta-btn:hover {
    background: #fff;
    color: #062b3f;
    border-color: #fff;
}


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

.ws-footer-main {
    padding: 60px 0 40px;
}


/* =====================================
   BRAND
===================================== */

.ws-footer-logo {
    display: inline-flex;
    align-items: center;

    gap: 14px;

    margin-bottom: 25px;

    color: #fff;
}

.ws-footer-logo:hover {
    color: #fff;
}

.ws-footer-logo-icon {
    width: 60px;
    height: 60px;

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

    background: #26a9e0;
    color: #fff;

    border-radius: 8px;

    font-size: 21px;
    font-weight: 700;
}

.ws-footer-logo h3 {
    margin: 0 0 5px;

    color: #fff;

    font-size: 25px;
    font-weight: 600;
}

.ws-footer-logo span {
    color: #49E398;

    font-size: 13px;
    font-weight: 500;
}

.ws-footer-brand > p {
    max-width: 390px;

    margin: 0 0 28px;

    color: #b7c8d1;

    font-size: 15px;
    line-height: 1.8;
}


/* =====================================
   SOCIAL
===================================== */

.ws-footer-social {
    display: flex;
    align-items: center;

    gap: 9px;
}

.ws-footer-social a {
    width: 42px;
    height: 42px;

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

    background: #0c3b52;
    color: #fff;

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;

    font-size: 14px;

    transition: all 0.3s ease;
}

.ws-footer-social a:hover {
    background: #49E398;
    border-color: #49E398;
    color: #062b3f;

    transform: translateY(-3px);
}


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

.ws-footer-widget h4 {
    position: relative;

    margin: 0 0 28px;

    padding-bottom: 14px;

    color: #fff;

    font-size: 19px;
    font-weight: 600;
}

.ws-footer-widget h4::before {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 38px;
    height: 2px;

    background: #49E398;
}

.ws-footer-widget ul {
    padding: 0;
    margin: 0;

    list-style: none;
}

.ws-footer-widget ul li {
    margin-bottom: 13px;
}

.ws-footer-widget ul li:last-child {
    margin-bottom: 0;
}

.ws-footer-widget ul li a {
    display: inline-flex;
    align-items: center;

    gap: 9px;

    color: #b7c8d1;

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

    transition: all 0.3s ease;
}

.ws-footer-widget ul li a i {
    color: #49E398;

    font-size: 10px;

    transition: transform 0.3s ease;
}

.ws-footer-widget ul li a:hover {
    color: #fff;
    transform: translateX(4px);
}


/* =====================================
   CONTACT
===================================== */

.ws-footer-contact-item {
    display: flex;
    align-items: flex-start;

    gap: 13px;

    margin-bottom: 22px;
}

.ws-footer-contact-icon {
    flex: 0 0 42px;

    width: 42px;
    height: 42px;

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

    background: #0c3b52;
    color: #49E398;

    border-radius: 4px;

    font-size: 15px;
}

.ws-footer-contact-item span {
    display: block;

    margin-bottom: 4px;

    color: #7f9eac;

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

    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ws-footer-contact-item p,
.ws-footer-contact-item a {
    margin: 0;

    color: #d5e0e5;

    font-size: 14px;
    line-height: 1.6;
}

.ws-footer-contact-item a:hover {
    color: #49E398;
}


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

.ws-footer-bottom {
    background: #041f2e;

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

.ws-footer-bottom-wrap {
    min-height: 70px;

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

    gap: 25px;
}

.ws-footer-bottom p {
    margin: 0;

    color: #839daa;

    font-size: 14px;
}

.ws-footer-bottom-links {
    display: flex;
    align-items: center;

    gap: 18px;
}

.ws-footer-bottom-links a {
    color: #839daa;

    font-size: 14px;

    transition: color 0.3s ease;
}

.ws-footer-bottom-links a:hover {
    color: #49E398;
}

.ws-footer-bottom-links span {
    width: 4px;
    height: 4px;

    background: #49E398;

    border-radius: 50%;
}


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

@media (max-width: 991.98px) {

    .ws-footer-cta {
        padding: 25px 0;
    }

    .ws-footer-main {
        padding: 65px 0 50px;
    }

}


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

@media (max-width: 767.98px) {

    .ws-footer-cta-content {
        align-items: flex-start;
    }

    .ws-footer-cta-icon {
        flex: 0 0 55px;

        width: 55px;
        height: 55px;

        font-size: 22px;
    }

    .ws-footer-cta-content h3 {
        font-size: 22px;
        line-height: 1.4;
    }

    .ws-footer-cta-btn {
        width: 100%;
    }

    .ws-footer-main {
        padding: 55px 0 45px;
    }

    .ws-footer-bottom-wrap {
        padding: 22px 0;

        min-height: auto;

        flex-direction: column;
        align-items: flex-start;
    }

}


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

@media (max-width: 575.98px) {

    .ws-footer-cta-content {
        flex-direction: column;
    }

    .ws-footer-bottom-links {
        flex-wrap: wrap;
    }

}



.ws-footer-logo img {
    width:80%;
}

.ws-footer-service-scroll {
    max-height: 185px;
    overflow-y: auto;
    padding-right: 8px;
}

.ws-footer-service-scroll::-webkit-scrollbar {
    width: 5px;
}

.ws-footer-service-scroll::-webkit-scrollbar-track {
    background: #0c3b52;
}

.ws-footer-service-scroll::-webkit-scrollbar-thumb {
    background: #49E398;
    border-radius: 20px;
}

.ws-footer-service-scroll ul li a {
    line-height: 1.5;
}


.wp-hero2 {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: #f4fbff;
}

.wp-hero2::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -180px;
    top: -180px;
    background: #dff9ef;
    border-radius: 50%;
}

.wp-hero2::after {
    content: "";
    position: absolute;
    width: 380px;
    height: 380px;
    left: -150px;
    bottom: -170px;
    background: #dff4fc;
    border-radius: 50%;
}

.wp-hero2 .container {
    position: relative;
    z-index: 2;
}

.wp-hero2-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 9px 18px;
    background: #ffffff;
    color: #26a9e0;
    border: 1px solid #d8eef7;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
}

.wp-hero2 h1 {
    max-width: 680px;
    margin-bottom: 24px;
    color: #062b3f;
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -2px;
}

.wp-hero2 p {
    max-width: 610px;
    margin-bottom: 34px;
    color: #536a75;
    font-size: 18px;
    line-height: 1.75;
}

.wp-hero2-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 18px;
}

.wp-hero2-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 26px;
    background: #26a9e0;
    color: #fff;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s;
}

.wp-hero2-btn:hover {
    background: #49E398;
    color: #062b3f;
}

.wp-hero2-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #062b3f;
    font-size: 16px;
    font-weight: 600;
}

.wp-hero2-call i {
    width: 43px;
    height: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #e6fbf2;
    color: #26a9e0;
    border-radius: 50%;
}

.wp-hero2-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 600px;
    margin-top: 50px;
}

.wp-hero2-stats div {
    padding: 22px;
    background: #fff;
    border: 1px solid #dceff6;
    border-radius: 14px;
}

.wp-hero2-stats strong {
    display: block;
    margin-bottom: 4px;
    color: #26a9e0;
    font-size: 31px;
    font-weight: 600;
}

.wp-hero2-stats span {
    color: #536a75;
    font-size: 14px;
}

.wp-hero2-visual {
    position: relative;
    padding: 30px;
}

.wp-hero2-img {
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 25px 70px rgba(6, 43, 63, 0.18);
}

.wp-hero2-img img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    display: block;
}

.wp-hero2-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 280px;
    padding: 18px;
    background: #fff;
    border: 1px solid #dceff6;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(6, 43, 63, 0.15);
}

.wp-hero2-card i {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e6fbf2;
    color: #26a9e0;
    border-radius: 50%;
}

.wp-hero2-card strong {
    display: block;
    color: #062b3f;
    font-size: 15px;
    font-weight: 600;
}

.wp-hero2-card span {
    color: #637984;
    font-size: 13px;
}

.wp-hero2-card-one {
    left: -5px;
    top: 90px;
}

.wp-hero2-card-two {
    right: -5px;
    bottom: 90px;
}

/* Responsive */

@media (max-width: 991px) {
    .wp-hero2 {
        padding: 80px 0;
    }

    .wp-hero2-img img {
        height: 460px;
    }
}

@media (max-width: 767px) {
    .wp-hero2 {
        padding: 65px 0;
    }

    .wp-hero2 h1 {
        font-size: 42px;
    }

    .wp-hero2 p {
        font-size: 16px;
    }

    .wp-hero2-stats {
        grid-template-columns: 1fr;
        margin-top: 35px;
    }

    .wp-hero2-visual {
        padding: 0;
    }

    .wp-hero2-img img {
        height: 380px;
    }

    .wp-hero2-card {
        position: static;
        margin-top: 15px;
        max-width: 100%;
    }
}


.wp-hero3 {
    position: relative;
    overflow: hidden;
    padding: 110px 0;
    background: #062b3f;
    color: #fff;
}

.wp-hero3::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 15% 20%, rgba(73, 227, 152, 0.16), transparent 28%),
        radial-gradient(circle at 85% 10%, rgba(38, 169, 224, 0.18), transparent 30%);
}

.wp-hero3-bg-text {
    position: absolute;
    left: 30px;
    bottom: 80px;
    font-size: 130px;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, 0.035);
    letter-spacing: -6px;
    white-space: nowrap;
}

.wp-hero3 .container {
    position: relative;
    z-index: 2;
}

.wp-hero3-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 22px;
    padding: 9px 18px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50px;
    color: #d7eef5;
    font-size: 14px;
    font-weight: 500;
}

.wp-hero3-badge i {
    color: #49E398;
}

.wp-hero3 h1 {
    max-width: 720px;
    margin: 0 0 24px;
    font-size: clamp(48px, 5.3vw, 78px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -3px;
}

.wp-hero3 h1::after {
    content: "";
    display: block;
    width: 90px;
    height: 5px;
    margin-top: 24px;
    background: #49E398;
    border-radius: 30px;
}

.wp-hero3 p {
    max-width: 650px;
    margin-bottom: 35px;
    color: #b6cbd4;
    font-size: 18px;
    line-height: 1.75;
}

.wp-hero3-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.wp-hero3-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 17px 28px;
    background: #49E398;
    color: #062b3f;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s;
}

.wp-hero3-primary:hover {
    background: #26a9e0;
    color: #fff;
}

.wp-hero3-phone {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.wp-hero3-phone span {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #103f58;
    color: #49E398;
    border-radius: 50%;
}

.wp-hero3-services {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 35px;
}

.wp-hero3-services span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    background: #103f58;
    color: #d8edf4;
    border-radius: 40px;
    font-size: 13px;
}

.wp-hero3-services i {
    color: #49E398;
}

.wp-hero3-visual {
    position: relative;
    min-height: 570px;
}

.wp-hero3-main-img {
    width: 82%;
    height: 540px;
    margin-left: auto;
    overflow: hidden;
    border-radius: 160px 160px 12px 12px;
    border: 10px solid rgba(255,255,255,0.08);
}

.wp-hero3-main-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wp-hero3-float-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 17px 18px;
    background: #fff;
    color: #062b3f;
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(0,0,0,0.25);
}

.wp-hero3-float-card i {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e8fbf3;
    color: #26a9e0;
    border-radius: 50%;
    font-size: 18px;
}

.wp-hero3-float-card strong {
    display: block;
    color: #062b3f;
    font-size: 15px;
    font-weight: 700;
}

.wp-hero3-float-card span {
    color: #667982;
    font-size: 13px;
}

.wp-card-top {
    left: 10px;
    top: 80px;
}

.wp-card-bottom {
    right: 0;
    bottom: 70px;
}

.wp-hero3-circle {
    position: absolute;
    left: 35px;
    bottom: 145px;
    width: 135px;
    height: 135px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: #49E398;
    color: #062b3f;
    border-radius: 50%;
    border: 8px solid #062b3f;
}

.wp-hero3-circle strong {
    font-size: 34px;
    font-weight: 800;
    line-height: 1;
}

.wp-hero3-circle span {
    margin-top: 5px;
    font-size: 13px;
    font-weight: 600;
}

.wp-hero3-stats {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 65px;
    background: #fff;
    box-shadow: 0 -20px 60px rgba(0,0,0,0.12);
}

.wp-hero3-stats div {
    min-height: 95px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 18px;
    border-right: 1px solid #e4eef2;
}

.wp-hero3-stats div:last-child {
    border-right: 0;
}

.wp-hero3-stats i {
    color: #26a9e0;
    font-size: 24px;
}

.wp-hero3-stats strong {
    color: #062b3f;
    font-size: 15px;
    font-weight: 600;
}

@media (max-width: 991px) {
    .wp-hero3 {
        padding-top: 80px;
    }

    .wp-hero3-visual {
        margin-top: 30px;
    }

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

    .wp-hero3-bg-text {
        font-size: 80px;
    }
}

@media (max-width: 767px) {
    .wp-hero3 {
        padding-top: 60px;
    }

    .wp-hero3 h1 {
        font-size: 42px;
        letter-spacing: -2px;
    }

    .wp-hero3 p {
        font-size: 16px;
    }

    .wp-hero3-main-img {
        width: 100%;
        height: 430px;
        border-radius: 90px 90px 12px 12px;
    }

    .wp-hero3-visual {
        min-height: auto;
    }

    .wp-hero3-float-card,
    .wp-hero3-circle {
        position: static;
        margin-top: 15px;
    }

    .wp-hero3-circle {
        width: 120px;
        height: 120px;
    }

    .wp-hero3-stats {
        grid-template-columns: 1fr;
        margin-top: 45px;
    }

    .wp-hero3-stats div {
        justify-content: flex-start;
    }
}

.float-loop {
    animation: floatLoop 3s ease-in-out infinite;
    will-change: transform;
}

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

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


.rs-premium-services {
    padding: 80px 0;
    background: #eef7fa;
    overflow: hidden;
}

.rs-section-head {
    max-width: 720px;
    margin: 0 auto 55px;
}

.rs-section-head span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: #26a9e0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.rs-section-head span i {
    color: #49E398;
}

.rs-section-head h2 {
    margin: 0 0 16px;
    color: #062b3f;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
}

.rs-section-head p {
    margin: 0;
    color: #6a7d86;
    font-size: 16px;
    line-height: 1.7;
}

.rs-service-box {
    height: 470px;
    position: relative;
    overflow: hidden;
    background: #062b3f;
    border-radius: 24px;
}

.rs-service-img {
    position: absolute;
    inset: 0;
}

.rs-service-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 43, 63, 0.7);
    transition: 0.4s;
}

.rs-service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.rs-service-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.rs-service-icon {
    width: 74px;
    height: 74px;
    position: absolute;
    top: 30px;
    left: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #49E398;
    color: #062b3f;
    border-radius: 18px;
    font-size: 28px;
}

.rs-service-count {
    position: absolute;
    top: 28px;
    right: 30px;
    color: rgba(255, 255, 255, 0.25);
    font-size: 64px;
    font-weight: 700;
    line-height: 1;
}

.rs-service-content h3 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 30px;
    font-weight: 600;
}

.rs-service-content p {
    margin: 0 0 24px;
    color: #c6d7df;
    font-size: 15px;
    line-height: 1.7;
}

.rs-service-content a {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #49E398;
    font-size: 15px;
    font-weight: 600;
}

.rs-service-content a i {
    transition: 0.3s;
}

.rs-service-box:hover .rs-service-img img,
.rs-service-box.active .rs-service-img img {
    transform: scale(1.08);
}

.rs-service-box:hover .rs-service-img::after,
.rs-service-box.active .rs-service-img::after {
    background: rgba(6, 43, 63, 0.45);
}

.rs-service-box:hover .rs-service-content a i {
    transform: translateX(6px);
}

.rs-service-box:hover .rs-service-icon,
.rs-service-box.active .rs-service-icon {
    background: #26a9e0;
    color: #fff;
}

@media (max-width: 991px) {
    .rs-premium-services {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .rs-premium-services {
        padding: 65px 0;
    }

    .rs-service-box {
        height: 420px;
    }

    .rs-service-content {
        padding: 28px;
    }

    .rs-service-content h3 {
        font-size: 25px;
    }
}


/* ==========================================
   WHY CHOOSE US
=========================================== */

.wcus-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: #fff;
}


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

.wcus-wrapper {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    background: #f1f8fa;
}


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

.wcus-intro {
    position: relative;
    overflow: hidden;
    padding: 65px 55px;
    background: #062b3f;
    color: #fff;
}

.wcus-intro::after {
    content: "WHY";
    position: absolute;
    right: -25px;
    bottom: -35px;
    color: rgba(255, 255, 255, 0.035);
    font-size: 180px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.wcus-subtitle {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #49E398;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.wcus-subtitle i {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0d4059;
    border-radius: 50%;
}

.wcus-intro h2 {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 0 24px;
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2.5px;
}

.wcus-intro h2 span {
    display: block;
    color: #49E398;
}

.wcus-intro > p {
    position: relative;
    z-index: 2;
    margin: 0 0 32px;
    color: #b3cbd5;
    font-size: 15px;
    line-height: 1.8;
}


/* ==========================================
   HIGHLIGHT
=========================================== */

.wcus-highlight {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 34px;
    padding: 18px;
    background: #0d4059;
    border-left: 3px solid #49E398;
}

.wcus-highlight-icon {
    flex: 0 0 46px;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #49E398;
    color: #062b3f;
    font-size: 18px;
}

.wcus-highlight strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}

.wcus-highlight span {
    display: block;
    color: #9db8c4;
    font-size: 12px;
    line-height: 1.6;
}


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

.wcus-button {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    min-height: 55px;
    padding-left: 22px;
    background: #26a9e0;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.wcus-button > span {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #49E398;
    color: #062b3f;
}

.wcus-button i {
    transition: transform 0.3s ease;
}

.wcus-button:hover {
    background: #198dbd;
    color: #fff;
}

.wcus-button:hover i {
    transform: translateX(5px);
}


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

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


/* ==========================================
   BENEFIT ITEM
=========================================== */

.wcus-item {
    position: relative;
    min-height: 315px;
    overflow: hidden;
    padding: 40px 35px;
    background: #fff;
    border-right: 1px solid #e1ecef;
    border-bottom: 1px solid #e1ecef;
    transition:
        background 0.4s ease,
        transform 0.4s ease;
}

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

.wcus-item:nth-child(n+3) {
    border-bottom: 0;
}

.wcus-number {
    position: absolute;
    right: 20px;
    top: 12px;
    color: #eef4f6;
    font-size: 76px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -5px;
    transition: color 0.4s ease;
}


/* ==========================================
   ICON
=========================================== */

.wcus-icon {
    position: relative;
    z-index: 2;
    width: 62px;
    height: 62px;
    margin-bottom: 27px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e7f9f1;
    color: #159d68;
    font-size: 23px;
    border-radius: 50%;
    transition:
        background 0.4s ease,
        color 0.4s ease,
        transform 0.4s ease;
}

.wcus-item h3 {
    position: relative;
    z-index: 2;
    margin: 0 0 13px;
    color: #062b3f;
    font-size: 23px;
    font-weight: 600;
}

.wcus-item p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #6b7f88;
    font-size: 14px;
    line-height: 1.75;
}


/* ==========================================
   BOTTOM ANIMATED LINE
=========================================== */

.wcus-line {
    position: absolute;
    left: 35px;
    bottom: 27px;
    width: 38px;
    height: 3px;
    background: #26a9e0;
    transition: width 0.4s ease;
}


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

.wcus-item:hover {
    background: #f7fcfd;
}

.wcus-item:hover .wcus-number {
    color: #dff4f9;
}

.wcus-item:hover .wcus-icon {
    background: #26a9e0;
    color: #fff;
    transform: translateY(-5px);
}

.wcus-item:hover .wcus-line {
    width: calc(100% - 70px);
}


/* ==========================================
   ACCENT ITEM
=========================================== */

.wcus-item-accent {
    background: #eafbf4;
}

.wcus-item-accent .wcus-icon {
    background: #49E398;
    color: #062b3f;
}

.wcus-item-accent .wcus-line {
    background: #49E398;
}


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

.wcus-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 35px;
    padding: 25px 30px;
    background: #26a9e0;
}

.wcus-bottom-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.wcus-bottom-check {
    flex: 0 0 45px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #26a9e0;
    border-radius: 50%;
}

.wcus-bottom-text strong {
    display: block;
    margin-bottom: 3px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
}

.wcus-bottom-text span {
    color: #dcf5ff;
    font-size: 13px;
}


/* ==========================================
   CALL
=========================================== */

.wcus-call {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.wcus-call > span {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #062b3f;
    color: #49E398;
    border-radius: 50%;
}

.wcus-call div {
    display: flex;
    flex-direction: column;
}

.wcus-call small {
    margin-bottom: 2px;
    color: #d9f4ff;
    font-size: 11px;
}

.wcus-call strong {
    color: #fff;
    font-size: 15px;
    font-weight: 600;
}


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

@media (max-width: 991.98px) {

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

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

}


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

@media (max-width: 767.98px) {

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

    .wcus-intro {
        padding: 45px 25px;
    }

    .wcus-intro h2 {
        font-size: 41px;
        letter-spacing: -1.5px;
    }

    .wcus-grid {
        grid-template-columns: 1fr;
    }

    .wcus-item {
        min-height: 290px;
        border-right: 0;
        border-bottom: 1px solid #e1ecef !important;
    }

    .wcus-item:last-child {
        border-bottom: 0 !important;
    }

    .wcus-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

}


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

@media (max-width: 575.98px) {

    .wcus-highlight {
        flex-direction: column;
    }

    .wcus-button {
        width: 100%;
        justify-content: space-between;
    }

    .wcus-bottom-text {
        align-items: flex-start;
    }

}



.fp-clean-section {
        padding: 80px 0;
    background: #eef7fa;
}

.fp-clean-head {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.fp-clean-head span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: #26a9e0;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.fp-clean-head h2 {
    margin: 0 0 15px;
    color: #062b3f;
    font-size: 50px;
    font-weight: 700;
    line-height: 1.1;
}

.fp-clean-head p {
    max-width: 690px;
    margin: 0 auto;
    color: #50636c;
    font-size: 17px;
    line-height: 1.65;
}

.fp-clean-card {
    height: 100%;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e3edf1;
    border-radius: 22px;
    box-shadow: 0 16px 40px rgba(6, 43, 63, 0.08);
    transition: all 0.35s ease;
}

.fp-clean-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(6, 43, 63, 0.13);
    border-color: #49E398;
}

.fp-clean-img {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.fp-clean-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(6, 43, 63, 0.08);
    transition: 0.35s ease;
}

.fp-clean-card:hover .fp-clean-img::after {
    background: rgba(6, 43, 63, 0.2);
}

.fp-clean-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.fp-clean-card:hover .fp-clean-img img {
    transform: scale(1.08);
}

.fp-clean-tag {
    position: absolute;
    z-index: 3;
    top: 18px;
    left: 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    background: #26a9e0;
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.fp-clean-card:nth-child(2) .fp-clean-tag {
    background: #49E398;
    color: #062b3f;
}

.fp-clean-content {
    padding: 30px 28px 32px;
}

.fp-clean-content h3 {
    margin: 0 0 12px;
    color: #062b3f;
    font-size: 24px;
    font-weight: 600;
}

.fp-clean-content p {
    min-height: 58px;
    margin: 0 0 22px;
    color: #536770;
    font-size: 15px;
    line-height: 1.7;
}

.fp-clean-content a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: #26a9e0;
    font-size: 15px;
    font-weight: 700;
}

.fp-clean-content a i {
    transition: transform 0.3s ease;
}

.fp-clean-card:hover .fp-clean-content a i {
    transform: translateX(6px);
}

.fp-clean-btn-wrap {
    margin-top: 48px;
    text-align: center;
}

.fp-clean-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 30px;
    background: #26a9e0;
    color: #fff;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s ease;
}

.fp-clean-btn:hover {
    background: #49E398;
    color: #062b3f;
}

@media (max-width: 991px) {
    .fp-clean-section {
        padding: 80px 0;
    }
}

@media (max-width: 767px) {
    .fp-clean-section {
        padding: 65px 0;
    }

    .fp-clean-head h2 {
        font-size: 36px;
    }

    .fp-clean-img {
        height: 230px;
    }

    .fp-clean-content p {
        min-height: auto;
    }
}



.h-process-section {
    padding: 80px 0;
    background: #f5fafc;
    overflow: hidden;
}

.h-process-head {
    max-width: 720px;
    margin: 0 auto 65px;
    text-align: center;
}

.h-process-head span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    color: #26a9e0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.h-process-head span i {
    color: #49E398;
}

.h-process-head h2 {
    margin: 0 0 14px;
    color: #062b3f;
    font-size:50px;
    font-weight: 600;
}

.h-process-head p {
    margin: 0;
    color: #60747d;
    font-size: 16px;
}

.h-process-wrap {
    position: relative;
}

.h-process-line {
    position: absolute;
    left: 11%;
    right: 11%;
    top: 39px;
    height: 3px;
    background: #d8edf4;
}

.h-process-line::after {
    content: "";
    position: absolute;
    inset: 0;
    width: 55%;
    background: #49E398;
}

.h-process-card {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 0 22px 30px;
    text-align: center;
}

.h-process-dot {
    width: 78px;
    height: 78px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #062b3f;
    color: #fff;
    border: 8px solid #f5fafc;
    border-radius: 50%;
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 0 0 8px #e4f6fc;
}

.h-process-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e7fbf2;
    color: #159d68;
    border-radius: 22px;
    font-size: 28px;
    transition: 0.35s ease;
}

.h-process-card:hover .h-process-icon {
    background: #49E398;
    color: #062b3f;
    transform: translateY(-7px);
}

.h-process-card h3 {
    margin: 0 0 12px;
    color: #062b3f;
    font-size: 22px;
    font-weight: 600;
}

.h-process-card p {
    max-width: 280px;
    margin: 0 auto;
    color: #647984;
    font-size: 14px;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .h-process-section {
        padding: 80px 0;
    }

    .h-process-line {
        display: none;
    }

    .h-process-card {
        padding: 30px 22px;
        background: #fff;
        border: 1px solid #dcecf2;
        border-radius: 22px;
        box-shadow: 0 14px 35px rgba(6, 43, 63, 0.06);
    }
}

@media (max-width: 767px) {
    .h-process-section {
        padding: 65px 0;
    }

    .h-process-head {
        margin-bottom: 40px;
    }

    .h-process-head h2 {
        font-size: 36px;
    }
}



/* ==========================================
   REVIEW SECTION
========================================== */

.wtr-review-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: #fff;
}


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

.wtr-review-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 45px;
}

.wtr-review-heading {
    max-width: 690px;
}

.wtr-review-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
    color: #26a9e0;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.wtr-review-subtitle i {
    color: #49E398;
}

.wtr-review-heading h2 {
    margin: 0 0 14px;
    color: #062b3f;
    font-size: clamp(38px, 4vw, 56px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -2px;
}

.wtr-review-heading p {
    max-width: 600px;
    margin: 0;
    color: #647983;
    font-size: 15px;
    line-height: 1.75;
}


/* ==========================================
   NAVIGATION
========================================== */

.wtr-review-navigation {
    display: flex;
    gap: 9px;
}

.wtr-review-navigation button {
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #062b3f;
    border: 1px solid #d6e6ec;
    border-radius: 50%;
    font-size: 14px;
    transition: 0.3s ease;
}

.wtr-review-navigation button:hover {
    background: #26a9e0;
    color: #fff;
    border-color: #26a9e0;
}


/* ==========================================
   OWL CAROUSEL
========================================== */

.wtr-review-carousel .owl-stage {
    display: flex;
}

.wtr-review-carousel .owl-item {
    display: flex;
}

.wtr-review-carousel .owl-item > .wtr-review-card {
    width: 100%;
}


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

.wtr-review-card {
    position: relative;
    min-height: 390px;
    height: 100%;
    overflow: hidden;
    padding: 32px;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #dce9ee;
    border-radius: 22px;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.wtr-review-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: #49E398;
    transition: width 0.4s ease;
}

.wtr-review-card:hover {
    transform: translateY(-7px);
    border-color: #49E398;
    box-shadow: 0 22px 50px rgba(6, 43, 63, 0.09);
}

.wtr-review-card:hover::after {
    width: 100%;
}


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

.wtr-review-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}


/* ==========================================
   STARS
========================================== */

.wtr-review-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #f6b800;
    font-size: 13px;
}


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

.wtr-review-number {
    color: #cbdde4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}


/* ==========================================
   QUOTE
========================================== */

.wtr-review-quote {
    margin: 35px 0 20px;
}

.wtr-review-quote i {
    color: #26a9e0;
    font-size: 40px;
    opacity: 0.18;
}


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

.wtr-review-text {
    margin: 0 0 30px;
    color: #324a56;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    font-style: italic;
}


/* ==========================================
   AUTHOR
========================================== */

.wtr-review-author {
    margin-top: auto;
    padding-top: 23px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-top: 1px solid #e4edef;
}

.wtr-review-avatar {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e4faf1;
    color: #159c68;
    border-radius: 50%;
    font-size: 17px;
    transition: 0.3s ease;
}

.wtr-review-card:hover .wtr-review-avatar {
    background: #49E398;
    color: #062b3f;
}

.wtr-review-author h4 {
    margin: 0 0 3px;
    color: #062b3f;
    font-size: 16px;
    font-weight: 700;
}

.wtr-review-author span {
    display: block;
    color: #778a92;
    font-size: 11px;
}


/* ==========================================
   OWL DOTS
========================================== */

.wtr-review-carousel .owl-dots {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
}

.wtr-review-carousel .owl-dot {
    padding: 0 !important;
}

.wtr-review-carousel .owl-dot span {
    width: 8px;
    height: 8px;
    margin: 0;
    display: block;
    background: #c9dce3;
    border-radius: 20px;
    transition: 0.3s ease;
}

.wtr-review-carousel .owl-dot.active span {
    width: 28px;
    background: #26a9e0;
}


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

@media (max-width: 991.98px) {

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

    .wtr-review-card {
        min-height: 380px;
    }

}


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

@media (max-width: 767.98px) {

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

    .wtr-review-header {
        display: block;
        margin-bottom: 35px;
    }

    .wtr-review-heading h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .wtr-review-navigation {
        margin-top: 25px;
    }

    .wtr-review-card {
        min-height: 370px;
        padding: 27px 24px;
    }

}


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

.mobile-contact-bar{
    position:fixed;
    z-index:99999;
}

/* =========================
   DESKTOP FLOAT
========================= */



    .mobile-contact-bar{
        right:20px;
        bottom:40px;

        display:flex;
        flex-direction:column;

        gap:12px;
    }

    .mobile-contact-btn{
        width:58px;
        height:58px;

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

        border-radius:50%;

        color:#fff;
        text-decoration:none;

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

        transition:.35s;
        position:relative;
        overflow:hidden;
    }

    .mobile-contact-btn i{
        font-size:24px;
    }

    .mobile-contact-btn span{
        position:absolute;
        right:70px;

        white-space:nowrap;

        background:#062b3f;
        color:#fff;

        padding:10px 16px;

        border-radius:40px;

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

        opacity:0;
        visibility:hidden;

        transform:translateX(10px);

        transition:.35s;
    }

    .mobile-contact-btn:hover span{
        opacity:1;
        visibility:visible;
        transform:translateX(0);
    }

    .mobile-whatsapp{
        background:#25D366;
    }

    .mobile-call{
        background:#26a9e0;
    }

    .mobile-contact-btn:hover{
        transform:translateY(-4px) scale(1.05);
        color:#fff;
    }






/*==================================
INNER PAGE BANNER
==================================*/

.inner-page-banner{
    position:relative;
    overflow:hidden;
    padding:90px 0;
    background:#062b3f;
}

.inner-page-banner::before{
    content:"";
    position:absolute;
    inset:0;
    background:
    radial-gradient(circle at top left, rgba(73,227,152,.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(38,169,224,.12), transparent 30%);
}

.inner-page-banner::after{
    content:"";
    position:absolute;
    left:-120px;
    bottom:-120px;
    width:280px;
    height:280px;
    border:45px solid rgba(255,255,255,.04);
    border-radius:50%;
}

.inner-banner-content{
    position:relative;
    z-index:2;
    text-align:center;
}

.inner-banner-content h1{
    margin:0 0 18px;
    color:#fff;
    font-size:clamp(42px,4vw,64px);
    font-weight:600;
    letter-spacing:-2px;
}

.inner-breadcrumb{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    padding:10px 22px;

    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    border-radius:50px;
}

.inner-breadcrumb a{
    display:flex;
    align-items:center;
    gap:8px;

    color:#d7e7ee;
    font-size:14px;
    font-weight:500;
    text-decoration:none;
    transition:.3s;
}

.inner-breadcrumb a:hover{
    color:#49E398;
}

.inner-breadcrumb span{
    color:#8db1c0;
    font-size:13px;
}

.inner-breadcrumb .active{
    color:#49E398;
    font-weight:600;
}

@media(max-width:767px){

    .inner-page-banner{
        padding:70px 0;
    }

    .inner-banner-content h1{
        font-size:36px;
        letter-spacing:-1px;
    }

    .inner-breadcrumb{
        gap:8px;
        padding:8px 16px;
    }

    .inner-breadcrumb a,
    .inner-breadcrumb span{
        font-size:13px;
    }

}




/* =========================================
   SERVICE SECTION
========================================= */

.wpf-service-section {
    padding: 100px 0;
    background: #f6fafc;
}

.wpf-service-heading {
    max-width: 760px;
    margin: 0 auto 55px;
}

.wpf-service-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 13px;
    color: #26a9e0;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.wpf-service-subtitle i {
    color: #49E398;
}

.wpf-service-heading h2 {
    margin: 0 0 14px;
    color: #062b3f;
    font-size: 50px;
    font-weight: 600;
}

.wpf-service-heading p {
    margin: 0;
    color: #647983;
    font-size: 16px;
    line-height: 1.7;
}


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

.wpf-service-card {
    position: relative;
    height: 100%;
    padding: 32px;
    background: #fff;
    border: 1px solid #dce8ed;
    border-radius: 26px;
    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}

.wpf-service-card::before {
    content: "";
    position: absolute;
    left: 32px;
    right: 32px;
    bottom: 0;
    height: 4px;
    background: #49E398;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.wpf-service-card:hover {
    transform: translateY(-7px);
    border-color: #49E398;
    box-shadow: 0 22px 50px rgba(6, 43, 63, 0.09);
}

.wpf-service-card:hover::before {
    transform: scaleX(1);
}


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

.wpf-card-header {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr) auto;
    align-items: start;
    gap: 20px;
    margin-bottom: 22px;
}

.wpf-service-icon {
    width: 78px;
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #26a9e0;
    color: #fff;
    border-radius: 22px;
    font-size: 27px;
    transition: 0.35s ease;
}

.wpf-service-card:hover .wpf-service-icon {
    background: #49E398;
    color: #062b3f;
    transform: rotate(-5deg);
}

.wpf-service-title {
    padding-top: 3px;
}

.wpf-service-number {
    display: block;
    margin-bottom: 5px;
    color: #26a9e0;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.wpf-service-title h3 {
    margin: 0;
    color: #062b3f;
    font-size: 25px;
    font-weight: 600;
    line-height: 1.25;
}

.wpf-service-warranty {
    text-align: right;
    white-space: nowrap;
}

.wpf-service-warranty strong {
    display: block;
    margin-bottom: 3px;
    color: #26a9e0;
    font-size: 14px;
    font-weight: 700;
}

.wpf-service-warranty span {
    color: #73858d;
    font-size: 12px;
}


/* =========================================
   DESCRIPTION
========================================= */

.wpf-service-description {
    margin: 0 0 24px 98px;
    color: #526872;
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================
   FEATURES
========================================= */

.wpf-service-features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px 20px;
    margin: 0 0 27px 98px;
    padding: 0;
    list-style: none;
}

.wpf-service-features li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: #304955;
    font-size: 13px;
    line-height: 1.5;
}

.wpf-service-features i {
    margin-top: 3px;
    color: #21bb66;
    font-size: 13px;
}


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

.wpf-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-left: 98px;
    padding-top: 20px;
    border-top: 1px solid #e5edf0;
}

.wpf-enquiry-btn {
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: transparent;
    color: #26a9e0;
    border: 0;
    font-size: 14px;
    font-weight: 700;
}

.wpf-enquiry-btn i {
    transition: transform 0.3s ease;
}

.wpf-enquiry-btn:hover i {
    transform: translateX(6px);
}

.wpf-stars {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #f5b700;
    font-size: 12px;
}


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

@media (max-width: 991.98px) {

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

}

@media (max-width: 767.98px) {

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

    .wpf-service-card {
        padding: 25px 22px;
        border-radius: 20px;
    }

    .wpf-card-header {
        grid-template-columns: 65px 1fr;
        gap: 15px;
    }

    .wpf-service-icon {
        width: 65px;
        height: 65px;
        border-radius: 18px;
        font-size: 23px;
    }

    .wpf-service-warranty {
        grid-column: 2;
        text-align: left;
        margin-top: -6px;
    }

    .wpf-service-description,
    .wpf-service-features,
    .wpf-card-footer {
        margin-left: 0;
    }

    .wpf-service-features {
        grid-template-columns: 1fr;
    }

    .wpf-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }

}



.wpf-modal-content {
    position: relative;
    padding: 35px;
    border: 0;
    border-radius: 22px;
    box-shadow: 0 30px 80px rgba(6, 43, 63, 0.25);
}

.wpf-modal-close {
    position: absolute;
    z-index: 5;
    top: 18px;
    right: 18px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edf7fa;
    color: #062b3f;
    border: 0;
    border-radius: 50%;
}

.wpf-modal-heading {
    margin-bottom: 27px;
    padding-right: 40px;
}

.wpf-modal-heading > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: #26a9e0;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wpf-modal-heading h3 {
    margin: 0 0 9px;
    color: #062b3f;
    font-size: 29px;
    font-weight: 600;
}

.wpf-modal-heading p {
    margin: 0;
    color: #687b84;
    font-size: 14px;
}

.wpf-modal-content .form-label {
    margin-bottom: 7px;
    color: #243d49;
    font-size: 13px;
    font-weight: 600;
}

.wpf-modal-content .form-control {
    min-height: 49px;
    padding: 11px 14px;
    border: 1px solid #d7e5ea;
    border-radius: 8px;
    color: #062b3f;
    font-size: 14px;
    box-shadow: none;
}

.wpf-modal-content textarea.form-control {
    min-height: 115px;
    resize: vertical;
}

.wpf-modal-content .form-control:focus {
    border-color: #26a9e0;
}

.wpf-modal-content input[readonly] {
    background: #eef9fc;
    color: #26a9e0;
    font-weight: 600;
}

.wpf-modal-submit {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #26a9e0;
    color: #fff;
    border: 0;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.wpf-modal-submit:hover {
    background: #49E398;
    color: #062b3f;
}

@media (max-width: 575.98px) {

    .wpf-modal-content {
        margin: 12px;
        padding: 28px 20px;
    }

    .wpf-modal-heading h3 {
        font-size: 24px;
    }

}


/* =========================================
   CONTACT SECTION
========================================= */

.uw-contact-section {
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}


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

.uw-contact-heading {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
    align-items: end;
    gap: 70px;
    margin-bottom: 50px;
}

.uw-contact-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 14px;
    color: #26a9e0;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.4px;
}

.uw-contact-label i {
    color: #49E398;
}

.uw-contact-heading h2 {
    margin: 0;
    color: #062b3f;
  font-size:50px;
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -2px;
}

.uw-contact-heading > p {
    margin: 0 0 5px;
    color: #627680;
    font-size: 15px;
    line-height: 1.8;
}


/* =========================================
   MAIN LAYOUT
========================================= */

.uw-contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
    gap: 28px;
    align-items: stretch;
}


/* =========================================
   FORM PANEL
========================================= */

.uw-form-panel {
    overflow: hidden;
    background: #f4f9fb;
    border: 1px solid #dbe7eb;
}

.uw-form-title {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 28px 32px;
    background: #062b3f;
}

.uw-form-title-icon {
    width: 52px;
    height: 52px;
    flex: 0 0 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #49E398;
    color: #062b3f;
    font-size: 19px;
}

.uw-form-title span {
    display: block;
    margin-bottom: 3px;
    color: #85aebb;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.uw-form-title h3 {
    margin: 0;
    color: #fff;
    font-size: 25px;
    font-weight: 600;
}

.uw-contact-form {
    padding: 35px 32px;
}


/* =========================================
   FIELDS
========================================= */

.uw-field label {
    display: block;
    margin-bottom: 8px;
    color: #193743;
    font-size: 13px;
    font-weight: 600;
}

.uw-field label b {
    color: #26a9e0;
}

.uw-field input,
.uw-field select,
.uw-field textarea {
    width: 100%;
    min-height: 54px;
    padding: 13px 15px;
    background: #fff;
    color: #062b3f;
    border: 1px solid #d2e0e5;
    border-radius: 0;
    outline: none;
    font-size: 14px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.uw-field textarea {
    min-height: 90px;
    resize: vertical;
}

.uw-field input::placeholder,
.uw-field textarea::placeholder {
    color: #98a6ac;
}

.uw-field input:focus,
.uw-field select:focus,
.uw-field textarea:focus {
    border-color: #26a9e0;
    box-shadow: 0 0 0 3px rgba(38, 169, 224, 0.08);
}

.uw-select-wrap {
    position: relative;
}

.uw-select-wrap::after {
    content: "\f107";
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    color: #58717d;
    font-family: "Font Awesome 6 Free";
    font-size: 12px;
    font-weight: 900;
    pointer-events: none;
}

.uw-select-wrap select {
    appearance: none;
    padding-right: 42px;
}


/* =========================================
   FORM SUBMIT
========================================= */

.uw-form-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    padding-top: 3px;
}

.uw-form-submit-row p {
    max-width: 420px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    color: #73868e;
    font-size: 11px;
    line-height: 1.55;
}

.uw-form-submit-row p i {
    margin-top: 2px;
    color: #1aad72;
}

.uw-form-submit-row button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 0 24px;
    background: #26a9e0;
    color: #fff;
    border: 0;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.uw-form-submit-row button:hover {
    background: #062b3f;
}

.uw-form-submit-row button i {
    transition: transform 0.3s ease;
}

.uw-form-submit-row button:hover i {
    transform: translateX(4px);
}


/* =========================================
   SIDEBAR
========================================= */

.uw-contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.uw-contact-info-panel {
    flex: 1;
    padding: 31px 28px;
    background: #062b3f;
    color: #fff;
}

.uw-side-small {
    display: block;
    margin-bottom: 7px;
    color: #49E398;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.uw-contact-info-panel > h3 {
    margin: 0 0 11px;
    color: #fff;
    font-size: 27px;
    font-weight: 600;
}

.uw-side-intro {
    margin: 0 0 25px;
    color: #a9c1cc;
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================
   CONTACT ROWS
========================================= */

.uw-contact-row {
    display: grid;
    grid-template-columns: 46px 1fr auto;
    align-items: center;
    gap: 13px;
    min-height: 72px;
    padding: 12px 0;
    color: #fff;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.uw-contact-row:hover {
    color: #fff;
}

.uw-contact-row-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0d4059;
    color: #49E398;
    font-size: 16px;
}

.uw-whatsapp-icon {
    background: #25d366;
    color: #fff;
}

.uw-contact-row-content small,
.uw-address-block small {
    display: block;
    margin-bottom: 3px;
    color: #82a3b1;
    font-size: 10px;
}

.uw-contact-row-content strong {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    word-break: break-word;
}

.uw-contact-row > i {
    color: #638998;
    font-size: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.uw-contact-row:hover > i {
    color: #49E398;
    transform: translate(3px, -3px);
}


/* =========================================
   ADDRESS
========================================= */

.uw-address-block {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding-top: 17px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.uw-address-block p {
    margin: 0;
    color: #d0dfe5;
    font-size: 12px;
    line-height: 1.65;
}


/* =========================================
   HOURS
========================================= */

.uw-hours-panel {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    background: #49E398;
    color: #062b3f;
}

.uw-hours-panel > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.uw-hours-panel > div > i {
    font-size: 20px;
}

.uw-hours-panel span {
    display: flex;
    flex-direction: column;
}

.uw-hours-panel small {
    margin-bottom: 2px;
    font-size: 10px;
    opacity: 0.72;
}

.uw-hours-panel strong {
    font-size: 13px;
    font-weight: 600;
}

.uw-hours-panel > b {
    font-size: 12px;
    font-weight: 700;
    text-align: right;
}


/* =========================================
   MAP
========================================= */

.uw-map-section {
    display: grid;
    grid-template-columns: 0.36fr 0.64fr;
    min-height: 390px;
    margin-top: 28px;
    border: 1px solid #dbe7eb;
}

.uw-map-information {
    padding: 45px 38px;
    background: #f4f9fb;
}

.uw-map-information > span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: #26a9e0;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

.uw-map-information h3 {
    margin: 0 0 14px;
    color: #062b3f;
    font-size: 31px;
    font-weight: 600;
    line-height: 1.2;
}

.uw-map-information p {
    margin: 0 0 25px;
    color: #60747e;
    font-size: 14px;
    line-height: 1.75;
}

.uw-map-information a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #26a9e0;
    font-size: 13px;
    font-weight: 600;
}

.uw-map-information a i {
    font-size: 10px;
}

.uw-map-frame {
    min-height: 390px;
}

.uw-map-frame iframe {
    display: block;
    min-height: 390px;
}


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

@media (max-width: 991.98px) {

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

    .uw-contact-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .uw-contact-layout {
        grid-template-columns: 1fr;
    }

    .uw-map-section {
        grid-template-columns: 1fr;
    }

    .uw-map-frame,
    .uw-map-frame iframe {
        min-height: 360px;
    }

}


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

@media (max-width: 767.98px) {

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

    .uw-contact-heading {
        margin-bottom: 38px;
    }

    .uw-contact-heading h2 {
        font-size: 38px;
        letter-spacing: -1px;
    }

    .uw-form-title {
        padding: 23px 20px;
    }

    .uw-form-title h3 {
        font-size: 21px;
    }

    .uw-contact-form {
        padding: 27px 20px;
    }

    .uw-form-submit-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .uw-form-submit-row button {
        width: 100%;
    }

    .uw-contact-info-panel {
        padding: 27px 22px;
    }

    .uw-map-information {
        padding: 35px 24px;
    }

}


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

@media (max-width: 575.98px) {

    .uw-form-title {
        align-items: flex-start;
    }

    .uw-hours-panel {
        align-items: flex-start;
        flex-direction: column;
    }

    .uw-hours-panel > b {
        text-align: left;
    }

    .uw-map-information h3 {
        font-size: 27px;
    }

}



/* ==================================
   WATERPROOFING PROJECT MARQUEE
================================== */

.wpf-project-marquee{
    position:relative;
    width:100%;
    overflow:hidden;
    padding:12px 0 24px;
}

/* Soft side fading */

.wpf-project-marquee::before,
.wpf-project-marquee::after{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    width:90px;
    z-index:5;
    pointer-events:none;
}

.wpf-project-marquee::before{
    left:0;
    background:linear-gradient(
        to right,
        #ffffff 0%,
        rgba(255,255,255,0) 100%
    );
}

.wpf-project-marquee::after{
    right:0;
    background:linear-gradient(
        to left,
        #ffffff 0%,
        rgba(255,255,255,0) 100%
    );
}

.wpf-project-marquee .wpf-project-marquee-track{
    display:flex;
    align-items:center;
    gap:22px;
    width:max-content;
    will-change:transform;
    cursor:grab;
    user-select:none;
}

.wpf-project-marquee .wpf-project-marquee-track:active{
    cursor:grabbing;
}

.wpf-project-marquee .wpf-project-marquee-card{
    position:relative;
    flex:0 0 380px;
    height:290px;
    overflow:hidden;
    border-radius:20px;
    background:#ffffff;
    border:1px solid rgba(38,169,224,.2);
    box-shadow:0 14px 35px rgba(6,52,73,.12);
}

/* Brand accent frame */

.wpf-project-marquee .wpf-project-marquee-card::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:2;
    border-radius:inherit;
    border:3px solid transparent;
    background:linear-gradient(
        135deg,
        rgba(38,169,224,.75),
        rgba(73,227,152,.7)
    ) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite:xor;
    mask-composite:exclude;
    pointer-events:none;
}

.wpf-project-marquee .wpf-project-marquee-card::after{
    content:"";
    position:absolute;
    left:22px;
    right:22px;
    bottom:0;
    height:5px;
    z-index:3;
    border-radius:10px 10px 0 0;
    background:linear-gradient(
        90deg,
        #26a9e0,
        #49E398
    );
}

.wpf-project-marquee .wpf-project-marquee-card img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    pointer-events:none;
}

/* Tablet */

@media(max-width:991px){

    .wpf-project-marquee::before,
    .wpf-project-marquee::after{
        width:50px;
    }

    .wpf-project-marquee .wpf-project-marquee-track{
        gap:16px;
    }

    .wpf-project-marquee .wpf-project-marquee-card{
        flex-basis:310px;
        height:235px;
        border-radius:17px;
    }

}

/* Mobile */

@media(max-width:575px){

    .wpf-project-marquee{
        padding:8px 0 18px;
    }

    .wpf-project-marquee::before,
    .wpf-project-marquee::after{
        width:25px;
    }

    .wpf-project-marquee .wpf-project-marquee-track{
        gap:14px;
    }

    .wpf-project-marquee .wpf-project-marquee-card{
        flex-basis:270px;
        height:205px;
        border-radius:15px;
    }

}

