/*
Theme Name: AceOne Technologies
Version: 1.0.0
Author: AceOne Technologies
*/

:root {
    --primary-color: #023A15;
    /* Deep Green from Footer */
    --secondary-color: #f0f5f1;
    /* Light Green Bg */
    --accent-color: #e5f0e7;
    /* Slightly darker light green */
    --text-color: #333333;
    --text-light: #ffffff;
    --font-main: 'Poppins', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    padding: 10px 25px;
    border-radius: 0;
    font-weight: 500;
    text-transform: uppercase;
}

.btn-primary:hover {
    background-color: #082e17;
    border-color: #082e17;
}

.btn-white {
    background-color: #F2F6EF;
    color: var(--primary-color);
    border: 1px solid #F2F6EF;
    padding: 15px 25px;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 0;
}

.btn-white:hover {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

/* Header Styles */
.site-header {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background-color: #213721;
    transition: background-color 0.3s ease;
}

body.home .site-header {
    position: absolute;
    background-color: transparent;
}

.navbar-nav .nav-item .nav-link {
    color: #F2F6EF;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 140%;
    letter-spacing: 0;
    text-transform: uppercase;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link.active {
    color: #E6F1DD;
    opacity: 1;
}

.inner-header {
    position: relative;
    background-color: var(--primary-color);
}

.navbar-brand img {
    max-height: 100px;
    /* Adjust based on logo aspect ratio */
}

#menu-main-menu li {
    margin: 0px 15px;
}

@media (min-width: 992px) and (max-width: 1400px) {
    .navbar-nav .nav-item .nav-link {
        font-size: 13px;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    .navbar-brand img {
        max-height: 60px;
    }

    .btn-white {
        padding: 8px 15px;
        font-size: 13px;
    }

    .ms-lg-3 {
        margin-left: 0.5rem !important;
    }
}


/* Bottom CTA Section */
.bottom-cta {
    background-color: #899F87;
    /* Sage Green from screenshot */
    padding: 50px 0;
}

.cta-title {
    color: #fff;
    font-size: 48px;
    font-weight: 500;
    margin: 0;
    letter-spacing: -1px;
}

.btn-book-now {
    background-color: #fff;
    color: var(--primary-color);
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    border: 2px solid #fff;
    transition: all 0.3s;
    letter-spacing: 1px;
}

.btn-book-now i {
    margin-left: 15px;
    transition: margin-left 0.3s;
}

.btn-book-now:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.btn-book-now:hover i {
    margin-left: 20px;
}

/* Footer Styles */
.site-footer {
    background-color: #023A15;
    color: #fff;
    padding: 60px 0 20px;
    font-size: 14px;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 30px;
}

.footer-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-info-item i {
    color: #7ab585;
    margin-right: 15px;
    margin-top: 3px;
    font-size: 16px;
    flex-shrink: 0;
}

.footer-info-item span, .footer-info-item span a {
    color: #fff;
    font-size: 15px;
    line-height: 1.5;
    transition: all 0.3s;
}

.footer-info-item span a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-social {
    margin-top: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.footer-widget h4 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 25px;
    font-weight: 500;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #fff;
    font-size: 15px;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 5px;
}

.copyright-bar {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #FFFFFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: #FFFFFF;
}

.design-credit {
    color: rgba(255, 255, 255, 0.7);
}


/* Section Common */
.section-padding {
    padding: 70px 0;
}

.section-title {
    color: #023A15;
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
}

.service-head p {
    color: #567C49 !important;
}

/* Specific Home Page Sections */
/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    padding: 0;
    margin-top: 0;
    margin-bottom: 0;
    /* Ensure no gap at bottom */
}

/* Ensure header is absolute and transparent */
.site-header {
    /* background-color: transparent !important;
    position: absolute !important; */
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999 !important;
}

.hero-slider,
.hero-slide {
    height: 100% !important;
    width: 100%;
}

.hero-slider {
    position: relative;
    margin-bottom: 0 !important;
    padding: 0 !important;
}

.hero-slider.slick-slider {
    margin-bottom: 0 !important;
}

/* Ensure Slick slider wrapper takes full height */
.hero-slider .slick-list,
.hero-slider .slick-track,
.hero-slider .slick-slide>div {
    height: 100% !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.hero-slide {
    background-position: center;
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 100vh;
    /* Ensure minimum full viewport height */
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    object-fit: cover;
    object-position: center;
    display: block;
    /* Eliminate baseline gap */
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #899f87a3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    top: 70px;
}


.hero-content h2 {
    font-family: var(--font-main);
    /* Ensure it uses the main font or a serif if needed */
    font-size: 90px;
    /* Increased size based on screenshot */
    font-weight: 400;
    /* Thinner weight */
    margin-bottom: 60px;
    line-height: 1;
    letter-spacing: -2px;
    color: #F2F6EF;
}

.hero-btn {
    background-color: #F2F6EF;
    color: #213721;
    /* Dark text */
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 400;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    border-radius: 0;
    /* Rectangular box */
    transition: all 0.3s;
    min-width: 250px;
    /* Fixed width mostly */
    justify-content: center;
    border: 2px solid #F2F6EF;
}

.hero-btn img {
    margin-left: 20px;
    width: 20px;
    /* Adjust size as needed */
    height: auto;
    transition: transform 0.3s;
}

.hero-btn:hover {
    background-color: #fff !important;
    border: 2px solid #fff !important;
    color: #213721 !important;
}


/* Custom Navigation Arrows */
.hero-nav-arrows {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 20;
    /* Ensure explicitly above overlay */
}


.hero-next {
    background: transparent;
    /* border: 1px solid rgba(255, 255, 255, 0.3); */
    /* border-radius: 50%; */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.hero-prev img,
.hero-next img {
    max-width: 100%;
    height: auto;
}

.hero-nav-dots {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0;
}

.hero-nav-dot {
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: block;
}

.hero-nav-dot.active {
    background-color: #3C5E39;
    transform: scale(1.2);
}


/* Custom Slick Dots/Arrows for Hero */
.hero-section .slick-dots {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    left: 18px;
    width: auto;
    display: flex !important;
    flex-direction: column;
}

.hero-section .slick-dots li {
    margin: 6px 0;
    width: 5px;
    height: 5px;
}

.hero-section .slick-dots li button {
    width: 5px;
    height: 5px;
    padding: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
}

.hero-section .slick-dots li.slick-active .hero-nav-dot {
    background-color: #3C5E39;
    transform: scale(1.5);
}

.hero-nav-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 60px;
    /* Align with dots if we had them, but design has vertical arrows */
    display: flex;
    flex-direction: column;
    z-index: 10;
    height: 150px;
    justify-content: space-between;
}

.hero-prev,
.hero-next {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s;
}

.hero-prev:hover,
.hero-next:hover {
    opacity: 0.8;
}

/* Separator dots between arrows */
.hero-nav-dots {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
    justify-content: center;
    gap: 15px;
}

.hero-nav-dot {
    width: 4px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}



/* Feature/Intro Section */
.intro-section {
    background-color: #F2F6EF;
    /* Off-white for left side */
    overflow: hidden;
}

.intro-right-col {
    background-color: #E4ECE0;
    /* Light Green */
    padding: 80px 60px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-left-col {
    padding: 65px 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.intro-left-col h2 {
    color:#213721;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 500;
}

.feature-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
}

.feature-box:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 60px;
    margin-right: 25px;
    flex-shrink: 0;
    text-align: center;
    position: relative;
    color: transparent;
    /* For stroke effect if needed, but solid color is fine */
    -webkit-text-stroke: 1px var(--primary-color);
}

.feature-icon img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.feature-icon i {
    font-size: 40px;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--primary-color);
}

/* Specific icon 100% overlay adjustments if needed */
.icon-overlay-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 12px;
    font-weight: bold;
    color: var(--primary-color);
}


