/********** Template CSS **********/
:root {
    --primary: #13C5DD;
    --secondary: #354F8E;
    --light: #EFF5F9;
    --dark: #1D2A4D;
}


.mb-5 {
    margin-bottom: 5px;
}


img,
iframe,
video {
    max-width: 100%;
}

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

.clinic-navbar11 {

    width: 100%;

    background: #ffffff;

    position: relative;

    z-index: 9999;

    border-bottom: 1px solid #eeeeee;

    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.05);

    animation:
        navbarDown22 0.8s ease forwards;
}


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

@keyframes navbarDown22 {

    0% {

        opacity: 0;

        transform:
            translateY(-40px);

    }

    100% {

        opacity: 1;

        transform:
            translateY(0);

    }

}


/* =========================================
   CONTAINER
========================================= */

.clinic-navbar-container22 {

    width: 100%;

    min-height: 110px;

    padding-left: 4%;
    padding-right: 2%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 40px;

    box-sizing: border-box;

}


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

.clinic-logo-link33 {

    display: inline-flex;

    align-items: center;

    text-decoration: none;

    flex-shrink: 0;

    transition:
        transform 0.4s ease;
}


.clinic-logo44 {

    width: 250px;

    max-width: 100%;

    height: auto;

    display: block;

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


.clinic-logo-link33:hover {

    transform:
        translateY(-3px);

}


.clinic-logo-link33:hover .clinic-logo44 {

    transform:
        scale(1.02);

}


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

.clinic-navigation66 {

    display: flex;

    align-items: center;

    justify-content: flex-end;

    gap: 55px;

    flex: 1;

}


/* =========================================
   MENU
========================================= */

.clinic-menu77 {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 45px;

    list-style: none;

    padding: 0;

    margin: 0;

}


.clinic-menu-item88 {

    position: relative;

}


.clinic-menu-link99 {

    position: relative;

    display: inline-block;

    padding: 15px 0;

    color: #172342;

    text-decoration: none;

    font-size: 18px;

    font-weight: 600;

    white-space: nowrap;

    transition:
        color 0.35s ease,
        transform 0.35s ease;
}


/* =========================================
   MENU UNDERLINE
========================================= */

.clinic-menu-link99::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: 2px;

    width: 0;

    height: 4px;

    border-radius: 10px;

    background: #2946c7;

    transform:
        translateX(-50%);

    transition:
        width 0.4s ease;

}


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

.clinic-menu-link99:hover {

    color: #2946c7;

    transform:
        translateY(-3px);

}


.clinic-menu-link99:hover::after {

    width: 100%;

}


/* =========================================
   ACTIVE MENU
========================================= */

.clinic-menu-link99.active100 {

    color: #2946c7;

}


.clinic-menu-link99.active100::after {

    width: 100%;

}


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

.clinic-appointment-btn111 {

    position: relative;

    overflow: hidden;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 12px;

    padding: 18px 28px;

    background: #3b9367;

    color: #ffffff;

    border-radius: 10px;

    text-decoration: none;

    font-size: 18px;

    font-weight: 700;

    border: 2px solid #3b9367;

    box-shadow:
        0 8px 20px rgba(59, 147, 103, 0.20);

    transition:
        all 0.4s ease;

}


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

.clinic-appointment-btn111::before {

    content: "";

    position: absolute;

    top: 0;

    left: -120%;

    width: 70%;

    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255, 255, 255, 0.35),
            transparent
        );

    transform:
        skewX(-20deg);

    transition:
        left 0.6s ease;

}


.clinic-appointment-btn111:hover::before {

    left: 140%;

}


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

.clinic-appointment-btn111:hover {

    color: #3b9367;

    background: #ffffff;

    border-color: #3b9367;

    transform:
        translateY(-4px);

    box-shadow:
        0 12px 28px rgba(59, 147, 103, 0.25);

}


.clinic-appointment-btn111 i {

    transition:
        transform 0.35s ease;

}


.clinic-appointment-btn111:hover i {

    transform:
        translateX(6px);

}


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

.clinic-mobile-toggle55 {

    display: none;

    width: 48px;

    height: 48px;

    padding: 9px;

    border: none;

    border-radius: 8px;

    background: #3b9367;

    cursor: pointer;

}


.clinic-mobile-toggle55 span {

    display: block;

    width: 100%;

    height: 3px;

    margin: 5px 0;

    border-radius: 10px;

    background: #ffffff;

    transition:
        all 0.3s ease;

}


/* =========================================
   MOBILE ONLY - 768PX
========================================= */

@media (max-width: 768px) {

    .clinic-navbar-container22 {

        min-height: 85px;

        padding-left: 20px;

        padding-right: 20px;

        gap: 15px;

    }


    .clinic-logo44 {

        width: 260px;

    }


    .clinic-mobile-toggle55 {

        display: block;

        flex-shrink: 0;

    }


    .clinic-navigation66 {

        position: absolute;

        top: 100%;

        left: 0;

        width: 100%;

        padding: 25px 20px 30px;

        background: #ffffff;

        display: none;

        flex-direction: column;

        align-items: stretch;

        gap: 20px;

        border-top: 1px solid #eeeeee;

        box-shadow:
            0 15px 25px rgba(0, 0, 0, 0.08);

        box-sizing: border-box;

    }


    .clinic-navigation66.mobile-open112 {

        display: flex;

        animation:
            mobileMenuDown122 0.4s ease forwards;

    }


    @keyframes mobileMenuDown122 {

        0% {

            opacity: 0;

            transform:
                translateY(-15px);

        }

        100% {

            opacity: 1;

            transform:
                translateY(0);

        }

    }


    .clinic-menu77 {

        width: 100%;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

    }


    .clinic-menu-item88 {

        width: 100%;

        border-bottom:
            1px solid #eeeeee;

    }


    .clinic-menu-link99 {

        width: 100%;

        padding: 15px 5px;

        font-size: 16px;

        box-sizing: border-box;

    }


    .clinic-menu-link99::after {

        left: 0;

        bottom: 0;

        transform: none;

    }


    .clinic-menu-link99:hover::after,
    .clinic-menu-link99.active100::after {

        width: 45px;

    }


    .clinic-appointment-btn111 {

        width: 100%;

        min-width: auto;

        padding: 14px 20px;

        font-size: 16px;

        box-sizing: border-box;

    }

}


/* =========================================
   LARGE SCREEN - MIN WIDTH 1440PX
========================================= */

@media (min-width: 1440px) {

    .clinic-navbar-container22 {

        min-height: 125px;

        padding-left: 5%;

        padding-right: 3%;

        gap: 50px;

    }


    .clinic-logo44 {

        width: 300px;

    }


    .clinic-navigation66 {

        gap: 60px;

    }


    .clinic-menu77 {

        gap: 50px;

    }


    .clinic-menu-link99 {

        font-size: 20px;

    }


    .clinic-appointment-btn111 {

        min-width: 300px;

        padding: 20px 32px;

        font-size: 20px;

    }

}




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

@media (max-width: 768px) {

    .clinic-navbar11 {
        position: relative;
    }


    .clinic-navbar-container22 {
        min-height: 85px;

        padding-left: 20px;
        padding-right: 20px;

        gap: 15px;

        position: relative;
    }


    /* LOGO */

    .clinic-logo44 {
        width: 260px;
        max-width: calc(100vw - 100px);
    }


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

    .clinic-mobile-toggle55 {

        display: flex !important;

        width: 48px;
        height: 48px;

        padding: 9px;

        margin: 0;

        border: none;

        border-radius: 8px;

        background: #3b9367;

        cursor: pointer;

        flex-shrink: 0;

        align-items: center;

        justify-content: center;

        flex-direction: column;

        gap: 5px;

        position: relative;

        z-index: 10002;

        outline: none;
    }


    .clinic-mobile-toggle55 span {

        display: block;

        width: 28px;
        height: 3px;

        margin: 0;

        border-radius: 10px;

        background: #ffffff;

        transition:
            transform 0.3s ease,
            opacity 0.3s ease;
    }


    /* =========================================
       TOGGLE ACTIVE / CROSS
    ========================================= */

    .clinic-mobile-toggle55.active112
    span:nth-child(1) {

        transform:
            translateY(8px)
            rotate(45deg);
    }


    .clinic-mobile-toggle55.active112
    span:nth-child(2) {

        opacity: 0;
    }


    .clinic-mobile-toggle55.active112
    span:nth-child(3) {

        transform:
            translateY(-8px)
            rotate(-45deg);
    }


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

    .clinic-navigation66 {

        position: absolute !important;

        top: 100% !important;

        left: 0 !important;

        width: 100% !important;

        padding: 25px 20px 30px !important;

        background: #ffffff !important;

        display: none !important;

        flex-direction: column !important;

        align-items: stretch !important;

        gap: 20px !important;

        border-top: 1px solid #eeeeee;

        box-shadow:
            0 15px 25px rgba(0, 0, 0, 0.08);

        box-sizing: border-box;

        z-index: 10001;

    }


    /* =========================================
       OPEN MENU
    ========================================= */

    .clinic-navigation66.mobile-open112 {

        display: flex !important;

        animation:
            mobileMenuDown122 0.4s ease forwards;
    }


    @keyframes mobileMenuDown122 {

        0% {

            opacity: 0;

            transform:
                translateY(-15px);

        }

        100% {

            opacity: 1;

            transform:
                translateY(0);

        }

    }


    /* =========================================
       MENU
    ========================================= */

    .clinic-menu77 {

        width: 100%;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        list-style: none;

        padding: 0;

        margin: 0;
    }


    .clinic-menu-item88 {

        width: 100%;

        border-bottom:
            1px solid #eeeeee;
    }


    .clinic-menu-link99 {

        display: block;

        width: 100%;

        padding: 15px 5px;

        font-size: 16px;

        box-sizing: border-box;
    }


    .clinic-menu-link99::after {

        left: 0;

        bottom: 0;

        transform: none;
    }


    .clinic-menu-link99:hover::after,
    .clinic-menu-link99.active100::after {

        width: 45px;
    }


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

    .clinic-appointment-btn111 {

        width: 100%;

        min-width: auto;

        padding: 14px 20px;

        font-size: 16px;

        box-sizing: border-box;
    }

}








/* =================================
   BANNER SECTION
================================= */

.custom-banner-section11 {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #000;
}

.custom-banner-slider22 {
    width: 100%;
    position: relative;
}

.custom-banner-slide33 {
    width: 100%;
    height: 700px;
    position: relative;
    display: none;
    overflow: hidden;
}

.custom-banner-slide33.active44 {
    display: block;
}


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

.custom-banner-image55 {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    transform: scale(1);
}

.custom-banner-slide33.active44 .custom-banner-image55 {
    animation: bannerZoom66 7s ease-in-out forwards;
}

@keyframes bannerZoom66 {

    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.10);
    }

}


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

.custom-banner-overlay77 {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.45) 45%,
            rgba(0, 0, 0, 0.20) 100%
        );

    z-index: 1;
}


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

.custom-banner-content88 {
    position: relative;
    z-index: 2;

    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
}

.custom-banner-content-inner99 {
    max-width: 750px;

    padding-left: 8%;
    padding-right: 20px;
}


/* =================================
   SMALL TITLE
================================= */

.custom-banner-small-title100 {
    color: #ff6b35;

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

    letter-spacing: 4px;
    text-transform: uppercase;

    margin-bottom: 18px;

    opacity: 0;
    transform: translateY(30px);
}


/* =================================
   MAIN TITLE
================================= */

