/* Footer Styles */
footer {
    width: 100%;
    background: linear-gradient(to right, #000912, #001f3f);
    color: #fff;
    padding: 80px 0 30px;
    font-size: 14px;
    line-height: 24px;
    position: relative;
    border-top-left-radius: 125px;
}

.row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.col {
    flex-basis: 22%;
    padding: 10px;
}

.col:nth-child(2),
.col:nth-child(3) {
    flex-basis: 15%;
}

.footer-logo {
    width: 195px;
    margin-bottom: 20px;
}

.col h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
    font-size: 18px;
    font-family: inherit;
}

.col h3::after {
    content: '';
    width: 100%;
    height: 5px;
    background: #00b8d4;
    border-radius: 5px;
    position: absolute;
    bottom: -10px;
    left: 0;
}

.email-id {
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
    cursor: pointer;
}

.col ul {
    list-style: none;
    padding: 0;
}

.col ul li {
    margin-bottom: 12px;
}

.col ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s;
}

.col ul li a:hover {
    color: #00b8d4;
}

.col form {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    margin-bottom: 30px;
}

.col form .far,
.col form .fas {
    font-size: 18px;
    margin-right: 10px;
}

.col form input {
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}

.col form button {
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
    color: #fff;
}

.col form button:hover {
    color: #00b8d4;
}

.social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-icons a {
    text-decoration: none;
    display: inline-block;
}

.social-icons a i {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    cursor: pointer;
    transition: all 0.5s;
}

.social-icons a i:hover {
    background: #00b8d4;
    color: #fff;
    transform: translateY(-5px);
}

hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.copyright {
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    footer {
        border-top-left-radius: 50px;
        padding-top: 40px;
    }

    .row {
        flex-direction: column;
        gap: 2rem;
    }

    .col {
        flex-basis: 100%;
        width: 100%;
        padding: 0;
    }

    .col:nth-child(2),
    .col:nth-child(3) {
        flex-basis: 100%;
    }
}