/* ==== GLOBAL STYLES ==== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #fff;
    color: #000;
}



/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 0;
} */

.hero-content {
    text-align: center;
    z-index: 3;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 700;
}

.hero-content .highlight {
    color: #ff7b00;
}

.hero-content p {
    font-size: 22px;
    margin-top: 10px;
    font-weight: 500;
    color: white;
}

/*<=================== Product Section ===================> */
.product-section {
    background: #fff;
    color: #000;
    padding-top: 50px;
}

/* Our Product Catagories  */

.ProductC-heading {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.slider-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    flex: 0 0 auto;
    width: 180px;
    text-align: center;
    margin: 0 15px;
}

.slide .circle {
    width: 150px;
    height: 150px;
    background-color: #e6e6e6;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    max-width: 100px;
    max-height: 80px;
}

.category-name {
    font-weight: bold;
    margin-top: 10px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: orange;
    border: none;
    color: white;
    font-size: 20px;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
}

.arrow.left {
    left: 0;
}

.arrow.right {
    right: 0;
    background-color: #ddd;
    color: #333;
}

@media screen and (max-width: 768px) {
    .slide {
        width: 140px;
    }

    .slide .circle {
        width: 130px;
        height: 130px;
    }

    .arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* Product Card */

.Product-Card {
    padding-top: 55px;
}

.Product-Card-Heading {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    text-transform: uppercase;

}

.cards {
    display: flex;
    margin-top: 10px;
    gap: 30px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.00));
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(6px) saturate(120%);
    width: 300px;
    box-shadow: 0 1px 5px rgba(2, 6, 23, 0.6);
    transition: transform .45s cubic-bezier(.2, .9, .2, 1), box-shadow .35s;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 6px 18px rgba(2, 6, 23, 0.35);
}

.media {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.2, .9, .2, 1);
}

.card:hover .media img {
    transform: scale(1.08)
}

.content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.name {
    font-size: 16px;
    font-weight: 700;
    color: #000;
}

.rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--muted);
}

.stars {
    color: #fbbf24;
    font-size: 14px;
}

.price {
    margin-top: 6px;
    font-size: 18px;
    font-weight: 800;
    color: #000;
}

/* <=================== Colsed Product Section ===================> */

/* <=================== Banner section ===================> */
/* banner */
.banner {
    position: relative;
    width: 100%;
    height: 78vh;
    /* adjust to taste */
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    margin-top: 50px;
}

/* video covers whole banner */
.banner-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* important */
    z-index: 0;
    transform: scale(1.03);
    /* subtle zoom */
    will-change: transform;
}

/* overlay to help text contrast */
.overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.28) 10%, rgba(0, 0, 0, 0.46) 60%, rgba(0, 0, 0, 0.6) 100%); */
    /* backdrop-filter: blur(0.6px); */
    /* small blur for polish */
}

/* content */
.banner-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    padding: 2rem 1.25rem;
    opacity: 0;
    transform: translateY(18px);
}

.banner.loaded .banner-inner {
    animation: fadeInUp 700ms cubic-bezier(.2, .9, .2, 1) forwards;
}

h1 {
    font-size: clamp(28px, 6vw, 56px);
    line-height: 1.02;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
    color: #fff;
}

p.lead {
    font-size: clamp(15px, 2.1vw, 20px);
    font-weight: 300;
    max-width: 820px;
    margin: 0 auto;
    opacity: 0.95;
    color: #fff;
}

/* small CTA example, optional */
.cta {
    margin-top: 18px;
    display: inline-block;
    padding: 12px 22px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    backdrop-filter: blur(4px);
    transition: transform .18s ease, background .18s ease;
}

.cta:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* responsive fine tuning */
@media (max-width: 720px) {
    .banner {
        height: 62vh;
        min-height: 360px;
    }

    h1 {
        font-size: clamp(22px, 7vw, 34px);
    }

    .banner-inner {
        padding: 1.25rem;
    }
}

@media (max-width: 420px) {
    .banner {
        height: 55vh;
        min-height: 320px;
    }

    p.lead {
        font-size: 14px;
    }

    .cta {
        padding: 10px 16px;
        border-radius: 8px;
    }
}

/* <=================== Colsed Banner section ===================> */

/* <=================== Content Banner section ===================> */
.conten-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 35px;

}

.container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1500px;
    background-color: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.container:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.image-section {
    flex: 1 1 45%;
    background: url("https://images.pexels.com/photos/33582422/pexels-photo-33582422.jpeg") center/cover no-repeat;
    min-height: 350px;
}

.content-section {
    flex: 1 1 55%;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-name {
    color: #f26b0f;
    font-weight: 600;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.heading {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
    margin-bottom: 1.5rem;
}

.content-section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.2rem;
}

.director {
    margin-top: 1rem;
    font-weight: 500;
    color: #333;
}

.subtitle {
    color: #777;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
    }

    .image-section {
        flex: none;
        width: 100%;
        height: 280px;
    }

    .content-section {
        padding: 2rem 1.5rem;
    }

    .heading {
        font-size: 1.6rem;
    }
}

@media (max-width: 600px) {
    body {
        padding: 1rem;
    }

    .container {
        border-radius: 12px;
    }

    .content-section p {
        font-size: 0.95rem;
    }
}

/* <=================== Colsed Content Banner section ===================> */

