/* ==========================================================================
         بخش دوم: استایل‌های مخصوص صفحه اصلی (Home Page Only Styles)
         شامل: اسلایدرها، بنرها، سکشن‌های محصولات و محتوای داخلی صفحه
 ========================================================================== */

section {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.reveal-item {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
    transform: translateY(100px) scale(0.95);
}

.reveal-item.reveal-left {
    transform: translateX(-100px) scale(0.95);
}

.reveal-item.reveal-right {
    transform: translateX(100px) scale(0.95);
}

.reveal-item.active {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Hero */
.hero-wrap {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.4);
    z-index: -1;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
}

.hero-content p {
    color: #f1f1f1 !important;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* About */
.about-section {
    background-color: #fff;
    overflow: hidden;
}

.about-img-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-img-wrap img {
    transition: transform 0.5s;
}

.about-img-wrap:hover img {
    transform: scale(1.05);
}

.about-line {
    width: 80px;
    height: 4px;
    background: var(--theme-color);
    margin-bottom: 20px;
}

/* Counter */
.counter-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/banner/015.webp');
    background-size: cover;
    background-attachment: fixed;
    padding: 80px 0;
    text-align: center;
}

.counter-icon {
    font-size: 3rem;
    color: var(--theme-color);
    margin-bottom: 15px;
    display: inline-block;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}

.counter-label {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 5px;
}

/* Video Gallery */
.video-gallery-section {
    padding: 60px 0;
    background: var(--bg-body);
}

.video-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 220px;
    border: none;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
    filter: brightness(0.9);
}

.video-card:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.play-btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    font-size: 24px;
    z-index: 2;
    animation: pulse-red 2s infinite;
}

.play-btn-glow {
    color: #fff !important;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(213, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(213, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(213, 0, 0, 0);
    }
}

/* Comparison Slider */
.comparison-section {
    text-align: center;
}

.ba-slider {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
    cursor: col-resize;
    border: 3px dashed var(--theme-color);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    -webkit-user-select: none;
    user-select: none;
}

.ba-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: none !important;
}

.ba-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

.ba-image-wrapper.after {
    width: 50%;
    border-right: 3px solid var(--theme-color);
    z-index: 2;
}

.ba-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 0 15px rgba(213, 0, 0, 0.6);
    cursor: col-resize;
    transition: transform 0.1s;
}

.ba-handle i {
    color: #fff;
    font-size: 24px;
}

.ba-label {
    position: absolute;
    top: 20px;
    padding: 5px 15px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border-radius: 30px;
    font-size: 14px;
    z-index: 3;
    pointer-events: none;
}

.label-before {
    right: 20px;
}

.label-after {
    left: 20px;
    background: rgba(213, 0, 0, 0.8);
    font-weight: bold;
}

/* Products */
.product-slider {
    padding: 10px;
    overflow: hidden;
}

.swiper-slide {
    height: auto;
}

.swiper-btn-prev-custom, .swiper-btn-next-custom {
    width: 45px;
    height: 45px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-dark-blue);
    background: #fff;
}

.swiper-btn-prev-custom:hover, .swiper-btn-next-custom:hover {
    background-color: var(--theme-color);
    border-color: var(--theme-color);
    color: #fff;
}

.swiper-pagination-bullet-active {
    background-color: var(--theme-color) !important;
}

.product-card-dark {
    border-radius: 15px;
    background-color: #fff;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.product-card-dark:hover {
    transform: translateY(-7px);
    border-color: var(--theme-color);
}

.price-tag {
    font-size: 1.2rem;
    color: #000;
    font-weight: 700;
}

.product-card-dark h5 {
    color: #000;
}

.product-card-dark .btn-outline-dark:hover {
    background-color: transparent !important;
    color: var(--theme-color) !important;
    border-color: var(--theme-color) !important;
}

.text-gold {
    color: var(--theme-color) !important;
}

.bg-gold {
    background-color: var(--theme-color) !important;
}

