/* Additional styles to ensure dropdowns work properly */
.dropdown-menu {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: none;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
}

/* Animation for dropdowns */
.dropdown-menu {
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-section {
    background: linear-gradient(135deg, #0062cc 0%, #0095ff 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 30px;
}

.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

footer {
    margin-top: 50px;
}

/* Service cards styles */
.service-card {
    transition: transform 0.3s;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #0d6efd;
}

.tab-content {
    padding: 30px 0;
}

.nav-pills .nav-link.active {
    background-color: #0d6efd;
}

.nav-pills .nav-link {
    color: #495057;
    font-weight: 500;
}