.feature-text h4 {
    color: #213721;
    font-size: 24px;
    margin-bottom: 10px;
}

.feature-text p {
    color: #3C5E39;
    font-weight: 300;
}


/* About Section */
.about-section {
    background-color: #F2F6EF;
}

.sub-title {
    font-size: 26px;
    color: #899F87;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 300;
}

.about-title {
    color: #213721;
    font-size: 46px;
    line-height: 1.2;
    font-weight: 500;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #3C5E39;
    font-weight: 300;
}

.about-text p strong {
    font-weight: 600;
}

/* Services Section */
.services-section {
    background-color: #E8F3E1;
}

.service-card {
    background-color: #fff;
    text-align: center;
    padding: 0 0 40px 0;
    height: 100%;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img-wrapper {
    overflow: hidden;
    /* Create the arch shape */
    border-top-left-radius: 50% 100%;
    /* Horizontal / Vertical radii */
    border-top-right-radius: 50% 100%;
    /* Horizontal / Vertical radii used to approximate the arch */
    margin-bottom: 30px;
    height: 300px;
    /* specific height */
}

/* Actually, looking at design, it's a specific arch shape mask.
   Let's try a simpler border-radius approach first or use a clip-path.
   Design: Top is rounded like an arch, bottom is flat.
*/
.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 200px 200px 0 0;
    /* Creates arch shape */
}

