:root {
    --primary-color: #008B45;
    --primary-dark: #006b35;
    --primary-light: #e6f6ee;

    --secondary-color: #052614;
    --secondary-light: #0a4023;
    --accent-color: #D6E231;

    --text-dark: #212529;
    --text-muted: #6c757d;

    --bg-light: #f8f9fa;
    --bg-white: #ffffff;

    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease-in-out;
    --border-radius-sm: 8px;
    --border-radius-lg: 16px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --box-shadow-hover: 0 15px 40px rgba(0, 139, 69, 0.15);
}

/* --- Global Styles --- */
body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary-color);
}

/* --- Utilities --- */
.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-soft-primary {
    background-color: var(--primary-light) !important;
}

.border-primary {
    border-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: var(--primary-dark) !important;
    border-color: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 139, 69, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    transition: var(--transition-normal);
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.tracking-wide {
    letter-spacing: 2px;
}

.transition-all {
    transition: var(--transition-normal);
}

/* --- Navbar --- */
.navbar {
    padding: 0px 0;
    transition: var(--transition-normal);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.02);
}

.logo-img {
    height: 90px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: var(--secondary-color);
    margin: 0 10px;
    position: relative;
    transition: var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-normal);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* --- Hero Section --- */
.hero-section {
    min-height: 85vh;
    padding: 80px 0;
    background: linear-gradient(360deg, rgba(255, 255, 255, 1) 0%, rgba(240, 244, 250, 1) 100%);
    position: relative;
    overflow: hidden;
}


@keyframes morphing {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    50% {
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }

    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.hero-img {
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.hero-image-wrapper:hover .hero-img {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.floating-badge {
    position: absolute;
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: 12px;
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.badge-1 {
    top: 5%;
    left: -10%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 5%;
    right: -10%;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* --- About Section --- */
.about-img {
    position: relative;
    z-index: 1;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 130px;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 5px solid white;
    z-index: 2;
}

.feature-list li {
    font-size: 1.1rem;
}


/* --- Services Section --- */
.service-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover) !important;
    border-bottom-color: var(--primary-color);
}

.service-icon-box {
    width: 80px;
    height: 80px;
    transition: var(--transition-normal);
}

.service-card:hover .service-icon-box {
    background-color: var(--primary-color) !important;
    color: var(--bg-white) !important;
    transform: scale(1.1);
}



/* --- Contact Section --- */
.contact-card {
    border-top: 4px solid var(--primary-color);
    transition: var(--transition-normal);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover) !important;
}

.timing-list li {
    font-size: 1.05rem;
}

.email-link {
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-fast);
}

.email-link:hover {
    color: var(--primary-color) !important;
}


/* --- Footer --- */
.footer {
    background-color: #051325 !important;
}

.social-links a {
    transition: var(--transition-normal);
}

.social-links a:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links a {
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-color) !important;
    padding-left: 5px;
}

.contact-info-list li i {
    font-size: 1.2rem;
}

.gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;

}

@media (max-width: 991.98px) {
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }

    .hero-content .d-flex {
        justify-content: center;
    }

    .experience-badge {
        bottom: -20px;
        right: 0;
        width: 140px;
        height: 140px;
    }

    .experience-badge h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767.98px) {
    .display-4 {
        font-size: 31px;
    }

    .lead {
        font-size: 17px;
        margin-bottom: 25px !important;
    }

    .display-6 {
        font-size: 25px;
    }

    .about-s {
        font-size: 12px !important;
        text-align: center !important;
    }

    .section-title {
        text-align: center;
    }

    .services-p {
        font-size: 14px !important;
    }

    .about-section .lead-text {
        text-align: center;
    }

    .about-section h5 {
        margin-top: 80px;
    }

    .about-section p {
        text-align: left !important;
        font-size: 16px !important;
    }

    .logo-img {
        height: 70px;
        object-fit: contain;
    }

    .floating-btn {
        width: 45px !important;
        height: 45px !important;
        font-size: 20px !important;

    }
}

.floating-btn {
    position: fixed;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    z-index: 999;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.call-btn {
    bottom: 15px;
    background: #0d6efd;
}

.whatsapp-btn {
    bottom: 15px;
    left: 20px !important;
    background: #25D366;
}

#topBtn {
    bottom: 80px;
    font-weight: 700;
    color: white;
    background: #028041;
    border: none;
    display: none;
}

.reviews {
    text-align: center;
    margin-bottom: 50px !important;
}