.footer{
    background:#f8f9fa;
    border-top:1px solid #e9ecef;
}

.footer h5,
.footer h6{
    color:#111827;
}

.footer a{
    color:#6c757d;
    transition:.2s;
}

.footer a:hover{
    color:#4f46e5;
}

.footer p{
    font-size:.95rem;
}

.hero-section{
    position: relative;

    min-height: 700px;
    padding: 120px 0;

    display: flex;
    align-items: center;

    background-image: url('../img/bg-global-v2.png');
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;

    overflow: hidden;
}

.hero-section::before{
    content: '';
    position: absolute;
    inset: 0;

    background: rgba(255,255,255,0.20);
}

.hero-section .container{
    position: relative;
    z-index: 2;
}

.hero-section h1{
    color: #111827;
    max-width: 700px;
    line-height: 1.1;
}

.hero-section p{
    max-width: 600px;
    font-size: 1.25rem;
}

.hero-content{
    background: rgba(79, 70, 229, 0.15);
    border: 1px solid rgba(124, 58, 237, 0.15);

    border-radius: 24px;
    padding: 40px;

    backdrop-filter: blur(8px);
}

.card{
    border-radius:18px;
}

.btn-primary{
    background:#4f46e5;
    border-color:#4f46e5;
}

.cta-section{
    background: linear-gradient(
        135deg,
        #4f46e5 0%,
        #6366f1 100%
    );

    color: #fff;


    margin: 80px auto;

    position: relative;

    overflow: hidden;
}

.cta-section::before{
    content:'';

    position:absolute;

    width:400px;
    height:400px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-150px;
    right:-120px;
}

.cta-section::after{
    content:'';

    position:absolute;

    width:250px;
    height:250px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    bottom:-100px;
    left:-80px;
}