.category-title {
    color: #343a40;
    font-size: 1.25rem;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
    margin-bottom: 25px !important;
}

/* ... (Existing styles for .service-grid-section, .service-main-title, .service-card, etc., yahan hain) ... */

/* 🚨 CATEGORY TITLE aur VERTICAL SEPARATOR se related rules HATA diye gaye hain 🚨 */
/* .category-title { ... } */
/* @media (min-width: 992px) { .service-column-clearance { ... } ... } */

/* 🚨 TAB STYLING (NEW) 🚨 */
.service-tabs .nav-link {
    color: #6c757d;
    border: none;
    border-bottom: 2px solid transparent;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 10px 20px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.service-tabs .nav-link:hover {
    color: #1a965a;
    border-color: #eee;
}

.service-tabs .nav-link.active {
    color: #1a965a;
    background-color: transparent;
    border-color: #1a965a; /* Active tab ke neeche green line */
}

/* 🚨 Grid Layout: 3 Cards per Row 🚨 */
/* Tab content ke andar ka grid ab 3 columns ka hoga (lg: 3) */
.tab-content .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

/* ... (Baki card styles jaisay the, waisay hi rakhein) ... */

/* 🚨 VERTICAL SEPARATOR (Sirf Desktop par) 🚨 */
@media (min-width: 992px) {
    .service-column-clearance {
        /* Right side par line lagane ke liye */
        border-right: 1px solid #dee2e6;
        padding-right: 30px !important; /* Line se thodi doori */
    }

    .service-column-disposal {
        padding-left: 30px !important; /* Left side se doori */
    }
}

.service-grid-section {
    background-color: #f8f9fa; /* Light background for the section */
}

.service-main-title {
    color: #212529;
    font-size: 1.5rem;
}

.service-main-subtitle {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #6c757d;
}

.service-card {
    background-color: white;
    border: 1px solid #e9ecef !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    /* Card ko thoda bada aur shadow wala banaya gaya hai */
}

.service-card:hover {
    transform: translateY(-8px); /* Card upar uthega */
    box-shadow: 0 15px 30px rgba(26, 150, 90, 0.15) !important; /* Greenish shadow for theme */
    border-color: #1a965a !important; /* Border color change */
}

.icon-placeholder i {
    color: #1a965a !important; /* Green color for success/disposal theme */
    font-size: 2.5rem; /* Icon size thoda bada kiya gaya hai */
}

.service-card-title {
    color: #1a965a; /* Title in primary color */
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.service-card-desc {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card-btn {
    /* Button ko outline rakha gaya hai */
    border-color: #1a965a !important;
    color: #1a965a !important;
    transition: all 0.3s ease;
}

.service-card-btn:hover {
    background-color: #1a965a !important;
    color: white !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-main-title {
        font-size: 2rem;
    }
}
