.about-image {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.about-image img {
    width: 70%;
    /* max-width: 800px; /* Limit image width */
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease, opacity 1s ease;
    transform: translateY(20px);
}

.about-image img.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.about-content-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.about-image-left img {
    width: 400px;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease, opacity 1s ease;
}

.about-text-right {
    flex: 1;
    min-width: 300px;
}

.feature-card {
    background: #1c1c1c;
    padding: 2rem;
    border-radius: 12px;
    color: #ddd;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.feature-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

/* Services Section Layout */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    padding: 0 1rem;
}

.service-card {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 2rem;
    width: 280px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    text-align: center;
}

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

.service-card img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1.2rem;
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #222;
    font-size: 1.3rem;
}

.service-card ul {
    list-style: disc;
    padding-left: 1.2rem;
    text-align: left;
    color: #555;
}

.service-card ul li {
    margin-bottom: 0.5rem;
}

.intro-description,
.outro-description {
    max-width: 900px;
    margin: 2rem auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #eee;
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: #1c1c1c;
    /* Dark Background */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.intro-description::after,
.outro-description::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background-color: #555;
    margin: 1.5rem auto 0;
    border-radius: 2px;
}


/* Responsive Mobile View */
@media (max-width: 992px) {
    .service-card {
        width: 45%;
        /* 2 columns on tablets */
    }
} 
@media (max-width: 600px) {
    .service-card {
        width: 100%;
        /* 1 column on phones */
    }

    .service-card img {
        width: 100px;
        height: 100px;
    }
}

/* Optional - Make smaller on mobile */
@media (max-width: 768px) {
    .intro-description,
    .outro-description {
        font-size: 1rem;
        line-height: 1.6;
        padding: 1.5rem 1rem;
    }  .about-image img {
        max-width: 90%;
    }

    .about-content-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image-left img {
        width: 90%;
    }
}