@media screen and (max-width: 1060px){
    .video-container{
        height: 100vh;
        aspect-ratio: 4/3 !important;
    }

        .video-container iframe {
            height: 100%;
            width: 100%;
            aspect-ratio: 4/3 !important;
        }
}
.carousel-fixed-caption {
    position: absolute;
    top: 80px;
    left: 80px;
    right: auto;
    width: 500px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    color: white;
    padding: 30px;
    border-radius: 20px;
    z-index: 10;
}

    .carousel-fixed-caption h5 {
        font-size: 2rem;
        font-weight: bold;
    }

    .carousel-fixed-caption p {
        font-size: 1rem;
        margin-bottom: 20px;
    }

    .carousel-fixed-caption .btn {
        background-color: #33c6ff;
        color: #000;
        font-weight: 600;
        padding: 10px 20px;
        border-radius: 25px;
    }

/* Responsive for tablets and below */
@media (max-width: 1200.98px) {
    .carousel-fixed-caption {
        top: 2%;
        left: 40px;
        width: calc(100% - 80px);
        padding: 20px;
    }

        .carousel-fixed-caption h5 {
            font-size: 1.75rem;
        }
}

/* Responsive for phones */
@media (max-width: 576.98px) {
    .carousel-fixed-caption {
        left: 20px;
        width: calc(100% - 40px);
        padding: 15px;
    }

        .carousel-fixed-caption h5 {
            font-size: 1.4rem;
        }

        .carousel-fixed-caption p {
            font-size: 0.95rem;
        }

        .carousel-fixed-caption .btn {
            padding: 8px 16px;
            font-size: 0.9rem;
        }
}
.brand-icon {
    position: absolute;
    top: 435px;
    left: 60px;
    right: auto;
    width: 1200px;
    z-index: 10;
    background-color: white !important;
}
@media (max-width: 1400px) {
    .brand-icon {
        left: 40px;
        top: 350px;
        width: calc(100% - 80px);
    }
}
@media (max-width: 990px) {
    .brand-icon {
        left: 40px !important;
        top: 230px !important;
        width: calc(100% - 80px);
    }
}
@media (max-width: 1200px) {
    .brand-icon {
        left: 40px;
        top: 325px;
        width: calc(100% - 80px);
    }
}
.top-content {
    background-color: #156082 !important;
}
.brand-slider {
    margin-top: 20px !important;
    margin-bottom: 15px !important;
}
.circle-overlay {
    position: absolute;
    top: 60px; /* fixed distance from top */
    margin-left: 800px;
    width: 240px;
    height: 220px;
    border-radius: 10%;
    background: white;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
    animation: blink 1.5s infinite;
    z-index: 10;
    animation: zoomBlink 2s infinite ease-in-out;
}

    .circle-overlay p {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .circle-overlay button {
        padding: 6px 12px;
        border: none;
        border-radius: 20px;
        background: blue;
        color: black;
        font-weight: bold;
        cursor: pointer;
        transition: 0.3s;
    }

        .circle-overlay button:hover {
            background: #ddd;
        }


@media (max-width:998px) {
    .circle-overlay {
        width: 160px;
        height: 160px;
        top: 15px;
        right: 15px;
        padding: 10px;
    }

        .circle-overlay p {
            font-size: 12px;
        }
}

@media (max-width: 480px) {
    .circle-overlay {
        width: 120px;
        height: 120px;
        top: 10px;
        right: 10px;
        padding: 8px;
    }

        .circle-overlay p {
            font-size: 11px;
        }

        .circle-overlay button {
            padding: 4px 8px;
            font-size: 12px;
        }
}
@keyframes zoomBlink {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.15);
    }
    /* zoom out */
    100% {
        transform: scale(1);
    }
}
.sample {
    width: 80%;
    margin-top: 40px;
    max-width: 435px;
    height: 400px;
}