/* ===================================
   CARECONNECT WEBSITE
=================================== */

:root {
    --primary: #4D8C41;
    --primary-dark: #3b7031;
    --secondary: #F57C00;
    --dark: #17375E;
    --text: #555;
    --light: #f8fafc;
    --white: #ffffff;
}

@media(max-width:991px) {

}
@media(max-width:768px) {

}
@media(max-width:576px) {
    :root {
        --bs-body-font-size: 0.8rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    overflow-x: hidden;
    background: #fff;
}
a {
    text-decoration: none;
}
/* ======================
   TOP BAR
====================== */

.top-bar {
    background: var(--primary);
    color: #fff;
    /* font-size: 13px; */
    padding: 10px 0;
}

.top-bar a {
    color: #ffffff;
    text-decoration: none;
}
/* ======================
   NAVBAR
====================== */

.navbar {
    padding: 15px 0;
    transition: .3s;
}

.navbar-brand img {
    max-height: 60px;
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    margin: 0 18px;
    border-bottom: 3px solid transparent !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.nav-link:hover {
    color: var(--secondary) !important;
    border-bottom: 3px solid var(--secondary) !important;
}

.nav-link.active {
    color: var(--secondary) !important;
    border-bottom: 3px solid var(--secondary) !important;
}

/* ======================
   BUTTONS
====================== */

.btn-book,
.btn-main {
    background: var(--secondary);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
}

.btn-book:hover,
.btn-main:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-3px);
}

.btn-outline-main {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    transition: .4s;
}

.btn-outline-main:hover {
    background: var(--primary);
    color: #fff;
}

/* ======================
   HERO
====================== */

.hero-section {

    min-height: 850px;

    background:
        /* linear-gradient(
        90deg,
        rgba(255,255,255,.92) 40%,
        rgba(255,255,255,.15) 100%
    ), */
        url('../images/hero-desktop-1920x900.jpg');

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;
}

@media(max-width:1200x) {
    .hero-section {
        background:url('../images/hero-laptop-1440x700.jpg');
    }
}
@media(max-width:991px) {
    .hero-section {
        background:url('../images/hero-tablet-1024x768.jpg');
    }
}
@media(max-width:768px) {
    .hero-section {
        background:url('../images/hero-tablet-1024x768.jpg');
        /* background-size: 100%; */
        /* max-height: 80vh; */
    }
}
@media(max-width:576px) {
    .hero-section {
        background:url('../images/hero-mobile-768x1024.jpg');
    }
}

.hero-subtitle {
    color: var(--secondary);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    /* font-size:4rem; */
    font-weight: 800;
    line-height: 1.2;
    margin: 20px 0;
    color: var(--dark);
}

h1.hero-title {
    font-size: 4rem;
}

h2.hero-title {
    font-size: 3rem;
}

h3.hero-title {
    font-size: 2.4rem;
}

h4.hero-title {
    font-size: 2rem;
}

h5.hero-title {
    font-size: 1.6rem;
}


.hero-title span {
    color: var(--primary);
}

.hero-text {
    font-size: 18px;
    line-height: 1.9;
    max-width: 550px;
}

/* ======================
   FEATURE BOX
====================== */