.custom-banner-title111 {
    color: #ffffff;

    font-size: 65px;
    line-height: 1.1;

    font-weight: 800;

    margin-top: 0;
    margin-bottom: 22px;

    opacity: 0;
    transform: translateY(50px);
}


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

.custom-banner-description122 {
    color: rgba(255, 255, 255, 0.90);

    font-size: 18px;
    line-height: 1.7;

    max-width: 650px;

    margin-top: 0;
    margin-bottom: 32px;

    opacity: 0;
    transform: translateY(50px);
}


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

.custom-banner-button133 {
    display: inline-flex;

    align-items: center;
    gap: 12px;

    padding: 15px 32px;

    background: #ff6b35;
    color: #ffffff;

    border: 2px solid #ff6b35;
    border-radius: 5px;

    text-decoration: none;

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

    transition: all 0.35s ease;

    opacity: 0;
    transform: translateY(50px);
}

.custom-banner-button133:hover {
    background: transparent;
    color: #ffffff;

    border-color: #ffffff;

    transform: translateY(-3px);
}


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

.custom-banner-slide33.active44
.custom-banner-small-title100 {

    animation:
        bannerTextUp144 0.8s ease forwards;

    animation-delay: 0.3s;
}


.custom-banner-slide33.active44
.custom-banner-title111 {

    animation:
        bannerTextUp144 0.9s ease forwards;

    animation-delay: 0.5s;
}


.custom-banner-slide33.active44
.custom-banner-description122 {

    animation:
        bannerTextUp144 0.9s ease forwards;

    animation-delay: 0.7s;
}


.custom-banner-slide33.active44
.custom-banner-button133 {

    animation:
        bannerTextUp144 0.9s ease forwards;

    animation-delay: 0.9s;
}


@keyframes bannerTextUp144 {

    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =================================
   LEFT / RIGHT ARROWS
================================= */

.custom-banner-arrow-left155,
.custom-banner-arrow-right166 {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    z-index: 5;

    width: 52px;
    height: 52px;

    border-radius: 50%;

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

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

    backdrop-filter: blur(5px);

    color: #ffffff;

    display: flex;

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

    cursor: pointer;

    transition: all 0.3s ease;
}


.custom-banner-arrow-left155 {
    left: 25px;
}


.custom-banner-arrow-right166 {
    right: 25px;
}


.custom-banner-arrow-left155:hover,
.custom-banner-arrow-right166:hover {

    background: #ff6b35;

    border-color: #ff6b35;

    transform:
        translateY(-50%) scale(1.1);
}


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

.custom-banner-dots177 {

    position: absolute;

    bottom: 30px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 5;

    display: flex;

    align-items: center;

    gap: 10px;
}


.custom-banner-dot188 {

    width: 10px;
    height: 10px;

    border-radius: 50%;

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

    cursor: pointer;

    transition: all 0.3s ease;
}


.custom-banner-dot188.active199 {

    width: 35px;

    border-radius: 10px;

    background: #ff6b35;
}


/* =================================
   MOBILE ONLY - MAX 768PX
================================= */

@media (max-width: 768px) {

    .custom-banner-slide33 {
        height: 620px;
    }


    .custom-banner-content-inner99 {

        padding-left: 30px;
        padding-right: 30px;

        text-align: center;

        margin: 0 auto;
    }


    .custom-banner-small-title100 {

        font-size: 14px;

        letter-spacing: 2px;

        margin-bottom: 12px;
    }


    .custom-banner-title111 {

        font-size: 40px;

        line-height: 1.15;

        margin-bottom: 18px;
    }


    .custom-banner-description122 {

        font-size: 15px;

        line-height: 1.6;

        margin-bottom: 25px;
    }


    .custom-banner-button133 {

        padding: 12px 25px;

        font-size: 14px;
    }


    .custom-banner-arrow-left155,
    .custom-banner-arrow-right166 {

        width: 40px;
        height: 40px;
    }


    .custom-banner-arrow-left155 {
        left: 12px;
    }


    .custom-banner-arrow-right166 {
        right: 12px;
    }


    .custom-banner-dots177 {
        bottom: 18px;
    }

}


/* =================================
   LARGE SCREEN - MIN WIDTH 1440PX
================================= */

@media (min-width: 1440px) {

    .custom-banner-slide33 {
        height: 780px;
    }

    .custom-banner-content-inner99 {
        max-width: 850px;
    }

    .custom-banner-small-title100 {
        font-size: 22px;
    }

    .custom-banner-title111 {
        font-size: 72px;
    }

    .custom-banner-description122 {
        font-size: 20px;
        max-width: 720px;
    }

    .custom-banner-button133 {
        padding: 17px 36px;
        font-size: 18px;
    }

    .custom-banner-arrow-left155,
    .custom-banner-arrow-right166 {
        width: 58px;
        height: 58px;
    }

    .custom-banner-arrow-left155 {
        left: 35px;
    }

    .custom-banner-arrow-right166 {
        right: 35px;
    }

    .custom-banner-dots177 {
        bottom: 35px;
    }

}





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

.why-slider-section11 {
    position: relative;
    width: 100%;
    padding: 55px 0 65px;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================================
   BOOTSTRAP CONTAINER REPLACEMENT
========================================================= */

.why-slider-container00 {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 12px;
    position: relative;
}


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

.why-slider-section11::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: -170px;
    left: -150px;

    border-radius: 50%;

    background: rgba(22, 131, 72, 0.045);

    pointer-events: none;
}


.why-slider-section11::after {
    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    right: -150px;
    bottom: -150px;

    border-radius: 50%;

    background: rgba(17, 80, 240, 0.035);

    pointer-events: none;
}


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

.why-slider-heading22 {
    position: relative;

    z-index: 5;

    text-align: center;

    margin-bottom: 35px;

    animation:
        whySliderHeadingReveal33 0.9s ease both;
}


.why-slider-small-title33 {
    display: inline-block;

    margin-bottom: 7px;

    color: #168348;

    font-size: 14px;

    font-weight: 800;

    letter-spacing: 1.7px;
}


.why-slider-main-title44 {
    margin: 0;

    color: #092f56;

    font-size: 31px;

    line-height: 1.2;

    font-weight: 800;
}


.why-slider-main-title44 span {
    color: #168348;
}


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

.why-slider-line55 {
    position: relative;

    width: 90px;
    height: 4px;

    margin: 14px auto 0;

    border-radius: 20px;

    background: #dcefe3;

    overflow: hidden;
}


.why-slider-line55 span {
    position: absolute;

    top: 0;
    left: 0;

    width: 38px;
    height: 100%;

    border-radius: 20px;

    background: #168348;

    animation:
        whySliderLine66 2s ease-in-out infinite;
}


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

.why-slider-wrapper66 {
    position: relative;

    z-index: 4;

    width: 100%;

    padding: 0 48px;
}


/* =========================================================
   SLIDER VIEW
========================================================= */

.why-slider-view111 {
    width: 100%;

    overflow: hidden;
}


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

.why-slider-track122 {
    display: flex;

    width: 100%;

    transition:
        transform 0.75s cubic-bezier(.22, .61, .36, 1);

    will-change: transform;
}


/* =========================================================
   SLIDER ITEM
========================================================= */

.why-slider-item144 {
    flex: 0 0 33.333333%;

    width: 33.333333%;

    padding: 10px 7px;

    box-sizing: border-box;
}


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

.why-slider-card155 {
    position: relative;

    min-height: 225px;

    padding: 27px 15px 22px;

    text-align: center;

    background: #ffffff;

    border: 1px solid #eeeeee;

    border-radius: 15px;

    box-shadow:
        0 5px 20px rgba(0, 0, 0, 0.055);

    overflow: hidden;

    transition:
        transform 0.55s cubic-bezier(.175, .885, .32, 1.275),
        box-shadow 0.5s ease,
        border-color 0.4s ease;

    animation:
        whySliderCardReveal77 0.8s ease both;
}


/* =========================================================
   CARD TOP ANIMATED LINE
========================================================= */

.why-slider-card155::before {
    content: "";

    position: absolute;

    top: 0;
    left: -100%;

    width: 100%;
    height: 3px;

    background: linear-gradient(90deg,
            transparent,
            #168348,
            #1f9d59,
            transparent);

    transition:
        left 0.7s ease;

    z-index: 5;
}


.why-slider-card155:hover::before {
    left: 100%;
}


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

.why-slider-card155::after {
    content: "";

    position: absolute;

    top: 0;
    left: -130%;

    width: 60%;
    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.65),
            transparent);

    transform: skewX(-20deg);

    pointer-events: none;

    z-index: 4;
}


.why-slider-card155:hover::after {
    animation:
        whySliderShine88 0.8s ease;
}


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

.why-slider-card155:hover {
    transform:
        translateY(-12px) scale(1.025);

    border-color:
        rgba(22, 131, 72, 0.4);

    box-shadow:
        0 20px 40px rgba(22, 131, 72, 0.14),

        0 0 0 5px rgba(22, 131, 72, 0.025);
}


/* =========================================================
   IMAGE ICON BOX
========================================================= */

.why-slider-icon-box166 {
    position: relative;

    z-index: 6;

    width: 100%;
    height: 100%;

    margin: 0 auto 16px;

    display: flex;

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

    border-radius: 50%;

    background: #f1f9f4;

    border: 1px solid #d6ecdd;

    transition:
        transform 0.55s cubic-bezier(.175, .885, .32, 1.275),

        background 0.4s ease,

        box-shadow 0.4s ease,

        border-color 0.4s ease;
}


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

.why-slider-icon-img177 {
    max-width: 100%;
    height: 100%;

    object-fit: contain;

    display: block;

    transition:
        transform 0.6s cubic-bezier(.175, .885, .32, 1.275),

        filter 0.4s ease;
}


/* =========================================================
   IMAGE PULSE RING
========================================================= */

.why-slider-icon-box166::before {
    content: "";

    position: absolute;

    inset: -7px;

    border: 1px solid rgba(22, 131, 72, 0.3);

    border-radius: 50%;

    opacity: 0;

    overflow: hidden;

    pointer-events: none;
}


/* =========================================================
   IMAGE HOVER ANIMATION
========================================================= */

.why-slider-card155:hover .why-slider-icon-box166 {

    background: #168348;

    border-color: #168348;

    transform:
        scale(1.1) rotate(3deg);

    box-shadow:
        0 8px 22px rgba(22, 131, 72, 0.25);

    animation:
        whySliderImageBox166 0.7s ease;
}


.why-slider-card155:hover .why-slider-icon-box166::before {

    animation:
        whySliderImageRing177 1.3s ease-out infinite;
}


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

.why-slider-card-title188 {
    position: relative;

    z-index: 6;

    margin: 0 0 10px;

    color: #102f50;

    font-size: 15px;

    line-height: 1.45;

    font-weight: 800;

    transition:
        color 0.35s ease,

        transform 0.35s ease;
}


.why-slider-card155:hover .why-slider-card-title188 {

    color: #168348;

    transform:
        translateY(-3px);
}


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

.why-slider-card-text199 {
    position: relative;

    z-index: 6;

    max-width: 175px;

    margin: 0 auto;

    color: #777777;

    font-size: 12px;

    line-height: 1.6;
}


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

.why-slider-number200 {
    position: absolute;

    right: 12px;
    bottom: 8px;

    color:
        rgba(22, 131, 72, 0.08);

    font-size: 36px;

    line-height: 1;

    font-weight: 900;

    transition:
        color 0.4s ease,

        transform 0.4s ease;
}


