*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: Arial;
}
.header{
    background: radial-gradient(#fff,#ffd6d6);
}
.header .row{
    margin-top: 70px;
}

.nav-logo{
    width: 125px;
    transition: transform 0.3s ease;
}
.nav-logo:hover {
  transform: scale(1.05);
}
.navber{
    display:flex;
    align-items:center;
    padding:20px;
}
nav{
    flex:1;
    text-align: right;
}
nav ul{
    display: inline-block;
    list-style-type: none;
}
nav ul li{
    display:inline-block;
    margin-right: 20px;
}
nav ul li a{
   transition: color 0.3s ease; 
}
nav ul li a:hover {
  color: #ff6f00;
}


a{
    text-decoration: none;
    color:#555;
}
p{
    color:#555;
}
.container {
    max-width:1300px;
    margin:auto;
    padding-left:25px;
    padding-right: 25px;

}
.row{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    justify-content: space-around;
}
.col-2{
    flex-basis: 50%;
    min-width: 300px;;
}
.col-2 img{
    max-width: 80%;
    padding: 40px 0;
    animation: slideInRight 1s ease;
    transition: transform 0.3s ease;
}
/* Hover effect */
.col-2 img:hover {
  transform: scale(1.05);
}
.col-2 h1{
    font-size: 50px;
    line-height: 60px;
    margin: 25px 0;
    animation: slideInLeft 1s ease;
}
/* ...existing code... */
.bth {
    display: inline-block;
    background: #ff523b;
    color: #fff;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 30px;
    transition: background 0.3s;
    font-size: 18px;
    cursor: pointer;
    border: none;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
}
.bth:hover {
    background: #0244fab3;
}
/* ...existing code... */
.categories{
    margin:70px 0;
    

}
.col-3{
    flex-basis: 30%;
    min-width: 250px;
    margin-bottom:30px;
    display: flex;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}
.col-3 img{
    width: 100%;
    transition: transform 0.4s ease;
    border-radius: 12px;
}
.col-3:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgb(237, 8, 8);
}
.col-3:hover img {
  transform: scale(1.05);
}
.small-container{
    max-width: 1080px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}
/* Individual Product Card */
.col-4{
    flex-basis: 25%;
    padding:10px;
    min-width:200px;
    margin-bottom: 50px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}
.col-4:hover{
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(235, 14, 14, 0.304);
}
/* Product Image */
.col-4 img{
    width: 100%;
    
}
.title{
    text-align: center;
    margin: 0 auto 80px;
    position:relative;
    line-height: 60px;
    color:#555;
}
.title::after{
    content: '';
    background: #ff523b;
    width:80px;
    height:5px;
    border-radius: 5px;
    position: absolute;
    bottom:0;
    left:50%;
    transform: translateX(-50%);
}
h4{
    color:#555;
    font-weight: normal;
}
.col-4 p{
    font-size: 14px;
}
.rating {
    color: #ff523b;
}
/**----------- offer -----------**/

.offer{
    background: radial-gradient(#fff,#ffd6d6);
    margin-top: 80px;
    padding: 30px 0;
}
.col-2 .offer-img{
    padding:50px;
}
small{
    color:#555;
}
/**----------- testimonial -----------**/
.testimonial{
    padding-top: 100px;

}
.testimonial .col-4{
    text-align: center;
    padding: 40px 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1 );
    cursor:pointer;
    transition: transform 0.5s;
}
.testimonial .col-4 img{
    width: 50px;
    margin-top: 20px;
    border-radius: 50%;

}
.testimonial .col-4:hover{
    transform: translateY(-10px);
}
.fa-solid.fa-quote-left {
    font-size: 34px;
    color: #ff523b;
}
.col-4ip{
    font-size: 12px;
    margin: 12px 0;
    color:#777;
}
.testimonial .col-4 h3{
    font-weight: 600;
    color: #555;
    font-size: 16px;

}
/**----------- brands -----------**/
.brands{
    margin: 100px auto;
}
.col-5{
    width: 160px;
}
.col-5 img{
    width: 100%;
    cursor: pointer;
    filter: grayscale(100%);
}
.col-5 img:hover{
    filter: grayscale(0);

}
/**----------- Footer -----------**/
.footer{
    background: #000;
    color:#8a8a8a;
    font-size:14px;
    padding:60px 0 20px;
}
.footer p{
    color:#8a8a8a;
}
.footer h3{
    color:#fff;
    margin-bottom:20px;
}
.footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4{
    min-width: 250px;
    margin-bottom: 20px;
}
.footer-col-1{
    flex-basis: 30%;
}
.footer-col-2{
    flex: 1;
    text-align:center;
}
.footer-col-2 img{
    width:180px;
    margin-bottom: 20px;
}
.footer-col-3, .footer-col-4{
    flex-basis: 12%;
    text-align: center;
}
.footer-col-4 a{
    color: #8a8a8a;
}

/**----------- Footer-col-4 animation  -----------**/

.footer-col-4 ul li:nth-child(1) { animation-delay: 0.2s; }
.footer-col-4 ul li:nth-child(2) { animation-delay: 0.4s; }
.footer-col-4 ul li:nth-child(3) { animation-delay: 0.6s; }
.footer-col-4 ul li:nth-child(4) { animation-delay: 0.8s; }

.footer-col-4 ul li a {
  text-decoration: none;
  color: #555;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.footer-col-4 ul li a:hover {
  color: #ff6f00;
  transform: translateX(5px);
}

.footer-col-4 ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background-color: #ff6f00;
  transition: width 0.3s ease;
}

.footer-col-4 ul li a:hover::after {
  width: 100%;
}



ul{
    list-style-type: none;
}
.app-logo{
    margin-top: 20px;
}
.app-logo a {
  display: inline-block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.app-logo img{
    width:140px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.app-logo a:hover {
  transform: translateY(-5px);
} 
.app-logo a:hover img {
  box-shadow: 0 8px 20px rgb(245, 6, 6);
  transform: scale(1.05);
}
.footer hr{
    border:none;
    background: #f6f4f4;
    height:1px;
    margin: 20px 0;
}
.copyright{
    text-align:center;
}
.menu-icon{
    width: 28px;
    margin-left: 20px;
    display: none;
}
/**----------- media query for menu -----------**/
@media only screen and (max-width:800px){

    nav ul{
        position: absolute;
        top:70px;
        left:0;
        background: #333;
        width:100%;
        overflow: hidden;
        transition: max-height 0.5s;
    }
    nav ul li{
        display:block;
        margin-right: 50px;
        margin-top: 10px;
        margin-bottom: 10px;

    }
    nav ul li a{
        color:#fff;
    }
    .menu-icon{
        display: block;
        cursor: pointer;

    }

}
/**----------- media query less than 768 screen size -----------**/
@media (max-width: 768px) {
  .row {
    flex-direction: column;
    align-items: center;
  }

  .col-3 {
    max-width: 90%;
  }
}




/**----------- media query less than 600 screen size -----------**/
@media only screen and (max-width:600px){
    .row{
        text-align: center;
    }
    .col-2, .col-3 , .col-4{
        flex-basis: 100%;
    }

}