/* ==========================================================================
   بخش چرا ما (سبک Dark با تصاویر مستطیلی بر اساس تصویر نمونه)
   ========================================================================== */

.dark-feature-section {
    background-color: #0b152d; /* رنگ سرمه ای تیره مشابه عکس */
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* تصویر بزرگ بالایی */
.main-feature-img {
    overflow: hidden;
    border-radius: 4px;
}

.main-feature-img img {
    transition: transform 0.7s ease;
}

.main-feature-img:hover img {
    transform: scale(1.03);
}

/* کادرهای ۳ ستونه پایین */
.dark-card {
    background: transparent;
}

.dark-card-img {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.dark-card-img img {
    object-fit: cover;
    aspect-ratio: 16/9;
    transition: transform 0.5s ease, filter 0.3s ease;
    filter: brightness(0.9);
}

.dark-card:hover .dark-card-img img {
    transform: scale(1.08);
    filter: brightness(1.1);
}

/*
  استایل دکمه‌های جدید:
  گوشه گرد، حاشیه و بک‌گراند آبی (#0d6efd)، افکت نور هنگام هاور
*/
.custom-btn-outline {
    border: 1px solid #0d6efd;
    color: #fff !important;
    background-color: rgba(13, 110, 253, 0.1); /* پس زمینه ملایم آبی در حالت عادی */
    border-radius: 50px !important; /* گرد کردن کامل گوشه‌ها */
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    letter-spacing: 0.5px;
    display: inline-block;
}

.custom-btn-outline:hover {
    background-color: #0d6efd !important; /* تغییر رنگ به آبی سالید هنگام هاور */
    color: #fff !important;
    transform: translateY(-4px); /* کمی حرکت به سمت بالا */
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.5); /* افکت نور (Glow) آبی رنگ */
}

/* اصلاح رنگ متن های پاراگراف برای خوانایی بهتر در پس زمینه تیره */
.dark-feature-section .text-white-50 {
    color: rgba(255, 255, 255, 0.65) !important;
    line-height: 1.9;
}

/* ==========================================================================
   بخش خدمات (طراحی با تصویر و گوشه‌های کاملاً گرد)
   ========================================================================== */

.custom-services-section {
    background-color: #f8f9fa;
    position: relative;
}

.title-underline {
    width: 60px;
    height: 4px;
    background-color: #0d6efd;
    border-radius: 2px;
}

/* ساختار اصلی کارت دارای تصویر */
.service-img-card {
    background-color: #ffffff;
    /* گرد کردن کامل گوشه‌های کادر */
    border-radius: 24px;
    /* جلوگیری از بیرون زدن تصویر از گوشه‌های گرد */
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* کادر دربرگیرنده تصویر */
.card-img-wrapper {
    width: 100%;
    /* نسبت تصویر مستطیلی استاندارد */
    aspect-ratio: 16 / 10;
    overflow: hidden;
    position: relative;
}

/* تنظیمات تصویر داخل کادر */
.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* افکت‌ها هنگام رفتن موس روی کارت (Hover) */
.service-img-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

/* افکت زوم شدن ملایم عکس در هاور */
.service-img-card:hover .card-img-wrapper img {
    transform: scale(1.08);
}

.leading-relaxed {
    line-height: 1.8;
}

/* استایل دکمه اختصاصی سوالات متداول */
.btn-faq {
    background-color: #0d6efd;
    color: #ffffff !important;
    font-weight: 500;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.2);
}

.btn-faq:hover {
    background-color: #0b5ed7;
    transform: translateY(-2px);
    /* افکت نوری آبی رنگ در اطراف دکمه */
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.5);
}

/* فاصله گذاری آیکون داخل دکمه برای متون راست‌چین */
.btn-faq i.ms-2 {
    margin-right: 8px !important;
    margin-left: 0 !important;
}

/* رنگ حاشیه بالای دکمه در کارت سوالات متداول */
.border-light {
    border-color: #f1f3f5 !important;
}

/* Contact Area */
.contact-section-bg {
    background: #111;
}

