/* ------------------------ First Section ----------------------- */

.facility-section {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 50px; 
}


/* Black Section */
.black-area {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px; /* Adjust height as needed */
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Topic Inside the Black Section */
.black-area h1 {
    margin-top: 30px;
    font-size: 50px;
    font-weight: 600;
    color: white;
    text-align: center;
}

.black-area h2 {
    font-size: 15px;
    font-weight: 600;
    color: #FFB22C;
    text-align: center;
    font-weight: 300;
}

/* ------------------------ End of First Section ----------------------- */



/* ------------------------ Second Section ----------------------- */

.service-card {
    margin-top: 10px;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px; /* Adjust width as needed */
    margin: auto;
    background: #121516;
    border-radius: 10px;
    overflow: hidden;
    border: solid 1px #343434;
    margin-top: 30px;
}

/* Text Section (2/3) */
.service-text {
    flex: 2; /* Takes 2/3 of space */
    padding: 30px;
    color: white;
}

.service-text h2 {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 500;
    color: white;
}

.service-text p {
    font-size: 14px;
    color: #A8A8A8;
    margin-top: 8px;
}

/* Image Section (1/3) */
.service-image {
    flex: 1; /* Takes 1/3 of space */
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 🔥 Responsive Design */
@media (max-width: 1024px) {
    .service-card {
        flex-direction: column; /* Stack on smaller screens */
    }

    .service-text {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .service-image {
        flex: none;
        width: 100%;
    }
}


/* ------------------------ End of Second Section ----------------------- */