#about-us {
    padding: 50px 0;
}

.image-stack {
    position: relative;
    width: 100%;
}

.main-image {
    width: 100%;
    border-radius: 10px;
}

.overlay-image {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 50%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

.progress-info {
    margin-top: 15px;
}

.progress-info p {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: #eee;
    border-radius: 5px;
    overflow: hidden;
}

.progress-bar div {
    height: 100%;
    background: #ff7f27;
    border-radius: 5px;
}

.cta-section {
    position: relative;
    background: url('../images/photos/contact-us.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 100px 0;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}
.content {
    position: relative;
    z-index: 2;
}
.cta-buttons {
    margin-top: 20px;
}
.cta-button {
    display: inline-block;
    background: #c88d5d;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 18px;
    margin: 5px;
    transition: 0.3s;
}
.cta-button.call {
    background: #ff7f27;
}
.cta-button.whatsapp {
    background: #25D366;
}
.cta-button:hover {
    opacity: 0.8;
}


/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* Banner Styling */
.main-banner {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    overflow: hidden;
}

.owl-carousel .item {
    position: relative;
    width: 100%;
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Text Styling */
.text-box {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
}

.text-box h2 {
    font-size: 40px;
    color: #fff;
    font-weight: bold;
}

.text-box h2 span {
    color: #f35525;
}

Responsive Design
@media (max-width: 768px) {
    .owl-carousel .item {
        height: 70vh;
    }

    .text-box h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .owl-carousel .item {
        height: 60vh;
    }

    .text-box {
        padding: 15px;
    }

    .text-box h2 {
        font-size: 22px;
    }
}
