*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
}

body{
    background:#f3f3f3;
}

/* NAVBAR */

.navbar{
    background:#08142c;
    color:white;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 80px;
}

.logo{
    font-size:28px;
    font-weight:700;
}

.logo i{
    color:#3d8bff;
}

nav a{
    color:white;
    text-decoration:none;
    margin-left:30px;
    font-size:15px;
}

nav a:hover{
    color:#3d8bff;
}

/* HERO */
.hero{
    position:relative;
    height:500px;
    overflow:hidden;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:opacity 1.2s ease-in-out;
}

.slide.active{
    opacity:1;
}

.overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    color:white;
    text-align:center;
    animation:fadeUp 1s ease;
}

.overlay h1{
    font-size:60px;
    margin-bottom:15px;
}

.overlay p{
    font-size:22px;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:rgba(255,255,255,.3);
    color:white;
    font-size:24px;
    cursor:pointer;
    z-index:10;
    transition:.3s;
}

.arrow:hover{
    background:white;
    color:black;
}

.left{left:20px;}
.right{right:20px;}

.dots{
    position:absolute;
    bottom:30px;
    width:100%;
    text-align:center;
    z-index:10;
}

.dots span{
    width:12px;
    height:12px;
    display:inline-block;
    border-radius:50%;
    background:#ccc;
    margin:0 6px;
    cursor:pointer;
}

.dots .active{
    width:30px;
    border-radius:10px;
    background:white;
}

/* FEATURES */

.features{
    padding:90px 80px;
    text-align:center;
}

.features h2{
    font-size:40px;
    margin-bottom:70px;
}

.feature-boxes{
    display:flex;
    justify-content:space-around;
}

.box i{
    font-size:60px;
    margin-bottom:20px;
}

.box:nth-child(1) i{color:#3d8bff;}
.box:nth-child(2) i{color:#a855f7;}
.box:nth-child(3) i{color:#00c853;}

.box h3{
    margin-bottom:12px;
}

.box p{
    color:#555;
}

/* CTA */

.cta{
    background:linear-gradient(90deg,#2563eb,#b517ff);
    color:white;
    text-align:center;
    padding:90px;
}

.cta h2{
    font-size:45px;
}

.cta p{
    margin:18px 0;
}

.cta button{
    padding:16px 34px;
    border:none;
    border-radius:8px;
    cursor:pointer;
    color:#2563eb;
    font-weight:bold;
}

/* SHOP */

.shop{
    padding:80px;
}

.shop-header{
    display:flex;
    justify-content:space-between;
    margin-bottom:40px;
}

.add-btn{
    background:#2563eb;
    color:white;
    border:none;
    padding:15px 25px;
    border-radius:10px;
    cursor:pointer;
}

.products{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.product-card{
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 4px 15px rgba(0,0,0,.08);
}

.product-card .img{
    height:220px;
    background:#e8e8e8;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:70px;
    color:#bbb;
}

.product-card h3{
    padding:18px 18px 8px;
}

.product-card p{
    padding:0 18px;
    color:#666;
}

.product-card span{
    display:block;
    padding:20px 18px;
    font-size:28px;
    color:#2563eb;
}

/* GALLERY */

.gallery{
    padding:80px;
    text-align:center;
}

.gallery h2{
    font-size:42px;
}

.gallery p{
    margin:15px 0 40px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
}

.gallery-grid div{
    height:220px;
    border-radius:14px;
}

.g1{background:linear-gradient(45deg,#3b82f6,#2563eb);}
.g2{background:linear-gradient(45deg,#a855f7,#d946ef);}
.g3{background:#00c853;}
.g4{background:linear-gradient(45deg,#ff6b6b,#ff0000);}
.g5{background:linear-gradient(45deg,#ffc107,#ff6f00);}
.g6{background:linear-gradient(45deg,#ec4899,#e6007e);}
.g7{background:linear-gradient(45deg,#818cf8,#4f46e5);}
.g8{background:linear-gradient(45deg,#14b8a6,#0f766e);}
.g9{background:linear-gradient(45deg,#06b6d4,#0891b2);}

/* FOOTER */

footer{
    background:#08142c;
    color:white;
    text-align:center;
    padding:25px;
}