

body{
font-family:Arial, sans-serif;
line-height:1.6;
}

.hero{
background:#0f172a;
padding:80px 0;
color:white;
text-align:center;
}

.product-img{
max-width:100%;
border-radius:8px;
object-fit:cover;
height:300px;
}

.section-padding{
padding:60px 0;
}

.btn-premium{
background:#007bff;
color:#fff;
border-radius:50px;
padding:12px 30px;
text-decoration:none;
}

.btn-premium:hover{
background:#0056b3;
color:#fff;
}

.gallery img{
height:250px;
object-fit:cover;
border-radius:8px;
transition:0.3s;
}

.gallery img:hover{
transform:scale(1.05);
}
.gallery-img{
    width:100%;
    height:250px;
    object-fit:cover;
    border-radius:6px;
}
.copyright{
    display: flex;
  justify-content: center; /* centers text horizontally */
  width: 100%;
  color:aliceblue;
  background-color: #0f172a;
   padding: 20px 0;   /* increase top & bottom space */
  padding: 40px 0;
}

.product-card img{
height:200px;
object-fit:cover;
}

.product-card{
transition:0.3s;
border:0;
box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

.product-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 30px rgba(0,0,0,0.15);
}
/*slider product*/
.product-card img{
height:200px;
object-fit:cover;
}

.product-card{
border:0;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.product-card:hover{
transform:translateY(-6px);
box-shadow:0 15px 35px rgba(0,0,0,0.15);
}
/**/
.product-card{
    border: none;
    border-radius: 12px;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.product-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.product-card img{
    height: 200px;
    object-fit: cover;
}

