/* ========================================
   DEFAULT SLIDER CSS
   Matches slider.php styling exactly
   ======================================== */

/* Default Slider Container */
.default-slider-8473 {
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

/* Hero Section */
.default-slider-8473 .hero {
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
}

/* Hero Media */
.default-slider-8473 .hero-media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

/* Gradient Overlay - Dynamic from admin settings */
/* For multiple slides */
.default-slider-8473 .hero-slide-8473::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    background: var(--slider-gradient, transparent);
}

.default-slider-8473 .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none;
    background: var(--slider-gradient, transparent);
}

/* Hero Content - Matching slider.php exactly */
.default-slider-8473 .hero-content {
    position: absolute;
    top: 50%;
    left: 100px;
    transform: translateY(-50%);
    width: 400px;
    text-align: left;
    color: #FFFFFF;
    z-index: 2;
}


.default-slider-8473 .hero-content-bg {
    background: rgba(0,0,0,0.6);  /* was 0.7 */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(255,193,7,0.3);
}

/* Content styling matching slider.php exactly */
.default-slider-8473 .hero-content .title {
    text-transform: uppercase;
    color: #14FF72; /* solid green (no alpha) */
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0;
    text-shadow: 0 3px 12px rgba(0, 0, 0, 0.65);
}

.default-slider-8473 .hero-content .name {
    text-transform: uppercase;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
}

.default-slider-8473 .hero-content .description {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    margin-left: 5px;
    line-height: 1.6;
    text-transform: none;
    font-weight: 500;  /* was normal */
}

.default-slider-8473 .hero-content .des {
    margin-top: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    margin-left: 5px;
    line-height: 1.6;
    font-weight: 500;  /* add this */
}
.default-slider-8473 .hero-content .btn {
    margin-left: 5px;
}

.default-slider-8473 .hero-content .btn button,
.default-slider-8473 .hero-content .btn a {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border: 2px solid #FFFFFF;
    background: transparent;
    color: #FFFFFF;
    margin-right: 15px;
    transition: .3s;
    text-decoration: none;
    display: inline-block;
}

.default-slider-8473 .hero-content .btn button:nth-child(2) {
    background: transparent;
    color: #14FF72;
    border: 2px solid #FFFFFF;
}

.default-slider-8473 .hero-content .btn button:nth-child(2):hover {
    background: #14FF72;
    color: #FFFFFF;
    border-color: #14FF72;
}

/* Remove old button hover styles */

/* Hero Slider */
.default-slider-8473 .hero-slider-8473 {
    width: 100%;
    height: 100vh;
    position: relative;
    margin: 0;
    padding: 0;
    left: 0;
    right: 0;
}

.default-slider-8473 .hero-slide-8473 {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.default-slider-8473 .hero-slide-8473[style*="display: block"] {
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1;
}

.default-slider-8473 .hero-slide-8473[style*="display: none"] {
    opacity: 0 !important;
    visibility: hidden !important;
    z-index: 0;
}

/* Navigation - Matching slider.php exactly */
.default-slider-8473 .hero-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 20;
}

/* Navigation arrows - matching slider.php positioning */
.default-slider-8473 .arrows {
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.default-slider-8473 .arrows button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #14FF72; /* solid green */
    color: #FFFFFF;
    border: none;
    outline: none;
    font-size: 16px;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
    pointer-events: auto;
    z-index: 1000;
    position: relative;
}

.default-slider-8473 .arrows button:hover {
    background: #FFFFFF;
    color: #000000;
}

.default-slider-8473 .hero-nav-dot-8473 {
    width: 15px;
    height: 15px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 0 5px rgba(255,193,7,0.3);
}

.default-slider-8473 .hero-nav-dot-8473:hover {
    background: #ffc107;
    transform: scale(1.2);
}

/* Responsive Design - Matching slider.php exactly */
@media screen and (max-width: 999px) {
    .default-slider-8473 .hero-content {
        left: 50px;
    }
    .default-slider-8473 .hero-content .title,
    .default-slider-8473 .hero-content .name {
        font-size: 70px !important;
    }
    .default-slider-8473 .hero-content .des {
        font-size: 16px;
    }
}

@media screen and (max-width: 690px) {
    .default-slider-8473 .hero-content {
        top: 60%;
    }
    .default-slider-8473 .hero-content .title,
    .default-slider-8473 .hero-content .name {
        font-size: 45px !important;
    }
    .default-slider-8473 .hero-content .btn button {
        padding: 10px 15px;
        font-size: 14px !important;
    }
}

@media screen and (max-width: 450px) {
    .default-slider-8473 .hero-content {
        width: 300px;
        left: 20px;
    }
}


