.hero-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 0;
}

.hero-carousel {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    position: relative;
    min-width: 100%;
    min-height: 100vh;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    object-fit: cover;
    object-position: center;
    border-radius: 0px;
}

.overlay-text {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.overlay-text .btn {
    background: #000;
    border: none;
    color: white;
    padding: 12px 30px;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 250px;
}

.overlay-text .btn:hover {
    background: #D4AF37;
    color: white;
}

.overlay-text .social-icons {
    display: flex;
    gap: 25px;
    margin-top: 20px;
}

.overlay-text .social-icons a {
    color: #000;
    font-size: 22px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay-text .social-icons a:hover {
    color: #D4AF37;
    transform: translateY(-3px);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.4);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    z-index: 3;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 30px;
}

.next {
    right: 30px;
}

.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
    padding: 10px 20px;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: white;
    transform: scale(1.2);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Media Query for tablets */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-section {
        height: auto;
        min-height: 60vh;
    }

    .hero-carousel,
    .carousel-container,
    .carousel-slide {
        min-height: 60vh;
    }

    .carousel-slide img {
        min-height: 60vh;
        object-fit: cover;
        object-position: center 20%;
    }

    .overlay-text {
        right: 50%;
        transform: translate(50%, -50%);
        width: 80%;
        max-width: 400px;
    }
}

/* Media Query for mobile devices */
@media (max-width: 767px) {
    .hero-section {
        height: auto;
        min-height: 50vh;
    }

    .hero-carousel,
    .carousel-container,
    .carousel-slide {
        min-height: 50vh;
    }

    .carousel-slide img {
        min-height: 50vh;
        object-fit: cover;
        object-position: center 20%;
        border-radius: 0;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .prev {
        left: 15px;
    }

    .next {
        right: 15px;
    }

    .carousel-dots {
        bottom: 20px;
        gap: 10px;
        padding: 8px 15px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    .overlay-text {
        right: 50%;
        transform: translate(50%, -50%);
        width: 90%;
        max-width: 300px;
    }
    
    .overlay-text .btn {
        padding: 8px 20px;
        font-size: 12px;
        width: auto;
        min-width: 160px;
    }
    
    .overlay-text .social-icons {
        gap: 15px;
    }
    
    .overlay-text .social-icons a {
        font-size: 18px;
    }

    .carousel-navigation {
        display: none !important;
    }
    
    .carousel-container {
        touch-action: pan-x pinch-zoom;
    }
}

.mobile-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 768px) {
    .mobile-bottom-content {
        position: absolute;
        bottom: 20px;
        right: 20px;
        align-items: center;
    }
    
    .overlay-text {
        display: flex;
        flex-direction: column;
        height: 100%;
        justify-content: flex-end;
    }
}