body {
    font-family: Arial;
}

/* .banner-img {
    height: 500px;
    object-fit: cover;
} */

.service-box {
    padding: 30px;
    transition: .3s;
}

.service-box:hover {
    background: #e8f5e9;
    transform: translateY(-5px);
}

.footer {
    background: #8a8c05;
    color: white;
    padding: 40px;
}

.footer a {
    color: #9ccc65;
    text-decoration: none;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: #fff !important;
}

.card {
    border-radius: 12px;
}

.card ul li {
    margin-bottom: 8px;
}

.text-success {
    color: #7aa81c !important;
}

.carousel-caption {
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.carousel-caption h2 {
    font-size: 42px;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 20px;
}


/* Top Contact Bar */

.topbar {
    background: #1c1f2b;
    color: #fff;
    font-size: 14px;
    padding: 6px 0;
}

.topbar i {
    margin-right: 5px;
}

.topbar a {
    color: #fff;
    text-decoration: none;
    margin-left: 15px;
}

/* Navbar */


.navbar{
    padding: 15px 0;
    position:sticky;
    top:0;
    z-index:999;
}
/* .nav-image{
    width:40px;
    height:40px;
    object-fit:cover;
    border-radius:50%;
    margin-right:10px;
} */
.nav-link {
    font-size: 17px;      /* Bigger font */
    font-weight: 600;     /* Bold */
    color: #333;
    padding: 12px 25px;   /* More space */
    margin: 0 8px;        /* Space between menu */
    transition: 0.3s;
}

.nav-link:hover {
    color: #fff;
    background-color: #8a8c05;
    border-radius: 5px;
}

/* Active Menu */

.nav-item.active .nav-link {
    background: #8a8c05;
    color: #fff !important;
    border-radius: 5px;
    font-weight: 700;
}
.navbar-nav {
    margin: auto;
    align-items: center;
}

.nav-link::after{
    content:"";
    display:block;
    width:0;
    height:2px;
    background:#8a8c05;
    transition:0.3s;
}

.nav-link:hover::after{
    width:100%;
}


/* Quote Button */

.quote-btn {
    background: #8a8c05;
    color: #fff;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
}

.quote-btn:hover {
    background: #6f7204;
    color: #fff;
}

/* Social Icons */

.social-icons a {
    margin-left: 12px;
    font-size: 14px;
}

/* Center Menu */

.navbar-nav {
    margin: auto;
}

.service-header {
    background: #8a8c05;
    color: white;
}

.service-header .btn-close {
    filter: invert(1);
}
.banner-img{
    height:700px;
    object-fit:cover;
    }

    .achievement-section{
        background:#f7f7f7;
        padding:70px 0;
        }
        
        .counter-box{
        padding:30px;
        background:white;
        border-radius:10px;
        box-shadow:0 4px 15px rgba(0,0,0,0.1);
        transition:.3s;
        }
        
        .counter-box:hover{
        transform:translateY(-8px);
        }
        
        .counter-box i{
        font-size:40px;
        color:#8a8c05;
        margin-bottom:15px;
        }
        
        .counter-box h2{
        font-size:36px;
        font-weight:700;
        color:#333;
        }
        
        .counter-box p{
        font-size:16px;
        color:#666;
        }
        .service-img{
            width:100%;
            height:400px;      /* fixed height */
            object-fit:cover;  /* prevents stretching */
            border-radius:8px;
        }
        .service-content h3{
            font-size:28px;
            font-weight:700;
            margin-bottom:15px;
        }
        
        .service-content p{
            font-size:17px;
            line-height:1.7;
        }
        
        .service-content ul li{
            font-size:16px;
            margin-bottom:6px;
        }

        .service-content{
            background:#e8f8e8; /* light parrot green */
            padding:35px;
            border-radius:8px;
            position:relative;
        }
        
        /* Zigzag bottom edge */
        .service-content::after{
            content:"";
            position:absolute;
            bottom:-15px;
            left:0;
            width:100%;
            height:15px;
            background-size:16px 16px;
        }

        .service-content{
            background:#e8f8e8;
            padding:35px;
            border-radius:8px;
            position:relative;
            box-shadow:0 4px 15px rgba(0,0,0,0.08);
        }

        form input, form select, form textarea{
            padding:12px;
            font-size:15px;
            }
            
            form button{
            padding:10px 25px;
            font-size:16px;
            }