:root {
    --theme-color: #0d5ef4;
    --theme-color2: #f20f10;
    --title-color: #0f2239;
    --body-color: #4d5765;
    --smoke-color: #f3f7fb;
    --black-color: #000;
    --white-color: #fff;
    --light-color: #72849b;
    --yellow-color: #ffb539;
    --success-color: #28a745;
    --error-color: #dc3545;
    --border-color: #ecf1f9;
    --title-font: 'Jost', sans-serif;
    --body-font: 'Roboto', sans-serif;
    --icon-font: "Font Awesome 5 Free";
    --main-container: 1380px;
    --container-gutters: 24px;
    --section-space: 70px;
    --section-space-mobile: 50px;
    --section-title-space: 30px;
    --ripple-ani-duration: 5s;
    --ripple-ani-duration: 5s;
    --font-large: 40px;
}

.footer-section {
    background-color: #000;
}
.newsletter-box .newsletter-content {
    color: #fff;
}
.contact-btn {
    position: relative;
    display: inline-block;
    padding: 10px 28px;
    color: #fff;
    background: linear-gradient(137.02deg, #ef0 1.7%, #1c84a3 86.13%);
    border-radius: 50px;
    border: none;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s ease;
}
.contact-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
   /* Border thickness */
    background: linear-gradient(137.02deg, #ef0 1.7%, #1c84a3 86.13%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}
.contact-btn:hover {
    background: transparent;
}
.contact-btn:hover::before {
    opacity: 1;
}
button.btn.submit-btn {
    background: #0b081c;
    border: 1px solid #000;
    color: #fff;
    padding: 10px 30px;
    position: absolute;
    right: 8px;
}
button.btn.submit-btn:hover {
    background: #fff;
    border: 1px solid #000;
    color: #000;
    padding: 10px 30px;
    position: absolute;
    right: 8px;
}
.social-icons-footer .social-icon {
    width: 45px;
    height: 45px;
    border: 1px solid grey;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: transparent;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease;
    text-decoration: none;
    z-index: 1;
}
.social-icons-footer .social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(137.02deg, #ef0 1.7%, #1c84a3 86.13%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
    border-radius: 50%;
}
.social-icons-footer .social-icon i {
    position: relative;
    z-index: 2;
    font-size: 16px;
    transition: transform 0.3s ease;
}
/* Hover effect */
.social-icons-footer .social-icon:hover {
    transform: scale(1.1);
}
.social-icons-footer .social-icon:hover::before {
    opacity: 1;
}
a.links {
    color: #d0d0d0;
}
a.links:hover {
    background: linear-gradient(137.02deg, #ef0 1.7%, #1c84a3 86.13%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.footer-image {
    z-index: -1;
}