.why-slider-card155:hover .why-slider-number200 {

    color:
        rgba(22, 131, 72, 0.15);

    transform:
        scale(1.1);
}


/* =========================================================
   PREVIOUS / NEXT BUTTON
========================================================= */

.why-slider-btn77 {
    position: absolute;

    top: 50%;

    z-index: 20;

    width: 38px;
    height: 38px;

    margin-top: -19px;

    padding: 0;

    display: flex;

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

    border: 1px solid #dce9e1;

    border-radius: 50%;

    color: #168348;

    background: #ffffff;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.08);

    cursor: pointer;

    transition:
        transform 0.3s ease,

        color 0.3s ease,

        background 0.3s ease,

        box-shadow 0.3s ease;
}


.why-slider-prev88 {
    left: 0;
}


.why-slider-next211 {
    right: 0;
}


.why-slider-arrow100 {
    display: block;

    font-size: 18px;

    line-height: 1;

    transition:
        transform 0.3s ease;
}


.why-slider-btn77:hover {

    color: #ffffff;

    background: #168348;

    transform:
        scale(1.12);

    box-shadow:
        0 8px 20px rgba(22, 131, 72, 0.25);
}


.why-slider-btn77:hover .why-slider-arrow100 {

    transform:
        scale(1.15);
}


.why-slider-btn77:active {

    transform:
        scale(0.92);
}


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

.why-slider-dots233 {

    position: relative;

    z-index: 5;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 7px;

    margin-top: 22px;
}


.why-slider-dot255 {

    width: 8px;
    height: 8px;

    padding: 0;

    border: 0;

    border-radius: 20px;

    background: #d7e5dc;

    cursor: pointer;

    transition:
        width 0.4s ease,

        background 0.4s ease,

        transform 0.3s ease;
}


.why-slider-dot255:hover {

    transform:
        scale(1.2);
}


.why-slider-dot255.active {

    width: 28px;

    background: #168348;
}


/* =========================================================
   KEYFRAME 1
   HEADING
========================================================= */

@keyframes whySliderHeadingReveal33 {

    0% {

        opacity: 0;

        transform:
            translateY(30px);

        filter:
            blur(5px);
    }

    100% {

        opacity: 1;

        transform:
            translateY(0);

        filter:
            blur(0);
    }
}


/* =========================================================
   KEYFRAME 2
   HEADING LINE
========================================================= */

@keyframes whySliderLine66 {

    0% {

        transform:
            translateX(-30px);
    }

    50% {

        transform:
            translateX(52px);
    }

    100% {

        transform:
            translateX(-30px);
    }
}


/* =========================================================
   KEYFRAME 3
   CARD REVEAL
========================================================= */

@keyframes whySliderCardReveal77 {

    0% {

        opacity: 0;

        transform:
            translateY(50px) scale(0.9);
    }

    70% {

        opacity: 1;

        transform:
            translateY(-5px) scale(1.02);
    }

    100% {

        opacity: 1;

        transform:
            translateY(0) scale(1);
    }
}


/* =========================================================
   KEYFRAME 4
   CARD SHINE
========================================================= */

@keyframes whySliderShine88 {

    0% {

        left: -130%;
    }

    100% {

        left: 150%;
    }
}


/* =========================================================
   KEYFRAME 5
   IMAGE BOX
========================================================= */

@keyframes whySliderImageBox166 {

    0% {

        transform:
            scale(1) rotate(0);
    }

    35% {

        transform:
            scale(1.18) rotate(-7deg);
    }

    65% {

        transform:
            scale(0.98) rotate(6deg);
    }

    100% {

        transform:
            scale(1.1) rotate(5deg);
    }
}


/* =========================================================
   KEYFRAME 6
   IMAGE RING
========================================================= */

@keyframes whySliderImageRing177 {

    0% {

        transform:
            scale(1);

        opacity: 0.65;
    }

    70% {

        transform:
            scale(1.45);

        opacity: 0;
    }

    100% {

        transform:
            scale(1.45);

        opacity: 0;
    }
}


/* =========================================================
   KEYFRAME 7
   IMAGE PULSE
========================================================= */

@keyframes whySliderImagePulse188 {

    0%,
    100% {

        transform:
            scale(1.12) rotate(-8deg);
    }

    50% {

        transform:
            scale(1.25) rotate(4deg);
    }
}


/* =========================================================
   ONLY MOBILE
   MAX WIDTH 768PX
========================================================= */

@media (max-width: 768px) {

    .why-slider-container00 {
        padding: 0 12px;
    }


    .why-slider-section11 {

        padding:
            45px 0 50px;
    }


    .why-slider-heading22 {

        margin-bottom:
            28px;

        padding:
            0 15px;
    }


    .why-slider-small-title33 {

        font-size:
            12px;

        letter-spacing:
            1.4px;
    }


    .why-slider-main-title44 {

        font-size:
            25px;
    }


    .why-slider-wrapper66 {

        padding:
            0 38px;
    }


    .why-slider-item144 {

        flex:
            0 0 100%;

        width:
            100%;

        padding:
            8px 5px;
    }


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

    .why-slider-card155 {

        min-height:
            205px;

        padding:
            0 12px 20px;

        border-radius:
            13px;
    }


    /* =====================================================
       MOBILE IMAGE BOX
       LARGE RECTANGULAR IMAGE
    ===================================================== */

    .why-slider-icon-box166 {

        position:
            relative;

        width:
            100%;

        height:
            190px;

        margin:
            0 0 18px;

        padding:
            0;

        display:
            block;

        border:
            none;

        border-radius:
            10px 10px 0 0;

        background:
            transparent;

        overflow:
            hidden;

        box-shadow:
            none;

        transform:
            none;
    }


    /* =====================================================
       REMOVE OLD CIRCLE EFFECT
    ===================================================== */

    .why-slider-icon-box166::before {

        display:
            none;
    }


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

    .why-slider-icon-img177 {

        display:
            block;

        width:
            100%;

        height:
            100%;

        max-width:
            100%;

        object-fit:
            cover;

        object-position:
            center;

        border-radius:
            10px 10px 0 0;

        transform:
            scale(1);

        filter:
            none;

        transition:
            transform 0.6s cubic-bezier(.175, .885, .32, 1.275);
    }


    /* =====================================================
       IMAGE HOVER ANIMATION
    ===================================================== */

    .why-slider-card155:hover .why-slider-icon-img177 {

        transform:
            scale(1.08);

        filter:
            none;

        animation:
            none;
    }


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

    .why-slider-card-title188 {

        font-size:
            14px;

        margin-top:
            0;
    }


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

    .why-slider-card-text199 {

        font-size:
            11px;

        max-width:
            155px;
    }


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

    .why-slider-number200 {

        bottom:
            8px;

        right:
            10px;
    }


    /* =====================================================
       PREVIOUS / NEXT BUTTON
    ===================================================== */

    .why-slider-btn77 {

        width:
            34px;

        height:
            34px;

        margin-top:
            -17px;
    }


    .why-slider-prev88 {

        left:
            0;
    }


    .why-slider-next211 {

        right:
            0;
    }


    .why-slider-arrow100 {

        font-size:
            15px;
    }


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

    .why-slider-dots233 {

        margin-top:
            17px;
    }

}


/* =========================================
   LARGE SCREEN - MIN WIDTH 1440PX
========================================= */

@media (min-width: 1440px) {

    .why-slider-container00 {
        max-width: 1350px;
    }


    .why-slider-section11 {

        padding: 75px 0 85px;
    }


    .why-slider-heading22 {

        margin-bottom: 45px;
    }


    .why-slider-small-title33 {

        font-size: 16px;
    }


    .why-slider-main-title44 {

        font-size: 36px;
    }


    .why-slider-wrapper66 {

        padding: 0 60px;
    }


    .why-slider-item144 {

        flex: 0 0 33.333333%;

        width: 33.333333%;

        padding: 12px 9px;
    }


    .why-slider-card155 {

        min-height: 255px;

        padding: 32px 20px 25px;

        border-radius: 17px;
    }


    .why-slider-icon-box166 {

        margin-bottom: 18px;
    }


    .why-slider-card-title188 {

        font-size: 17px;
    }


    .why-slider-card-text199 {

        max-width: 210px;

        font-size: 13px;
    }


    .why-slider-btn77 {

        width: 44px;

        height: 44px;

        margin-top: -22px;
    }


    .why-slider-arrow100 {

        font-size: 20px;
    }


    .why-slider-dots233 {

        margin-top: 28px;
    }

}


/* =========================================================
   WHY CHOOSE US - 3 X 2 CARD GRID
========================================================= */

.why-slider-wrapper66 {
    position: relative;
    width: 100%;
}


.why-slider-view111 {
    width: 100%;
    overflow: visible;
}


.why-slider-track122 {
    width: 100%;

    display: grid !important;

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

    gap: 28px;

    transform: none !important;
}


.why-slider-item144 {
    width: 100% !important;
    min-width: 0 !important;
    flex: none !important;
}


.why-slider-card155 {
    width: 100%;
}


/* =========================================================
   ARROWS HIDE
========================================================= */

.why-slider-btn77 {
    display: none !important;
}


/* =========================================================
   DOTS HIDE
========================================================= */

.why-slider-dots233 {
    display: none !important;
}


/* =========================================================
   MOBILE - MAX WIDTH 768PX
   1 CARD PER ROW
========================================================= */

@media (max-width: 768px) {

    .why-slider-container00 {
        padding: 0 12px;
    }


    .why-slider-track122 {
        grid-template-columns: 1fr;

        grid-template-rows: auto;

        gap: 20px;
    }


    .why-slider-item144 {
        width: 100% !important;
    }


    .why-slider-card155 {
        width: 100%;
    }

}


/* =========================================================
   LARGE SCREEN - MIN WIDTH 1440PX
   3 CARDS TOP + 3 CARDS BOTTOM
========================================================= */

@media (min-width: 1440px) {

    .why-slider-container00 {
        max-width: 1350px;
    }


    .why-slider-track122 {

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

        grid-template-rows: repeat(2, auto);

        gap: 32px;
    }


    .why-slider-item144 {

        width: 100% !important;
    }


    .why-slider-card155 {

        width: 100%;
    }

}












/* =========================================================
   SERVICE SECTION - 11
========================================================= */

.aeecp-service-section11 {
    width: 100%;
    padding: 70px 0;
    background: #ffffff;
    overflow: hidden;
}


/* =========================
   CONTAINER
========================= */

.aeecp-service-container22 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}


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

.aeecp-service-heading-box33 {
    max-width: 800px;
    margin: 0 auto 45px;
    text-align: center;

    opacity: 0;
    transform: translateY(40px);

    transition: all 0.9s ease;
}


.aeecp-service-heading-box33.aeecp-service-heading-show44 {
    opacity: 1;
    transform: translateY(0);
}


.aeecp-service-subtitle44 {
    display: inline-block;

    color: #398f63;

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

    letter-spacing: 1.5px;

    position: relative;

    padding-bottom: 9px;
    margin-bottom: 14px;
}


.aeecp-service-subtitle44::after {
    content: "";

    position: absolute;

    left: 50%;
    bottom: 0;

    width: 55px;
    height: 3px;

    background: #1150f0;

    border-radius: 5px;

    transform: translateX(-50%);
}


.aeecp-service-title55 {
    color: #132d55;

    font-size: 42px;
    line-height: 1.2;

    font-weight: 800;

    margin: 0 0 15px;
}


.aeecp-service-title55 span {
    display: block;
    color: #398f63;
}


