:root{
--primary:#ac3124;
--secondary:#3e0960;
--dark:#222;
--light:#ffffff;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

html{scroll-behavior:smooth;}
body{background:#ffffff;color:#333;overflow-x:hidden;}

.container{
width:90%;
max-width:1400px;
margin:auto;
}

/* HEADER DONE */

header{
position: fixed;
top: 0;
left: 0;
width: 100%;
background: #ffffff;
z-index: 9999;
box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* Navbar */
.navbar{
display:flex;
justify-content:space-between;
align-items:center;
min-height:90px;
}

body{
    padding-top: 100px;
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
width:100%;
}

.logo img{
height:60px;
margin-left: -30px;
}

.nav-links{
display:flex;
align-items:center;
gap:35px;
list-style:none;
margin:0;
padding:0;
}

.nav-links a{
text-decoration:none;
color:#3e0960;
font-weight:600;
transition:.3s;
}

.nav-links a:hover{
color:#ac3124;
}

.nav-links a.active{
    color:#ac3124;
}

/* Navbar Buttons DONE */
.nav-buttons{
display:flex;
gap:20px;
align-items:center;
}

.nav-btn{
position:relative;
display:inline-block;
padding:8px 20px;
border-radius:50px;
text-decoration:none;
font-weight:450;
font-size:13px;
color:#fff;
overflow:hidden;
z-index:1;
transition:.4s ease;
}

/* Login Button */
.login-btn{
color:  #ac3124;;
background: #ffffff;
border:2px solid #ac3124;
}

.login-btn::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
transition:.4s ease;
z-index:-1;
}  

.login-btn:hover::before{
left:0;
}

.login-btn:hover{
color:#ac3124;
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(107,31,166,.25);
}
/* Get Started Button */
.start-btn{
background:#ac3124;
border:2px solid #ac3124;
}

/* Hover Fill Effect */

.start-btn::before{
content:"";
position:absolute;
top:0;
left:-100%;
width:100%;
height:100%;
transition:.4s ease;
z-index:-1;
}

.start-btn:hover::before{
left:0;
}

.start-btn:hover{
color:#fff;
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(107,31,166,.25);
}

/*=========================
HERO 
===========================*/

/*==================================================
            CONTACT HERO SECTION
==================================================*/

.contact-hero{
    position: relative;
    padding: 0px 2% 00px;
    background:#ffffff;
    overflow: hidden;
}

/*==================================
        Background Decorations
==================================*/

.contact-hero::before{
    content:"";
    position:absolute;
    width:1000px;
    height:1000px;
    border-radius:50%;
    background:rgba(91,75,255,.06);
    top:-180px;
    left:-180px;
    filter:blur(80px);
}

.contact-hero::after{
    content:"";
    position:absolute;
    width:100px;
    height:100px;
    border-radius:50%;
    background:rgba(91,75,255,.05);
    right:-180px;
    bottom:-120px;
    filter:blur(70px);
}

/*==================================
        Container
==================================*/

.contact-hero-container{
    max-width:1350px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:90px;
    position:relative;
    z-index:2;
}

/*==================================
        Left Content
==================================*/

.contact-hero-content{
    flex:1;
    max-width:620px;
}

.contact-hero-content .section-tag{
    display:inline-block;
    color:#3e0960;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    margin-bottom:8px;
}

.contact-hero-content h1{
    font-size:42px;
    line-height:1.2;
    font-weight:800;
    color:#ac3124;
    margin-bottom:10px;
}

.contact-hero-content h1 span{
    color:#3e0960;
}

.contact-hero-content p{
    color:#667085;
    line-height:1.4;
    font-size:16px;
    margin-bottom:40px;
}


/*==================================
        Right Image
==================================*/

.contact-hero-image{
    flex:1;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.contact-hero-image img{
    width:100%;
    max-width:400px;
    max-height: 380px;
    position:relative;
    z-index:2;
    animation:floatImage 5s ease-in-out infinite;
}

/*==================================
        Floating Animation
==================================*/

@keyframes floatImage{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-15px);
    }

    100%{
        transform:translateY(0);
    }

}

/*==================================================
                CONTACT SECTION
==================================================*/

.contact-section{
    position:relative;
    padding:120px 8%;
    background:#ffffff;
    overflow:hidden;
}

/* Decorative Background */

.contact-section::before{
    content:"";
    position:absolute;
    width:450px;
    height:450px;
    border-radius:50%;
    background:rgba(91,75,255,.05);
    top:-180px;
    left:-180px;
    filter:blur(80px);
}

.contact-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(91,75,255,.04);
    bottom:-150px;
    right:-120px;
    filter:blur(70px);
}

/*==================================
        Container
==================================*/

.contact-container{

    max-width:1320px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:80px;

    position:relative;
    z-index:2;

}

/*==================================
        Contact Info
==================================*/

.contact-info .section-tag{

    display:inline-block;

    color:#3e0960;

    font-size:15px;

    letter-spacing:1.5px;

    font-weight:700;
    margin-top: 2px;;
    margin-bottom:8px;

}

.contact-info h2{

    font-size:38px;

    line-height:1.1;

    color:#ac3124;

    margin-bottom:8px;

}

.contact-info h2 span{

    color:#3e0960;

}

.contact-info>p{

    color:#667085;
    font-size: 15px;
    line-height:1.4;

    margin-bottom:40px;

}