/* Testimonials Section */
.testimonials-section {
    background-color: #023A15;
    color: #fff;
    padding: 0;
}

.testimonial-left {
    padding: 130px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.testimonial-title {
    font-weight: 500;
    font-style: normal;
    font-size: 50px;
    line-height: 120%;
    letter-spacing: 0;
    margin-bottom: 30px;
}

.testimonial-text,
.testimonial-text p {
    font-family: 'Poppins', sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 20px;
    line-height: 170%;
    letter-spacing: 0;
}

.testimonial-author {
    font-size: 24px;
    font-weight: 500;
}

.testimonial-arrows {
    position: absolute;
    bottom: 80px;
    right: 60px;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.testimonial-arrow {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: opacity 0.3s;
}

.testimonial-arrow img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.testimonial-arrow:hover {
    opacity: 0.7;
}

.testimonial-image {
    height: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
}

/* Contact Section */
.contact-section {
    background-color: #F2F6EF;
    padding: 80px 0px;
}

.contact-left {
    padding-right: 40px;
}

.contact-title {
    color: var(--primary-color);
    font-size: 56px;
    font-weight: 600;
    margin-bottom: 30px;
}

.contact-desc {
    font-size: 18px;
    color: #567C49;
    margin-bottom: 40px;
    padding-top: 20px;
}

.contact-info-card {
    background-color: #E6F1DD;
    /* Light green bg */
    padding: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info-card i {
    color: #023A15;
    font-size: 24px;
    margin-right: 20px;
    width: 30px;
    text-align: center;
}

.contact-info-card span {
    font-size: 18px;
    color: #567C49;
    font-weight: 500;
}

.contact-info-card span a {
    color: #567C49;
}

.contact-info-card span a:hover {
    color: #023A15;
}

.contact-form-wrapper {
    background-color: #023A15;
    padding: 50px;
    border-radius: 0;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    padding: 15px;
    margin-bottom: 20px;
    width: 100%;
    border-radius: 5px;

}

.contact-form-wrapper textarea {
    height: 180px;
}


.contact-form-wrapper input::placeholder,
.contact-form-wrapper textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.contact-form-wrapper .btn-submit {
    background-color: #fff;
    color: var(--primary-color);
    border: 2px solid #fff;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    width: 55%;
    display: block;
    margin: 10px auto;
}
.contact-form-wrapper .btn-submit:hover  {
    background-color: transparent;
    color:#fff;
}

/* Map Section */
.map-section {
    height: 450px;
    width: 100%;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Bottom CTA */
.bottom-cta {
    background-color: #899F87;
    /* Sage Green */
    padding: 50px 0;
}

.bottom-cta h2 {
    color: #fff;
    font-size: 42px;
    margin: 0;
}

.service-content {
    padding: 0 30px;
}

.service-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.service-title span {
    font-weight: 700;
    /* Ensure both words are bold as per design */
}

.service-desc p {
    color: #567C49;
}

.read-more-link {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}

.read-more-link i {
    margin-left: 10px;
    transition: margin-left 0.3s;
}

.read-more-link:hover i {
    margin-left: 15px;
}

.wpcf7 form.sent .wpcf7-response-output {
    color: #fff;
}
.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output {
    color: #fff;
}
/* Responsive Tweaks */
@media (max-width: 1199px) {
    nav.navbar button.navbar-toggler {
        position: absolute;
        top: 33px;
        right: 0px;
        border: 0;
    }
    .navbar-brand img {
        max-height: 70px;
    }
    nav.navbar button.navbar-toggler.collapsed span.navbar-toggler-icon:before {
        content: "\f0c9";
        display: inline-block;
        font-family: FontAwesome;
        font-size: 28px;
        color: #fff;
    }
    nav.navbar button.navbar-toggler span.navbar-toggler-icon:before {
        content: "\f00d";
        display: inline-block;
        font-family: FontAwesome;
        font-size: 28px;
        color: #fff;
    }
    nav.navbar .navbar-toggler-icon {
        background-image: none !important;
    }
    .navbar-toggler:focus {
        box-shadow: none !important;
    }
    .hero-slide {
        min-height: auto;
        padding: 145px 0;
    }
}
@media (max-width: 991px) {
    .site-header {
        position: relative;
    }


    .site-header:has(.navbar-collapse.show),
    .site-header:has(.navbar-collapse.collapsing) {
        background-color: var(--primary-color) !important;
    }

    .hero-section {
        height: auto;
        min-height: auto;
    }

    .hero-content h2 {
        font-size: 42px;
    }

    .intro-left-col,
    .intro-right-col {
        padding: 50px 20px;
    }

    .intro-left-col h2 {
        font-size: 36px;
    }

    .about-title {
        font-size: 36px;
    }

    .testimonial-left {
        padding: 50px 20px;
    }

    .testimonial-title {
        font-size: 36px;
    }

    .testimonial-image {
        min-height: 300px;
    }

    .testimonial-arrows {
        bottom: 50px;
        right: 20px;
    }

    .contact-title {
        font-size: 36px;
    }

    .contact-form-wrapper {
        padding: 30px;
    }


}
@media (max-width: 768px) {

}
@media (max-width: 575px) {

}

/* Custom Navigation Arrows and Hero Button Override */
.hero-nav-arrows {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 20;
    /* Ensure explicitly above overlay */
}

.hero-prev,
.hero-next {
    background: transparent;
    /* border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%; */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.hero-prev:hover,
.hero-next:hover {
    transform: scale(1.2);
    transform: translateY(-2px);
}

.testimonial-arrow:hover {
    transform: scale(1.2);
    transform: translateX(-2px);
}

.hero-nav-dots {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0;
}

.hero-nav-dot {
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: block;
}


.hero-btn i {
    margin-left: 20px !important;
    font-size: 18px !important;
    /* Matching size */
    transition: transform 0.3s !important;
}


/* Our Story Section */
.our-story-section {
    padding: 60px 0px;
    background-color: #F7FCF4;
    overflow: hidden;
}

.our-story-img-wrapper {
    position: relative;
    z-index: 1;
}

.our-story-img-wrapper img {
    width: 100%;
    /* Keep aspect ratio but ensure it fills height */
    height: 600px;
    object-fit: cover;
    /* Large arch shape as seen in screenshot */
    border-top-left-radius: 300px;
    border-top-right-radius: 300px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.our-story-card {
    background-color: #023A15;
    color: #fff;
    padding: 60px;
    position: relative;
    z-index: 2;
    /* Ensure content stays within bounds */
    border-radius: 5px;
}

.our-story-title {
    font-family: var(--font-main);
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #fff;
    letter-spacing: -1px;
}
.our-story-card p {
    font-weight: 300;
}

.underlined-word {
    position: relative;
    display: inline-block;
}

.section-underline {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.our-story-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    color: #fff;
    font-weight: 300;
}

.btn-white-story {
    background-color: #fff;
    color: #023A15;
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    letter-spacing: 1px;
    border: 2px solid #fff;
    text-decoration: none;
}

.btn-white-story i {
    margin-left: 10px;
    transition: margin-left 0.3s;
    font-size: 12px;
}

.btn-white-story:hover {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}


/* Overlap Logic for Desktop */
@media (min-width: 992px) {
    .our-story-card {
        margin-left: -15%;
        /* Pull card left over image */
        margin-top: 50px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        min-height: 450px;
        justify-content: center;
    }

    .our-story-img-wrapper img {
        height: 650px;
        /* Make image tall enough for overlap */
    }

    .col-lg-5 {
        flex: 0 0 50%;
        /* Make card column wider */
        max-width: 50%;
    }

    .col-lg-7 {
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/* Custom Navigation Arrows and Hero Button Override */
.hero-nav-arrows {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 20;
    /* Ensure explicitly above overlay */
}

.hero-prev,
.hero-next {
    background: transparent;
    /* border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%; */
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

/* .hero-prev:hover,
.hero-next:hover {
    background: #fff;
    color: var(--primary-color);
    border-color: #fff;
} */

.hero-nav-dots {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 10px 0;
}

.hero-nav-dot {
    width: 6px;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: block;
}


/* Ensure learn more button is styled correctly */


.hero-btn i {
    margin-left: 20px !important;
    font-size: 18px !important;
    /* Matching size */
    transition: transform 0.3s !important;
}

/* New Service Card Design */
.service-card.new-design {
    background-color: transparent;
    padding: 0;
    overflow: visible;
    /* Allow overlap */
    border-radius: 0;
    margin-bottom: 30px;
}

.service-card.new-design:hover {
    transform: translateY(-5px);
}

.service-img-wrapper-new {
    position: relative;
    height: 300px;
    /* Adjusted height */
    width: 100%;
    overflow: hidden;
    margin-bottom: 0;
    z-index: 1;
}

.service-img-wrapper-new-left {
    /* Uniform large rounded top-left corner for all cards */
    border-top-left-radius: 120px !important;
    border-top-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.service-img-wrapper-new-right {
    /* Uniform large rounded top-left corner for all cards */
    border-top-left-radius: 0 !important;
    border-top-right-radius: 120px !important;
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.service-img-wrapper-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 0 !important;
}

.service-card.new-design:hover .service-img-wrapper-new img {
    transform: scale(1.05);
}

/* The white overlap content card */
.service-card-content {
    background-color: #fff;
    padding: 25px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: -60px;
    /* Overlap the image */
    margin-left: 20px;
    margin-right: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    min-height: 240px;
}

.service-card-content h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


.read-more-link {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
}

.read-more-link i {
    margin-left: 8px;
    transition: margin-left 0.3s;
}

.read-more-link:hover i {
    margin-left: 12px;
}

/* 23-02-2026 */
#page-breadcrumb-section {
    background-color: #E6EFE9;
    padding: 17px 0px;
}
h3.page-head-text {
    font-weight: 300;
    color: #023A15;
    letter-spacing: 0.02em;
    font-size: 30px;
    margin-bottom: 10px;
}
nav.breadcrumbs {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #6b7b6b;
    margin-bottom: 8px;
}
a.breadcrumbs-item {
    margin-right: 5px;
    color: #023A15;
}
.opening-label, .lead-eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #023A15;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.opening-label::before, .lead-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1px;
    background: #023A15;
}
h2.opening-headline {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    color: #213721;
    letter-spacing: 0.01em;
}
.story-content {
    margin-top: 40px;
    padding-left: 35px;
}
.story-content p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}
.stat {
    background: #f0f4f0;
    border-left: 3px solid #023A15;
    padding: 20px 22px;
    border-radius: 0 6px 6px 0;
}
.stat-number {
    font-size: 28px;
    font-weight: 600;
    color: #023A15;
    line-height: 1;
}
.stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    letter-spacing: 0.04em;
}
.locations-label {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #023A15;
    font-weight: 500;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
h2.locations-title {
    font-size: 30px;
    font-weight: 500;
    line-height: 1.2;
    color: #023A15;
    letter-spacing: 0.01em;
}
.location-row .location-box .vc_column-inner {
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #fff !important;
    box-shadow: 0 2px 24px rgba(45, 90, 61, 0.08) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
    padding: 0px !important;
}
.location-row .location-box .wpb_single_image {
    margin-bottom: 0px !important;
}
.location-body {
    padding: 32px;
}
.vc_row {
    margin: auto !important;
}
.opening-stats {
    margin-top: 36px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
/* Parent menu item */
.navbar-nav > li {
    position: relative;
}

/* Hide submenu by default */
.navbar-nav li .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    padding: 10px 0;
    margin: 0;
    list-style: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 999;
}

/* Show submenu on hover */
.navbar-nav li:hover > .sub-menu {
    display: block;
}

/* Submenu links */
.navbar-nav li .sub-menu li a {
    display: block;
    padding: 8px 16px;
    color: #023A15 !important;
    text-decoration: none;
    white-space: nowrap;
}

/* Hover effect */
.navbar-nav li .sub-menu li a:hover {
    background-color: #f5f5f5;
}
.navbar-nav > li:has(.sub-menu) > a::after {
    content: " ▾";
    font-size: 1.2em;
}
.location-body a.btn-outline {
    background-color: #023A15;
    color: #fff;
    border: 1px solid #023A15;
    padding: 15px 25px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 6px;
}
.location-body a.btn-outline:hover {
    background-color: transparent;
    color: #023A15;
    border: 1px solid #023A15;
}
.location-body a {
    color: #023A15;
}
.location-name {
    font-size: 28px;
    font-weight: 400;
    color: #023A15;
    margin-bottom: 6px;
}
.location-subtitle {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #023A15;
    margin-bottom: 24px;
}
.location-body p {
    font-size: 15.5px;
    color: #444;
    line-height: 1.6;
}
.location-body p strong {
    font-weight: 400 !important;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #6b7b6b;
    margin-bottom: 5px;
}
.lead-content h2.vc_do_custom_heading {
    font-size: 28px;
    color: #213721;
    line-height: 1.25;
    margin-bottom: .4rem;
}
.title-tag p {
    font-size: .85rem;
    color: #023A15;
    margin-bottom: 1.5rem;
    font-style: italic;
}
.lead-text p {
    font-size: 15.5px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 20px;
}
.credentials-list ul {
    list-style: none;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
}
.credentials-list ul li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .875rem;
    color: #444;
}
.credentials-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #023A15;
    margin-top: .45rem;
    flex-shrink: 0;
}
.lead-btn button.vc_general {
    background-color: #023A15 !important;
    color: #fff;
    border: 1px solid #023A15 !important;
    padding: 15px 25px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 6px;
}
.lead-btn button.vc_general:hover {
    background-color:transparent !important;
    color: #023A15 !important;
}
.lead-img .vc_single_image-wrapper {
    flex: 0 0 42%;
    position: relative;
}
.lead-img .vc_single_image-wrapper .vc_single_image-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 520px;
    object-fit: cover;
    object-position: top center;
    border-radius: 10px;
    display: block;
    box-shadow: 0 4px 24px rgba(45,74,62,.10);
}
.lead-img .vc_single_image-wrapper::before {
    content: '';
    position: absolute;
    top: -16px;
    left: -16px;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    border: 2px solid #e8f0eb;
    z-index: 0;
}
.lead-img-badge p {
    position: absolute;
    z-index: 2;
    bottom: 55px;
    left: 50px;
    background: #023A15;
    color: #ffffff;
    border-radius: 8px;
    padding: .6rem 1rem;
    font-size: .78rem;
    font-weight: 500;
    line-height: 1.4;
}
.team_about_box p {
    color: #3C5E39;
    font-weight: 300;
}


  /* grid */
  .team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin: 0 auto;
  }
  .team-card {
    position: relative;
    width: calc(25% - 1.125rem);
    min-width: 200px;
    max-width: 300px;
    perspective: 1000px;
}


  .team-card .card-front,
  .team-card .card-back {
    width: 100%;
    backface-visibility: hidden;
    transition: transform 0.6s ease;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(45, 74, 62, .10);
    border-radius: 10px;
    height: 100%;
  }

  .team-card .card-front {
    transform: rotateY(0deg);
    background-color: #fff;
    overflow: hidden;
  }

  .team-card .card-back {
    position: absolute;
    top: 0;
    left: 0;
    transform: rotateY(180deg);
  }

  .team-card.is-flipped .card-front {
    transform: rotateY(-180deg);
  }

  .team-card.is-flipped .card-back {
    transform: rotateY(0deg);
  }

  .team-card.no-flip .btn-about {
    display: none;
  }

.card-details {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.card-image {
    height: 260px;
    overflow: hidden;
}
.card-image img {
    object-fit: cover;
    object-position: top center;
    display: block;
    width: 100%;
    height: 100%;
}
p.card-name {
    font-size: 18px;
    color: #023A15;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: .2rem;
}
p.card-title {
    font-size: 15px;
    color: #023A15;
    font-weight: 400;
    margin-bottom: 40px;
}
.card-front .btn-about {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    margin-top: .8rem;
    background: transparent;
    border: 1.5px solid #023A15;
    color: #023A15;
    padding: .42rem .9rem;
    border-radius: 6px;
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .05em;
    cursor: pointer;
    transition: background .35s cubic-bezier(.4,0,.2,1), color .35s cubic-bezier(.4,0,.2,1);
    align-self: flex-start;
}
.card-front .btn-about:hover {
    background: #023A15;
    color: #fff;
}
.card-back {
    background: #023A15;
    color: #fff;
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    padding: 1.4rem 1.2rem 1.2rem;
}
p.back-name {
    font-size: 18px;
    color: #fff;
    margin-bottom: 0.2em;
}
p.back-title {
    font-size: 15px;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 15px;
}
.back-bio {
    font-size: .78rem;
    color: #ffffffe0;
    line-height: 1.6;
    overflow: hidden;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 10;
    -webkit-box-orient: vertical;
}
.btn-back {
    align-self: flex-start;
    margin-top: .9rem;
    background: rgba(255,255,255,.15);
    border: none;
    color: #fff;
    padding: .38rem .85rem;
    border-radius: 5px;
    font-size: .72rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .35s cubic-bezier(.4,0,.2,1);
}
.btn-back:hover {
    background: rgba(255,255,255,.25);
}
.ser-label p {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #023A15;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
h2.ser-heading {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.4;
    color: #023A15;
    letter-spacing: 0.01em;
    max-width: 45%;
    margin: 0px auto 20px;
}
.intro p {
    color: #444;
    font-size: 1rem;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, #00000000, #d4e3db, transparent);
    margin: 0 48px;
}
.service-number h2.vc_custom_heading  {
    font-size: 3rem;
    font-weight: 700;
    color: #E4ECE0;
    line-height: 1;
    user-select: none;
}
.service-header-text h2 {
    font-weight: 600;
    color: #023A15;
    line-height: 1.2;
    font-size: 28px;
}
.service-header-text p {
    font-size: 1rem;
    font-weight: 300;
}
.icon-card .vc_column-inner {
    background: #F2F6EF;
    padding: 20px;
    border-radius: 10px;
    /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); */
    border: 1px solid #ecf2e7;
}
.icon-card h3 {
    text-align: center;
    color: #213721;
    font-size: 22px;
    margin-bottom: 10px;
}
.icon-card p {
    text-align: center;
    color: #3C5E39;
    font-weight: 300;
    font-size: 16px;
}
.split-image .vc_single_image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.img-badge {
    position: absolute;
    bottom: 40px;
    left: 40px;
    background: #023A15;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 8px;
}
.book-service button.vc_general {
    background-color: #023A15 !important;
    color: #fff;
    border: 1px solid #023A15 !important;
    padding: 15px 25px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 6px;
}
.book-service button.vc_general:hover {
    color: #023A15 !important;
    border: 1px solid #023A15 !important;
    background-color: transparent !important;
}
.service-box-eye p {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #023A15;
    font-weight: 500;
    margin-bottom: 10px;
}
.service-box-heading {
    font-weight: 600;
    color: #023A15;
    line-height: 1.3;
    font-size: 28px;
    max-width: 55%;
}
.service-box-text p {
    color: #444;
    font-size: 1rem;
    font-weight: 300;
}
.forms-eyebrow p {
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #023A15;
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}
.form-head {
    text-align: center;
    font-size: 30px;
    font-weight: 500;
    line-height: 1.4;
    color: #023A15;
    letter-spacing: 0.01em;
}
.form-box .vc_column-inner {
    background: #fdfcfa;
    border: 1px solid #dde5de;
    border-radius: 14px;
    padding: 44px 40px 40px !important;
    box-shadow: 0 4px 32px rgba(45, 74, 48, .08), 0 1px 4px rgba(45, 74, 48, .04);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
    animation: fadeUp .7s ease both;
    position: relative;
    overflow: hidden;
}
.form-box .vc_column-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2d4a30, #5a7a5e);
    opacity: 0;
    transition: opacity .3s ease;
}
.form-box .vc_column-inner:hover::before {
    opacity: 1;
    display: block;
}
.form-box .vc_icon_element .vc_icon_element-inner {
    background-color: #e6efe9 !important;
    border-radius: 14px !important;
}
.form-box .vc_icon_element .vc_icon_element-inner .vc_icon_element-icon:before {
    color: #023A15 !important;
    font-size: 0.8em !important;
}
.card-box h5 {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #023A15;
    font-weight: 500;
    margin-bottom: 10px;
}
.card-box h2 {
    font-weight: 600;
    color: #023A15;
    line-height: 1.2;
    font-size: 28px;
    margin-bottom: 20px;
}
.card-box p {
    color: #444;
    font-weight: 300;
    font-size: 16px;
}
.form-button .vc_general {
    background-color: #023A15 !important;
    color: #fff !important;
    border: 1px solid #023A15 !important;
    padding: 15px 25px;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
    border-radius: 6px;
}
.form-button .vc_general:hover {
    color: #023A15 !important;
    border: 1px solid #023A15 !important;
    background-color: transparent !important;
}
.location-box .vc_single_image-wrapper {
    height: 400px;
    overflow: hidden;
}
.location-box .vc_single_image-wrapper img {
    height: 100%;
    max-width: 100%;
    object-fit: cover;
    object-position: center;
}
.grecaptcha-badge {
    z-index: 9999;
}
#access_sec a {
    color: #333;
}
#access_sec a:hover {
    color:#023A15;
}
body .design-credit a:hover,
body .copy-text a:hover{
    color:#000 !important;
    padding-left: 5px !important;
}

.sub-menu {
    display: none;
}

.submenu-open > .sub-menu {
    display: block;
}

