*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}
.navbar {
    display: flex;
    align-items: center;
    padding: 1px;   /*1 changes 20px to 1px*/
}

nav {
    flex: 1;
    text-align: right;
}

nav ul {
    display: inline-block;
    list-style-type: none;
}

nav li {
    display: inline-block;
    margin-right: 20px;
}

a {
    text-decoration: none;
    color: #555;
}

p {
    color: #555;
}

/* Container for Responsive Layout */
.container {
    max-width: 1300px;
    margin: auto;
    padding-left: 25px;
    padding-right: 25px;
}

/* Row Flexbox for Layout */
.row,.row2,.row3{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between; /* Aligns content to the left */
}

/* Column Styling */
.col-2,.col-5,.col-6 {
    flex-basis: 50%; /* Takes 50% of the row */
    min-width: 300px;
    text-align: left; /* Aligns text content to the left */
}

.col-2 ,.col-5,.col-6 img {
    max-width: 50%;
    padding: 50px 0;
}

.col-2, .col-5,.col-6 h1 {
    margin: 25px 0;
}

/* Button Styling */
.btn {
    display: inline-block;
    background-color: skyblue;
    color: #fff;
    padding: 8px 30px;
    margin: 30px 0;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    transition: background  0.5s;
}
.btn:hover {
    background-color: deepskyblue;
}
.header
{ 
    background:radial-gradient(#fff,#eecfcf) /* for background colour*/
   
}
.header .row{
    margin-top:70px ;
}
.categories{
    margin:70px 0;

}
.col-3{
    flex-basis:30%;
    min-width:250px;
    margin-bottom:30px;
}

.col-3 img{
    width:100%;
}
.smallcontainer{
    max-width:1080px;
    margin:auto;
    padding-left:25px;
    padding-right:25px; 

}

/*---------------------footer----------------------- */
.footer{
    background:black;
    color:#8a8a8a;
    font-size:14px;
    padding:1px 0 2px;
}

.footer h3{
    color:#fff;
    margin-bottom: 20px;
}
ul{
    list-style-type:none;
}
.footer hr{
    border:none;
    background:#b5b5b5;
    height:1px;
    margin:20px 0;
    
}
/* featured products*/
.categories{
    margin:70px 0 ;
}
.col-3,.col-5,.col-6{
    flex-basis: 30%;
    min-width:250px;
    margin-bottom:30px;
    transition: transform 0.5s;
}
.col-3,.col-5,.col-6{
    width:100%;
}
.col-3:hover{
    transform:translateY(-5px);
}
.col-5:hover{
    transform:translateY(-5px);
}
.col-6:hover{
    transform:translateY(-5px);
}
.row3 img{
    width:100%;
}
.small-container{
    max-width:1080px;
    margin:auto;
    padding-left:25px;
    padding-right:25px;
}
.col-4,.col-5,.col-6{
    flex-basis:25%;
    padding:10px;
    min-width:200px;
    margin-bottom: 50px;
    transition: transform 0.5s;
}
.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 .fa{
    color:#ff523b;
}
.col-4:hover{
    transform:translateY(-5px);
}
.brands{
    margin:100px auto;
}
.col-5{
    width:160px;
}
.col-5 img{
    width:100%;
    cursor:pointer;
    
}


.menu-icon{
    width:28px;
    margin-left: 20px;
    display: none;
}

/*for media 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  only screen and (max-width:600px)
{
    .row{
        text-align: center;
    }
    .col-2,.col-3,.col-4{
        flex-basis:100%;
    }
     
}