.contact-cta-section {
    padding: 5rem 0;
}

.contact-pulse-btn {
    width: 100px;
    height: 100px;
    background-color: var(--theme-color);
    color: #fff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    text-decoration: none;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 20px rgba(215, 237, 251, 0.6);
    transition: transform 0.3s;
    margin: 0 auto;
}

.contact-pulse-btn:hover {
    transform: scale(1.1);
    color: #fff !important;
}

.contact-pulse-btn::before, .contact-pulse-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--theme-color);
    animation: pulse-ring 2s infinite;
    z-index: -1;
}

.contact-pulse-btn::after {
    animation-delay: 0.5s;
}

@keyframes pulse-ring {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }
    100% {
        width: 220%;
        height: 220%;
        opacity: 0;
    }
}

.btn-contact-custom {
    border-color: rgba(255, 255, 255, 0.3);
    transition: 0.3s;
}

/* Blog */
.blog-card {
    border-radius: 15px;
    background-color: #fff;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.blog-img {
    height: 200px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.blog-card:hover .blog-img img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: var(--theme-color);
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.blog-title {
    color: #000;
    font-size: 1.2rem;
    transition: 0.3s;
}

.blog-card:hover .blog-title {
    color: var(--theme-color);
}

.read-more {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.read-more i {
    margin-right: 5px;
    transition: 0.3s;
}

.read-more:hover i {
    margin-right: 10px;
    color: var(--theme-color);
}

.section-title-divider {
    width: 50px;
    height: 3px;
    background: var(--theme-color);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .ba-slider {
        height: 300px;
    }
}

/* --- تنظیمات شفافیت برای مودال‌های Fancybox --- */
.fancybox__backdrop {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

/* اگر از مودال‌های بوت‌استرپ هم استفاده می‌کنید */
.modal-backdrop {
    background-color: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: rgba(20, 20, 20, 0.95);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.btn-outline-dark:hover {
    color: #fff !important;
    background-color: #212529 !important;
    border-color: #212529 !important;
}

.btn-outline-dark {
    color: #212529 !important;
    border-color: #212529 !important;
}

/* ==========================================================================
   HERO FADE SLIDER (IMG BASED – NO BACKGROUND IMAGE)
   ========================================================================== */

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

/* Swiper container */
.hero-slider {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Slides */
.hero-slider .swiper-wrapper,
.hero-slider .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    overflow: hidden;
}

/* Image wrapper */
.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay (same as hero-video brightness) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

/* ==========================================================================
   HERO CAPTION (GLASS STYLE – MATCHES SITE)
   ========================================================================== */

.hero-caption {
    position: absolute;
    bottom: 60px;
    right: 60px;
    z-index: 2;

    max-width: 420px;
    padding: 22px 26px;

    background: rgba(10, 18, 50, 0.32);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);

    text-align: right;
    color: #fff;

    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Caption visible only on active slide */
.swiper-slide-active .hero-caption {
    opacity: 1;
    transform: translateY(0);
}

.hero-caption h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--theme-color);
}

.hero-caption p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

/* CTA */
.hero-caption-btn {
    margin-top: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 30px;
    background: rgb(255, 153, 0);
    border: 1px solid rgb(255, 153, 0);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.15),
    box-shadow 0.35s ease;
    will-change: transform;
}

.hero-btn {
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1),
    box-shadow 0.3s ease;
    will-change: transform;
}

.hero-btn:hover, .hero-caption-btn:hover {
    background-color: rgb(236, 144, 5);
    border-color:  rgb(236, 144, 5);
    transform: translateY(-3px);
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(86, 152, 200, 0.3);
}

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.hero-slider-nav {
    position: absolute;
    left: 40px;
    bottom: 40px;
    display: flex;
    gap: 14px;
}

