/* --- JOKER SLIDER: FIXED 16:9 RATIO --- */
.joker-slider {
    position: relative;
    width: 100%;
    /* Use aspect-ratio instead of 80vh to prevent section overlapping */
    aspect-ratio: 16 / 9; 
    background: #000;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.joker-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.joker-slide.active {
    opacity: 1;
    z-index: 2;
}

.joker-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps image proportions correct */
}

.joker-slide-content {
    position: absolute;
    bottom: 15%;
    left: 5%;
    z-index: 10;
    color: #ffffff;
    max-width: 60%;
}

/* --- SLIDER NAVIGATION ARROWS --- */
.joker-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 30; /* Higher than slides */
    pointer-events: none; 
}

.nav-arrow {
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    padding: 20px;
    cursor: pointer;
    pointer-events: auto; /* Enables clicking */
    font-size: 30px;
    transition: background 0.3s;
}

.nav-arrow:hover {
    background: rgba(0, 0, 0, 0.7);
}

/* --- SLIDER DOTS NAVIGATION --- */
.joker-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 40;
}

.joker-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.joker-dot.active {
    background: #fff;
}

/* --- RESPONSIVE OPTIMIZATION --- */
@media (max-width: 768px) {
    .joker-nav {
        display: none !important; /* Hide arrows on mobile/tablets */
    }
    .joker-slider {
        aspect-ratio: 4 / 3; /* Slightly taller for mobile screens */
    }
    .joker-slide-content h2 {
        font-size: 1.2rem;
    }
}
/* --- SECTION ABOUT LAYOUT FIX --- */
.section-about {
    padding: 80px 0;
    background: #000;
    color: #fff;
}

.joker-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    gap: 50px;
    padding: 0 20px;
}

.col-left, .col-right {
    flex: 1;
}

.neon-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.5));
}

/* Tablet/Mobile Fix */
@media (max-width: 991px) {
    .joker-container {
        flex-direction: column;
        text-align: center;
    }
}
/* --- SECTION 1: DETAILED EFFECTS --- */

/* 1. Neon Glow for Logo Wrapper */
.glow-wrap {
    position: relative;
    padding: 10px;
    background: rgba(0, 255, 255, 0.05);
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.2); /* Cyan Glow */
    border: 1px solid rgba(0, 255, 255, 0.1);
}

/* 2. Gradient Heading */
.gradient-text {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(90deg, #00f2fe 0%, #4facfe 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

/* 3. Glassmorphism Icon Cards */
.icon-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.glass-icon-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03); /* Translucent background */
    backdrop-filter: blur(10px); /* The "Glass" effect */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.glass-icon-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(10px); /* Subtle slide on hover */
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* 4. Neon Icons Styling */
.neon-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 8px rgba(0, 255, 255, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

.glass-icon-card p {
    margin: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}
/* ---END  SECTION 1: DETAILED EFFECTS --- */
