/* Bais reset */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}
body{
    background-color: #f2f2f2;

}
/* footer-styling */
.footer{
    background-color: #0f172a;
    color: #ffffff;  /*background text */
    padding: 40px 20px 20px;
}
.footer-container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}
.footer-section{
    flex: 1;
    min-width: 220px;
}
.footer-section h2,
.footer-section h3{
    margin-bottom: 15px;

}
.footer-section p{
    font-size: 14px;
    line-height: 1.6;
    color: #cbd5f5;
}
/* links */
.footer-section ul{
    list-style: none;
}
.footer-section ul li{
    margin-bottom: 10px;
}
.footer-section a{
    text-decoration: none;
    color: #cbd5f5;
    font-size: 14px;
    transition: color 0.3s ease;
}
.footer-section a:hover{
    color: #38bdf8;
}
/* icon */
.footer-section i{
    margin-right: 8px;
    color: #38bdf8;
}
/* social-media */
.social-links a{
    display: block;
    margin-bottom: 10px;
}
/* footer bottom */
.footer-bottom{
    border-top: 1px solid #334155;
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    font-size: 13px;
    color: #94a3b8;
}
/* Responsive design */
@media (max-width:768px){
    .footer-container{
        flex-direction: column;
        text-align: center;
    }
    .social-links a{
        margin: 0 8px;
    }
}
