:root {
    --primary: #58B22D;
    --primary-dark: #084c2c;
    --accent: #0057C8;
    --bg-soft: #f4f8f6;
    --text: #1f2937;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
}

.section-padding {
    padding: 80px 0;
}

/* --- Header --- */
.main-header {
    background: #fff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 120px;
    ;
}

.btn-call {
    background: var(--primary);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(#094227, #58B22D), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    color: white;
}

.bg-soft-light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    font-size: 14px;
    padding: 8px 16px;
}

.btn-primary-custom {
    background: var(--accent);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background: #58B22D;
    color: white;
    transform: translateY(-2px);
}

/* --- Form Section --- */
.form-card {
    background: #fff;
    border-radius: 16px;
    border-top: 5px solid var(--primary);
}

.custom-input {
    border: 1px solid #e1e1e1;
    padding: 12px 15px;
    border-radius: 8px;
    background: #fdfdfd;
}

.custom-input:focus {
    border-color: var(--primary);
    box-shadow: none;
    background: #fff;
}

/* --- Service Cards --- */
.service-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(74, 95, 115, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto;
    font-size: 24px;
}

/* --- Footer --- */
.footer-dark {
    background: #1a1a1a;
    color: #999;
}

.footer-form .form-control {
    background: #2a2a2a;
    border: 1px solid #333;
    color: white;
}

/* --- Add these to your style.css --- */

.bg-soft-primary {
    background-color: #f0f4f8;
}

.service-card {
    background: white;
    border-radius: 15px;
    transition: 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    color: var(--primary);
}

.testimonial-card {
    background: white;
    border-left: 5px solid var(--primary);
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary);
    color: white;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.italic {
    font-style: italic;
}

.mobile-sticky-btn {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 18px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    z-index: 999;
}

/* Fix Hero for Mobile Ads */
@media (max-width: 768px) {
    .hero-section {
        padding: 60px 20px 100px;
    }

    /* Space at bottom for sticky button */
    .section-padding {
        padding: 40px 0;
    }
}

/* --- Mobile Specifics --- */
.mobile-sticky-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 15px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    z-index: 2000;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    .main-header .logo img {
        width: 120px;
    }
}

/* = modal popup  css */
:root {
    --primary-orange: #58B22D;
    --text-dark: #ffff;
    /* Dark teal/blue for the heading */
    --text-muted: #58B22D;
}

/* Background Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* Darkens the background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal Box */
.popup-content {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* Close Button (X) */
.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: #999;
    cursor: pointer;
}

.emoji-container {
    font-size: 50px;
    margin-bottom: 20px;
}

.popup-title {
    color: #58B22D;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.popup-text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* The Big Orange Button */
.call-button {
    display: inline-block;
    background-color: var(--primary-orange);
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    padding: 18px 0;
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px #7ea4c7;
    transition: transform 0.2s, background-color 0.2s;
}

.call-button:hover {
    color: #58B22D;
    background-color: white;
    transform: translateY(-2px);
}

.popup-footer {
    color: #777;
    font-size: 14px;
    margin-top: 20px;
}

@media (max-width: 550px) {
    .emoji-container {
        font-size: 35px;
        margin-bottom: 0px;
    }

    .popup-content {
        padding: 30px 20px;
        width: 85%;
        max-width: 500px;

    }

    .popup-title {
        font-size: 22px;
        font-weight: 700;
    }

    .popup-text {
        color: var(--text-muted);
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 25px;
    }

    /* The Big Orange Button */
    .call-button {
        font-size: 15px;
        padding: 14px 0;
    }

}

.hero-section {
    background-image: url(../images/slider.jpg);
    background-size: cover;
}

.sec-heading {
    color: #58B22D;
    font-size: 30px;
    font-weight: bold;
}

.why-choose {
    background-color: #f0f4f8 !important;
    margin-top: 50px;
}

.why-choose i {
    color: black !important;
}

.faq-heading {
    font-size: 40px;
    text-align: left;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.why-choose span {
    border-radius: 20px;
    padding: 30px 20px;
    background-color: white;
    color: #58B22D;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.582);

}

.why-choose span:hover {
    transform: translateY(-10px);

}

.why-choose-heading {
    color: #58b22d !important;
}

.footer-btn {
    color: white !important;
    background-color: #58b22d !important;
}

.footer-call {
    color: #58b22d !important;

}

/* FLOATING BUTTONS */

.floating-buttons {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.floating-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #58B22D;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(88, 178, 45, 0.35);
    transition: 0.3s;
}

.floating-btn i {
    color: #fff;
}

.floating-btn:hover {
    transform: translateY(-5px);
}

/* Mobile */
@media(max-width:768px) {

    .floating-buttons {
        left: 15px;
        right: 15px;
    }

    .floating-btn {
        width: 52px;
        height: 52px;
        font-size: 24px;
    }
}