*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

.about-us{
    position: relative;
    height: 100vh;
    background: url('../photos/medicalfinished.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color:white;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0, 0.5);
}

.content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px;
}

.content h1{
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.location{
    font-size: 20px;
    font-weight: bold;
    background: rgba(255,255,255,00.2);
    padding: 10px 20px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .content h1{
        font-size: 32px;
    }
    .content p{
        font-size: 16px;
    }
    .location{
        font-size: 18px;
    }
}

.about{
    width: 100%;
    padding: 50px 10%;
    background-color: #f9f9f9;
}

.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
    opacity: 0; /*Hiding for animation */
    transform: translateY(50px);
    transition: all 0.6s ease-in-out;
}

.about-img{
    flex: 1;
    padding: 20px;
}

.about-img img{
    width: 100%;
    border-radius: 10px ;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
}

.about-text {
    flex: 1;
    padding: 20px;
}

.about-text h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

.about-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.5;
}


/*Reverse section (photo ko left me, text ko right me)*/

.reverse{
    flex-direction: row-reverse;
}

/* Scroll Animation - Visible*/
.fade-in.show{
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }
    .reverse {
        flex-direction: column;
    }
}

.about-text-h2{
    text-align: center;
}

.about-text p{
    text-align: center;
}

.about-text-name {
    margin: 24px 0px;
    text-align: center;
    font-size: 24px;
}

.landmark-section {
    width: 100%;
    background-color: #f4f4f4;
    padding: 80px 10%;
}

.landmark-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* image slider  */
.landmark-slider {
    position: relative;
    width: 500%;
    max-width: 500px;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
}

.slide{
    display: none;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* landmark text  */
.landmark-text{
    width: 45%;
}

.landmark-text h2{
    font-size: 28px;
    color: #555;
    line-height: 1.5;
}

.landmark-text ul{
    margin-top: 10px;
}

.landmark-text ul li {
    font-size: 18px;
    margin-bottom: 8px;
}

/* Responsive  */
@media (max-width: 768px) {
    .landmark-container {
        flex-direction: column;
        text-align: center;
    }

    .landmark-slider{
        width: 90%;
        height: 250px;
    }

    .landmark-text{
        width: 100%;
        margin-top: 20px;
    }
}
