﻿.services-section {
    background-color: #000;
    color: #f8af3c;
    text-align: center;
    font-family: 'Exo 2', sans-serif !important;
    padding: 40px 20px;
}

.services-section h2 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-item {
    background-color: #444;
    color: white;
    padding: 20px 28px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
}

.service-item:hover {
    background-color: #f8af3c;
    color: #000;
    cursor: pointer;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}
.coming-soon-text {
    background-color: #111;
    color: #f8af3c;
    font-size: 24px;
    font-family: 'Exo 2', sans-serif !important;
    font-weight: 700;
    text-align: center;
    padding: 5px 5px;
    margin-bottom: 20px;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: pulse 2.5s infinite;
}

.navbar {
    background-color: #000 !important;
    border-bottom: 1px solid goldenrod !important;
}

.navbar-brand, .nav-link {
    color: goldenrod !important;
}

.nav-link:hover {
    color: #f8af3c !important;
}