/* Services Page Styling */

/* =========================================
   Hero Section
   ========================================= */
.services-hero-section {
    background-color: #0A2543; /* Deep Blue same as FAQ/Industries */
    padding: 80px 0;
    color: #ffffff;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content h1 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Sora', sans-serif;
    color: #ffffff;
}

.hero-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #E0E7FF;
    margin-bottom: 30px;
    max-width: 600px;
    font-family: 'Sora', sans-serif;
    font-weight: 400;
}

.services-deliver-wrapper {
    margin-bottom: 30px;
}

.deliver-title {
    font-size: 14px;
    color: #A7E8FF; /* Light Blue Highlight */
    margin-bottom: 15px;
    font-weight: 600;
}

.deliver-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.deliver-list li {
    font-size: 15px;
    line-height: 1.6;
    color: #CBD5E1;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.deliver-list li::before {
    content: "•";
    color: #A7E8FF;
    position: absolute;
    left: 0;
    font-size: 20px;
    line-height: 1;
    top: -2px;
}

.btn-services-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #013760; /* Button Blue */
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
}

.btn-services-hero:hover {
    /* background-color: #0369A1; */
    color: #ffffff;
}

.hero-image img {
    border-radius: 20px;
    width: 100%;
    height: auto;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* =========================================
   Services Grid Section
   ========================================= */
.services-grid-section {
    background-color: #F0F9FF; /* Light background */
    padding: 80px 0;
}

.section-header {
    margin-bottom: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 20px;
    text-align: center;
}

.section-header p {
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-card-image {
    height: 180px;
    width: 100%;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 12px;
}

.service-card-content p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-read-more {
    font-size: 14px;
    font-weight: 700;
    color: #013760;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.service-read-more:hover {
    color: #0369A1;
}

.service-read-more i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.service-read-more:hover i {
    transform: translateX(4px);
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-desc {
        margin: 0 auto 30px;
    }

    .deliver-list li {
        text-align: left;
        display: inline-block;
    }
    
    .services-deliver-wrapper {
        text-align: left;
        max-width: 600px;
        margin: 0 auto 30px;
    }

    .btn-services-hero {
        width: 100%;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
