*{
    margin: 0;
    font-family: arial;
    border: border-box;
}
body{
    background-color: lightgray;
    color: black;
}
/*                  ----------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----------                      */

.img img{
    margin-top: 22px;
    padding-bottom: 10px;
    width: 100%;
}
.box{
    display: flex;
    padding: 0px 20px;
}
.box1 img{
    width: 35px;
}
.box2{
    width: 90%;
}
.box2 a{
    text-decoration: none;
    color: black;
    padding: 0px 4px;
}

.box3 img{
    width: 40px;
}
.box4 a{
    text-decoration: none;
    color: black;
    padding: 0px 4px;
}
.box2 a:hover{
    color: #e74c3c;
    font-size: 17px;
    padding: 0px 4px;
}
.box4 a:hover{
    color: #e74c3c;
    font-size: 17px;
    padding: 0px 4px;
}
h1{
    padding: 0px 26px;
    margin-top: 6%;
    font-size: 4vh;
    font-family: PT Sans Arial Narrow;
}
h3{
    font-size: 3vh;
    color: #e74c3c;
    margin-top: 0%;
    padding: 0px 28px;
    font-family: Academy Engraved LET;
}
.description ul{
    list-style: none;
}
.description li{
    padding: 12px 0px;
    font-size: 3vh;
    margin-left: -12px;
}


/** -------------------------------------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--------------------------------------- **/