:root {
    --primary-green: #1a5b33;
    --btn-green: #3e8e60;
    --bg-cream: #f9f5eb;
    --text-dark: #2c3e50;

    --brand-green: #3e8e60;
    --light-green-bg: #d9e9e1;
    --text-dark: #2c3e50;
    --text-muted: #6c757d;
    --card-border: #ced4da;

    --ls-green: #3e8e60;
    --ls-light-bg: #d9e9e1;
    --ls-border: #e0e0e0;
    --ls-text: #2c3e50;


    --brand-green: #3e8e60;
    --light-green-bg: #d9e9e1;
    --slider-bg: #e9f2ee; 


   
    --brand-green: #3e8e60;
    --light-green-bg: #d9e9e1;
    --text-muted: #6c757d;

    --brand-green: #3e8e60;
    --light-green-bg: #d9e9e1;
    --text-dark: #2c3e50;
    --text-muted: #777;
    --quote-color: #c9decb;
    

    --footer-bg: #3e8e60; /* The specific green from the image */
    --text-light: #ffffff;
    --text-muted: #d1e7dd;
    
}

/* --- Body (merged, no design change) --- */
body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fff;
    overflow-x: hidden;
}

html {
     margin-top: 0 !important;
}

/* --- Top Bar --- */
.top-bar {
    background-color: #097ABC;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

/* --- Navbar --- */
.navbar-brand img {
    height: 86px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 10px;
}

.nav-link.active {
    color: #CE105A !important;
    border-bottom: 2px solid #CE105A;
}

.btn-login {
    color: white;
    background: var(--primary-green);
    border-radius: 4px;
    padding: 6px 20px;
}

.btn-register {
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
    border-radius: 4px;
    padding: 6px 20px;
    margin-left: 10px;
}

.custom-button:hover {
    color: #ffffff ;
    background-color: #CE105A ;
}

/* --- Hero Section --- */
.hero-section {
    background-color: var(--bg-cream);
    padding: 80px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-weight: 800;
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-text {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
}

.btn-appointment {
    background-color: #0B7AB9;
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    border: none;
    font-weight: 600;
}

/* --- Image Grid (Collage) --- */
.image-collage {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    grid-template-rows: 200px 200px;
    gap: 15px;
}

.grid-item {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

.item-1 { grid-row: 1; border-radius: 60px 20px 20px 20px; }
.item-2 { grid-row: 1 / span 1; border-radius: 20px 60px 20px 20px; }
.item-3 { border-radius: 20px 12px 20px 60px; background-color: #9FD0EF; }
.item-4 { border-radius: 20px 20px 80px 20px; }




@media (max-width: 991px) {
    .hero-title { font-size: 2.2rem; }
    .image-collage { margin-top: 50px; }
}

/* --- Services Section --- */

.section-badge {
    background-color: #f2d6e0;
    color: #CE105A;
    padding: 8px 25px;
    border-radius: 50px 0 50px 0;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #CE105A;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.hh-services-section {
    padding: 80px 0;
}

.hh-service-card {
    background: #fff;
    border: 1px solid #CE105A;
    border-radius: 12px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    border-left: 6px solid #CE105A;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.hh-service-card:hover {
    transform: translateY(-8px);
    background: #097AC0;
    box-shadow: 0 15px 40px rgba(206, 16, 90, 0.15);
}

/* ICON */
.hh-icon-box {
    width: 60px;
    height: 60px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* ICON inside circle */
.hh-icon-box .icon-img {
    width: 30px;
    height: 30px;

    background-color: #097AC0;

    -webkit-mask-image: var(--icon);
    mask-image: var(--icon);

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;

    -webkit-mask-position: center;
    mask-position: center;

    -webkit-mask-size: contain;
    mask-size: contain;

    transition: all 0.3s ease;
}
.hh-service-card:hover .hh-icon-box .icon-img {
    background-color: #CE105A;
}

/* Highlight variant */
.hh-service-card.highlighted .hh-icon-box {
    background-color: rgba(255,255,255,0.15);
    color: #fff;
}

/* TITLE */
/* TITLE */
.hh-service-title,
.hh-service-title a {
    font-weight: 700;
    margin-bottom: 15px;
    color: #CE105A !important;
    text-decoration: none;
    font-size: 24px;
}

/* HOVER TEXT COLOR */
.hh-service-card:hover .hh-service-title,
.hh-service-card:hover .hh-service-title a,
.hh-service-card:hover .hh-service-desc,
.hh-service-card:hover .hh-view-more,
.hh-service-card:hover .hh-view-more a {
    color: #fff !important;
}


/* ICON hover fix */
.hh-service-card:hover .hh-icon-box {
    color: #fff;
}

/* DESCRIPTION */
.hh-service-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* VIEW MORE */
.hh-view-more {
    font-weight: 700;
    text-decoration: underline;
    color: #097AC0;
    font-size: 0.9rem;
    cursor: pointer;
}

.hh-view-more:hover {
    color: #ffffff;
}

/* Highlight mode */
.hh-service-card.highlighted .hh-view-more {
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .hh-services-section {
        padding: 50px 0;
    }
}

/* team section  */
.team-section { padding: 60px 0; font-family: 'Segoe UI', sans-serif; }

    /* Asymmetric Badge from image_506d3f.png */
    .team-badge {
        background-color: var(--light-green-bg);
        color: var(--brand-green);
        padding: 8px 25px;
        border-radius: 50px 0 50px 0;
        display: inline-block;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .team-subtitle {
        max-width: 700px;
        margin: 0 auto 50px;
        color: var(--text-muted);
        line-height: 1.6;
    }

    /* Team Card Styling */
    .team-card {
        border: 1px solid #9FD0EF;
        border-radius: 10px;
        padding: 30px;
        text-align: center;
        height: 100%;
        background: #fff;
        transition: all 0.3s ease;
    }

    .team-card:hover {
        border-color: #097AC0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .team-img-wrapper {
        width: 120px;
        height: 120px;
        margin: 0 auto 20px;
        overflow: hidden;
        border-radius: 50%;
        border: 2px solid #f8f9fa;
    }

    .team-img-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .team-name {
        color: #CE105A;
        font-weight: 700;
        font-size: 1.2rem;
        margin-bottom: 5px;
    }

    .team-role {
        color: #CE105A;
        font-size: 0.9rem;
    }

    .btn-view-all {
        border: 1px solid #9FD0EF;
        color: #097AC0;
        background: transparent;
        padding: 8px 30px;
        border-radius: 4px;
        font-weight: 600;
        margin-top: 40px;
        transition: 0.3s;
    }

    .btn-view-all:hover {
        background: #CE105A;
        color: #fff;
    }

/* client section  */

.client-section {
    padding: 60px 0;
    font-family: 'Segoe UI', sans-serif;
}

/* Asymmetric Badge */
.client-badge {
    background-color: var(--light-green-bg);
    color: var(--brand-green);
    padding: 8px 30px;
    border-radius: 50px 0 50px 0;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 15px;
}

.client-subtitle {
    color: #777;
    margin-bottom: 40px;
}

/* Slider Container */
.slider-wrapper {
    background-color: var(--slider-bg);
    padding: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

/* Moving Track */
.logo-track {
    display: flex;
    /* Width must be large enough to hold all static items side-by-side */
    width: max-content; 
    animation: scroll 40s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

/* Individual Logo Circle */
.client-logo-circle {
    width: 140px;
    height: 140px;
    background: #fff;
    border: 2px solid var(--brand-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 30px;
    flex-shrink: 0;
    padding: 20px;
}

.client-logo-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Animation: Moves exactly 50% of the total width */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .client-logo-circle { width: 100px; height: 100px; margin: 0 15px; }
}


/* contact us  */
.ls-contact-cta-section {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', sans-serif;
}

/* Asymmetric Badge */
.ls-cta-badge {
    background-color: #f2d6e0;
    color: #CE105A;
    padding: 8px 30px;
    border-radius: 50px 0 50px 0;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 25px;
}

.ls-cta-text {
    max-width: 600px;
    margin: 0 auto 30px;
    color: #CE105A;
    line-height: 1.8;
    font-size: 1.05rem;
}

.ls-btn-contact-outline {
    border: 1.5px solid #9FD0EF;
    color: #097AC0;
    background: transparent;
    padding: 10px 40px;
    border-radius: 6px;
    font-weight: 700;
    transition: 0.3s;
}

.ls-btn-contact-outline:hover {
    background: #097AC0;
    color: #fff;
}

/* Background Image Fading Logic */
.ls-bg-side-img {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 30%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    opacity: 0.2;
    background-repeat: no-repeat;
}

/* Left Image fades to the right */
.ls-img-left {
    left: 0;

    mask-image: linear-gradient(to right, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
}

/* RIGHT IMAGE */
.ls-img-right {
    right: 0;

    mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
}

.ls-cta-content {
    position: relative;
    z-index: 2;
}

@media (max-width: 992px) {
    .ls-bg-side-img {
        width: 20%;
    }

    .ls-cta-text {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .ls-bg-side-img {
        display: none;
    }
}


/* FAQ */
.ls-faq-section {
    padding: 80px 0;
}

/* Asymmetric Badge */
.ls-faq-badge {
    background-color: #f2d6e0;
    color: #CE105A;
    padding: 8px 25px;
    border-radius: 50px 0 50px 0;
    display: inline-block;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.ls-faq-subtitle {
    color: #CE105A;
    font-size: 0.95rem;
    max-width: 320px;
    margin-bottom: 5px;
}

/* Image & Overlapping Contact Card */
.ls-img-container {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.ls-accor-img {
    width: 100%;
    height: 320px !important;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.ls-contact-card {
    position: absolute;
    bottom: 30px;
    left: 15px;
    background-color: rgba(9, 122, 192, 0.8);
    color: #ffffff;
    padding: 18px;
    border-radius: 8px;
    width: 90%;
    z-index: 2;
}

.ls-accr-r-t {
    font-size: 14px;
}

.ls-accor-text {
    color: #CE105A !important;
}

.ls-contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.ls-contact-item:last-child {
    margin-bottom: 0;
}

.ls-contact-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    font-size: 14px;
}

/* Accordion Custom Styling */
.ls-accordion-item {
    border: none !important;
    border-bottom: 1px solid #eee !important;
}

.ls-accordion-button {
    padding: 25px 25px !important;
    font-weight: 600;
    color: var(--text-dark) !important;
    background-color: transparent !important;
    box-shadow: none !important;
    font-size: 1.05rem;
}

/* Quote Icon */
.ls-accordion-button::before {
    content: "\f10d";
    font-family: "Font Awesome 6 Free", sans-serif;
    font-weight: 900;
    color: #CE105A;
    font-size: 24px;
    margin-right: 25px;
}

/* Remove Bootstrap Arrow */
.ls-accordion-button::after {
    background-image: none !important;
    content: "\f078";
    font-family: "Font Awesome 6 Free", sans-serif;
    font-weight: 900;
    color: #097AC0;
    font-size: 14px;
    transform: rotate(0deg);
    transition: 0.3s ease;
}

/* Rotate Arrow When Open */
.ls-accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.ls-accordion-button:not(.collapsed) {
    color: #097AC0 !important;
}

/* Responsive */
@media (max-width: 991px) {

    .ls-contact-card {
        width: 90%;
        bottom: 20px;
        left: 10px;
        padding: 15px;
    }

    .ls-faq-subtitle {
        max-width: 100%;
    }
}


        /*footer {*/
        /*    background: linear-gradient(135deg, #075985, #097AC0, #0ea5e9);*/
        /*    color: var(--text-light);*/
        /*    padding: 80px 0 30px 0;*/
        /*    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;*/
        /*}*/


        footer {
            position: relative;
            /*background: url('https://wisynco.com/footer-background-01-2/') center/cover no-repeat;*/
            color: #fff;
            z-index: 1;
            overflow: hidden;
            padding: 80px 0 0 0;
        }

        /* 🔥 Blue Glossy Overlay */
        footer::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(
                    135deg,
                    rgba(9, 122, 192, -60.15),
                    rgba(14, 165, 233, 0.75),
                    rgba(56, 189, 248, 0.6)
            );
            z-index: -1;
        }

        /* 🔥 Optional Gloss Shine Effect */
        footer::after {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(
                    120deg,
                    transparent,
                    rgba(255,255,255,0.2),
                    transparent
            );
            transform: rotate(25deg);
            pointer-events: none;
        }



        .footer-logo {
            max-width: 180px;
            margin-bottom: 25px;
        }

        .footer-description {
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .social-links a {
            color: var(--text-light);
            font-size: 1.2rem;
            margin-right: 15px;
            transition: opacity 0.3s;
        }

        .social-links a:hover {
            opacity: 0.7;
        }

        .footer-heading {
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 25px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 15px;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            font-size: 0.95rem;
            transition: padding-left 0.3s;
        }

        .footer-links a:hover {
            padding-left: 5px;
        }

        .location-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            font-size: 0.9rem;
            line-height: 1.5;
        }

        .location-icon {
            margin-right: 15px;
            font-size: 1.1rem;
            margin-top: 3px;
        }

        /* Maps Styling */
        .map-container {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
        }

        /* Payment Icons Row */
        .payment-methods {
            background-color: rgba(255,255,255,0.05);
            padding: 20px 0;
            margin-top: 50px;
            text-align: center;
        }

        .payment-img {
            max-width: 100%;
            height: auto;
            max-height: 40px;
        }

        .copyright-bar {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 25px;
            margin-top: 20px;
            text-align: center;
            font-size: 0.85rem;
            opacity: 0.8;
        }
        
     .mobile-logo img.custom-logo {
    width: 45% !important;
    height: auto !important;
}