.features-box {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: #fff;
    border-radius: 20px;
    text-align: center;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
    transition: .4s;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h5 {
    font-weight: 700;
}

/* ======================
   COMMON
====================== */

.section-padding {
    padding: 100px 0;
}

.section-title {
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
}

.section-subtitle {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
}

/* ======================
   SERVICE CARDS
====================== */

.service-card {

    background: #fff;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .08);

    transition: .4s;
    height: 100%;
}

.service-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 20px 40px rgba(0, 0, 0, .15);
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.service-card .service-icon {
    background-color: var(--primary);
    padding: 10px;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    margin-top: -20px;
    position: relative;
    border-radius: 100%;
    border: 2px solid #fff;
    color: #fff;
    text-align: center;
}

.service-content {
    padding: 25px;
}

.service-content h5 {
    font-weight: 700;
    color: var(--dark);
}

.service-content p {
    margin-bottom: 0;
}

/* ======================
   STATS
====================== */

.stats-section {

    background: #f6f8f5;

    padding: 70px 0;
}

.stats-section h2 {
    font-size: 52px;
    font-weight: 800;
    color: var(--primary);
}

.stats-section p {
    margin-top: 10px;
    font-weight: 500;
}

/* ======================
   ABOUT
====================== */

.about-img {

    border-radius: 25px;

    overflow: hidden;
}

.about-img img {
    width: 100%;
}

ul li {
    margin-bottom: 10px;
}

/* ======================
   BOOKING
====================== */

.booking-section {
    background: #faf8f3;
}

.booking-section h2 {
    font-weight: 700;
    color: var(--dark);
}

.form-control,
.form-select {

    height: 55px;

    border-radius: 12px;

    border: 1px solid #ddd;
}

.form-control:focus,
.form-select:focus {

    box-shadow: none;

    border-color: var(--primary);
}

textarea.form-control {
    height: auto;
}

/* ======================
   CTA
====================== */

.cta-section {

    background: var(--dark);

    color: #fff;

    padding: 60px 0;
}

.cta-section h3 {
    margin-bottom: 0;
    font-weight: 700;
}

.cta-section .btn-light {

    border-radius: 50px;

    padding: 14px 35px;

    font-weight: 600;
}

/* ======================
   FOOTER
====================== */
/* 
footer{

    background:var(--primary);

    color:#fff;

    padding:80px 0 30px;
}

footer h5{
    margin-bottom:20px;
    font-weight:700;
}

footer ul{
    list-style:none;
    padding:0;
}

footer ul li{
    margin-bottom:10px;
}

footer a{
    text-decoration:none;
    color:#fff;
}

footer a:hover{
    color:var(--secondary);
}

footer hr{
    margin:40px 0 20px;
    border-color:rgba(255,255,255,.2);
} */
/* =========================
   FOOTER
========================= */

.footer {

    background: #fff;

    padding-top: 30px;
}

.footer-logo {
    max-width: 220px;
}

.footer-about {

    margin-top: 20px;
    line-height: 1.9;
    color: #666;
}

.footer h4 {

    color: #17375E;

    font-size: 22px;

    margin-bottom: 25px;

    font-weight: 700;
}

.footer-links {

    list-style: none;

    padding: 0;
}

.footer-links li {

    margin-bottom: 12px;
}

.footer-links a {

    text-decoration: none;

    color: #555;

    transition: .3s;
}

.footer-links a:hover {

    color: #f57c00;

    padding-left: 5px;
}

.footer-contact {

    list-style: none;

    padding: 0;
}

.footer-contact li {

    margin-bottom: 15px;

    color: #555;
}

.footer-contact i {

    color: #5d8f3d;

    width: 22px;
}

.social-icons {

    display: flex;

    gap: 12px;
}

.social-icons a {

    width: 40px;

    height: 40px;

    border-radius: 50%;

    background: #5d8f3d;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    text-decoration: none;

    transition: .3s;
}

.social-icons a:hover {

    background: #f57c00;

    transform: translateY(-3px);
}

.footer-bottom {

    background: #5d8f3d;

    color: #fff;

    margin-top: 20px;

    padding: 15px 0;
}


/* ======================
   WHATSAPP
====================== */

.whatsapp-btn {

    position: fixed;

    right: 25px;

    bottom: 25px;

    width: 60px;

    height: 60px;

    background: #25D366;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 30px;

    z-index: 999;

    text-decoration: none;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .25);
}

.whatsapp-btn:hover {
    color: #fff;
}

/* ======================
   ANIMATION
====================== */

.service-card,
.feature-card {

    animation: fadeUp .8s ease;
}

