:root {
    --primary-green: #014A3D;
    --light-green-accent: #D9F3E4;
    --text-dark: #0E0E0E;
    --text-muted-custom: #5a6570;
    --page-background: #F7FFF7;
    --font-family-sans-serif: 'Inter', sans-serif;
}

body {
    font-family: 'inter';
    color: var(--text-dark);
}

/* Header Styles */
.header-section {
    background-color: var(--page-background);
    padding-top: 10px;
    padding-bottom: 10px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Style for header when scrolled */
.header-section.scrolled {
    background-color: rgba(247, 251, 249, 0.95);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
}


.navbar-nav .nav-item {
    margin-left: 15px;
}

.navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.get-in-touch-link:hover {
    color: var(--primary-green);
    border: 1.5px solid var(--primary-green);
    border-radius: 20px;

}

.navbar-nav .nav-link.active-link {
    color: var(--primary-green);
    border: 1.5px solid var(--primary-green);
    border-radius: 20px;
    background-color: transparent;
    padding: 6px 18px;
}

.navbar-nav .nav-link.get-in-touch-link {
    color: var(--primary-green);
    font-weight: 600;
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    background-color: var(--page-background);
    overflow: hidden;
    background: url('../images/diagonal.png') no-repeat center center;
    background-color: #F7FFF7;
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
    background-size: 100% 200px;
}

.hero-section .left-sec {
    transform: translateX(135px);

}

.hero-swoosh {
    position: absolute;
    bottom: 0;
    left: -10%;
    width: 100%;
    height: 20px;
    background-color: var(--primary-green);
    border-top-right-radius: 100% 320px;
    transform: skewX(-10deg) translateX(5%);
    z-index: 1;
}

.content-above-swoosh {
    position: relative;
    z-index: 2;
}

.hero-text-column {
    padding-right: 30px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--primary-green);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted-custom);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 480px;
    color: #63666D;
}

.hero-cta {
    margin-top: 30px;
}

.explore-services-link {
    font-weight: 600;
    color: var(--primary-green);
    text-decoration: underline;
    font-size: 1rem;
    padding-bottom: 3px;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.explore-services-link:hover {
    color: darken(var(--primary-green), 10%);
}

.explore-services-link:active {
    transform: translateY(1px);
}

.call-us {
    color: var(--primary-green);
    font-weight: 600;
    font-size: 1rem;
}

.phone-icon-wrapper {
    background-color: var(--primary-green);
    color: white;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.hero-image-column {
    position: relative;
    z-index: 2;
}

.hero-image {
    max-width: 100%;
    height: auto;
}


/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .hero-section .left-sec {
        transform: translateX(50px);

    }

    .navbar-nav .nav-item {
        margin-left: 0;
        margin-top: 5px;
    }

    .navbar-nav .nav-link.active-link {
        display: inline-block;
    }

    .hero-section {
        text-align: center;
        background-size: 100% 150px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
        flex-direction: column;
    }

    .call-us {
        margin-left: 0 !important;
        margin-top: 20px;
    }

    .hero-swoosh {
        height: 200px;
        border-top-right-radius: 70% 100px;
        transform: skewX(-15deg) translateX(0%);
    }

    .hero-image-column {
        margin-top: 40px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-swoosh {
        height: 150px;
        border-top-right-radius: 80% 80px;
        transform: skewX(-20deg) translateX(-5%);
    }
}

/* AOS Animation Visibility */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

.aos-animate {
    opacity: 1;
}

.site-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    font-size: 0.9rem;
}

.footer-col p,
.footer-col a {
    color: #cccccc;
    text-decoration: none;
}

.footer-col a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.footer-logo {
    max-width: 150px;
    height: auto;
}

.footer-logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 0.5rem;
}


.tagline {
    font-size: 0.8em;
    color: #aaaaaa;
    margin-bottom: 0;
}

.social-icons a {
    font-size: 1.2rem;
    color: #cccccc;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #ffffff;
}

.footer-link-heading {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}
.footer-link-heading:hover{
    text-decoration: none;
}

.footer-link-col a.standalone-link {
    color: #ffffff;
    font-weight: 500;
    font-size: 1rem;
}

.footer-link-col a.standalone-link:hover {
    text-decoration: underline;
}



