.top-header {
    position: relative;
    min-height: calc(100vh - 100px);
    margin-top: 100px;
    display: flex;
}
.top-header .image-container {
    position: absolute;
    left: 0; 
    top: 0;
    width: 100%;
    height: 100%;
    background: #a3dbf6;
    overflow: hidden;
}

.top-header img {
    width: 100%;
    height: 103%;
    object-fit: cover;
}
.top-header::after {
    position: absolute;
    content: '';
    bottom: 0;
    right: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(to right, rgba(25, 35, 49, 0.9) 0%, rgba(0,99,144 , 0.3) 100%);
}

.top-header .container {
    position: relative;
    z-index: 2;
    padding: 4rem 1rem;
}

.top-header h1 {
    font-family: 'Satoshi-Variable';
    color: white;
    font-size: clamp(1.5rem, 4vw, 4rem);
    font-weight: 500;
    letter-spacing: 1px;
}
.top-header p {
    font-size: 1.4rem;
    color: white;
    padding: 2rem 0 0;
}

.top-header .btn-outline {
    font-size: 1rem;
}

@media screen and (min-width: 768px) {
    .top-header p {
        font-size: 1.6rem;
        max-width: 50%;
    }
    .top-header .btn-outline {
        font-size: 1.5rem;
    }
}



@keyframes zoomMove {
    0% {
        transform: scale(1) translate(0, 0);
    }
    50% {
        transform: scale(1.1) translate(5%, -5%);
    }
    100% {
        transform: scale(1) translate(0, 0);
    }
}

.top-header .image-container img {
    animation: zoomMove 20s ease-in-out infinite;
}

#BookingModal .modal-content {
    background: white;
    padding: 20px;
    border-radius: 20px;
    overflow-x: hidden;
}

#BookingModal .modal-body {
    padding: 0;
}

#BookingModal h2 {
    color: var(--color-two);
}

#BookingModal .btn-close {
    position: absolute;
    top: 0;
    left: 0;
}

@media screen and (max-width: 429px) {
    #BookingModal .calendly-widget {
        position: relative;
        margin: 2rem 0 0;
        padding: 0;
    }
    #BookingModal .modal-content h2 {
        text-align: center;
        padding: 2rem 0;
    }

}

@media screen and (min-width: 430px) and (max-width: 991px) {
    #BookingModal .calendly-widget {
        position: relative;
        margin: 2rem 0 0;
    }
    #BookingModal .modal-content h2 {
        text-align: center;
        padding: 2rem 0;
    }
    #BookingModal .calendly-widget::before {
            content: '';
            position: absolute;
            border-radius: 0 20px 0 0;
            top: 0;
            right: 0;
            width: 0;
            height: 0;
            border-style: solid;
            z-index: 9;
            border-width: 0 165px 165px 0; /* Adjust the size of the triangle */
            border-color: transparent white transparent transparent; 
        }
}

@media screen and (min-width: 992px) {
    #BookingModal .modal-content::before {
        content: '';
        position: absolute;
        border-radius: 0 20px 0 0;
        top: 0;
        right: 0;
        width: 0;
        height: 0;
        border-style: solid;
        z-index: 9;
        border-width: 0 165px 165px 0; /* Adjust the size of the triangle */
        border-color: transparent var(--color-one) transparent transparent; 
    }
    
    #BookingModal .modal-content::after {
        content: '';
        position: absolute;
        border-radius: 0 20px 0 0;
        top: 0;
        right: 0;
        width: 0;
        height: 0;
        border-style: solid;
        z-index: 9;
        border-width: 0 175px 175px 0; /* Adjust the size of the triangle */
        border-color: transparent var(--color-two) transparent transparent; /* Shadow color */
        z-index: 2; /* Place the shadow behind the triangle */
    }
}



