@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

/* Light */
@font-face {
    font-family: 'HelveticaNeue';
    src: url('../fonts/helvetica-neue-5/HelveticaNeue-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

/* Regular */
@font-face {
    font-family: 'HelveticaNeue';
    src: url('../fonts/helvetica-neue-5/HelveticaNeue.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

/* Medium */
@font-face {
    font-family: 'HelveticaNeue';
    src: url('../fonts/helvetica-neue-5/HelveticaNeue-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

/* Bold */
@font-face {
    font-family: 'HelveticaNeue';
    src: url('../fonts/helvetica-neue-5/HelveticaNeue-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background-color: rgba(var(--white), 1);
}


:root {
    /* imp: Colors with rgb values only */
    --primary-color: 137, 219, 123;
    --secondary-color: 0, 97, 49;
    --black: 30, 30, 30;
    --white: 255, 255, 255;
    --lt-grey: 245, 245, 245;

    /* Fonts */
    --font-primary: 'HelveticaNeue', Arial, sans-serif;
    --font-secondary: 'Inter', sans-serif;
}


/* titles css start ===============================================*/

.title-xxl {
    font-size: 60px;
    letter-spacing: 0px;
}

.title-lg {
    font-size: 32px;
}

.title-md {
    font-size: 22px;
}

.title-sm {
    font-size: 16px;
}

.fw-700 {
    font-weight: 700;
}

.fw-600 {
    font-weight: 600;
}

.fw-500 {
    font-weight: 500;
}

.fw-400 {
    font-weight: 400;
}

.fw-300 {
    font-weight: 300;
}

/* titles css end ================================================*/

/* button css start ===============================================*/

.button-primary {
    padding: 11px 30px;
    border-radius: 40px;
    background-color: rgba(var(--primary-color), 1);
    border: 2px solid rgba(var(--primary-color), 1);
    color: rgba(var(--black), 1);
    font-weight: 600;
    text-decoration: none;
    transition: .3s all;
}

.button-primary:hover {
    background-color: rgba(var(--primary-color), .75);
    border: 2px solid rgba(var(--primary-color), 1);
    color: rgba(var(--black), 1);
}

.button-secondary {
    padding: 11px 30px;
    border-radius: 40px;
    border: 2px solid rgba(var(--primary-color), 1);
    color: rgba(var(--black), 1);
    font-weight: 600;
}

.btn-txt-only {
    color: rgba(var(--secondary-color), 1);
    text-decoration: none;
    font-weight: 600;
}

/* button css end  ================================================*/

.nav-item {
    padding: 0 8px;
}

@media (max-width: 576px) {
    .nav-item {
        display: flex;
        justify-content: center;
    }

    .nav-btn-cntnr {
        display: flex;
        justify-content: center;
        margin-top: 24px;
        margin-bottom: 24px;
    }
}

.nav-item .nav-link {
    font-weight: 600;
}

.nav-item .nav-link:hover {
    color: rgba(var(--secondary-color), 1) !important;
}

.brr {
    border: 1px solid red;
}

.banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: calc(100vh - 81.63px);
    min-height: 800px;
    position: relative;
    isolation: isolate;
    /* IMPORTANT */
}

.banner::before {
    position: absolute;
    content: '';
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
    z-index: 0;
}

.banner-content {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: start;
    flex-direction: column;
    color: rgba(var(--white), 1);
    z-index: 2;
}

.banner-content p {
    font-size: 1.3rem;
}

.banner>* {
    position: relative;
    z-index: 1;
}

.txt-shadow {
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 1);
}
.txt-shadow-sm {
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 1);

}
.section {
    padding: 60px 0;
}

.txt-clr-primary {
    color: rgba(var(--primary-color), 1);
}

.about-img {
    padding-left: 36px;
    padding-right: 36px;
    height: 350px;
}

@media (max-width: 576px) {
    .about-img {
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 36px;
    }
}

.about-img img {
    border-radius: 0 20px 0 20px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lt-grey {
    background-color: rgba(var(--lt-grey), 1);
}

.lt-green {
    background-color: rgba(var(--lt-green), 1);
}

.brand-footer {
    width: 150px
}

.brand-footer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: start;

}

.footer-social a {
    text-decoration: none;
    color: #006131 !important;
}

.footer-social i {
    color: #006131 !important;
    font-size: 24px;
    margin-right: 6px;
}

.social-div {
    background-color: rgba(var(--lt-grey), 1);
    border: 1px solid rgba(var(--primary-color), 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px;
    border-radius: 50%;
    font-weight: 600;
    transition: .3s all;
}

.social-div.social-div-long {
    border-radius: 50px
}

.social-div path {
    fill: rgba(var(--black), 1);
    transition: fill 0.3s ease;
}

.social-div:hover {
    background-color: rgba(var(--primary-color), .5);
}



/* ===== Form Inputs ===== */
#contactForm .form-control {
    width: 100%;
    padding: 8px 16px;
    font-size: 15px;
    color: #222;
    border: 2px solid #dcdcdc;
    border-radius: 30px;
    transition: all 0.25s ease;
}

/* Placeholder */
#contactForm .form-control::placeholder {
    color: #999;
    font-size: 14px;
}

/* Hover */
#contactForm .form-control:hover {
    border-color: #b5b5b5;
}

/* Focus state */
/* #contactForm .form-control:focus {
    border-color: #2563eb; 
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
} */

/* Error state (optional) */
/* #contactForm .form-control:invalid {
    border-color: #ef4444;
} */

/* Success state (optional if validated) */
#contactForm .form-control.valid {
    border-color: #22c55e;
}

/* Spacing fix for mobile */
#contactForm .mb-3 {
    margin-bottom: 18px;
}

.alert {
    padding: 8px 1rem !important;
    font-size: 14px !important;
    border-radius: 20px !important;
}

.footer {
    background-color: rgba(var(--lt-grey), 1);
}

.footer a {
    color: rgba(var(--black), 1);
}



/* Image */
.carehome-image {
    min-height: 300px;
    border-radius: 14px;
    overflow: hidden;
}

.carehome-image img {
    object-fit: cover;
    border-radius: 14px;
}


/* Map */
.carehome-map {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #CCCCCC;
}

.carehome-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.carehome-card {
    display: none;
    border-radius: 12px;
    background-color: rgba(var(--primary-color), .1);
    border: 1px solid rgba(var(--primary-color), .3);
}

.carehome-card.active {
    display: block;
}

.carehome-actions {
    width: 100%;
}

button {
    border: none;
    background-color: transparent;
    margin-top: 14px;
    margin-bottom: 14px;
}

.contact-form-container {
    background-color: rgba(var(--lt-grey), 1);
    transition: .3s all;
    border-left: 2px solid rgba(var(--lt-grey), 1);
    padding-left: 24px;
}

/* .contact-form-container.highlight {
    border-left: 2px solid rgba(var(--secondary-color), 1);
        padding-left: 24px;
} */


@media (max-width: 576px) {
    .title-xxl {
        font-size: 50px;
    }

    .contact-form-container {
        padding-left: 0px;
    }
}

.card-custom p,
.card-custom ul li{
 color: rgba(var(--black), .9);
}
.card-icon-wrap {
    /* padding: 16px;
    background-color: rgba(var(--primary-color), .25); 
        border-radius: 50%;*/
    width: max-content;

    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright {
    display: flex;
    align-items: start;
    gap: 8px;
}
.copyright a {
        display: flex;
    align-items: center;
}
.copyright a svg{
    height: 15px;
    margin-top: 4px;
}


.copyright a svg path,
.copyright a svg g {
    fill: #000000;
}
