/* Page-specific styles for services */
/* Hero Section Styling */

.hero {
    background-image: url('../images/services_title.jpeg');
    justify-content: flex-start;
}

.hero-content h1 {
    color: var(--orange-wheel);
}

.services-grid-section {
    padding: 4rem 0;
    background-color: white;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 0 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    color: var(--space-cadet);
    padding: 1.5rem 1.5rem 1rem;
    font-size: 1.3rem;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--english-violet);
    line-height: 1.6;
}

.service-btn {
    display: inline-block;
    background-color: var(--orange-wheel);
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 1.5rem 1.5rem;
    transition: background-color 0.3s ease;
}

.service-btn:hover {
    background-color: var(--space-cadet);
}

@media (max-width: 992px) {
    .services-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.service-detail {
    padding: 4rem 0;
    background-color: #f8f9fa;
}
.service-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 0 2rem;
    align-items: center;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.service-content h2 {
    color: var(--space-cadet);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.service-content p {
    color: var(--english-violet);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.special-offer {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f0f0f0;
    border-left: 4px solid var(--orange-wheel);
    border-radius: 0 8px 8px 0;
}

.special-offer p {
    color: var(--space-cadet);
    font-weight: 600;
    margin: 0;
}
@media (max-width: 768px) {
    .service-detail-container {
        grid-template-columns: 1fr;
    }
}

.service-detail.reverse .service-detail-container {
    direction: rtl;
}

.service-detail.reverse .service-content {
    direction: ltr;
}

.service-detail.reverse .service-image {
    direction: ltr;
}
.vax-hero {
    height: 60vh;
    width: 100%;
    background-image: url('../images/why_vax.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.vax-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(32, 31, 79, 0.7);
}

.vax-hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: left;
    max-width: 600px;
    padding: 2rem;
    margin-right: 4rem;
}

.vax-hero-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--orange-wheel);
}

.vax-hero-content ul {
    list-style: none;
    padding: 0;
}

.vax-hero-content li {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.vax-hero-content li:before {
    content: "•";
    color: var(--orange-wheel);
    position: absolute;
    left: 0;
}
