﻿html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
}

/*CSS for Header logo*/

.tagline {
    font-size: 12px;
    color: #333;
    margin-top: -2px;
}

.navbar {
    padding-top: 8px;
    padding-bottom: 8px;
}

.navbar-brand:hover img {
    transform: scale(1.05);
    transition: .3s;
}


/*End*/

/*Hero Section CSS*/
/* FULL BACKGROUND HERO */
/* HERO BACKGROUND */
.hero-bg-section {
    position: relative;
    min-height: 65vh;
    background-image: url('/images/Hero_3.png');
    background-size: cover;
    background-position: right center;
    display: flex;
    align-items: center;
    height: 750px;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( to right, rgba(255,255,255,0.97) 0%, rgba(255,255,255,0.92) 45%, rgba(255,255,255,0.6) 65%, rgba(255,255,255,0.1) 100% );
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    /*margin-top: 70px;*/
}

.hero-text {
    max-width: 560px;
}

/* TRUST SECTION */
.hero-trust {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-box {
    background: #ffffff;
    border-radius: 12px;
    padding: 22px 18px;
    width: 170px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all .4s ease;
}

/* ICON CENTER */
.trust-icon {
    display: block;
    font-size: 30px;
    color: #1f7a34;
    margin-bottom: 10px;
}

/* TITLE TEXT */
.trust-box span {
    display: block;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 4px;
}

/* SUB TEXT */
.trust-box p {
    margin: 0;
    font-size: 14px;
    color: #555;
}


/* HOVER FRONT IN */
.trust-box:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

    /* ICON */
    /*.trust-icon {
    font-size: 28px;
    color: #1f7a34;
    margin-bottom: 6px;
    transition: .4s;
}*/

    /* ICON MOVE */
    .trust-box:hover .trust-icon {
        transform: scale(1.2) rotate(6deg);
    }

/* COUNTER */
.counter {
    font-weight: bold;
    font-size: 20px;
}

/* STARS */
.stars {
    color: #ffc107;
    font-size: 20px;
    letter-spacing: 2px;
}

/* MOBILE */
@media(max-width:991px) {
    .hero-bg-section {
        background: none;
        padding: 80px 0;
    }

    .hero-overlay {
        background: #fff;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        margin-bottom: 10px;
    }

    .hero-trust {
        justify-content: center;
    }


    .trust-box:hover {
        transform: translateY(-10px) scale(1.03);
        box-shadow: 0 20px 45px rgba(0,0,0,0.18);
    }
}

/*End Hero Section */

/*CSS for Sticky CTA*/
.mobile-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    background: #ffffff;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 999;
}

/* END Hero Section CSS*/


/*CSS for About Section*/
.about-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    height: 100%;
}
/*End*/

/*CSS for Service Section*/
/* Base card */
.service-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    transform: perspective(1000px) translateZ(0);
    cursor: pointer;
    border-radius: 12px;
}

    /* FRONT IN */
    .service-card:hover {
        transform: perspective(1000px) translateZ(25px) scale(1.03);
        box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }

/* FRONT OUT (when mouse leaves) */
.service-card {
    transform: perspective(1000px) translateZ(0) scale(1);
}

/*.featured-card {
    background-color: #eef6f0;*/ /* nude light */
/*border: 1px solid #f5d7c4;
}*/

.featured-card h5 {
    color: #a0522d;
}

.featured-card .text-muted {
    color: #7a5a4a !important;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

/* nude green background for featured service */
.featured-card {
    background: #eef6f0; /* nude green */
    border: 1px solid #d6e8dc;
    border-radius: 14px;
    transition: all .35s ease;
}

    /* text color adjustment */
    .featured-card h5 {
        color: #1f5132;
    }

    .featured-card .text-muted {
        color: #4f6f5d !important;
    }

    /* hover */
    .featured-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 35px rgba(0,0,0,0.12);
        background: #e6f2ea;
    }


/*End*/

/*Social Media Section in Contact*/
.social-wrapper {
    width: 100%;
}

.social-bar {
    background: #1f7a34;
    border-radius: 12px;
    padding: 18px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    width: 100%;
}

/* ICON */
/*.social-icon {
    color: #fff;
    font-size: 22px;
    transition: .3s;
}*/

/* HOVER */
/*.social-icon:hover {
        transform: scale(1.25);
        color: #ffd;
    }

@media(max-width:768px) {
    .social-bar {
        gap: 20px;
        padding: 14px;
    }
}*/

/*End*/

/*Benifite Section CSS*/

.benefits-section {
    background: #f8f9fa;
}

.benefit-card {
    background: #fff;
    border-radius: 12px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all .4s ease;
    transform: translateY(20px);
    opacity: 0;
}

/* ICON */
.benefit-icon {
    font-size: 34px;
    color: #198754;
    margin-bottom: 12px;
    transition: .4s;
}

/* HOVER */
.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

    .benefit-card:hover .benefit-icon {
        transform: scale(1.2) rotate(6deg);
    }

/* TEXT */
.benefit-card h6 {
    font-weight: 600;
    margin-bottom: 6px;
}

.benefit-card p {
    font-size: 14px;
    color: #666;
}


/*End*/


/*CSS for Footer Section */
/* ===== FOOTER LINKS ===== */
.footer-links li {
    margin-bottom: 6px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: .3s ease;
}

    .footer-links a:hover {
        color: #fff;
    }


/* ===== SOCIAL ICONS ===== */
.footer-social .social-icon {
    color: #fff;
    font-size: 20px;
    margin: 0 12px;
    display: inline-block;
    opacity: .85;
    transition: transform .35s ease, opacity .35s ease, text-shadow .35s ease;
}

    /* HOVER IN */
    .footer-social .social-icon:hover {
        transform: translateY(-6px) scale(1.18);
        opacity: 1;
        text-shadow: 0 0 10px rgba(255,255,255,0.4);
    }

/* HOVER OUT */
.footer-social .social-icon {
    transform: translateY(0) scale(1);
}


/* ===== BOTTOM ROW ===== */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding-top: 12px;
}

    .footer-bottom .social-icon {
        margin-left: 14px;
    }


/* ===== MOBILE ===== */
@media(max-width:768px) {

    .footer-bottom {
        justify-content: center;
        text-align: center;
        gap: 10px;
    }

        .footer-bottom .footer-social {
            margin-top: 6px;
        }
}
/* animated underline for footer links */
.footer-links a {
    position: relative;
    display: inline-block;
}

    .footer-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -3px;
        width: 0%;
        height: 2px;
        background: #fff;
        transition: width .35s ease;
    }

    /* hover IN */
    .footer-links a:hover::after {
        width: 100%;
    }


/*End*/

/*CSS for Contact Us form fields Section.*/
.error {
    color: #dc3545;
    font-size: 13px;
    margin-bottom: 6px;
}

/*.valid {
    border: 2px solid #28a745 !important;
}

.invalid {
    border: 2px solid #dc3545 !important;
}*/

/*End*/
