/* header section  */
:root {
    --primary-bg: #1A1915;
    /* Deep Charcoal */
    --accent-color: #B59410;
    /* Rich Gold */
    --light-cream: #FFFDF5;
    /* Light Cream */
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--light-cream);
    color: var(--primary-bg);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    /* Mobile scroll fix */
}

/* --- Header Section (Responsive) --- */
.service-header {
    background-color: var(--primary-bg);
    padding: 100px 0 60px 0;
    border-radius: 0 0 40px 40px;
    text-align: center;
}

.display-4 {
    font-weight: 800;
    color: white;
    font-size: calc(1.8rem + 1.5vw);
    /* Responsive font */
}

/* --- Service Cards Grid --- */
.card-container {
    margin-top: -40px;
    /* Overlap effect */
    padding-bottom: 80px;
}

.service-box {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #F0ECE0;
    height: 100%;
    /* Ensures all cards are equal height */
    transition: all 0.3s ease-in-out;
    display: flex;
    flex-direction: column;
}

.service-box:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.icon-wrap {
    width: 60px;
    height: 60px;
    background: var(--light-cream);
    color: var(--accent-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.service-title {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.list-items {
    list-style: none;
    padding: 0;
    margin-top: auto;
    /* Pushes list to bottom */
}

.list-items li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #666;
    display: flex;
    align-items: center;
}

.list-items li i {
    color: var(--accent-color);
    margin-right: 10px;
}

/* --- Responsive Call to Action --- */
.cta-section {
    background: var(--primary-bg);
    border-radius: 30px;
    padding: 50px 20px;
    color: white;
    margin-bottom: 100px;
}

.gold-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.gold-btn:hover {
    background: #D4AF37;
    color: white;
    transform: scale(1.05);
}

/* Mobile Specific Fixes */
@media (max-width: 576px) {
    .service-header {
        padding: 80px 20px 50px 20px;
    }

    .service-box {
        padding: 30px 20px;
    }

    .display-4 {
        font-size: 1.8rem;
    }
}

/* real time impact */
/* Compact Animations */
.pulse-dot {
    width: 10px;
    height: 10px;
    background: #059669;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.7);
    }

    70% {
        box-shadow: 0 0 0 8px rgba(5, 150, 105, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(5, 150, 105, 0);
    }
}

.metric-bento {
    transition: 0.3s;
    border: 1px solid transparent;
}

.metric-bento:hover {
    transform: translateY(-5px);
    border-color: #B59410 !important;
}

/* Client section styling */
.swiper-pagination-bullet-active {
    background: #B59410 !important;
}

.review-box {
    transition: 0.3s;
    border: 1px solid #F0ECE0;
}

.review-box:hover {
    border-color: #B59410 !important;
    transform: scale(1.02);
}

/* work flow section */
.process-card {
    transition: 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* Mobile margin fix */
@media (max-width: 991px) {
    .process-card {
        margin-top: 15px;
    }
}