.aeecp-service-heading-text66 {
    color: #718096;

    font-size: 15px;
    line-height: 1.7;

    margin: 0 auto;

    max-width: 680px;
}


/* =========================================================
   SERVICE GRID
   Bootstrap row/columns completely removed
========================================================= */

.aeecp-service-row77 {
    width: 100%;

    display: grid;

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

    gap: 25px;

    box-sizing: border-box;
}


/* =========================
   COLUMNS
========================= */

.aeecp-service-column88,
.aeecp-service-column1414,
.aeecp-service-column2020,
.aeecp-service-column2626,
.aeecp-service-column3232,
.aeecp-service-column3838 {

    width: 100%;

    opacity: 0;

    transform: translateY(60px);

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

    box-sizing: border-box;
}


/* =========================
   ANIMATION CLASS
========================= */

.aeecp-service-column-show45 {
    opacity: 1;
    transform: translateY(0);
}


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

.aeecp-service-card99,
.aeecp-service-card1515,
.aeecp-service-card2121,
.aeecp-service-card2727,
.aeecp-service-card3333,
.aeecp-service-card3939 {

    width: 100%;
    height: 100%;
    min-height: 245px;

    background: #ffffff;

    border: 1px solid #edf0f3;

    border-radius: 14px;

    padding: 30px 25px;

    text-align: center;

    position: relative;

    overflow: hidden;

    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.06);

    box-sizing: border-box;

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


/* =========================
   TOP GREEN LINE
========================= */

.aeecp-service-card99::before,
.aeecp-service-card1515::before,
.aeecp-service-card2121::before,
.aeecp-service-card2727::before,
.aeecp-service-card3333::before,
.aeecp-service-card3939::before {

    content: "";

    position: absolute;

    top: 0;
    left: 50%;

    width: 0;
    height: 4px;

    background: #398f63;

    transform: translateX(-50%);

    transition: width 0.4s ease;
}


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

.aeecp-service-card99:hover,
.aeecp-service-card1515:hover,
.aeecp-service-card2121:hover,
.aeecp-service-card2727:hover,
.aeecp-service-card3333:hover,
.aeecp-service-card3939:hover {

    transform: translateY(-10px);

    border-color: #398f63;

    box-shadow: 0 18px 40px rgba(57, 143, 99, 0.15);
}


.aeecp-service-card99:hover::before,
.aeecp-service-card1515:hover::before,
.aeecp-service-card2121:hover::before,
.aeecp-service-card2727:hover::before,
.aeecp-service-card3333:hover::before,
.aeecp-service-card3939:hover::before {

    width: 100%;
}


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

.aeecp-service-icon-box1010,
.aeecp-service-icon-box1616,
.aeecp-service-icon-box2222,
.aeecp-service-icon-box2828,
.aeecp-service-icon-box3434,
.aeecp-service-icon-box4040 {

    width: 62px;
    height: 62px;

    margin: 0 auto 18px;

    border-radius: 50%;

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

    background: #eaf7ef;

    color: #398f63;

    font-size: 25px;

    transition:
        transform 0.45s ease,
        background 0.45s ease,
        color 0.45s ease;
}


.aeecp-service-card99:hover .aeecp-service-icon-box1010,
.aeecp-service-card1515:hover .aeecp-service-icon-box1616,
.aeecp-service-card2121:hover .aeecp-service-icon-box2222,
.aeecp-service-card2727:hover .aeecp-service-icon-box2828,
.aeecp-service-card3333:hover .aeecp-service-icon-box3434,
.aeecp-service-card3939:hover .aeecp-service-icon-box4040 {

    transform: rotateY(360deg) scale(1.08);

    background: #398f63;

    color: #ffffff;
}


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

.aeecp-service-card-title1111,
.aeecp-service-card-title1717,
.aeecp-service-card-title2323,
.aeecp-service-card-title2929,
.aeecp-service-card-title3535,
.aeecp-service-card-title4141 {

    color: #132d55;

    font-size: 18px;

    font-weight: 700;

    margin: 0 0 10px;

    transition: color 0.3s ease;
}


.aeecp-service-card99:hover .aeecp-service-card-title1111,
.aeecp-service-card1515:hover .aeecp-service-card-title1717,
.aeecp-service-card2121:hover .aeecp-service-card-title2323,
.aeecp-service-card2727:hover .aeecp-service-card-title2929,
.aeecp-service-card3333:hover .aeecp-service-card-title3535,
.aeecp-service-card3939:hover .aeecp-service-card-title4141 {

    color: #398f63;
}


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

.aeecp-service-card-text1212,
.aeecp-service-card-text1818,
.aeecp-service-card-text2424,
.aeecp-service-card-text3030,
.aeecp-service-card-text3636,
.aeecp-service-card-text4242 {

    color: #758398;

    font-size: 13px;

    line-height: 1.7;

    margin: 0 auto 15px;

    max-width: 250px;
}


/* =========================================================
   LINK
========================================================= */

.aeecp-service-link1313,
.aeecp-service-link1919,
.aeecp-service-link2525,
.aeecp-service-link3131,
.aeecp-service-link3737,
.aeecp-service-link4343 {

    color: #1150f0;

    text-decoration: none;

    font-size: 13px;

    font-weight: 700;

    display: inline-flex;

    align-items: center;

    gap: 7px;

    transition: all 0.3s ease;
}


.aeecp-service-link1313:hover,
.aeecp-service-link1919:hover,
.aeecp-service-link2525:hover,
.aeecp-service-link3131:hover,
.aeecp-service-link3737:hover,
.aeecp-service-link4343:hover {

    color: #398f63;

    gap: 12px;

    text-decoration: none;
}


/* =========================================================
   ONLY MAX-WIDTH 768px
========================================================= */

@media (max-width: 768px) {

    .aeecp-service-section11 {
        padding: 50px 15px;
    }


    .aeecp-service-container22 {
        padding: 0;
    }


    .aeecp-service-heading-box33 {
        margin-bottom: 30px;
    }


    .aeecp-service-title55 {
        font-size: 31px;
    }


    .aeecp-service-heading-text66 {
        font-size: 14px;
    }


    /* Mobile = 2 Cards Per Row */

    .aeecp-service-row77 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }


    .aeecp-service-card99,
    .aeecp-service-card1515,
    .aeecp-service-card2121,
    .aeecp-service-card2727,
    .aeecp-service-card3333,
    .aeecp-service-card3939 {

        min-height: 220px;

        padding: 25px 20px;
    }


    .aeecp-service-icon-box1010,
    .aeecp-service-icon-box1616,
    .aeecp-service-icon-box2222,
    .aeecp-service-icon-box2828,
    .aeecp-service-icon-box3434,
    .aeecp-service-icon-box4040 {

        width: 55px;
        height: 55px;

        font-size: 22px;

        margin-bottom: 15px;
    }


    .aeecp-service-card-title1111,
    .aeecp-service-card-title1717,
    .aeecp-service-card-title2323,
    .aeecp-service-card-title2929,
    .aeecp-service-card-title3535,
    .aeecp-service-card-title4141 {

        font-size: 17px;
    }

}


/* =========================================================
   LARGE SCREEN - MIN WIDTH 1440PX
========================================================= */

@media (min-width: 1440px) {

    .aeecp-service-section11 {
        padding: 90px 0;
    }


    .aeecp-service-container22 {
        max-width: 1350px;
    }


    .aeecp-service-heading-box33 {
        max-width: 900px;
        margin-bottom: 55px;
    }


    .aeecp-service-title55 {
        font-size: 48px;
    }


    .aeecp-service-heading-text66 {
        font-size: 17px;
        max-width: 760px;
    }


    .aeecp-service-row77 {
        gap: 30px;
    }


    .aeecp-service-card99,
    .aeecp-service-card1515,
    .aeecp-service-card2121,
    .aeecp-service-card2727,
    .aeecp-service-card3333,
    .aeecp-service-card3939 {

        min-height: 275px;

        padding: 35px 30px;
    }


    .aeecp-service-icon-box1010,
    .aeecp-service-icon-box1616,
    .aeecp-service-icon-box2222,
    .aeecp-service-icon-box2828,
    .aeecp-service-icon-box3434,
    .aeecp-service-icon-box4040 {

        width: 70px;
        height: 70px;

        font-size: 28px;

        margin-bottom: 20px;
    }


    .aeecp-service-card-title1111,
    .aeecp-service-card-title1717,
    .aeecp-service-card-title2323,
    .aeecp-service-card-title2929,
    .aeecp-service-card-title3535,
    .aeecp-service-card-title4141 {

        font-size: 20px;
    }

}




/* ================= COUNTER SECTION ================= */

.counter-section11 {
    width: 100%;
    padding: 22px 0;
    background: #123c63;
    overflow: hidden;
}


/* Bootstrap container replacement */

.counter-container00 {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 12px;
}


/* Counter Wrapper */

.counter-wrapper22 {
    width: 100%;
    background: #123c63;
    border-radius: 18px;
    overflow: hidden;
    position: relative;

    display: flex;
    flex-wrap: wrap;
}


/* Individual Counter Column */

.counter-item00 {
    width: 25%;
    position: relative;
}


/* Individual Counter */

.counter-box33 {
    min-height: 105px;
    padding: 20px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    transition: all 0.4s ease;
    animation: counterFade88 0.8s ease both;
}


/* Vertical separator */

.counter-box33::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    width: 1px;
    height: 60%;
    background: rgba(255, 255, 255, 0.35);
}


/* Remove separator from last box */

.counter-item00:last-child .counter-box33::after {
    display: none;
}


/* Icon */

.counter-icon44 {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border: 2px solid #b7e64c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b7e64c;
    font-size: 25px;
    transition: all 0.4s ease;
}


/* Content */

.counter-content55 {
    text-align: left;
}

.counter-content55 h3 {
    margin: 0;
    padding: 0;
    color: #ffffff;
    font-size: 27px;
    font-weight: 700;
    line-height: 1.1;
    transition: all 0.3s ease;
}

.counter-content55 p {
    margin: 5px 0 0;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}


/* Trusted */

.trusted-text77 {
    font-size: 25px !important;
}


/* Hover Animation */

.counter-box33:hover {
    transform: translateY(-5px);
}

.counter-box33:hover .counter-icon44 {
    transform: scale(1.12) rotate(5deg);
    background: #b7e64c;
    color: #123c63;
    box-shadow: 0 8px 25px rgba(183, 230, 76, 0.25);
}

.counter-box33:hover .counter-content55 h3 {
    color: #b7e64c;
}


/* Entry Animation */

