﻿.custom-footer {
    background-color: #011C2A; /* Dark blue background */
    color: #ffffff;
    font-size: 17px;
}

    .custom-footer .footer-title {
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .custom-footer .footer-links {
        list-style: none;
        padding-left: 0;
    }

        .custom-footer .footer-links li {
            margin-bottom: 8px;
        }

        .custom-footer .footer-links a {
            color: #ffffff;
            text-decoration: none;
        }

            .custom-footer .footer-links a:hover {
                text-decoration: underline;
                color: #00BFFF; /* Optional hover color */
            }

    .custom-footer .social-icons a {
        display: inline-block;
        width: 36px;
        height: 36px;
        margin-right: 10px;
        text-align: center;
        line-height: 36px;
        background-color: #fff;
        border-radius: 50%;
        color: #011C2A;
        font-size: 17px;
        transition: background-color 0.3s;
    }

        .custom-footer .social-icons a:hover {
            background-color: #00BFFF;
            color: #fff;
        }

    .custom-footer .subscribe-form .btn-subscribe {
        background-color: #007BFF;
        color: #fff;
        border: none;
        width: 100%;
        padding: 8px 0;
        font-weight: 500;
    }

.btn-subscribe:hover {
    color: #011C2A !important;
}

.custom-footer .footer-subscribe-text {
    font-size: 17px;
    margin-bottom: 10px;
    color: #ccc;
}

.footer-bottom {
    border-top: 1px solid #1e2f3d;
    font-size: 17px;
    color: #ccc;
}

.icons li {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border-radius: 50%;
    border: 1px solid;
    transition: 0.6s;
}

    .icons li:hover {
        transform: rotate(360deg);
    }

        .icons li:hover i {
            color: #f3f3f3;
        }

    .icons li:nth-of-type(1) {
        color: #3b5999;
    }

.icon1 {
    color: #3b5999;
}

    .icon1:hover {
        color: #f3f3f3;
    }

.icons li:nth-of-type(1):hover {
    background-color: #3b5999;
    color: #f3f3f3;
}

.icons li:nth-of-type(2) {
    color: #ea4c89;
}

.icon2 {
    color: #ea4c89;
}

    .icon2:hover {
        color: #f3f3f3;
    }

.icons li:nth-of-type(2):hover {
    background-color: #ea4c89;
    color: #f3f3f3;
}

.icons li:nth-of-type(3) {
    color: #1769ff;
}

.icon3 {
    color: #1769ff;
}

    .icon3:hover {
        color: #f3f3f3;
    }

.icons li:nth-of-type(3):hover {
    background-color: #1769ff;
    color: #f3f3f3;
}

.icons li:nth-of-type(4) {
    color: #dd4b39;
}

.icon4 {
    color: #dd4b39;
}

    .icon4:hover {
        color: #f3f3f3;
    }

.icons li:nth-of-type(4):hover {
    background-color: #dd4b39;
    color: #f3f3f3;
}

.link {
    text-decoration: none;
    color: white !important;
    cursor: pointer;
}

#emailInput {
    background-color: white !important;
    color: black;
}

    #emailInput:focus {
        background-color: white !important;
        color: black;
        border-color: #ccc;
        box-shadow: none;
    }

#subscribeBtn {
    background-color: #F39100;
    color: white;
    border: none;
    transition: background-color 0.3s ease;
}

    #subscribeBtn:hover {
        background-color: white;
    }

    #subscribeBtn:active {
        background-color: #212529;
    }
