.services-hero {
    background-color: #f8f9fa;
    padding: 80px 0;
    margin-bottom: 50px;
}

.services-hero h1 {
    color: #26395c;
    font-size: 2.5rem;
    font-weight: 700;
}

.services-hero p {
    color: #6c757d;
    font-size: 1.2rem;
}

.services-section {
    padding: 50px 0;
}

.service-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 20px;  
}

.row.g-4 {
    margin: 0 -20px;  
}

.row.g-4 > [class*="col-"] {
    padding: 0 20px;  
    margin-bottom: 40px;  
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #00bcd4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    color: #ffffff;
    font-size: 30px;
}

.service-card h3 {
    color: #26395c;
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: #6c757d;
    margin-bottom: 0;
    font-size: 1rem;
    line-height: 1.6;
}
/* Know More Button */
.know-more-btn {
    background-color: #00bcd4;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 15px;
    transition: background 0.3s ease;
}

.know-more-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.know-more-btn:hover {
    background-color: #0097a7;
}

/* Dropdown Content */
/* Dropdown List Styles */
.dropdown-content {
    display: none;
    background: #f8f9fa; /* Light gray background */
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-top: 10px;
    padding: 10px 0;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

.service-card.active .dropdown-content {
    display: block;
}

.dropdown-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-content li {
    padding: 10px 20px;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-content li:hover {
    background-color: #0ba9d9e5; /* Blue background */
    color: #000; /* Dark black text */
}



/* Responsive adjustments */
@media (max-width: 768px) {
    .services-hero {
        padding: 50px 0;
    }
    
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .row.g-4 > [class*="col-"] {
        margin-bottom: 30px;  
    }
}