@keyframes counterFade88 {

    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


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

@media (max-width: 768px) {

    .counter-section11 {
        padding: 15px 0;
    }

    .counter-container00 {
        padding: 0 12px;
    }

    .counter-wrapper22 {
        border-radius: 12px;
    }

    .counter-item00 {
        width: 50%;
    }

    .counter-box33 {
        min-height: 100px;
        padding: 16px 10px;
        gap: 9px;
    }

    .counter-box33::after {
        height: 55%;
        top: 22%;
    }

    .counter-icon44 {
        width: 43px;
        height: 43px;
        min-width: 43px;
        font-size: 20px;
    }

    .counter-content55 h3 {
        font-size: 21px;
    }

    .counter-content55 p {
        font-size: 11px;
    }

    .trusted-text77 {
        font-size: 19px !important;
    }

}


/* =========================================
   LARGE SCREEN - MIN WIDTH 1440PX
========================================= */

@media (min-width: 1440px) {

    .counter-section11 {
        padding: 28px 0;
    }

    .counter-container00 {
        max-width: 1350px;
    }

    .counter-wrapper22 {
        border-radius: 20px;
    }

    .counter-box33 {
        min-height: 125px;
        padding: 24px 22px;
        gap: 18px;
    }

    .counter-icon44 {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 28px;
    }

    .counter-content55 h3 {
        font-size: 31px;
    }

    .counter-content55 p {
        font-size: 15px;
    }

    .trusted-text77 {
        font-size: 28px !important;
    }

}






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

.aeecp-about-section11 {
    width: 100%;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.aeecp-about-container22 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.aeecp-about-row33 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 50px;
}


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

.aeecp-about-image-col44 {
    width: 50%;
    padding: 0 15px;

    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s ease;
}

.aeecp-about-image-col44.aeecp-about-show25 {
    opacity: 1;
    transform: translateX(0);
}


.aeecp-about-image-box55 {
    position: relative;
    width: 100%;
    padding: 20px;
}


.aeecp-about-image-shape66 {
    position: absolute;
    width: 80%;
    height: 80%;
    background: #e9f7ef;
    left: 0;
    bottom: 0;
    border-radius: 25px;
    z-index: 0;
}


.aeecp-about-image77 {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
    transition: all 0.6s ease;
    display: block;
}


.aeecp-about-image-box55:hover .aeecp-about-image77 {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 28px 55px rgba(17, 80, 240, 0.15);
}


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

.aeecp-about-floating-card88 {
    position: absolute;
    right: -5px;
    bottom: 45px;
    background: #ffffff;
    padding: 18px 22px;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 2;
    animation: aeecpAboutFloat26 3s ease-in-out infinite;
}


.aeecp-about-card-icon99 {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #398f63;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}


.aeecp-about-floating-card88 strong {
    display: block;
    color: #132d55;
    font-size: 16px;
    font-weight: 700;
}


.aeecp-about-floating-card88 span {
    display: block;
    color: #777777;
    font-size: 12px;
    margin-top: 3px;
}


@keyframes aeecpAboutFloat26 {

    0% {
        transform: translateY(0);
    }

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

    100% {
        transform: translateY(0);
    }

}


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

.aeecp-about-content-col1010 {
    width: 50%;
    padding: 0 15px;

    opacity: 0;
    transform: translateX(80px);
    transition: all 1s ease;
}


.aeecp-about-content-col1010.aeecp-about-show27 {
    opacity: 1;
    transform: translateX(0);
}


.aeecp-about-content1111 {
    padding-left: 35px;
}


.aeecp-about-small-title1212 {
    display: inline-block;
    color: #398f63;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 1.2px;
    position: relative;
    padding-bottom: 8px;
    margin-bottom: 15px;
}


.aeecp-about-small-title1212::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 55px;
    height: 3px;
    background: #1150f0;
    border-radius: 5px;
}


.aeecp-about-heading1313 {
    font-size: 46px;
    line-height: 1.15;
    color: #132d55;
    font-weight: 800;
    margin-bottom: 25px;
}


.aeecp-about-heading1313 span {
    display: block;
    color: #398f63;
}


.aeecp-about-description1414,
.aeecp-about-description1515 {
    color: #68788d;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}


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

.aeecp-about-features1616 {
    margin-top: 25px;
}


.aeecp-about-feature1717,
.aeecp-about-feature1919,
.aeecp-about-feature2121 {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
    transition: all 0.4s ease;
}


.aeecp-about-feature1717:hover,
.aeecp-about-feature1919:hover,
.aeecp-about-feature2121:hover {
    transform: translateX(8px);
}


.aeecp-about-feature-icon1818,
.aeecp-about-feature-icon2020,
.aeecp-about-feature-icon2222 {
    min-width: 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9f7ef;
    color: #398f63;
    font-size: 19px;
}


.aeecp-about-feature1717 h4,
.aeecp-about-feature1919 h4,
.aeecp-about-feature2121 h4 {
    color: #132d55;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 4px;
}


.aeecp-about-feature1717 p,
.aeecp-about-feature1919 p,
.aeecp-about-feature2121 p {
    margin: 0;
    color: #788697;
    font-size: 13px;
}


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

.aeecp-about-button-box2323 {
    margin-top: 28px;
}


.aeecp-about-button2424 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    background: #398f63;
    color: #ffffff;
    text-decoration: none;
    border-radius: 7px;
    font-size: 15px;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(57, 143, 99, 0.2);
}


.aeecp-about-button2424:hover {
    background: #1150f0;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(17, 80, 240, 0.25);
}


.aeecp-about-button2424 i {
    transition: transform 0.3s ease;
}


.aeecp-about-button2424:hover i {
    transform: translateX(5px);
}


/* =========================
   ONLY 768px MEDIA QUERY
========================= */

@media (max-width: 768px) {

    .aeecp-about-section11 {
        padding: 55px 15px;
    }

    .aeecp-about-container22 {
        padding: 0;
    }

    .aeecp-about-row33 {
        display: block;
    }

    .aeecp-about-image-col44,
    .aeecp-about-content-col1010 {
        width: 100%;
        padding: 0;
    }

    .aeecp-about-image-box55 {
        padding: 10px;
    }

    .aeecp-about-image77 {
        height: 330px;
    }

    .aeecp-about-floating-card88 {
        right: 0;
        bottom: 25px;
        padding: 12px 15px;
    }

    .aeecp-about-card-icon99 {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .aeecp-about-floating-card88 strong {
        font-size: 13px;
    }

    .aeecp-about-floating-card88 span {
        font-size: 10px;
    }

    .aeecp-about-content1111 {
        padding-left: 0;
        padding-top: 25px;
    }

    .aeecp-about-heading1313 {
        font-size: 34px;
    }

    .aeecp-about-description1414,
    .aeecp-about-description1515 {
        font-size: 14px;
        line-height: 1.7;
    }

    .aeecp-about-feature1717,
    .aeecp-about-feature1919,
    .aeecp-about-feature2121 {
        align-items: flex-start;
    }

    .aeecp-about-button2424 {
        width: 100%;
        justify-content: center;
    }

}


/* =========================================
   LARGE SCREEN - MIN WIDTH 1440PX
========================================= */

@media (min-width: 1440px) {

    .aeecp-about-section11 {
        padding: 110px 0;
    }

    .aeecp-about-container22 {
        max-width: 1350px;
    }

    .aeecp-about-row33 {
        row-gap: 60px;
    }

    .aeecp-about-image-box55 {
        padding: 25px;
    }

    .aeecp-about-image77 {
        height: 560px;
    }

    .aeecp-about-floating-card88 {
        right: -10px;
        bottom: 55px;
        padding: 20px 25px;
    }

    .aeecp-about-card-icon99 {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .aeecp-about-content1111 {
        padding-left: 45px;
    }

    .aeecp-about-small-title1212 {
        font-size: 18px;
    }

    .aeecp-about-heading1313 {
        font-size: 52px;
    }

    .aeecp-about-description1414,
    .aeecp-about-description1515 {
        font-size: 17px;
    }

    .aeecp-about-feature-icon1818,
    .aeecp-about-feature-icon2020,
    .aeecp-about-feature-icon2222 {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 21px;
    }

}


/* =========================================================
   EECP HOW IT WORKS SECTION
========================================================= */

.eecp-work-section11 {
    width: 100%;
    padding: 70px 0;
    background: #ffffff;
    overflow: hidden;
}


/* ================= CONTAINER ================= */

.eecp-work-container22 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}


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

.eecp-work-heading33 {
    text-align: center;
    margin-bottom: 45px;
    animation: eecpHeadingAnimation44 1s ease forwards;
}


.eecp-work-small-title44 {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #159447;
    margin-bottom: 8px;
}


.eecp-work-main-title55 {
    margin: 0;
    font-size: 38px;
    font-weight: 700;
    color: #12395f;
    text-transform: uppercase;
}


.eecp-work-description66 {
    max-width: 700px;
    margin: 12px auto 0;
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
}


/* ================= HORIZONTAL AREA ================= */

.eecp-work-slider77 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;
}


/* ================= CARDS ================= */

.eecp-work-card88,
.eecp-work-card105,
.eecp-work-card112,
.eecp-work-card119 {

    flex: 0 0 245px;

    position: relative;

    text-align: center;

    background: #ffffff;

    border: 1px solid #e7e7e7;

    border-radius: 18px;

    padding: 22px 18px 25px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);

    transition: all 0.4s ease;

    animation: eecpCardAnimation55 0.8s ease forwards;

    opacity: 0;
}


/* ================= INDIVIDUAL ANIMATION DELAY ================= */

.eecp-work-card88 {
    animation-delay: 0.2s;
}

.eecp-work-card105 {
    animation-delay: 0.4s;
}

.eecp-work-card112 {
    animation-delay: 0.6s;
}

.eecp-work-card119 {
    animation-delay: 0.8s;
}


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

.eecp-work-card88:hover,
.eecp-work-card105:hover,
.eecp-work-card112:hover,
.eecp-work-card119:hover {

    transform: translateY(-12px);

    box-shadow: 0 18px 40px rgba(17, 80, 240, 0.15);

    border-color: #159447;
}


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

.eecp-work-image-box99,
.eecp-work-image-box106,
.eecp-work-image-box113,
.eecp-work-image-box120 {

    position: relative;

    width: 125px;
    height: 125px;

    margin: 0 auto 18px;

    display: flex;

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

    border-radius: 50%;

    background: #f5fbf7;

    border: 2px solid #d9efdf;

    transition: all 0.4s ease;
}


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

.eecp-work-image-box120 img {
    border-radius: 40px;
}

.eecp-work-image-box106 img {
    border-radius: 40px;
}

.eecp-work-image-box113 img {
    border-radius: 40px;
}

.eecp-work-image-box99 img {
    border-radius: 40px;
}


/* ================= IMAGE BOX HOVER ================= */

.eecp-work-card88:hover .eecp-work-image-box99,
.eecp-work-card105:hover .eecp-work-image-box106,
.eecp-work-card112:hover .eecp-work-image-box113,
.eecp-work-card119:hover .eecp-work-image-box120 {

    transform: scale(1.08) rotate(3deg);

    border-color: #159447;
}


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

.eecp-work-image100,
.eecp-work-image107,
.eecp-work-image114,
.eecp-work-image121 {

    width: 85px;
    height: 85px;

    object-fit: contain;

    transition: transform 0.5s ease;
}


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

.eecp-work-card88:hover .eecp-work-image100,
.eecp-work-card105:hover .eecp-work-image107,
.eecp-work-card112:hover .eecp-work-image114,
.eecp-work-card119:hover .eecp-work-image121 {

    transform: scale(1.12);
}


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

.eecp-work-number101,
.eecp-work-number108,
.eecp-work-number115,
.eecp-work-number122 {

    position: absolute;

    right: -5px;
    top: -5px;

    width: 35px;
    height: 35px;

    display: flex;

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

    border-radius: 50%;

    background: #159447;

    color: #ffffff;

    font-size: 13px;

    font-weight: 700;

    box-shadow: 0 5px 12px rgba(21, 148, 71, 0.25);
}


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

.eecp-work-card-title102,
.eecp-work-card-title109,
.eecp-work-card-title116,
.eecp-work-card-title123 {

    margin: 0 0 10px;

    color: #12395f;

    font-size: 19px;

    font-weight: 700;

    line-height: 1.3;
}


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

.eecp-work-card-text103,
.eecp-work-card-text110,
.eecp-work-card-text117,
.eecp-work-card-text124 {

    margin: 0;

    color: #666666;

    font-size: 14px;

    line-height: 1.6;
}


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

