: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 
============================*/
/* ==========================================
   ABOUT HERO SECTION
========================================== */

.about-hero{
    position: relative;
    width: 100%;
    padding: 120px 8%;
    background: linear-gradient(135deg,#ffffff 0%,#f8f8ff 45%,#f2f3ff 100%);
    overflow: hidden;
}

.about-hero-container{
    max-width: 1350px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.about-hero-content{
     max-width:700px;
}

.about-tag{
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    color:#3e0960;
    margin-bottom: 5px;
}

.about-hero-content h1{
    font-size: 38px;
    line-height: 1.3;
    color: #ac3124;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-hero-content h1 span{
    color:#3e0960;
}

.about-hero-content p{
    max-width: 600px;
    font-size: 16px;
    line-height: 1.4;
    color: #596174;
    margin-bottom: 20px;
}
/*==========================
    WHAT WE ARE
============================*/

/*==================================================
    ABOUT COMPANY SECTION
==================================================*/

.about-company{
    position: relative;
    padding: 70px 5%;
    background: #ffffff;
    overflow: hidden;
}

/* Background Decorations */

.about-company::before{
    content: "";
    position: absolute;
    width: 450px;
    height: 450px;
    background: rgba(91,75,255,.05);
    border-radius: 50%;
    top: -180px;
    right: -120px;
    filter: blur(60px);
}

.about-company::after{
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(91,75,255,.04);
    border-radius: 50%;
    bottom: -150px;
    left: -120px;
    filter: blur(50px);
}

.about-company-container{
    max-width: 1320px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 90px;
    position: relative;
    z-index: 2;
}

/*==================================
            IMAGE
==================================*/

.company-image{
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.company-image img{
    position: relative;
    width: 100%;
    max-width: 470px;
    border-radius: 30px;
    box-shadow: 0 25px 60px rgba(0,0,0,.08);
    z-index: 2;
}

/*==================================
        EXPERIENCE BADGE
==================================*/

.experience-badge{
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 20px 28px;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    z-index: 3;
}

.experience-badge h2{
    font-size: 2rem;
    color: #3b0f4b;
    margin-bottom: 5px;
    font-weight: 800;
}

.experience-badge span{
    font-size: .95rem;
    color: #5d6475;
}

/*==================================
        CONTENT
==================================*/

.company-content{
    flex: 1;
}

.section-tag{
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #ac3124;
    margin-bottom: 18px;
}

.company-content h2{
    font-size: 38px;
    line-height: 1.3;
    color:#3e0960;
    font-weight: 700;
    margin-bottom: 10px;
}

.company-content h2 span{
    color: #ac3124;
}

.company-content>p{
    font-size:14px;
    line-height: 1.4;
    color: #5b6475;
    margin-bottom: 22px;
}

/*==================================
        HIGHLIGHTS
==================================*/

.company-highlights{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 12px;
    margin-top: 25px;
}

.highlight{
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: .35s;
}

.highlight:hover{
    transform: translateX(8px);
}

.highlight-icon{
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg,#ac3124,#3e0960);
    color: #fff;
    border-radius: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 12px 25px rgba(91,75,255,.18);
}

.highlight h4{
    font-size: 18px;
    color: #3e0960;
    margin-bottom: 2px;
}

.highlight p{
    color: #6d7383;
    line-height: 1.4;
    font-size: 14px;
}

/*==========================
    VISION 
===========================*/

/*==================================================
                VISION SECTION
==================================================*/

.vision-section{
    position: relative;
    padding: 120px 8%;
    background: linear-gradient(180deg,#ffffff 0%,#f8f9ff 100%);
    overflow: hidden;
}

/* Decorative Background */

.vision-section::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    border-radius:50%;
    background:rgba(91,75,255,.05);
    top:-250px;
    right:-180px;
    filter:blur(70px);
}

.vision-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(91,75,255,.04);
    left:-120px;
    bottom:-140px;
    filter:blur(60px);
}

.vision-container{
    max-width:1320px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:90px;
    position:relative;
    z-index:2;
}

/*==================================
        LEFT SIDE
==================================*/

.vision-left{
    flex:1;
}

.vision-left .section-tag{
    display:inline-block;
    color:#ac3124;
    font-size: 15px;;
    font-weight:700;
    letter-spacing:1.5px;
    margin-bottom:10px;
}

.vision-left h2{

    font-size:38px;
    line-height:1.2;
    color:#3e0960;
    font-weight:700;
    margin-bottom:15px;

}

.vision-left h2 span{

    color:#ac3124;

}

.vision-left p{

    color:#657082;
    line-height:1.5;
    font-size:16px;
    margin-bottom:20px;

}

/*==================================
        LIST
==================================*/

.vision-list{

    display:flex;
    flex-direction:column;
    gap:20px;

}

.vision-item{

    display:flex;
    align-items:center;
    gap:18px;

    transition:.35s;

}

.vision-item:hover{

    transform:translateX(8px);

}

.vision-item i{

    width:36px;
    height:36px;

    display:flex;
    justify-content:center;
    align-items:center;

    background:linear-gradient(95deg,#ac3124,#3e0960);

    color:#fff;

    border-radius:14px;

    box-shadow:0 12px 25px rgba(91,75,255,.20);

    transition:.35s;

}

.vision-item:hover i{

    transform:rotate(-10deg);

}

.vision-item span{

    font-size:15px;
    font-weight:500;
    color:#3e0960;

}

/*==================================
        RIGHT SIDE
==================================*/

.vision-right{

    flex:1;
    display:flex;
    justify-content:center;

}

.vision-card{

    position:relative;

    width:100%;
    max-width:480px;

    padding:50px 40px;

    border-radius:28px;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.8);

    box-shadow:

    0 20px 60px rgba(20,30,70,.08);

    transition:.45s;

    overflow:hidden;

}

.vision-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:5px;

    background:linear-gradient(90deg,#ac3124,#3e0960);

}

.vision-card::after{

    content:"";

    position:absolute;

    width:140px;
    height:140px;

    border-radius:50%;

    right:-60px;
    bottom:-60px;

    background:rgba(91,75,255,.05);

}

/*==================================
        QUOTE ICON
==================================*/

.quote-icon{

    width:40px;
    height:40px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:20px;

    background:linear-gradient(135deg,#ac3124,#3e0960);

    color:#fff;

    font-size:15px;

    margin-bottom:25px;

    box-shadow:

    0 18px 35px rgba(91,75,255,.22);

}

.vision-card p{

    color:#5f6778;

    font-size:16px;

    line-height:1.6;

    margin-bottom:35px;

}

.vision-author{

    display:flex;
    align-items:center;
    gap:15px;

}

.author-line{

    width:55px;
    height:2px;

    background:#ac3124;

}

.vision-author span{

    font-weight:700;

    color:#3e0960;

    letter-spacing:.5px;

}

/*==========================
        MISSION
============================*/

/*==================================================
                MISSION SECTION
==================================================*/

.mission-section{
    position: relative;
    padding: 120px 8%;
    background: #ffffff;
    overflow: hidden;
}

/*==================================
        Background Decoration
==================================*/

.mission-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(91,75,255,.05);
    top:-220px;
    left:-180px;
    filter:blur(80px);
}

.mission-section::after{
    content:"";
    position:absolute;
    width:350px;
    height:350px;
    border-radius:50%;
    background:rgba(91,75,255,.04);
    right:-120px;
    bottom:-120px;
    filter:blur(70px);
}

/*==================================
        Container
==================================*/

.mission-container{
    max-width:1320px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:90px;
    position:relative;
    z-index:2;
}

/*==================================
        Image
==================================*/

.mission-image{
    flex:1;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.mission-image img{

    position:relative;

    width:100%;
    max-width:500px;

    z-index:2;

    border-radius:28px;

    transition:.45s;

    filter:drop-shadow(0 25px 50px rgba(0,0,0,.08));

}


/*==================================
        Content
==================================*/

.mission-content{

    flex:1;

}

.mission-content .section-tag{

    display:inline-block;

    color:#ac3124;

    letter-spacing:1.5px;

    font-size:14px;

    font-weight:700;

    margin-bottom:4px;

}

.mission-content h2{

    font-size:38px;

    line-height:1.2;

    color:#3e0960;

    font-weight:700;

    margin-bottom:10px;

}

.mission-content h2 span{

    color:#ac3124;

}

.mission-content>p{

    color:#667085;

    line-height:1.4;

    font-size:15px;

    margin-bottom:20px;

}

/*==================================
        Points
==================================*/

.mission-points{

    display:flex;

    flex-direction:column;

    gap:2px;

}

.mission-point{

    display:flex;

    align-items:center;

    gap:4px;

    padding:10px 14px;

    transition:.35s;

}

.mission-point:hover{

    transform:translateX(8px);

    box-shadow:0 20px 45px rgba(91,75,255,.08);

}

.mission-point i{

    width:40px;
    height:40px;

    display:flex;
    justify-content:center;
    align-items:center;

    border-radius:14px;

    background:linear-gradient(135deg,#ac3124,#3e0960);

    color:#fff;

    font-size:14px;

    flex-shrink:0;

    transition:.35s;

}

.mission-point:hover i{

    transform:rotate(-10deg) scale(1.08);

}

.mission-point span{

    font-size:15px;

    color:#3e0960;

    font-weight:500;

    line-height:1.4;

}

/* =========================
   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;
}
.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#ffffff;
    color:#000;
    text-decoration:none;
    padding:10px 40px;
    border-radius:50px;
    font-size:18px;
    font-weight:700;
    white-space:nowrap;
    transition:all .3s ease;
}

.cta-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 30px rgba(0,0,0,.25);
}

.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;
}
