 .hero-section {
    position: relative;
    text-align: center;
    color: #fff;
}

.hero-image {
    width: 100%;
    height: 580px;
    object-fit: cover;
    opacity: 0.8;
}

.hero-content {
    position: absolute;
    top: 44%;
    left: 50%;
    transform: translate(-50%, -60%);
    text-align: center;
    height: 40vh;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.btn-primary {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: #ff5733;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
}

.btn-primary:hover {
    background-color: #c13e20;
}

@media screen and (max-width: 768px) {
    .hero-content {
        position: absolute;
        top: 30%;
        left: 50%;
        transform: translate(-50%, -50%);
        text-align: center;
        height: 45vh;
    }
    
    .btn-primary {
        margin-top: -3rem; /* Adjust this value to move the button up */
    }
}
/* Section Styles */
.content-wrapper {
    padding: 2rem;
    background-color: #f9f9f9;
}

h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    text-align: center;
}
.para{
    color:whitesmoke;
}
p {
    max-width: 800px;
    margin: 0 auto 1.2rem;
    text-align: center;
    color: #555;
}

/* About Section */
.about-section {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-images {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.about-images img {
    width: 30%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.about-images img:hover {
    transform: scale(1.05);
}

/* Media Query for Mobile Phones */
@media (max-width: 768px) {
    .about-images {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about-images img {
        display: none;
        width: 80%; /* Adjust width for a single image */
    }

    .about-images img:first-child {
        display: block; /* Show only the first image */
    }
}
/* Mission Section */
.mission-section {
    background-color: #f1f1f1;
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
    text-align: center;
}

.mission-section p {
    color: #666;
}

/* Services Section */
.services-section {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.service-highlights {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

@media (max-width: 768px) {
    .service-highlights {
        flex-direction: column; /* Stack items vertically */
        align-items: center;   /* Center align items */
    }

}

.service-item {
    flex: 1;
    max-width: 250px;
    text-align: center;
    border-radius: 8px;
    padding: 1.5rem;
    background-color: #f9f9f9;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.service-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.service-item p {
    font-size: 0.9rem;
    color: #666;
}