.eecp-work-arrow104,
.eecp-work-arrow111,
.eecp-work-arrow118 {

    flex: 0 0 auto;

    display: flex;

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

    width: 45px;
    height: 45px;

    border-radius: 50%;

    background: #f1f8f3;

    color: #159447;

    font-size: 30px;

    font-weight: 500;

    transition: all 0.4s ease;

    animation: eecpArrowAnimation66 1.5s infinite ease-in-out;
}


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

.eecp-work-arrow104:hover,
.eecp-work-arrow111:hover,
.eecp-work-arrow118:hover {

    background: #159447;

    color: #ffffff;

    transform: scale(1.1);
}


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

@keyframes eecpHeadingAnimation44 {

    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}


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

@keyframes eecpCardAnimation55 {

    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}


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

@keyframes eecpArrowAnimation66 {

    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(6px);
    }

    100% {
        transform: translateX(0);
    }

}


/* =========================================================
   ONLY MAX-WIDTH 768px
========================================================= */

@media (max-width: 768px) {

    .eecp-work-section11 {
        padding: 50px 0;
    }


    .eecp-work-container22 {
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }


    .eecp-work-main-title55 {
        font-size: 28px;
    }


    .eecp-work-description66 {
        font-size: 14px;
        padding: 0 10px;
    }


    /*
       Cards ek hi line me rahenge.
       Mobile par horizontal scroll hoga.
    */

    .eecp-work-slider77 {

        justify-content: flex-start;

        overflow-x: auto;

        overflow-y: hidden;

        flex-wrap: nowrap;

        padding: 10px 5px 25px;

        scroll-behavior: smooth;

        scrollbar-width: thin;
    }


    .eecp-work-card88,
    .eecp-work-card105,
    .eecp-work-card112,
    .eecp-work-card119 {

        flex: 0 0 240px;

    }


    .eecp-work-arrow104,
    .eecp-work-arrow111,
    .eecp-work-arrow118 {

        flex: 0 0 40px;

        width: 40px;
        height: 40px;

        font-size: 24px;
    }

}


/* =========================================================
   LARGE SCREEN - MIN WIDTH 1440PX
========================================================= */

@media (min-width: 1440px) {

    .eecp-work-section11 {
        padding: 90px 0;
    }


    .eecp-work-container22 {
        max-width: 1350px;
    }


    .eecp-work-heading33 {
        margin-bottom: 55px;
    }


    .eecp-work-main-title55 {
        font-size: 44px;
    }


    .eecp-work-description66 {
        font-size: 17px;
        max-width: 760px;
    }


    .eecp-work-slider77 {
        gap: 10px;
    }


    .eecp-work-card88,
    .eecp-work-card105,
    .eecp-work-card112,
    .eecp-work-card119 {

        flex: 0 0 280px;
    }


    .eecp-work-arrow104,
    .eecp-work-arrow111,
    .eecp-work-arrow118 {

        width: 50px;
        height: 50px;

        font-size: 32px;
    }

}

/* =========================================================
   GOOGLE REVIEW SECTION - BOOTSTRAP FREE
========================================================= */

.google-review-section11 {
    width: 100%;
    padding: 80px 0;
    background: #ffffff;
    overflow: hidden;
}


/* =========================================================
   CUSTOM CONTAINER
========================================================= */

.google-review-container22 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}


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

.google-review-heading22 {
    width: 100%;
    margin-bottom: 45px;
    text-align: center;
}

.google-review-small-title33 {
    display: inline-block;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #159447;
    margin-bottom: 8px;
}

.google-review-small-title33 i {
    font-size: 20px;
}

.google-review-title44 {
    margin: 0;
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: #102d50;
}

.google-review-subtitle55 {
    margin: 10px 0 0;
    color: #777777;
    font-size: 16px;
    line-height: 1.6;
}


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

.google-review-slider66 {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.google-review-track77 {
    display: flex;
    width: max-content;
    gap: 28px;
    transition: transform 0.8s ease;
}


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

.google-review-item99 {
    width: 520px;
    flex: 0 0 520px;
    box-sizing: border-box;
}


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

.google-review-card111 {
    position: relative;
    min-height: 345px;
    padding: 32px 35px;
    margin: 15px 0;
    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #e5e5e5;
    border-radius: 22px;

    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);

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

.google-review-card111:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
}


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

.google-review-top222 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.google-review-quote333 {
    font-size: 38px;
    color: #2c6de9;
    line-height: 1;
}

.google-review-stars444 {
    display: flex;
    align-items: center;
    gap: 5px;
}

.google-review-stars444 i {
    color: #f8b400;
    font-size: 18px;
}


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

.google-review-text555 {
    min-height: 115px;
    margin: 0;

    font-size: 17px;
    line-height: 1.75;

    color: #626262;

    text-align: center;
}


/* =========================================================
   USER
========================================================= */

.google-review-user666 {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;
    margin-top: 25px;
}

.google-review-avatar777 {
    width: 58px;
    height: 58px;
    min-width: 58px;

    border-radius: 50%;

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

    background: #eaf2ff;
    border: 3px solid #d9f2e5;

    color: #173b66;

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

    box-sizing: border-box;
}

.google-review-user-info888 h5 {
    margin: 0 0 5px;

    font-size: 17px;
    line-height: 1.3;

    color: #15395f;
    font-weight: 700;
}

.google-review-user-info888 span {
    color: #159447;
    font-size: 13px;
    font-weight: 600;
}

.google-review-user-info888 span i {
    margin-right: 4px;
}


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

.google-review-button-wrapper999 {
    width: 100%;
    text-align: center;
    margin-top: 45px;
}

.google-review-button121 {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 13px 25px;

    border-radius: 8px;

    background: #2875e8;
    color: #ffffff;

    text-decoration: none;

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

    transition:
        background 0.3s ease,
        transform 0.3s ease;
}

.google-review-button121:hover {
    background: #185cc6;
    color: #ffffff;
    transform: translateY(-3px);
}


/* =========================================================
   MOBILE - MAX 768PX
========================================================= */

@media (max-width: 768px) {

    .google-review-section11 {
        padding: 55px 15px;
    }

    .google-review-container22 {
        max-width: 100%;
        padding: 0;
    }

    .google-review-heading22 {
        margin-bottom: 30px;
    }

    .google-review-small-title33 {
        font-size: 20px;
    }

    .google-review-title44 {
        font-size: 28px;
    }

    .google-review-subtitle55 {
        font-size: 14px;
    }

    .google-review-slider66 {
        width: 100%;
    }

    .google-review-item99 {
        width: calc(100vw - 30px);
        flex: 0 0 calc(100vw - 30px);
    }

    .google-review-track77 {
        gap: 15px;
    }

    .google-review-card111 {
        min-height: 330px;
        padding: 25px 20px;
        margin: 10px 0;
    }

    .google-review-text555 {
        min-height: 115px;
        font-size: 15px;
        line-height: 1.65;
    }

    .google-review-stars444 {
        gap: 3px;
    }

    .google-review-stars444 i {
        font-size: 15px;
    }

    .google-review-quote333 {
        font-size: 32px;
    }

    .google-review-avatar777 {
        width: 52px;
        height: 52px;
        min-width: 52px;
        font-size: 15px;
    }

    .google-review-user-info888 h5 {
        font-size: 16px;
    }

    .google-review-user-info888 span {
        font-size: 12px;
    }

    .google-review-button-wrapper999 {
        margin-top: 35px;
    }

    .google-review-button121 {
        padding: 12px 18px;
        font-size: 14px;
    }

}


/* =========================================================
   LARGE DESKTOP - MIN 1440PX
========================================================= */

@media (min-width: 1440px) {

    .google-review-section11 {
        padding: 90px 0;
    }

    .google-review-container22 {
        max-width: 1350px;
    }

    .google-review-item99 {
        width: 520px;
        flex: 0 0 520px;
    }

    .google-review-track77 {
        gap: 30px;
    }

    .google-review-card111 {
        min-height: 350px;
        padding: 35px 38px;
    }

    .google-review-title44 {
        font-size: 40px;
    }

    .google-review-text555 {
        font-size: 17px;
        line-height: 1.75;
    }

}








/* =========================================
   APPOINTMENT SECTION
========================================= */

.appointment-section11 {
    width: 100%;
    background: #3d9063;
    padding: 75px 0;
    overflow: hidden;
}


/* =========================================
   CUSTOM CONTAINER
   BOOTSTRAP CONTAINER REMOVED
========================================= */

.appointment-container11 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}


/* =========================================
   CUSTOM ROW
   BOOTSTRAP ROW REMOVED
========================================= */

.appointment-row11 {
    width: 100%;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}


/* =========================================
   CUSTOM 50% COLUMNS
   BOOTSTRAP COL-LG-6 REMOVED
========================================= */

.appointment-column-half11 {
    width: 50%;
    flex: 0 0 50%;
    max-width: 50%;
    box-sizing: border-box;
}


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

.appointment-content22 {
    padding-right: 35px;
    opacity: 0;
    transform: translateX(-40px);
    animation: appointment-left-animation22 0.9s ease forwards;
}


.appointment-label33 {
    display: inline-block;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
    font-weight: 700;
    padding-bottom: 8px;
    border-bottom: 6px solid #ffffff;
    margin-bottom: 22px;
}


.appointment-heading44 {
    color: #ffffff;
    font-size: 48px;
    line-height: 1.18;
    font-weight: 700;
    margin: 0 0 30px;
}


.appointment-text55 {
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    font-weight: 400;
    max-width: 700px;
    margin: 0 0 45px;
}


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

.appointment-buttons66 {
    display: flex;
    align-items: center;
    gap: 30px;
}


.appointment-button77 {
    width: 245px;
    height: 75px;
    background: #ffffff;
    color: #087746;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 19px;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-sizing: border-box;
}


.appointment-button77::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 4px;
    background: #3d9063;
    transition: width 0.35s ease;
}


.appointment-button77:hover {
    color: #087746;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.14);
}


.appointment-button77:hover::before {
    width: 100%;
}


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

.appointment-card88 {
    background: #ffffff;
    border-radius: 14px;
    padding: 50px 55px;
    opacity: 0;
    transform: translateX(40px);
    animation: appointment-right-animation88 0.9s ease 0.15s forwards;
    box-sizing: border-box;
}


.appointment-card-heading99 {
    color: #3d9063;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 38px;
}


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

.appointment-field100 {
    width: 100%;
    margin-bottom: 28px;
}


.appointment-input111 {
    width: 100%;
    height: 65px;
    border: 2px solid #d3d3d3;
    border-radius: 12px;
    background: #ffffff;
    color: #333333;
    font-size: 19px;
    padding: 0 22px;
    outline: none;
    transition: all 0.3s ease;
    box-sizing: border-box;
}


.appointment-input111::placeholder {
    color: #666666;
}


.appointment-input111:focus {
    border-color: #3d9063;
    box-shadow: 0 0 0 4px rgba(61, 144, 99, 0.10);
}


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

.appointment-whatsapp-button122 {
    min-width: 390px;
    height: 65px;
    border: none;
    border-radius: 10px;
    background: #3d9063;
    color: #ffffff;
    padding: 0 20px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.35s ease;
    box-sizing: border-box;
}


.appointment-whatsapp-button122::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: skewX(-25deg);
    transition: left 0.55s ease;
}


.appointment-whatsapp-button122:hover::before {
    left: 130%;
}