@keyframes fadeUp {

    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ======================
   RESPONSIVE
====================== */

@media(max-width:1200px) {


    h1.hero-title {
        font-size: 3.4rem;
    }

    h2.hero-title {
        font-size: 3rem;
    }

    h3.hero-title {
        font-size: 2.4rem;
    }

    h4.hero-title {
        font-size: 2rem;
    }

    h5.hero-title {
        font-size: 1.6rem;
    }
}

@media(max-width:991px) {

    .hero-section {

        min-height: auto;

        padding: 140px 0;
    }

    h1.hero-title {
        font-size: 3rem;
    }

    h2.hero-title {
        font-size: 2.6rem;
    }

    h3.hero-title {
        font-size: 2rem;
    }

    h4.hero-title {
        font-size: 1.8rem;
    }

    h5.hero-title {
        font-size: 1.2rem;
    }

    .features-box {

        margin-top: 40px;
    }

    .section-padding {

        padding: 80px 0;
    }

    .navbar-collapse {

        margin-top: 20px;
    }

}

@media(max-width:768px) {

    h1.hero-title {
        font-size: 2.6rem;
    }

    h2.hero-title {
        font-size: 2rem;
    }

    h3.hero-title {
        font-size: 1.8rem;
    }

    h4.hero-title {
        font-size: 1.4rem;
    }

    h5.hero-title {
        font-size: 1rem;
    }


    .hero-text {
        display: none;
        font-size: 16px;
    }

    .section-title h2 {

        font-size: 32px;
    }

    .stats-section h2 {

        font-size: 40px;
    }

    .service-card img {

        height: 240px;
    }

    .cta-section {

        text-align: center;
    }

    .cta-section .text-lg-end {

        margin-top: 20px;
    }

    .nav-link {
        padding-right: 20px !important;
        display: inline-block !important;
    }

}
@media (max-width: 767.98px) {

    .hero-section{
        min-height:80vh;
        align-items:flex-end;
        padding-bottom:40px;
        background-size: cover;
    }

    .hero-section .container,
    .hero-section .row{
        height:100%;
    }

    .hero-section .row{
        align-items:flex-end !important;
    }

    .hero-content{
        text-align:left;
    }
    .navbar {
        padding: 0;
    }
}

@media(max-width:576px) {

    h1.hero-title {
        font-size: 2rem;
    }

    h2.hero-title {
        font-size: 1.8rem;
    }

    h3.hero-title {
        font-size: 1.6rem;
    }

    h4.hero-title {
        font-size: 1.2rem;
    }

    h5.hero-title {
        font-size: 0.8rem;
    }

    .hero-banner-text {
        font-size: 1.6rem !important;
        background-color: rgb(255 255 255 / 74%);
        padding: 20px;
        border-radius: 20px;
    }

    .btn-main,
    .btn-outline-main {

        width: 100%;

        display: block;

        margin-bottom: 15px;
    }

    .feature-card {

        padding: 25px;
    }

    .service-card img {

        height: 200px;
    }

    /* ==========================
   SERVICES SECTION
========================== */

    .services-section {
        background: #fff;
    }

    .section-subtitle {
        color: #f57c00;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
    }

    .section-title {
        font-size: 42px;
        font-weight: 700;
        color: #17375E;
        margin-top: 10px;
    }

    .title-line {
        width: 60px;
        height: 4px;
        background: #4D8C41;
        margin: 15px auto 0;
        border-radius: 50px;
    }

    /* ==========================
   SERVICE CARD
========================== */

    .service-card {

        background: #fff;

        border-radius: 20px;

        overflow: hidden;

        text-align: center;

        box-shadow:
            0 10px 30px rgba(0, 0, 0, .08);

        transition: .4s ease;

        height: 100%;
    }

    .service-card:hover {

        transform: translateY(-10px);

        box-shadow:
            0 20px 45px rgba(0, 0, 0, .15);
    }

    .service-image {

        position: relative;
    }

    .service-image img {

        width: 100%;
        height: 230px;
        object-fit: cover;
    }

    /* ==========================
   ICON CIRCLE
========================== */

    .service-icon {

        position: absolute;

        left: 50%;

        bottom: -30px;

        transform: translateX(-50%);

        width: 70px;

        height: 70px;

        border-radius: 50%;

        background: #5e9f45;

        display: flex;

        align-items: center;

        justify-content: center;

        color: #fff;

        font-size: 28px;

        border: 5px solid #fff;
    }

    .service-icon.orange {
        background: #f57c00;
    }

    /* ==========================
   CONTENT
========================== */

    .service-content {

        padding: 55px 25px 30px;
    }

    .service-content h4 {

        font-size: 24px;

        font-weight: 700;

        color: #17375E;

        margin-bottom: 15px;
    }

    .service-content p {

        color: #666;

        font-size: 15px;

        line-height: 1.8;
    }
    .social-icons {
        justify-content: center;
    }

    /* ==========================
   RESPONSIVE
========================== */

    @media(max-width:991px) {

        .section-title {

            font-size: 34px;
        }
    }

    @media(max-width:768px) {

        .service-image img {

            height: 360px;
        }

        .section-title {

            font-size: 30px;
        }
        .service-card .service-icon {
            margin: 0;
        }
    }

    @media(max-width:576px) {

        .section-title {

            font-size: 26px;
        }

        .service-content h4 {

            font-size: 20px;
        }
    }

    footer {

        text-align: center;
    }

}