/* ----- SECTION 1 LAYOUT ----- */
.section-1 {
    padding: 50px 20px;
}

    .section-1 h2 {
        text-align: center;
        margin-bottom: 30px;
        font-size: 2rem;
        text-transform: uppercase;
    }

/* ----- SECTION 2 LAYOUT ----- */
.section-2 {
    padding: 50px 20px;
    background: rgba(0, 0, 0, 0.6);
}

/* ----- SECTION 6 LAYOUT ----- */
.section-6 {
    padding: 50px 20px;
    background: rgba(0, 0, 0, 0.6);
}

    .section-6 h2 {
        text-align: center;
        margin-bottom: 30px;
        font-size: 2rem;
        text-transform: uppercase;
    }

/* Hero section styles */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-body-color);
    text-align: center;
}

    .hero .Hero-title-text {
        -webkit-text-stroke-width: 0px;
        font-size: 100px;
        line-height: 1em;
    }

    /* Video background */
    .hero video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -1;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }

.video-section {
    background-color: #000;
}

.video-bg {
    filter: brightness(60%) contrast(110%);
}

.overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 20%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
}

.text-white-75 {
    color: rgba(255, 255, 255, 0.85);
}

.btn-custom,
.hover-glow {
    transition: all 0.3s ease;
}

    .hover-glow:hover {
        box-shadow: 0 0 20px rgba(255,255,255,0.5);
        transform: scale(1.05);
    }

.AllProducts {
    position: relative;
    overflow: hidden;
}

    .AllProducts .overlay {
        background: rgba(255, 255, 255, 0.6);
        z-index: 1;
    }

    .AllProducts .container {
        z-index: 2;
        position: relative;
    }

.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    }

.hover-glow {
    transition: all 0.3s ease;
}

    .hover-glow:hover {
        box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
        transform: scale(1.03);
    }
/* Gradient text for emphasis */
/* Custom circle cursor */
/* .cursor {
     width: 30px;
     height: 30px;
     border: 2px solid white;
     border-radius: 50%;
     position: fixed;
     pointer-events: none;
     transform: translate(-50%, -50%);
     mix-blend-mode: difference;
     z-index: 9999;
     transition: transform 0.1s ease;
 } */

/* Custom Cursor */
/* .custom-cursor {
     position: fixed;
     top: 0;
     left: 0;
     width: 25px;
     height: 25px;
     border: 2px solid white;
     border-radius: 50%;
     pointer-events: none;
     transform: translate(-50%, -50%);
     mix-blend-mode: difference;
     z-index: 9999;
     transition: transform 0.1s ease;
 } */
/* Custom filled inverted circle cursor */