.hero-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 991px) {
    .hero-caption {
        left: 50%;
        right: auto;
        bottom: 20px;
        transform: translate(-50%, 35px);
        text-align: center;
        width: calc(100% - 36px);
        max-width: 480px;
        background: rgba(10, 18, 50, 0.26);
    }

    .swiper-slide-active .hero-caption {
        transform: translate(-50%, 0);
    }

    .hero-slider-nav {
        left: 15px;
        bottom: 15px;
    }

    .hero-btn {
        width: 42px;
        height: 42px;
    }
}

/* ==========================================================================
   افکت جریان باد خنک برای کل صفحه (Full Page Wind Effect)
   ========================================================================== */
/* اعمال افکت روی تگ main که کل محتوای صفحه را در بر می‌گیرد */
.page-content::before {
    content: '';
    position: fixed;
    top: -20%;
    left: -20%;
    width: 140vw;
    height: 140vh;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at center, rgba(173, 216, 230, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.04) 0%, transparent 40%);
    background-size: 200% 15%, 250% 20%, 300% 10%;
    background-repeat: repeat-x;
    transform: rotate(-10deg);
    animation: fullpage-wind-gusts 8s linear infinite;
    pointer-events: none;
    z-index: 999;
}

/* ==========================================
   کی‌فریم انیمیشن باد (حرکت پیوسته از راست به چپ)
   ========================================== */
@keyframes fullpage-wind-gusts {
    0% {
        background-position: 100% 20%, 150% 60%, 200% 40%;
    }
    100% {
        background-position: -100% 20%, -50% 60%, -100% 40%;
    }
}

/* ==========================================================================
   طراحی دایره‌ای با افکت نئونی (مخصوص پس‌زمینه عکس تیره)
   ========================================================================== */

/* نگهدارنده اصلی برای وسط‌چین کردن دایره و دکمه */
.neon-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* ==========================================
   استایل کادر دایره‌ای
   ========================================== */
.neon-circle {
    /* ایجاد دایره کامل */
    width: 190px;
    height: 190px;
    border-radius: 50%;

    /* پس‌زمینه تیره نیمه‌شفاف برای خوانایی روی عکس */
    background: rgba(0, 0, 0, 0.5);

    /* حاشیه نئونی خاموش در حالت عادی */
    border: 2px solid rgb(6, 59, 138);
    box-shadow: 0 0 15px rgb(5, 36, 82, 0.5);

    /* وسط‌چین کردن محتویات داخل دایره */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    transition: all 0.4s ease-in-out;
}

/* درخشش دایره هنگام بردن موس (Hover) */
.neon-wrapper:hover .neon-circle {
    border-color: #0d6efd;
    box-shadow: 0 0 20px rgb(3, 96, 234, 0.5),
    inset 0 0 15px rgb(3, 53, 128, 0.3);
    transform: translateY(-5px);
}

/* آیکون داخل دایره */
.neon-icon {
    font-size: 38px;
    color: #0d6efd;
    margin-bottom: 5px;
    text-shadow: 0 0 8px #0d6efd;
    transition: all 0.3s ease;
}

/* عدد شمارنده */
.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}
.counter-label {
    font-size: 0.95rem;
    color: #a6c9fd;
    font-weight: 500;
}
/* ==========================================
   استایل دکمه نئونی زیر دایره
   ========================================== */
.neon-btn {
    position: relative;
    display: inline-block;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;

    /* استایل نئونی دکمه */
    color: #0d6efd;
    background: transparent;
    border: 2px solid #0d6efd;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.2),
    inset 0 0 10px rgba(0, 229, 255, 0.1);

    transition: all 0.3s ease;
}
.neon-btn:hover {
    background-color: #0d6efd !important;
    color: #fff !important;
    transform: translateY(-4px);
}
a.neon-btn {
    text-decoration: none !important;
}
/* =========================================
   ویدئوی بخش چرا هومکس (افکت غرق شدن در پس‌زمینه)
   ========================================= */
.video-blend-wrapper {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 95%);
    mask-image: radial-gradient(circle, black 40%, transparent 95%);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}


.reveal-item.active .video-blend-wrapper {
    opacity: 1;
    transform: translateY(0);
}

.video-blend-wrapper video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
