:root {
    --footer-bg: #1a1a2e;
    --footer-text: #a9a9d1;
    --footer-heading: #ffffff;
    --footer-link-hover: #ffc107;
    --footer-border: #2a2a4a;
}

.footer {
    background-color: var(--footer-bg);
    padding: 80px 0 30px;
    position: relative;
    font-family: 'Helvetica', sans-serif;
    color: var(--footer-text);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 40%),
                      radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.footer-logo-col img {
    max-width: 180px;
    margin-bottom: 20px;
}

.footer-logo-col .blue-light {
    color: var(--footer-text);
    max-width: 300px;
}

.footer .callus {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--footer-text);
}

.footer .callus a {
    color: var(--footer-link-hover);
    transition: all 0.3s ease;
}

.footer .callus a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer h5 {
    color: var(--footer-heading);
    font-weight: 600;
    margin-bottom: 25px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--footer-link-hover);
}

.footer ul {
    padding-left: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer ul li a {
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.footer ul li a:hover {
    color: var(--footer-link-hover);
    padding-left: 5px;
}

.footer .social-icons li a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer .social-icons i {
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.footer .subscribe p {
    color: var(--footer-text);
}

.footer .subscribe .form-control {
    background-color: #2a2a4a;
    border: 1px solid #404066;
    color: var(--white);
    border-radius: 8px !important;
    padding: 12px 15px;
    height: 50px;
    width: 100%;
    margin-bottom: 20px;
}

.footer .subscribe .form-control::placeholder {
    color: #8c8ca6;
}



.footer .copyrights {
    border-top: 1px solid var(--footer-border);
    padding-top: 30px;
    margin-top: 50px;
    font-size: 0.9rem;
    color: var(--footer-text);
}

.footer .copyrights a {
    color: var(--footer-text);
    transition: all 0.3s ease;
}

.footer .copyrights a:hover {
    color: var(--footer-link-hover);
}

@media (max-width: 767px) {
    .footer-logo-col {
        margin-bottom: 30px;
    }
    .footer .col-xxl-2, .footer .col-xxl-4 {
        margin-bottom: 30px;
    }
}

