*{
    margin: 0;
    font-family: arial;
    border: border-box;
}
body{
    background-color: lightgray;
}
/*                  ----------header start----------                      */
.navbar{
    background-color: #2c3e50;
    color: white;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.nav1 a {
    text-decoration: none;
    color: #ecf0f1;
}
.nav2 a {
    text-decoration: none;
    color: #ecf0f1;
}
.nav3 a {
    text-decoration: none;
    color: #ecf0f1;
}
.navbar a:hover{
    color: #e74c3c;
}
/*                 ---------------------------------------Header End-------------------------------   */
.category img{
    width: 22vw;
    margin: 11px;
    border-color: black;
    border-width: 4px;
    border-style: solid;
}

/**--------------------------------------------- Footer Start----------------------------------------- **/
.footer {
            background-color: #2c3e50;
            color: #ecf0f1;
            padding: 40px 20px;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            border-top: 5px solid #e74c3c;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
            margin: 20px;
        }

        .footer-column h3 {
            color: #e74c3c;
            border-bottom: 2px solid #3498db;
            padding-bottom: 10px;
            font-size: 1.5em;
            margin-bottom: 15px;
        }

        .footer-item {
            display: flex;
            align-items: center;
            margin: 10px 0;
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .footer-item:hover {
            transform: translateX(10px);
            color: #3498db;
        }
        
        .footer-item a {
            color: #ecf0f1;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-item a:hover {
            color: #3498db;
        }

        .footer-item i {
            margin-right: 15px;
            font-size: 1.2em;
            color: #95a5a6;
            transition: color 0.3s ease;
        }
        
        .footer-item:hover i {
            color: #3498db;
        }

        .social-links {
            display: flex;
            align-items: center;
        }

        .social-links a {
            font-size: 1.5em;
            color: #ecf0f1;
            margin-right: 20px;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-links a:hover {
            color: #3498db;
            transform: scale(1.2);
        }

        @media (max-width: 768px) {
            .footer {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

            .footer-column {
                min-width: 90%;
            }
        }
    /** Footer Ends **/