/* Services Page Specific Styles */

:root {
    --primary-orange: #FF5E00;
    --dark-blue: #003366;
    --light-grey: #f8f9fa;
    --text-muted: #6c757d;
}

/* Services Hero */
.services-hero {
    padding: 120px 0;
    background: linear-gradient(rgba(0, 51, 102, 0.85), rgba(0, 51, 102, 0.85)), url('../images/Executed Work_JES/22.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
}

.services-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.services-hero-subtitle {
    font-size: 1.25rem;
    color: var(--primary-orange);
    font-weight: 700;
    margin-bottom: 40px;
}

/* Service Cards */
.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    height: 100%;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-blue);
    transform: translateY(100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 25px;
    display: block;
    transition: color 0.4s ease;
}

.service-card h5 {
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 15px;
    transition: color 0.4s ease;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    transition: color 0.4s ease;
}

.service-card .read-more {
    color: var(--primary-orange);
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.4s ease;
}

.service-card:hover i,
.service-card:hover h5,
.service-card:hover p,
.service-card:hover .read-more {
    color: white !important;
}

/* Featured Service */
.featured-service-section {
    padding: 100px 0;
    background: #fdfdfd;
}

.featured-content-box {
    padding: 50px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    border-right: 5px solid var(--primary-orange);
}

.featured-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.featured-list li {
    padding: 12px 0;
    font-weight: 700;
    color: var(--dark-blue);
    display: flex;
    align-items: center;
    gap: 15px;
}

.featured-list li i {
    color: var(--primary-orange);
}

/* Counter Section */
.counter-section {
    padding: 80px 0;
    background: var(--dark-blue);
    color: white;
}

.counter-item i {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
    display: block;
}

.counter-item h3 {
    font-weight: 900;
    font-size: 2.5rem;
    margin-bottom: 5px;
}

.counter-item p {
    font-weight: 600;
    opacity: 0.8;
    margin-bottom: 0;
}

/* Process Timeline */
.process-section {
    padding: 100px 0;
}

.process-step {
    position: relative;
    padding-bottom: 50px;
    padding-left: 40px;
    border-left: 2px dashed #ddd;
}

.process-step:last-child {
    border-left: none;
    padding-bottom: 0;
}

.process-number {
    position: absolute;
    left: -21px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    border: 4px solid white;
    box-shadow: 0 0 0 2px var(--primary-orange);
}

/* Gallery Hover */
.gallery-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 51, 102, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
    padding: 20px;
    text-align: center;
}

.gallery-card:hover img {
    transform: scale(1.1);
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

@media (max-width: 991px) {
    .services-hero-title { font-size: 2.5rem; }
    .featured-content-box { padding: 30px; margin-top: 30px; }
}