.appointment-whatsapp-button122:hover {
    background: #327e56;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(61, 144, 99, 0.25);
}


/* =========================================
   BACK TO TOP
========================================= */

.appointment-top-button133 {
    position: fixed;
    right: 30px;
    bottom: 0;
    width: 58px;
    height: 58px;
    background: #304db3;
    color: #ffffff;
    border-radius: 28px 28px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 30px;
    z-index: 999;
    transition: all 0.3s ease;
}


.appointment-top-button133:hover {
    color: #ffffff;
    background: #253e9c;
    transform: translateY(-5px);
}


.appointment-top-button133 span {
    display: block;
    animation: appointment-arrow-animation144 1.5s ease-in-out infinite;
}


/* =========================================
   ANIMATIONS
========================================= */

@keyframes appointment-left-animation22 {

    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes appointment-right-animation88 {

    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


@keyframes appointment-arrow-animation144 {

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

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

}


/* =========================================
   MOBILE
   MAX WIDTH 768px
========================================= */

@media (max-width: 768px) {

    .appointment-section11 {
        padding: 50px 0;
    }


    .appointment-container11 {
        width: 100%;
        padding: 0 15px;
    }


    .appointment-row11 {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }


    .appointment-column-half11 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }


    .appointment-content22 {
        padding-right: 0;
        margin-bottom: 40px;
    }


    .appointment-label33 {
        font-size: 18px;
        border-bottom-width: 4px;
        margin-bottom: 18px;
    }


    .appointment-heading44 {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 22px;
    }


    .appointment-heading44 br {
        display: none;
    }


    .appointment-text55 {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 30px;
    }


    .appointment-buttons66 {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }


    .appointment-button77 {
        width: 100%;
        height: 60px;
        font-size: 17px;
    }


    .appointment-card88 {
        padding: 35px 20px;
        border-radius: 12px;
    }


    .appointment-card-heading99 {
        font-size: 32px;
        margin-bottom: 28px;
    }


    .appointment-input111 {
        height: 60px;
        font-size: 17px;
        padding: 0 17px;
    }


    .appointment-field100 {
        margin-bottom: 18px;
    }


    .appointment-whatsapp-button122 {
        width: 100%;
        min-width: 0;
        height: 60px;
        font-size: 16px;
        padding: 0 12px;
    }


    .appointment-top-button133 {
        width: 50px;
        height: 50px;
        right: 15px;
        font-size: 26px;
    }

}


/* =========================================
   LARGE SCREEN - MIN WIDTH 1440PX
========================================= */

@media (min-width: 1440px) {

    .appointment-section11 {
        padding: 90px 0;
    }


    .appointment-container11 {
        max-width: 1350px;
    }


    .appointment-content22 {
        padding-right: 45px;
        margin-bottom: 0;
    }


    .appointment-label33 {
        font-size: 20px;
        margin-bottom: 20px;
    }


    .appointment-heading44 {
        font-size: 50px;
        line-height: 1.15;
        margin-bottom: 25px;
    }


    .appointment-text55 {
        font-size: 17px;
        line-height: 1.75;
        margin-bottom: 35px;
    }


    .appointment-buttons66 {
        gap: 18px;
    }


    .appointment-button77 {
        height: 64px;
        font-size: 18px;
    }


    .appointment-card88 {
        padding: 45px 35px;
        border-radius: 15px;
    }


    .appointment-card-heading99 {
        font-size: 36px;
        margin-bottom: 32px;
    }


    .appointment-input111 {
        height: 64px;
        font-size: 18px;
        padding: 0 20px;
    }


    .appointment-field100 {
        margin-bottom: 20px;
    }


    .appointment-whatsapp-button122 {
        min-width: 280px;
        height: 64px;
        font-size: 17px;
    }


    .appointment-top-button133 {
        width: 56px;
        height: 56px;
        right: 25px;
        font-size: 28px;
    }

}




/* =====================================================
   PREMIUM MEDICAL GALLERY SECTION
   BOOTSTRAP FREE
===================================================== */

.medical-gallery-section11 {
    width: 100%;
    background: #ffffff;
    padding: 90px 0 100px;
    overflow: hidden;
}


/* =====================================================
   CUSTOM CONTAINER
===================================================== */

.medical-gallery-container22 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


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

.medical-gallery-header22 {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
    opacity: 0;
    transform: translateY(35px);
    animation: medical-gallery-header-animation33 0.9s ease forwards;
}


.medical-gallery-label33 {
    display: inline-block;
    color: #3d9063;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 15px;
    position: relative;
}


.medical-gallery-label33::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    background: #3d9063;
    margin: 9px auto 0;
    border-radius: 10px;
}


.medical-gallery-title44 {
    color: #173d2a;
    font-size: 44px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 18px;
}


.medical-gallery-title44 span {
    color: #3d9063;
}


.medical-gallery-description55 {
    color: #69746e;
    font-size: 17px;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 650px;
}


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

.medical-gallery-grid66 {
    display: grid;
    grid-template-columns: 1.05fr 0.85fr 1.05fr;
    grid-template-rows: 250px 250px;
    gap: 20px;
}


/* =====================================================
   GALLERY ITEM
===================================================== */

.medical-gallery-item77 {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    opacity: 0;
    transform: translateY(45px);
    animation: medical-gallery-item-animation78 0.8s ease forwards;
}


.medical-gallery-item-large88 {
    grid-row: span 2;
    animation-delay: 0.15s;
}


.medical-gallery-item-small166 {
    animation-delay: 0.25s;
}


.medical-gallery-item-medium177 {
    animation-delay: 0.35s;
}


.medical-gallery-item-medium188 {
    animation-delay: 0.45s;
}


.medical-gallery-item-large199 {
    animation-delay: 0.55s;
}


.medical-gallery-item-small200 {
    animation-delay: 0.65s;
}


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

.medical-gallery-image-box99 {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #edf2ef;
}


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

.medical-gallery-image100 {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
        filter 0.5s ease;
}


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

.medical-gallery-overlay111 {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: flex-end;

    padding: 28px;

    background:
        linear-gradient(
            to top,
            rgba(11, 45, 29, 0.88) 0%,
            rgba(11, 45, 29, 0.35) 45%,
            rgba(11, 45, 29, 0) 75%
        );

    opacity: 0;

    transition: opacity 0.45s ease;
}


.medical-gallery-item77:hover .medical-gallery-overlay111 {
    opacity: 1;
}


.medical-gallery-item77:hover .medical-gallery-image100 {
    transform: scale(1.09);
    filter: brightness(0.9);
}


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

.medical-gallery-overlay-content122 {
    width: 100%;

    transform: translateY(25px);

    transition: transform 0.45s ease;
}


.medical-gallery-item77:hover
.medical-gallery-overlay-content122 {
    transform: translateY(0);
}


.medical-gallery-category133 {
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 7px;
}


.medical-gallery-image-title144 {
    color: #ffffff;
    font-size: 23px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 15px;
}


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

.medical-gallery-view-button155 {
    border: 1px solid rgba(255, 255, 255, 0.75);

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

    color: #ffffff;

    padding: 9px 18px;

    border-radius: 30px;

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

    cursor: pointer;

    backdrop-filter: blur(5px);

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}


.medical-gallery-view-button155:hover {
    background: #ffffff;
    color: #3d9063;
    transform: translateY(-2px);
}


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

.medical-gallery-bottom211 {
    text-align: center;
    margin-top: 48px;
}


.medical-gallery-cta222 {
    display: inline-flex;
    align-items: center;

    gap: 18px;

    color: #ffffff;
    background: #3d9063;

    padding: 15px 27px;

    border-radius: 5px;

    text-decoration: none;

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

    transition:
        background 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.medical-gallery-cta222 span {
    font-size: 21px;
    transition: transform 0.3s ease;
}


.medical-gallery-cta222:hover {
    color: #ffffff;
    background: #2f7d55;

    transform: translateY(-4px);

    box-shadow:
        0 12px 25px rgba(61, 144, 99, 0.22);
}


.medical-gallery-cta222:hover span {
    transform: translateX(5px);
}


/* =====================================================
   LIGHTBOX
===================================================== */

.medical-gallery-lightbox233 {
    position: fixed;

    inset: 0;

    z-index: 99999;

    background: rgba(5, 20, 13, 0.94);

    display: flex;

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

    padding: 40px;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;
}


.medical-gallery-lightbox233.active {
    opacity: 1;
    visibility: visible;
}


.medical-gallery-lightbox-content266 {
    max-width: 950px;
    max-height: 85vh;

    text-align: center;

    transform: scale(0.85);

    transition: transform 0.4s ease;
}


.medical-gallery-lightbox233.active
.medical-gallery-lightbox-content266 {
    transform: scale(1);
}


.medical-gallery-lightbox-content266 img {
    max-width: 100%;
    max-height: 75vh;

    display: block;

    border-radius: 12px;

    object-fit: contain;

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.35);
}


.medical-gallery-lightbox-title277 {
    color: #ffffff;

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

    margin-top: 15px;
}


/* =====================================================
   LIGHTBOX CLOSE
===================================================== */

.medical-gallery-close244 {
    position: absolute;

    top: 25px;
    right: 30px;

    width: 45px;
    height: 45px;

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

    border-radius: 50%;

    background: transparent;

    color: #ffffff;

    font-size: 30px;

    line-height: 1;

    cursor: pointer;

    transition: all 0.3s ease;
}


.medical-gallery-close244:hover {
    background: #ffffff;

    color: #3d9063;

    transform: rotate(90deg);
}


/* =====================================================
   LIGHTBOX ARROWS
===================================================== */

.medical-gallery-lightbox-prev255,
.medical-gallery-lightbox-next288 {

    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    width: 55px;
    height: 55px;

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

    border-radius: 50%;

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

    color: #ffffff;

    font-size: 25px;

    cursor: pointer;

    transition: all 0.3s ease;
}


.medical-gallery-lightbox-prev255 {
    left: 30px;
}


.medical-gallery-lightbox-next288 {
    right: 30px;
}


.medical-gallery-lightbox-prev255:hover,
.medical-gallery-lightbox-next288:hover {

    background: #ffffff;

    color: #3d9063;

    transform:
        translateY(-50%)
        scale(1.08);
}


/* =====================================================
   ANIMATIONS
===================================================== */

