.follow-instagram {
    background-color: #fafafa;
    padding: 60px 0;
    text-align: center;
    font-family: 'Arial', sans-serif;
}

.follow-instagram .title a {
    font-size: 22px;
    font-weight: 600;
    color: #222;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.follow-instagram .title a:hover {
    color: #e1306c; 
    transform: scale(1.05);
}

.follow-instagram .swiper-container {
    padding: 20px 10px;
}

.follow-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.follow-item:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.follow-item img,
.follow-item video {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
    pointer-events: none; 
}

.follow-item:hover img,
.follow-item:hover video {
    transform: scale(1.05);
}

.follow-item .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    opacity: 0;
    z-index: 2;
    pointer-events: none; 
}

.follow-item:hover .icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.follow-item .icon i {
    font-size: 28px;
    color: #e1306c;
}

.carousel-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 4px 6px;
    border-radius: 4px;
    font-size: 12px;
    z-index: 3;
}

@media (max-width: 992px) {
    .follow-item img,
    .follow-item video {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .follow-instagram .title a {
        font-size: 18px;
    }

    .follow-item img,
    .follow-item video {
        height: 200px;
    }
}

@media (max-width: 576px) {
    .follow-item img,
    .follow-item video {
        height: 180px;
    }

    .follow-item .icon {
        width: 50px;
        height: 50px;
    }

    .follow-item .icon i {
        font-size: 24px;
    }
}

.swiper-button-next,
.swiper-button-prev {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #184143;
    transform: scale(1.1);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 14px;
    }
}
	
	.intro-video {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.intro-video-img {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    display: block;
}

@media (max-width: 768px) {
    .intro-video-img {
        height: 60vh;
        object-position: center;
    }
}

.video-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: rgba(0, 0, 0, 0.4);
    padding: 0 20px;
}

.video-overlay-content h2 {
    font-size: 34px;
    font-weight: 600;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

@media (max-width: 768px) {
    .video-overlay-content h2 {
        font-size: 22px;
        margin-bottom: 15px;
    }
}

.play-icon {
    background: rgba(255,255,255,0.9);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
}

.play-icon i {
    font-size: 34px;
    color: #000;
}

.play-icon:hover {
    transform: scale(1.1);
    background: #fff;
}

@media (max-width: 768px) {
    .slider-m h3,
    .slider-m h2,
    .slider-m p {
        color: #fff !important;
    }
}