/*==================================
        Contact Items
==================================*/

.info-item{

    display:flex;

    align-items:flex-start;

    gap:18px;

    margin-bottom:10px;

    padding-bottom:10px;

    border-bottom:1px solid #edf0f7;

}

.info-item:last-child{

    margin-bottom:0;
    padding-bottom:0;
    border:none;

}

.info-icon{

    width:50px;
    height:50px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:18px;

    background:linear-gradient(135deg,#ac3124,#3e0960);

    color:#fff;

    font-size:18px;

    flex-shrink:0;

    box-shadow:0 15px 30px rgba(91,75,255,.18);

    transition:.35s;

}

.info-text h4{

    font-size:16px;

    color:#3e0960;

    margin-bottom:3px;

}

.info-text p{

    color:#667085;

    line-height:1.2;

}

/*==================================
        Form Wrapper
==================================*/

.contact-form-wrapper{

    background:#fff;

    border-radius:30px;

    padding:45px;

    box-shadow:
    0 25px 60px rgba(20,30,70,.06);

}

.contact-form{

    display:flex;

    flex-direction:column;

    gap:14px;

}

.form-row{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:18px;

}

/*==================================
        Inputs
==================================*/

.input-group{

    display:flex;

    flex-direction:column;

}

.input-group label{

    margin-bottom:8px;

    color:#3e0960;

    font-weight:600;

}

.input-group input,
.input-group textarea{

    width:100%;

    padding:12px 14px;

    border:1px solid #e3d9d9;

    border-radius:16px;

    outline:none;

    background:#FAFBFF;

    font-size:13px;

    transition:.35s;

}

.input-group textarea{

    resize:none;

}

.input-group input:focus,
.input-group textarea:focus{

    border-color:#3e0960;

    background:#fff;

    box-shadow:
    0 0 0 4px rgba(91,75,255,.08);

}

/*==================================
        Button
==================================*/

.contact-btn{

    margin-top:10px;

    width:fit-content;

    display:flex;

    align-items:center;

    gap:8px;

    padding:12px 30px;

    background:linear-gradient(135deg,#ac3124,#3e0960);

    color:#fff;

    border:none;

    border-radius:50px;

    cursor:pointer;

    font-size:15px;

    font-weight:600;

    transition:.35s;

    box-shadow:
    0 18px 35px rgba(91,75,255,.20);

}

.contact-btn:hover{

    transform:translateY(-5px);

    box-shadow:
    0 25px 45px rgba(91,75,255,.28);

}

.contact-btn i{

    transition:.35s;

}

.contact-btn:hover i{

    transform:translateX(6px);

}


/* =========================
   CTA SECTION
========================= */

.footer-cta{
    width:100%;
    background:linear-gradient(90deg, #ac3124,#3e0960);
    padding:60px 70px;

    clip-path: polygon(
        25px 0,
        calc(100% - 25px) 0,
        100% 25px,
        100% 100%,
        0 100%,
        0 25px
    );
}

.cta-content{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:30px;
}

.cta-text p{
    font-size:14px;
    letter-spacing:1px;
    font-weight:600;
    color:#ffffff;
}

.cta-text h2{
    margin-bottom: 8px;
    font-size:40px;
    line-height:1.2;
    max-width:700px;
    color:#ffffff;
    font-weight:700;
}

.footer{
background:#111827;
color:#fff;
padding:100px 0 25px;
position:relative;
margin-top:0;
}

.footer::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(90deg, #d43c2d, #6a1b9a);
}

.footer-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:50px;
}

.footer-logo{
width:220px;
margin-bottom:20px;
background:#ffffff;
padding:8px;
border-radius:10px;
}

.footer-col h3{
margin-bottom:20px;
font-size:22px;
color:#fff;
}

.footer-col p{
color:#cbd5e1;
line-height:1.8;
}

.footer-col ul{
list-style:none;
padding:0;
}

.footer-col ul li{
margin-bottom:12px;
}

.footer-col ul li a{
color:#cbd5e1;
text-decoration:none;
transition:.3s;
}

.footer-col ul li a:hover{
color:#fff;
padding-left:8px;
}

.footer-social{
display:flex;
gap:15px;
}

.footer-social a{
width:45px;
height:45px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
background:rgba(35, 31, 31, 0.08);
color:#fff;
text-decoration:none;
transition:.3s;
}

.footer-social a:hover{
background:linear-gradient(135deg,#ac3124,#3e0960);
transform:translateY(-5px);
}

.footer-bottom{
text-align:center;
border-top:1px solid rgba(255,255,255,.1);
margin-top:40px;
padding-top:25px;
}

.footer-bottom p{
color:#94a3b8;
}

.footer-bottom a{
    color:#ffffff;
    text-decoration:none;
    transition:.3s ease;
}

.footer-bottom a:hover{
    color:#430ed3;
}

/* ==================================================
                HYPER LINKS 
====================================================*/

.legal-page{
    padding:120px 0;
    background:#fff;
}

.legal-page .container{
    max-width:1000px;
}

.legal-page h1{
    font-size:48px;
    color:#3e0960;
    margin-bottom:30px;
}

.legal-page h2{
    font-size:24px;
    color:#3e0960;
    margin-top:35px;
    margin-bottom:15px;
}

.legal-page p{
    color:#555;
    line-height:1.9;
    margin-bottom:15px;
}