@keyframes medical-gallery-header-animation33 {

    0% {
        opacity: 0;
        transform: translateY(35px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}


@keyframes medical-gallery-item-animation78 {

    0% {
        opacity: 0;
        transform: translateY(45px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =====================================================
   MOBILE - MAX WIDTH 768PX
===================================================== */

@media (max-width: 768px) {

    .medical-gallery-section11 {
        padding: 55px 0 65px;
    }


    .medical-gallery-container22 {
        width: 100%;
        padding: 0 15px;
    }


    .medical-gallery-header22 {
        margin-bottom: 35px;
        padding: 0 10px;
    }


    .medical-gallery-label33 {
        font-size: 13px;
        letter-spacing: 2px;
    }


    .medical-gallery-title44 {
        font-size: 31px;
        line-height: 1.25;
    }


    .medical-gallery-description55 {
        font-size: 15px;
        line-height: 1.6;
    }


    .medical-gallery-grid66 {

        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: auto;

        gap: 16px;
    }


    .medical-gallery-item77,
    .medical-gallery-item-large88,
    .medical-gallery-item-small166,
    .medical-gallery-item-medium177,
    .medical-gallery-item-medium188,
    .medical-gallery-item-large199,
    .medical-gallery-item-small200 {

        grid-row: auto;
    }


    .medical-gallery-image-box99 {
        height: 270px;
    }


    .medical-gallery-overlay111 {

        padding: 20px;

        opacity: 1;

        background:
            linear-gradient(
                to top,
                rgba(11, 45, 29, 0.85) 0%,
                rgba(11, 45, 29, 0.1) 75%
            );
    }


    .medical-gallery-overlay-content122 {
        transform: translateY(0);
    }


    .medical-gallery-image-title144 {
        font-size: 20px;
        margin-bottom: 12px;
    }


    .medical-gallery-view-button155 {
        padding: 8px 15px;
    }


    .medical-gallery-bottom211 {
        margin-top: 35px;
    }


    .medical-gallery-cta222 {
        padding: 13px 22px;
        font-size: 14px;
    }


    .medical-gallery-lightbox233 {
        padding: 20px;
    }


    .medical-gallery-lightbox-content266 {
        width: 100%;
    }


    .medical-gallery-lightbox-content266 img {
        max-height: 65vh;
    }


    .medical-gallery-close244 {
        top: 15px;
        right: 15px;
    }


    .medical-gallery-lightbox-prev255,
    .medical-gallery-lightbox-next288 {

        width: 42px;
        height: 42px;

        font-size: 20px;
    }


    .medical-gallery-lightbox-prev255 {
        left: 10px;
    }


    .medical-gallery-lightbox-next288 {
        right: 10px;
    }

}


/* =====================================================
   LARGE SCREEN - MIN WIDTH 1440PX
===================================================== */

@media (min-width: 1440px) {

    .medical-gallery-section11 {
        padding: 80px 0 90px;
    }


    .medical-gallery-container22 {
        max-width: 1350px;
    }


    .medical-gallery-header22 {
        margin-bottom: 45px;
    }


    .medical-gallery-label33 {
        font-size: 14px;
        letter-spacing: 2.2px;
    }


    .medical-gallery-title44 {
        font-size: 42px;
        line-height: 1.2;
    }


    .medical-gallery-description55 {
        font-size: 16px;
        line-height: 1.7;
    }


    .medical-gallery-grid66 {
        gap: 20px;
    }


    .medical-gallery-image-box99 {
        height: 330px;
    }


    .medical-gallery-overlay111 {
        padding: 28px;
    }


    .medical-gallery-image-title144 {
        font-size: 22px;
        margin-bottom: 14px;
    }


    .medical-gallery-view-button155 {
        padding: 10px 18px;
    }


    .medical-gallery-bottom211 {
        margin-top: 45px;
    }


    .medical-gallery-cta222 {
        padding: 15px 26px;
        font-size: 15px;
    }


    .medical-gallery-lightbox233 {
        padding: 30px;
    }


    .medical-gallery-lightbox-content266 {
        width: 90%;
        max-width: 1200px;
    }


    .medical-gallery-lightbox-content266 img {
        max-height: 80vh;
    }


    .medical-gallery-lightbox-prev255,
    .medical-gallery-lightbox-next288 {

        width: 60px;
        height: 60px;

        font-size: 27px;
    }


    .medical-gallery-lightbox-prev255 {
        left: 35px;
    }


    .medical-gallery-lightbox-next288 {
        right: 35px;
    }

}




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

.clinic-footer11 {
    width: 100%;
    background: #3d9063;
    color: #ffffff;
    padding-top: 65px;
    overflow: hidden;
}


/* ==================================================
   PURE CSS CONTAINER
================================================== */

.clinic-footer-container22 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}


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

.clinic-footer-row22 {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding-bottom: 55px;
}


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

.clinic-footer-col33,
.clinic-footer-col88,
.clinic-footer-col100,
.clinic-footer-col111 {
    width: 100%;
    min-width: 0;
}


.clinic-footer-column33,
.clinic-footer-column88,
.clinic-footer-column100,
.clinic-footer-column111 {
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: clinic-footer-column-animation188 0.8s ease forwards;
}


.clinic-footer-column33 {
    animation-delay: 0.1s;
}


.clinic-footer-column88 {
    animation-delay: 0.2s;
}


.clinic-footer-column100 {
    animation-delay: 0.3s;
}


.clinic-footer-column111 {
    animation-delay: 0.4s;
}


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

.clinic-footer-heading44 {
    display: inline-block;
    color: #ffffff;
    font-size: 25px;
    line-height: 1.2;
    font-weight: 700;
    margin: 0 0 32px;
    padding-bottom: 8px;
    border-bottom: 5px solid #ffffff;
}


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

.clinic-footer-description55 {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 32px;
    max-width: 350px;
}


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

.clinic-footer-contact66 {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}


.clinic-footer-contact66:hover {
    color: #ffffff;
    transform: translateX(5px);
}


.clinic-footer-icon77 {
    width: 25px;
    min-width: 25px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-top: 2px;
}


/* Simple icons - Bootstrap Icons removed */

.clinic-footer-location-icon,
.clinic-footer-email-icon,
.clinic-footer-phone-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
}


.clinic-footer-location-icon {
    font-size: 17px;
}


.clinic-footer-email-icon {
    font-size: 20px;
}


.clinic-footer-phone-icon {
    font-size: 19px;
}


/* ==================================================
   QUICK LINKS / TREATMENT
================================================== */

.clinic-footer-links99 {
    padding: 0;
    margin: 0;
    list-style: none;
}


.clinic-footer-links99 li {
    margin-bottom: 14px;
}


.clinic-footer-links99 li a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    line-height: 1.4;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}


.clinic-footer-links99 li a i {
    font-style: normal;
    font-size: 22px;
    line-height: 1;
    transition: transform 0.3s ease;
}


.clinic-footer-links99 li a:hover {
    color: #ffffff;
    transform: translateX(7px);
    opacity: 0.85;
}


.clinic-footer-links99 li a:hover i {
    transform: translateX(4px);
}


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

.clinic-footer-map-wrapper122 {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    background: #dfe7e2;
}


.clinic-footer-map-wrapper122 iframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    transition:
        transform 0.7s ease,
        filter 0.5s ease;
}


.clinic-footer-map-wrapper122:hover iframe {
    transform: scale(1.06);
    filter: brightness(0.9);
}


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

.clinic-footer-map-button144 {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #ffffff;
    color: #1677e8;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    padding: 10px 16px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}


.clinic-footer-map-button144:hover {
    color: #1677e8;
    transform: translateY(-3px);
    box-shadow: 0 7px 18px rgba(0, 0, 0, 0.2);
}


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

.clinic-footer-bottom155 {
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.22);
    padding: 18px 0;
}


.clinic-footer-bottom-container156 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}


.clinic-footer-bottom-content166 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}



.clinic-footer-bottom-content166 p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    margin: 0;
}

/* ==================================================
   BACK TO TOP
================================================== */

.clinic-footer-top177 {
    position: fixed;
    right: 30px;
    bottom: 0;
    width: 60px;
    height: 56px;
    background: #304db3;
    color: #ffffff;
    border-radius: 30px 30px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 25px;
    z-index: 9999;
    transition:
        background 0.3s ease,
        transform 0.3s ease;
}


.clinic-footer-top177:hover {
    color: #ffffff;
    background: #263e9c;
    transform: translateY(-6px);
}


.clinic-footer-top177 i {
    font-style: normal;
    animation: clinic-footer-arrow-animation199 1.5s ease-in-out infinite;
}


/* ==================================================
   FOOTER COLUMN ANIMATION
================================================== */

@keyframes clinic-footer-column-animation188 {

    0% {
        opacity: 0;
        transform: translateY(35px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }

}


/* ==================================================
   BACK TO TOP ARROW ANIMATION
================================================== */

@keyframes clinic-footer-arrow-animation199 {

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

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

}


/* ==================================================
   MOBILE - MAX WIDTH 768PX
================================================== */

@media (max-width: 768px) {

    .clinic-footer11 {
        padding-top: 50px;
    }


    .clinic-footer-container22 {
        padding-left: 15px;
        padding-right: 15px;
    }


    .clinic-footer-row22 {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 30px;
    }


    .clinic-footer-column33,
    .clinic-footer-column88,
    .clinic-footer-column100,
    .clinic-footer-column111 {
        margin-bottom: 35px;
    }


    /* FOOTER HEADING */

    .clinic-footer-heading44 {
        font-size: 21px;
        margin-bottom: 22px;
        padding-bottom: 6px;
        border-bottom-width: 4px;
    }


    /* DESCRIPTION */

    .clinic-footer-description55 {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 25px;
    }


    /* CONTACT */

    .clinic-footer-contact66 {
        font-size: 15px;
        gap: 12px;
        margin-bottom: 14px;
    }


    .clinic-footer-icon77 {
        font-size: 18px;
        width: 22px;
        min-width: 22px;
    }


    /* LINKS */

    .clinic-footer-links99 li {
        margin-bottom: 12px;
    }


    .clinic-footer-links99 li a {
        font-size: 15px;
        gap: 10px;
    }


    .clinic-footer-links99 li a i {
        font-size: 20px;
    }


    /* MAP */

    .clinic-footer-map-wrapper122 {
        height: 250px;
    }


    .clinic-footer-map-button144 {
        top: 10px;
        left: 10px;
        font-size: 13px;
        padding: 9px 13px;
    }


    /* FOOTER BOTTOM */

    .clinic-footer-bottom-container156 {
        padding-left: 15px;
        padding-right: 15px;
    }


    .clinic-footer-bottom-content166 {
        flex-direction: column;
        text-align: center;
        gap: 7px;
    }


    .clinic-footer-bottom-content166 p {
        font-size: 12px;
    }


    /* BACK TO TOP */

    .clinic-footer-top177 {
        right: 15px;
        width: 50px;
        height: 48px;
        font-size: 22px;
    }

}


/* ==================================================
   LARGE SCREEN - MIN WIDTH 1440PX
================================================== */

@media (min-width: 1440px) {

    .clinic-footer-container22,
    .clinic-footer-bottom-container156 {
        max-width: 1350px;
    }


    .clinic-footer11 {
        padding-top: 75px;
    }


    .clinic-footer-row22 {
        padding-bottom: 45px;
    }


    .clinic-footer-column33,
    .clinic-footer-column88,
    .clinic-footer-column100,
    .clinic-footer-column111 {
        margin-bottom: 0;
    }


    .clinic-footer-heading44 {
        font-size: 23px;
        margin-bottom: 25px;
        padding-bottom: 8px;
        border-bottom-width: 4px;
    }


    .clinic-footer-description55 {
        font-size: 16px;
        line-height: 1.7;
        margin-bottom: 30px;
    }


    .clinic-footer-contact66 {
        font-size: 16px;
        gap: 14px;
        margin-bottom: 16px;
    }


    .clinic-footer-icon77 {
        font-size: 19px;
        width: 24px;
        min-width: 24px;
    }


    .clinic-footer-links99 li {
        margin-bottom: 14px;
    }


    .clinic-footer-links99 li a {
        font-size: 16px;
        gap: 11px;
    }


    .clinic-footer-links99 li a i {
        font-size: 21px;
    }


    .clinic-footer-map-wrapper122 {
        height: 350px;
    }


    .clinic-footer-map-button144 {
        top: 14px;
        left: 14px;
        font-size: 15px;
        padding: 10px 16px;
    }


    .clinic-footer-bottom-content166 {
        gap: 25px;
    }


    .clinic-footer-bottom-content166 p {
        font-size: 14px;
    }


    .clinic-footer-top177 {
        right: 35px;
        width: 62px;
        height: 58px;
        font-size: 26px;
    }

}