/* ==========================================================================
   Sneha Deepam - Hero Slider Widget CSS
   ========================================================================== */

.snehadeepam-hero-slider-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-slider-swiper-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Individual Slide */
.hero-slide-item {
    position: relative;
    width: 100%;
    min-height: 680px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    box-sizing: border-box;
}

/* Slide Overlay */
.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(15, 17, 26, 0.75) 0%, rgba(15, 17, 26, 0.45) 55%, rgba(15, 17, 26, 0.2) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Slide Container & Content */
.hero-slide-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 130px 60px 110px 140px;
    box-sizing: border-box;
}

.hero-slide-content {
    max-width: 780px;
}

/* Slide Subtitle / Tag */
.hero-slide-subtitle {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #D13380;
    background-color: rgba(209, 51, 128, 0.12);
    padding: 6px 16px;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 3px solid #D13380;
}

/* Slide Title */
.hero-slide-title {
    font-family: 'Inter', sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.15;
    color: #ffffff;
    margin: 0 0 32px 0;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-slide-title span.highlight {
    color: #D13380;
}

/* Slide Info Cards Row */
.hero-slide-info-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 45px;
    margin: 0 0 38px 0;
}

.hero-slide-info-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.hero-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D13380;
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}

.hero-info-icon svg {
    width: 32px;
    height: 32px;
    fill: #D13380;
}

.hero-info-text {
    display: flex;
    flex-direction: column;
}

.hero-info-label {
    font-family: 'Heebo', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #d0d0d8;
    line-height: 1.3;
    margin-bottom: 2px;
}

.hero-info-value,
.hero-info-value a {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.hero-info-value a:hover {
    color: #D13380;
}

/* Button Group */
.hero-slide-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-slide-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #D13380;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 36px;
    text-decoration: none !important;
    border-radius: 0px;
    border: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(209, 51, 128, 0.3);
}

.hero-slide-btn-primary:hover {
    background-color: #1E1E2F;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.hero-slide-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: #ffffff !important;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 34px;
    text-decoration: none !important;
    border-radius: 0px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-slide-btn-secondary:hover {
    border-color: #D13380;
    background-color: #D13380;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* ==========================================================================
   Vertical Social Bar (Fixed relative to section)
   ========================================================================== */
.hero-slider-social-bar {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
    z-index: 10;
    margin: 0;
    padding: 0;
}

.hero-slider-social-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 34px;
}

.hero-slider-social-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
}

.hero-slider-social-item a:hover {
    color: #D13380;
}

.hero-slider-social-item a i,
.hero-slider-social-item a svg {
    font-size: 16px;
    line-height: 1;
    fill: currentColor;
    color: inherit;
    width: 16px;
    height: 16px;
    margin-bottom: 8px;
    display: block;
    transition: transform 0.25s ease;
}

.hero-slider-social-item a:hover i,
.hero-slider-social-item a:hover svg {
    transform: scale(1.15);
}

.hero-slider-social-item a span {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    line-height: 24px;
    color: inherit;
    writing-mode: vertical-lr;
    display: block;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Pagination Dots (Custom Square/Box Style)
   ========================================================================== */
.hero-slider-pagination {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 35px;
    z-index: 15;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: auto !important;
}

.hero-slider-pagination .swiper-pagination-bullet {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: transparent;
    border: 2px solid #ffffff;
    border-radius: 0px;
    cursor: pointer;
    margin: 0 !important;
    opacity: 0.85;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.hero-slider-pagination .swiper-pagination-bullet:hover {
    border-color: #D13380;
    opacity: 1;
    transform: scale(1.15);
}

.hero-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: #D13380;
    background: transparent;
    box-shadow: inset 0 0 0 2px #D13380;
    opacity: 1;
    transform: scale(1.1);
}

/* ==========================================================================
   Navigation Arrows
   ========================================================================== */
.hero-slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 15;
    width: 48px;
    height: 48px;
    background-color: rgba(30, 30, 47, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0px;
    outline: none;
}

.hero-slider-nav-btn:hover {
    background-color: #D13380;
    border-color: #D13380;
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.hero-slider-nav-btn svg,
.hero-slider-nav-btn i {
    width: 18px;
    height: 18px;
    fill: currentColor;
    font-size: 18px;
}

.hero-slider-prev-btn {
    left: 25px;
}

.hero-slider-next-btn {
    right: 25px;
}

/* ==========================================================================
   Slide Animations (Entrance when slide becomes active)
   ========================================================================== */
.swiper-slide-active .hero-slide-subtitle {
    animation: heroFadeInUp 0.6s ease 0.1s both;
}

.swiper-slide-active .hero-slide-title {
    animation: heroFadeInUp 0.7s ease 0.25s both;
}

.swiper-slide-active .hero-slide-info-row {
    animation: heroFadeInUp 0.8s ease 0.4s both;
}

.swiper-slide-active .hero-slide-buttons {
    animation: heroFadeInUp 0.8s ease 0.55s both;
}

@keyframes heroFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(28px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1200px) {
    .hero-slide-container {
        padding-left: 110px;
        padding-right: 40px;
    }
    .hero-slide-title {
        font-size: 54px;
    }
}

@media (max-width: 1024px) {
    .hero-slider-social-bar {
        display: none;
    }
    .hero-slide-container {
        padding: 100px 30px 90px 30px;
    }
    .hero-slide-item {
        min-height: 580px;
    }
    .hero-slide-title {
        font-size: 46px;
    }
    .hero-slide-info-row {
        gap: 30px;
    }
    .hero-slider-prev-btn {
        left: 15px;
    }
    .hero-slider-next-btn {
        right: 15px;
    }
}

@media (max-width: 767px) {
    .hero-slide-item {
        min-height: 520px;
    }
    .hero-slide-container {
        padding: 70px 20px 75px 20px;
    }
    .hero-slide-title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 24px;
    }
    .hero-slide-subtitle {
        font-size: 12px;
        padding: 4px 12px;
        margin-bottom: 15px;
    }
    .hero-slide-info-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-bottom: 28px;
    }
    .hero-info-icon {
        font-size: 26px;
    }
    .hero-info-icon svg {
        width: 26px;
        height: 26px;
    }
    .hero-info-value,
    .hero-info-value a {
        font-size: 15px;
    }
    .hero-slide-btn-primary,
    .hero-slide-btn-secondary {
        padding: 12px 26px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }
    .hero-slide-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    .hero-slider-nav-btn {
        display: none;
    }
    .hero-slider-pagination {
        bottom: 20px;
    }
}
