:root {
    --primary-color: #8da399; /* Calm Sage Green */
    --accent-color: #fdf8f5;
    --text-dark: #333;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    scroll-behavior: smooth;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Playfair Display', serif;
}

.navbar-brand span {
    color: var(--primary-color);
    font-weight: bold;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #7a8e85;
}
/* nav */
.navbar {
    padding: 15px 0;
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    color: #444 !important;
    padding: 0 15px !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}
/* Hero Section */
.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?auto=format&fit=crop&w=1500');
    background-size: cover;
    background-position: center;
}

.section-title {
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--primary-color);
}

/* Fixed Floating Buttons */
.fixed-actions {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.fixed-actions a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 24px;
    transition: transform 0.3s;
}

.btn-whatsapp { background-color: #25d366; }
.btn-call { background-color: #007bff; }

.fixed-actions a:hover {
    transform: scale(1.1);
    color: white;
}

/* Service Card Hover */
/* Sabhi images ka size ek jaisa rakhne ke liye */
.service-card img {
    width: 100%;
    height: 140px; /* Mobile par height */
    object-fit: cover;
}

@media (min-width: 768px) {
    .service-card img {
        height: 250px; /* Desktop par height */
    }
}

/* Mobile optimizations */
@media (max-width: 576px) {
    .service-card h3 {
        font-size: 0.85rem; /* Mobile par heading choti */
    }
    .service-card .badge {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
}

/* Ensure card body pushes badge to bottom */
.service-card .card-body {
    display: flex;
    flex-direction: column;
}


/* reviews section */
.review-card {
    height: 100%;
    min-height: 220px;
    border-radius: 12px !important;
}

.review-text {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
    margin-bottom: 10px;
    /* Limit lines for clean look */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-slider {
    padding: 10px 10px 40px 10px;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color) !important;
}