/* Services Page Styles */

/* Hero Section */
.hero {
    height: calc(100vh - 90px);
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 90%;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 46px;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 18px;
}

/* Reduce space between hero and first section heading */
.hero + .section-heading {
    margin-top: 0;       /* remove top margin */
    padding-top: 15px;   /* optional: small padding for breathing room */
}

/* Section Headings */
.section-heading {
    font-size: 30px;
    padding: 20px 0;
    margin: 60px 0 40px 0;
    text-align: center;
    color: #ffffff;
    background: linear-gradient(135deg, #caa600, #FFD700, #e6b800);
    width: 100%;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.service-card {
    background: #0f1a3b;
    border-radius: 12px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.service-card h3 {
    margin: 15px 0 10px 0;
    color: #FFD700;
}

.service-card p {
    padding: 0 15px 20px 15px;
    color: #cbd5e1;
    font-size: 15px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}

/* Our Client Approach Section */
/* -------------------- */
/* Client Approach Section */
.client-approach-container {
    max-width: 1000px;
    margin: 40px auto 80px auto;
    padding: 0 30px;
    color: #cbd5e1;
    font-size: 16px;
    line-height: 1.8;
}

.client-approach-container ol {
    margin-left: 20px;
}

.client-approach-container ol li {
    margin-bottom: 25px;
}

.client-approach-container ol li strong {
    display: block;
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 8px;
}
/* Footer */
footer {
    background: #081229;
    color: #ffffff;
    padding: 60px 20px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}

.footer-column h3,
.footer-column h4 {
    margin-bottom: 20px;
    color: #FFD700;
}

.footer-column p {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 14px;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 34px;
    }
}