/*** Footer Start ***/

footer 

{

background-color: #333; /* Footer background color */
color: #fff; /* Footer text color */
padding: 20px;

}

.footer-address 

{

text-align: left;

}

.footer-phone 

{

text-align: center;

}

.footer-social 

{

text-align: right;

}

.social-icon 

{

display: inline-flex;
align-items: center;
justify-content: center;
width: 40px;
height: 40px;
border-radius: 50%;
background-color: #fff;
color: #333;
margin: 5px;
transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;

}

.social-icon.facebook 

{

background-color: #3b5998; /* Facebook color */

}

.social-icon.twitter 

{

background-color: #1da1f2; /* Twitter color */

}

.social-icon.instagram 

{

background-color: #c32aa3; /* Instagram color */

}

.social-icon.youtube 

{

background-color: #CD201F; /* Instagram color */

}

/* Add more custom colors for other social media icons as needed */

.social-icon:hover 

{

background-color: #333;
color: #fff;

}

/*** Footer End ***/