/* Service Page Specific Styles */

/* Service Hero Section */
.service-hero {
    width: 100%;
    position: relative;
    display: block;
    overflow: hidden;
    margin-top: 80px;
}

.service-hero .hero-image {
    width: 100%;
    height: auto;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
}

.hero-text-box {
    padding: 0px;
    border-radius: 8px;
    animation: slideInLeft 1.2s ease-out;
    min-width: 400px;
    max-width: 600px;
    flex-shrink: 0;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.desktop-title {
    display: block;
}

.mobile-title {
    display: none;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 500;
    color: white;
    opacity: 0.9;
    letter-spacing: 2px;
    margin: 0;
}

.hero-slanted-lines {
    position: relative;
    animation: slideInRight 1.5s ease-out 0.3s both;
}

.slanted-line {
    width: auto;
    height: 250px;
    opacity: 0.8;
    margin-top: -100px;
    margin-left: -250px;
    animation: float 3s ease-in-out infinite;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Service Content Section */
.service-content-section {
    padding: 80px 0;
    background: white;
}

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

.service-text {
    padding-right: 20px;
}

.service-title {
    font-size: 36px;
    font-weight: 700;
    color: #2E86AB;
    margin-bottom: 20px;
}

.service-subtitle {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #e9ecef;
}

.service-subtitle strong {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
}

.service-description {
    line-height: 1.8;
}

.service-description p {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
}

.service-description h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 30px 0 15px 0;
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Design for Service Page */
@media (max-width: 768px) {
    .hero-overlay {
        padding: 0px;
    }

    .hero-content {
        flex-direction: column;
        gap: 0px;
        text-align: center;
    }

    .hero-slanted-lines {
        display: none;
    }

    .desktop-title {
        display: none;
    }

    .mobile-title {
        display: block;
    }

    .hero-text-box {
        padding: 0px;
        min-width: 350px;
        max-width: 600px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .slanted-line {
        height: 150px;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-text {
        padding-right: 0;
    }

    .service-title {
        font-size: 28px;
    }

    .service-subtitle strong {
        font-size: 16px;
    }

    .service-description p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .hero-overlay {
        padding: 0px;
    }

    .hero-slanted-lines {
        display: none;
    }

    .desktop-title {
        display: none;
    }

    .mobile-title {
        display: block;
    }

    .hero-text-box {
        padding: 10px;
        min-width: 50px;
        max-width: 400px;
    }

    .hero-title {
        font-size: 25px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .slanted-line {
        height: 120px;
    }

    .service-title {
        font-size: 24px;
    }

    .service-subtitle strong {
        font-size: 14px;
    }

    .service-description p {
        font-size: 14px;
    }

    .service-description h4 {
        font-size: 16px;
    }
}
