

/* Hero Section */
.aboutuscls {
    position: relative;
    width: 100%;
    height: 400px;
    background: url('images/skyscrapers-3184798_1280.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}



.overlay h1 {
    font-size: 48px;
    font-weight: bold;
}

.overlay p {
    font-size: 16px;
    line-height: 1.6;
}

/* Responsive Design */

@media (max-width: 992px) {
    .aboutuscls {
        height: 350px;
    }

   
    .overlay h1 {
        font-size: 36px;
    }

    .overlay p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .aboutuscls {
        height: 300px;
    }

  

    .overlay h1 {
        font-size: 28px;
    }

    .overlay p {
        font-size: 14px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .aboutuscls {
        height: 250px;
    }


    .overlay h1 {
        font-size: 22px;
    }

    .overlay p {
        font-size: 13px;
    }
}




.careersclss {
    padding: 20px 0;
    text-align: left;
    color: black;
}
.careersclss h2{
    margin-left: 100px;
}

.careers-content, .commitment-content {
    margin-bottom: 40px;
    margin-left: 100px;
    margin-right: 100px;
    text-align: justify;
}

.careersclss h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: black; 
}

.careers-content p, .commitment-content p {
    font-size: 18px;
    color: black;
    margin-bottom: 20px;
}
/* ========== Responsive Styles ========== */

@media (max-width: 992px) {
    .careersclss h2 {
        margin-left: 60px;
        font-size: 32px;
    }

    .careers-content,
    .commitment-content {
        margin-left: 60px;
        margin-right: 60px;
    }

    .careers-content p,
    .commitment-content p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {
    .careersclss h2 {
        margin-left: 30px;
        font-size: 28px;
    }

    .careers-content,
    .commitment-content {
        margin-left: 30px;
        margin-right: 30px;
    }

    .careers-content p,
    .commitment-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .careersclss h2 {
        margin-left: 20px;
        font-size: 24px;
        text-align: center;
    }

    .careers-content,
    .commitment-content {
        margin-left: 20px;
        margin-right: 20px;
    }

    .careers-content p,
    .commitment-content p {
        font-size: 14px;
    }
}


.boxes-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.box {
    flex: 1;
    padding: 20px;
    border: 1px solid black;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
    max-width: 500px;
    height: 200px;
    border-radius: 15px;
}
/* Specific background images for each box */
.box-commitment {
    background-image: url('images/Brown\ Dark\ Modern\ Mountains\ Travel\ Facebook\ Cover.png'); /* Replace with your actual path */
}

.box-career {
    background-image: url('images/Blue\ and\ White\ Minimalist\ Discover\ the\ Island\ of\ Bali\ Presentation.png'); /* Replace with your actual path */
}

.box:hover {
    transform: scale(1.02);
}

.box h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.box p {
    font-size: 16px;
    color: #777;
}

.boxes-container a {
    text-decoration: none;
    color: inherit;
}
.arrowcls{
    padding: 20px;
    font-size: 20px;
}