.footer-divider {
    border-color: #333333;
}

.footer-bottom-text p {
    margin-bottom: 0;
    font-size: 0.85rem;
    color: #aaaaaa;
}

.footer-bottom-text strong {
    color: #cccccc;
    font-weight: 500;
}

@media (max-width: 767.98px) {
    .contact-us-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    /* Small devices (landscape phones, less than 768px) */
    .footer-col {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
        display: flex;
    }

    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .footer-link-col {
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 575.98px) {
    .hero-section .left-sec {
        transform: translateX(0px);

    }

    .hero-section {
        background-size: 100% 100px;
    }

    /* Extra small devices */
    .footer-link-col {
        text-align: left;
        padding-left: 1.5rem;
    }

    .footer-link-col h5 {
        margin-bottom: 0.25rem;
    }
}

/* last sec */

.join-fleet-section {
    background-color: #004438;
    color: #ffffff;
    padding-top: 1rem;
    overflow: hidden;
    position: relative;
}


/* Ensure content is above the pseudo-element background */
.join-fleet-section .container {
    position: relative;
    z-index: 1;
}


.join-fleet-title {
    font-size: 36px;
}

.join-fleet-description {
    color: #e0e0e0;
    max-width: 500px;
    /* Constrain width for better readability */
}

.btn-apply-now {
    background-color: #ffffff;
    color: #004438;
    padding: 0.75rem 2rem;
    border-radius: 0.25rem;
    font-size: 1rem;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out;
    border: 1px solid #ffffff;
}

.btn-apply-now:hover,
.btn-apply-now:focus {
    background-color: #f0f0f0;
    color: #07372d;
    border-color: #f0f0f0;
}

.join-fleet-image {
    width: 100%;
    height: 100%;
}

@media (max-width: 767.98px) {

    /* md breakpoint */
    .join-fleet-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .text-content {
        text-align: center;
    }

    .join-fleet-description {
        margin-left: auto;
        margin-right: auto;
    }

    .image-column {
        margin-top: 2.5rem;
    }

}

@media (max-width: 575.98px) {

    /* sm breakpoint */
    .join-fleet-title {
        font-size: 2rem;
    }

    .join-fleet-description {
        font-size: 0.95rem;
    }

    .btn-apply-now {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

}

.visionary-leaders-section {
    background-color: #FFFFFF;
}

.leadership-tag {
    color: #0E0E0E;
    display: inline-block;
    color: #014A3D;
    text-align: center;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 16.5px;
    
}

.leadership-tag .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #4CAF50;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
    /* Align dot with text */
}

.section-title {
    font-weight: 400;
    color: #0E0E0E;
}

.section-title .highlight-text {
    font-weight: 600;
    /* Bold for "Visionary Leaders" */
    color: #004438;
    /* Dark teal/green for "Visionary Leaders" - adjust as needed */
}

.section-subtitle {
    font-size: 1.1rem;
    color: #000 !important;
    font-weight: 600;
    /* Darker grey for subtitle */
}

.testimonial-card {
    border-radius: 30px;
    background-color: #F7FFF7;
    /* No overall card border/background, the elements inside define the look */
    overflow: hidden;
    /* To ensure rounded corners clip content */
    /* Add some margin if items are too close or if shadow is desired later */
    /* margin: 0 15px; */
}

.testimonial-text-content {
    background-color: #F7FFF7;
    /* Very light green/mint background */
    padding: 2rem 2.5rem;
    /* Generous padding */
    border-radius: 1rem;
    /* Rounded corners */
    height: 100%;
    /* Make text content take full height of its column */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quote {
    font-size: 1rem;
    line-height: 1.7;
    color: #333333;
    /* Dark grey for quote */
    margin-bottom: 1.5rem;
    font-weight: 600;

}

.author-name {
    font-weight: 600;
    /* Bold name */
    color: #0E0E0E;
    font-size: 1rem;
}

.author-title {
    font-size: 0.85rem;
    color: #6c757d;
    /* Grey for title */
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover the area, might crop */
    border-radius: 1rem;
    /* Rounded corners for the image */
}

/* Owl Carousel Dots Styling */
.visionary-carousel.owl-theme .owl-dots {
    text-align: center;
    margin-top: 30px;
    /* Space above dots */
}

.visionary-carousel.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 0 5px;
    /* Space between dots */
    background: #D1D1D1;
    /* Inactive dot color */
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 50%;
    /* Circular dots */
}

.visionary-carousel.owl-theme .owl-dots .owl-dot.active span,
.visionary-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background: #5A5A5A;
    /* Active/hover dot color */
}

