.cta-section {
    padding: 120px 0;
    background: #fff;
}

.cta-section .cta-box {
    height: 450px;
    margin: auto;
    background: radial-gradient(circle at top left, #0d3c8d 0%, transparent 45%), linear-gradient(135deg, #041d49, #062e82);
    border-radius: 30px;
    padding: 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(6, 46, 130, .18);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* glow */

.cta-section .cta-box::before {
    content: "";
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    position: absolute;
    top: -180px;
    left: -150px;
}

.cta-section .cta-box::after {
    content: "";
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    position: absolute;
    bottom: -140px;
    right: -120px;
}

.cta-section .cta-box>* {
    position: relative;
    z-index: 2;
}

.cta-section .cta-box p {
    color: rgba(255, 255, 255, .85);
    max-width: 650px;
    margin: 0 auto 40px;
}

.cta-section .cta-box .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-section .cta-box .cta-buttons .primary-btn {
    background: #fff;
    color: #002964;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: .35s;
}

.cta-section .cta-box .cta-buttons .primary-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

.cta-section .cta-box .cta-buttons .secondary-btn {
    background: #ff3b30;
    color: #fff;
    padding: 14px 24px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    transition: .35s;
}

.cta-section .cta-box .cta-buttons .secondary-btn:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .25);
}

/*========================
FOOTER
========================*/

.footer {
    background:
        linear-gradient(135deg, #031a3d, #062e82);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 60px;
}

.footer .footer-top-shape {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.footer .footer-top-shape svg {
    width: 100%;
    height: 90px;
    display: block;
}

/* Newsletter */

.footer .newsletter-box {
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 20px;
    padding: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    gap: 40px;
}

.footer .newsletter-box h3 {
    font-size: 34px;
    margin-bottom: 12px;
}

.footer .newsletter-box p {
    color: #d8e5ff;
    margin: 0;
}

.footer .newsletter-box form {
    display: flex;
    gap: 15px;
}

.footer .newsletter-box input {
    width: 320px;
    padding: 16px;
    border: none;
    border-radius: 8px;
    outline: none;
}

.footer .newsletter-box button {
    padding: 16px 28px;
    background: #ff3b30;
    border: none;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
    transition: .3s;
}

.footer .newsletter-box button:hover {
    transform: translateY(-4px);
}

/* Grid */
.footer .footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.8fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 70px;
}

.footer .footer-grid .footer-logo {
    width: 180px;
    margin-bottom: 25px;
}

.footer .footer-grid .footer-about {
    line-height: 1.8;
    color: #d5def3;
    max-width: 360px;
}

/* Titles */

.footer .footer-grid h4 {
    font-size: 22px;
    margin-bottom: 25px;
    position: relative;
}

.footer .footer-grid h4::after {
    content: "";
    width: 45px;
    height: 2px;
    background: #ff3b30;
    display: block;
    margin-top: 12px;
}

/* Lists */

.footer .footer-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-grid ul li {
    margin-bottom: 16px;
}

.footer .footer-grid ul a {
    text-decoration: none;
    color: #d5def3;
    transition: .3s;
}

.footer .footer-grid ul a:hover {
    padding-left: 8px;
    color: #fff;
}

/* Contact */

.footer .footer-grid .contact-list li {
    color: #d5def3;
}

/* Social */

.footer .footer-grid .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer .footer-grid .social-icons a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    text-decoration: none;
    transition: .35s;
}

.footer .footer-grid .social-icons a:hover {
    background: #ff3b30;
    transform: translateY(-6px);
}

/* Bottom */

.footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer .footer-bottom p {
    margin: 0;
    color: #cfdaf5;
}

.footer .footer-bottom div {
    display: flex;
    gap: 30px;
}

.footer .footer-bottom a {
    color: #cfdaf5;
    text-decoration: none;
    transition: .3s;
}

.footer .footer-bottom a:hover {
    color: #fff;
}