/* Responsive adjustments */
@media (max-width: 767.98px) {

    /* md breakpoint */
    .testimonial-text-content {
        border-radius: 1rem 1rem 0 0;
        /* Round top corners */
        padding: 1.5rem;
        text-align: center;
        /* Center text on small screens */
    }

    .testimonial-image {
        border-radius: 0 0 1rem 1rem;
        /* Round bottom corners */
        /* max-height: 300px; */
        /* Control image height */
    }

    .section-title {
        font-size: 2rem;
        /* Adjust title size */
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

@media (min-width: 768px) {

    /* md breakpoint and up */
    .testimonial-card .row>div:first-child .testimonial-text-content {
        /* On larger screens, round left corners for text */
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }

    .testimonial-card .row>div:last-child .testimonial-image {
        /* On larger screens, round right corners for image */
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
}

/* sec4 */
.why-choose-us-section {
    position: relative;
    /* For the top dotted border */
    padding-top: 6rem;
    /* Extra padding to account for the dotted border space */
    padding-bottom: 4rem;
}

.top-dotted-border {
    position: absolute;
    top: 2.5rem;
    /* Adjust as needed to position it correctly */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    /* Or a fixed width if preferred */
    max-width: 1140px;
    /* Match container max-width if needed */
    height: 2px;
    background-image: linear-gradient(to right, #007bff 33%, rgba(255, 255, 255, 0) 0%);
    /* Bootstrap blue example */
    background-position: bottom;
    background-size: 15px 2px;
    /* Adjust dot size and spacing */
    background-repeat: repeat-x;
    opacity: 0.6;
}

.section-header {
    /* Styles for the overall header text block */
}

.choose-us-tag {
    color: #014A3D;
    text-align: center;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 16.5px;
    /* 110% */
    /* Color for "Why Choose Us?" text */
    display: inline-flex;
    /* Align dot and text nicely */
    align-items: center;
}

.choose-us-tag .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #198754;
    /* Bootstrap success green, or your specific green */
    border-radius: 50%;
    margin-right: 8px;
}

.section-title {
    color: #0E0E0E;
    /* Dark text for the main part of the title */
    line-height: 1.3;
}

.highlight-text {
    color: #004438;
    /* Dark teal/green from previous example, adjust as needed */
    display: block;
    /* To ensure it can break line if needed */
}


.features-grid {
    margin-top: 3rem;
    /* Space between header and feature items */
}

.feature-item {
    /* Animation preparation */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-icon-wrapper {
    /* You can add a background or border here if needed */
    display: inline-block;
    /* Helps with alignment if needed */
}

.why-choose-para {
    color: #63666D;
    text-align: center;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px;
    /* 140% */
    letter-spacing: -1px;
}

.feature-icon {
    /* max-height: 80px; */
    /* Control icon size, adjust as needed */
    width: auto;
    object-fit: contain;
}

.feature-title {
    font-size: 1.1rem;
    color: #333;
    margin-top: 0.5rem;
    /* Space between icon and title */
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {

    /* lg breakpoint */
    .section-title .highlight-text {
        display: inline;
        /* Allow it to flow with text on smaller screens */
    }


}

@media (max-width: 767.98px) {

    /* md breakpoint */
    .why-choose-us-section {
        padding-top: 5rem;
    }

    .top-dotted-border {
        top: 1.5rem;
    }

    .section-title {
        font-size: calc(1.325rem + 0.9vw);
        /* Adjust display font size for smaller screens */
    }

    .section-subtitle {
        font-size: 0.95rem;
    }



    .feature-title {
        font-size: 1rem;
    }

    .features-grid {
        margin-top: 2rem;
    }
}

@media (max-width: 575.98px) {

    /* sm breakpoint */
    .feature-item {
        /* Ensure items are clearly separated when stacked */
    }
}

/* sec6 */

.contact-us-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.contact-wrapper {
    /* Optional: add a subtle shadow to the whole wrapper if desired */
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.05); */
    /* border-radius: 2rem; */
    /* If wrapper needs overall rounding */
    /* overflow: hidden; */
    /* If using box-shadow and border-radius on wrapper */
}

.contact-info-column {
    background-color: #004438;
    /* Dark Teal from your image */
    color: #ffffff;
    padding: 3rem;
    /* Generous padding */
    border-radius: 2rem;
    /* Rounded corners as per design */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically center content if needed */
}

@media (max-width: 991.98px) {

    /* lg breakpoint */
    .contact-info-column {
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
        border-top-right-radius: 2rem;
        /* Keep top right rounded */
    }
}


.contact-tag-line {
    position: relative;
}

.contact-tag {
    display: inline-flex;
    align-items: center;
    margin-right: 0.5rem;
    color: #014A3D;
    text-align: center;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 16.5px;
    /* 110% */
    /* Space before the white bar */
}

.contact-tag .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #ffffff;
    /* White dot on dark background */
    border-radius: 50%;
    margin-right: 8px;
}

.title-accent-bar {
    display: inline-block;
    height: 2px;
    /* Thickness of the bar */
    background-color: #ffffff;
    width: 150px;
    /* Adjust width as it appears in the design */
    flex-grow: 1;
    /* Or use a fixed width, design dependent */
    max-width: 200px;
}

.contact-headline {
    line-height: 1.2;
    font-weight: 600;
    font-size: 36px;
    /* Extra bold for headline */
}

.contact-detail .detail-label {
    font-size: 0.85rem;
    color: #e0e0e0;
    /* Slightly dimmer white for labels */
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-detail .detail-value {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.63);
    /* text-decoration: none; */
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.contact-detail .detail-value:hover {
    opacity: 0.8;
}

.contact-form-column {
    background-color: #ffffff;
    /* White background for form area */
    padding: 3rem;
    border-radius: 2rem;
    /* Rounded corners as per design */
}

@media (max-width: 991.98px) {

    /* lg breakpoint */
    .contact-form-column {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
        border-bottom-left-radius: 2rem;
        /* Keep bottom left rounded */
    }
}

/* To achieve the effect of the teal box overlapping/being "on top" visually on desktop */
/* we can adjust z-index or margins for a seamless combined rounded corner */
@media (min-width: 992px) {
    .contact-info-column {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        /* z-index: 1; */
        /* Ensure it's visually above */
    }

    .contact-form-column {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }

    /* If using g-0 on row isn't enough and there's a slight gap, use negative margin */
    /* .contact-form-column {
        margin-left: -1px;
    } */
}


.contact-form-content .form-label {
    font-size: 0.8rem;
    color: #6c757d;
    /* Standard Bootstrap muted grey */
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.contact-form-content .form-control {
    background-color: #ffffff;
    /* Standard Bootstrap border */
    border-radius: 9px;
    border: 2px solid #63666D;
    /* Slightly rounded inputs */
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: #0E0E0E;
}

.contact-form-content .form-control:focus {
    border-color: #004438;
    /* Teal border on focus */
    box-shadow: 0 0 0 0.2rem rgba(10, 72, 59, 0.25);
    /* Teal shadow on focus */
}

.contact-form-content .form-control::placeholder {
    color: #252525;
    font-weight: 600;
    /* Lighter placeholder text */
}

.btn-submit {
    background-color: #004438;
    /* Dark Teal */
    color: #ffffff;
    padding: 0.85rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    border: none;
    transition: background-color 0.2s ease-in-out;
}

.btn-submit:hover,
.btn-submit:focus {
    background-color: #07372d;
    /* Slightly darker teal on hover/focus */
    color: #ffffff;
}

/* Responsive Adjustments for the combined rounded rectangle look */
@media (min-width: 992px) {
    .contact-wrapper {
        display: flex;
        background: #F9F9F9;
        border-radius: 50px;

        /* Make the row a flex container to manage children directly */
    }

    .contact-info-column {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-top-left-radius: 2rem;
        border-bottom-left-radius: 2rem;
        border-radius: 50px;
        background: #014A3D;
    }

    .contact-form-column {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
        border-top-right-radius: 2rem;
        border-bottom-right-radius: 2rem;
        background: #F9F9F9;
    }
}

@media (max-width: 991.98px) {
    .contact-info-column {
        border-radius: 2rem;
    }

    .contact-form-column {
        border-radius: 0 0 2rem 2rem;
        /* Bottom corners rounded when stacked */
        padding: 1rem;
        /* Reduce top padding slightly when stacked */
    }
}

.dark-green-background-area {
    width: 100%;
    padding: 30px 0;
    /* background-color: #004438; */
    /* Dark Teal - matches your design */
    display: inline-block;
    /* So it wraps the pill */
    border-radius: 8px;
    /* Optional: if the container itself has rounding */
}

.contact-us-pill {
    border-radius: 8px;
    width: 100%;
    background-color: #ffffff;
    /* White background for the pill */
    padding: 10px 20px;
    /* Adjust padding: top/bottom, left/right */
    display: inline-flex;
    /* Align items inline */
    align-items: center;
    /* Vertically center dot and text */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.07);
    /* Subtle shadow for depth */
}

.contact-us-pill-dot {
    width: 9px;
    /* Size of the dot */
    height: 9px;
    background-color: #004438;
    /* Dark Teal dot */
    border-radius: 50%;
    /* Makes it a circle */
    margin-right: 10px;
    /* Space between dot and text */
}

.contact-us-pill-text {
    font-size: 15px;
    /* Adjust font size as needed */
    font-weight: 500;
    /* Medium weight */
    color: #004438;
    /* Dark Teal text */
    line-height: 1;
    /* Ensures text is well-aligned vertically */
}

/* sec2 */

.our-services-section {
    margin-bottom: 7.5rem;
    background-color: #fff;
}

/* --- Section Header --- */
.services-tag {
    font-weight: 500;
    color: #333;
    display: inline-flex;
    align-items: center;
    color: #014A3D;
    text-align: center;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 16.5px;
    border-radius: 8px;
    background: #F7FFF7;
    padding: 8px 13px 8px 10px;
    /* 110% */
}

.services-tag .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #198754;
    /* Bootstrap success green, or your specific green */
    border-radius: 50%;
    margin-right: 8px;
}

.section-title {
    color: #0E0E0E;
    line-height: 1.3;
    font-size: 36px;
    font-weight: 600;
    /* Default to bold for title */
}


/* --- Service Cards --- */
.service-cards-row {
    /* Add any specific styling for the row if needed */
}

.service-card-item {
    /* For animation */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-card-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}


.service-card {
    background-color: #ffffff;
    border-radius: 1rem;
    /* Rounded corners for the card */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    /* To clip the image corners */
    height: 100%;
    /* Make cards in a row equal height if content varies slightly */
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.service-image-wrapper {
    position: relative;
    height: 200px;
    /* Or adjust to match aspect ratio of your images */
}

.service-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Cover the area, might crop image */
    display: block;
}

.service-icon-overlay {
    position: absolute;
    bottom: -25px;
    /* Pull down to overlap */
    right: 20px;
    background-color: #ffffff;
    border-radius: 50%;
    padding: 12px;
    /* Adjust padding around the icon */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    /* Fixed size for the circle */
    height: 80px;
    /* border: 3px solid #004438; */
    /* Green border for the icon circle */
}

.service-icon-overlay img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    /* Adjust icon size inside the circle */
    width: auto;
}

.service-content {
    padding: 35px 20px 20px 20px;
    /* Top padding increased due to icon overlay */
    flex-grow: 1;
    /* Allow content to take remaining space in flex column */
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #0E0E0E;
    margin-bottom: 0.75rem;
}

.service-description {
    font-size: 0.9rem;
    color: #63666D;
    line-height: 1.6;
    font-weight: 500;
}

/* --- Middle Description --- */
.middle-description {
    font-size: 0.95rem;
    color: rgba(99, 102, 109, 0.68);
    line-height: 1.7;
    /* max-width: 750px; */
    /* Constrain width */
}

/* --- Stats Section --- */

.stat-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.stat-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 4.5rem;
    font-family: 'Poppins', sans-serif;
    /* Large font for numbers */
    font-weight: 600;
    /* Bold */
    color: #004438;
    /* Your green/teal color */
    line-height: 1;
    margin-bottom: 0.25rem;
    display: inline-block;
    /* To keep unit close */
}

.stat-unit {
    font-size: 2.5rem;
    /* Slightly smaller for % and + */
    font-weight: 600;
    vertical-align: baseline;
    /* Adjust alignment if needed */
    margin-left: 2px;
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: #014A3D;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {

    /* lg breakpoint */
    .service-image-wrapper {
        height: 180px;
        /* Adjust image height for tablets */
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .stat-unit {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {

    /* md breakpoint */
    .section-title {
        font-size: calc(1.3rem + 1.2vw);
        /* Responsive font size for title */
    }

    .service-card-item {
        /* Ensure cards take full width if only one per row on small screens */
    }

    .service-image-wrapper {
        height: 160px;
    }

    .stat-item {
        margin-bottom: 2rem;
        /* Add space between stacked stats */
    }

    .stat-item:last-child {
        margin-bottom: 0;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-unit {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {

    /* sm breakpoint */
    .service-content {
        padding: 30px 15px 15px 15px;
    }

    .service-title {
        font-size: 1.1rem;
    }
}

.stats-section-container {
    /* Add padding or margin to the overall section container if needed */
}


.stat-item {
    /* Animation preparation */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.stat-item.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-figure {
    margin-bottom: 0.5rem;
    /* Space between number and label */
    line-height: 0.8;
    /* Crucial for large outlined text to prevent excessive vertical space */
}

.stat-number,
.stat-unit {
    font-weight: 600;
    /* Very bold for the outlined effect to be substantial */
    color: transparent;
    /* Make the fill transparent */
    -webkit-text-stroke-width: 1px;
    /* Stroke thickness */
    -webkit-text-stroke-color: #004438;
    /* Your green/teal color from Figma */
    /* For non-WebKit browsers, text-stroke might not work.
       A fallback would be a solid color, but it won't be an outline.
       You could add: color: #004438; here as a fallback but it changes the effect.
    */
    paint-order: stroke fill;
    /* Ensures stroke is drawn on top of fill (good for complex fonts) */
}

.stat-number {
    font-size: 6rem;
    /* Large font for numbers - adjust to match Figma */
}

.stat-unit {
    font-size: 6rem;
    /* Slightly smaller for units like % and + */
    vertical-align: baseline;
    /* Or 'super' or adjust with relative positioning if needed */
    margin-left: 2px;
    /* Small space if unit is separate */
    -webkit-text-stroke-width: 1px;
    /* Ensure unit stroke matches number stroke */
}

.stat-label {
    position: relative;
    z-index: 999;
    padding: 8px;
    font-size: 0.9rem;
    color: #014A3D;
    font-weight: 500;
    margin-top: -1.75rem;
    background-color: #fff;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.01);
    border-radius: 4px;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {

    /* lg breakpoint */
    .stat-number {
        font-size: 5rem;
    }

    .stat-unit {
        font-size: 3rem;
    }
}

@media (max-width: 767.98px) {

    /* md breakpoint */
    .stat-number {
        font-size: 4rem;
        -webkit-text-stroke-width: 1.5px;
        /* Slightly thinner stroke for smaller font */
    }

    .stat-unit {
        font-size: 2.5rem;
        -webkit-text-stroke-width: 1.5px;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .stat-item {
        margin-bottom: 2rem !important;
        /* Ensure space when stacked */
    }

    .stat-item:last-child {
        margin-bottom: 0 !important;
    }
}

@media (max-width: 575.98px) {

    /* sm breakpoint */
    .stat-number {
        font-size: 3.5rem;
    }

    .stat-unit {
        font-size: 2rem;
    }
}

/* sec3 */


.about-us-section {
    background-color: #004438;
    /* Dark Teal background for the entire section */
    padding-top: 4rem;
    padding-bottom: 4rem;
    color: #ffffff;
    /* Default text color for elements directly in this section (though most are in cards) */
}

/* --- Hero Block --- */
.about-hero-card {
    margin-top: -170px;
    background-color: #F7FFF7;
    /* Very light mint/green background */
    border-radius: 1.5rem;
    /* Prominent rounded corners */
    overflow: hidden;
    /* To clip the image and ensure corners are clean */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    /* Subtle shadow if needed */
    color: #0E0E0E;
    /* Dark text for content inside this card */
}

.about-text-content {
    padding: 2.5rem;
    /* Adjust padding to match Figma */
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically center if image is taller */
}

.about-tag {
    font-weight: 500;
    /* Medium weight for the tag */
    display: inline-flex;
    align-items: center;
    color: #014A3D;
    text-align: center;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    line-height: 16.5px;
    /* 110% */
}

.about-tag .dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #004438;
    /* Dark Teal dot */
    border-radius: 50%;
    margin-right: 8px;
}

.about-headline {
    color: #0E0E0E;
    /* Dark text for headline */
    line-height: 1.3;
    font-size: 36px;
    font-weight: 600 !important;
    margin-top: 15px;
}

.about-description {
    font-size: 0.95rem;
    /* Adjust to match Figma */
    color: #63666D;
    /* Dark grey for description */
    margin-bottom: 1rem;
    font-weight: 400;
}

.about-description:last-child {
    margin-bottom: 0;
}

.about-image-wrapper {
    /* No padding needed as image should fill this column */
}

.about-main-image {
    width: 100%;
    height: 100%;
    /* Make image fill the height of its column */
    object-fit: cover;
    /* Cover the area, cropping if necessary */
    display: block;
}

/* --- Feature Cards --- */
.feature-cards-row {
    margin-top: 3rem;
    /* Space below the hero block */
}

.feature-card-item {
    /* For animation if used */
    opacity: 1;
    /* Set to 0 if using JS for animation */
    transform: translateY(0);
    /* Set to translateY(30px) if using JS */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.feature-card-item.is-visible {
    /* Class added by JS for animation */
    opacity: 1;
    transform: translateY(0);
}

.feature-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 1.75rem;
    text-align: left;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    color: #0E0E0E;
}

.feature-icon-wrapper img {
    width: auto;
}

.feature-title {
    font-size: 1.15rem;
    font-weight: 600;
    /* Bold title */
    color: #0E0E0E;
    margin-bottom: 0.5rem;
}

.feature-description {
    font-size: 0.9rem;
    color: #63666D;
    flex-grow: 1;
    font-weight: 500;
}

/* --- Responsive Adjustments --- */
@media (max-width: 767.98px) {

    .about-text-content {
        padding: 2rem;
    }

    .about-main-image {
        min-height: 280px;
    }

    .about-headline {
        font-size: calc(1.3rem + 1.2vw);
    }

    .feature-cards-row {
        margin-top: 2rem;
    }
}

@media (max-width: 575.98px) {

    /* sm breakpoint */
    .about-text-content {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 1.25rem;
    }

    .feature-title {
        font-size: 1.05rem;
    }
}

.custom-modal-label {
            font-size: 0.875rem;
            color: #060606; 
            margin-bottom: 0.25rem;
        }
        .custom-modal-input,
        .custom-modal-select {
            border-radius: 8px; 
            border: 2px solid #0e0e0e; 
            padding: 0.75rem 1rem; 
            font-size: 1rem; 
            color: #495057; 
        }
        .custom-modal-select {
            background-color: #fff; 
        }
        .custom-modal-radio-label {
            font-size: 0.9rem;
            color: #495057;
        }
        .custom-modal-button {
            background-color: #004438; 
            color: white;
            padding: 0.75rem 1rem;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 500; /* Medium bold */
        }
        .custom-modal-button:hover {
            background-color: #024335; 
            color: white;
        }
        .modal-content-custom {
            border-radius: 10px; 
            background-color: #f9f9f9; 
        }
        .modal-header-custom {
            border-bottom: none;
            padding: 1.5rem 1.5rem 0.5rem;
        }
        .modal-body-custom {
            padding: 1rem 1.5rem;
        }
        .modal-footer-custom {
            border-top: none;
            padding: 0.5rem 1.5rem 1.5rem;
        }


@media (max-width: 767.98px) {
  .testimonial-card {
    min-height: auto !important;
  }
}



#form-messages.success-message {
    color: green;
    border: 1px solid green;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    background-color: #e6ffed;
}
#form-messages.error-message {
    color: red;
    border: 1px solid red;
    padding: 10px;
    margin-bottom: 10px;
    border-radius: 4px;
    background-color: #ffe6e6;
}
