*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#050505;
    color:white;
    font-family:'Poppins',sans-serif;
    overflow-x:hidden;
}

/* LOADER */

.loader{
    position:fixed;
    width:100%;
    height:100vh;
    background:#000;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:99999;
}

.loader-logo{
    font-size:45px;
    font-weight:700;
    color:#ff3434;
    letter-spacing:4px;
}

/* NAVBAR */

.navbar{
    width:100%;
    padding:20px 8%;
    position:fixed;
    top:0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    z-index:999;
    background:rgba(0,0,0,0.6);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.logo img{
    width:180px;
}

.nav-links{
    display:flex;
    gap:35px;
    list-style:none;
}

.nav-links a{
    color:white;
    text-decoration:none;
    transition:0.3s;
    font-size:15px;
}

.nav-links a:hover{
    color:#ff3434;
}

.join-btn{
    background:#ff3434;
    padding:12px 24px;
    border-radius:12px;
    text-decoration:none;
    color:white;
    transition:0.3s;
}

.join-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 0 25px rgba(255,52,52,0.4);
}

/* HERO */

.hero{
    min-height:100vh;
    padding:140px 8%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    position:relative;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;
    width:600px;
    height:600px;
    background:#ff3434;
    filter:blur(250px);
    opacity:0.15;
    top:-100px;
    right:-100px;
}

.hero-left{
    width:50%;
    position:relative;
    z-index:2;
}

.tag{
    color:#ff3434;
    letter-spacing:2px;
    font-size:14px;
}

.hero-left h1{
    font-size:75px;
    line-height:90px;
    margin-top:20px;
}

.hero-left h1 span{
    color:#ff3434;
}

.hero-left p{
    margin-top:25px;
    color:#bdbdbd;
    line-height:32px;
    width:90%;
}

.hero-buttons{
    margin-top:40px;
    display:flex;
    gap:20px;
}

.btn-primary{
    background:#ff3434;
    color:white;
    text-decoration:none;
    padding:15px 30px;
    border-radius:14px;
    transition:0.3s;
}

.btn-primary:hover{
    transform:translateY(-5px);
    box-shadow:0 0 30px rgba(255,52,52,0.4);
}

.btn-secondary{
    border:1px solid #ff3434;
    color:white;
    text-decoration:none;
    padding:15px 30px;
    border-radius:14px;
}

.hero-right{
    width:40%;
    display:flex;
    justify-content:center;
    position:relative;
    z-index:2;
}

.hero-card{
    width:450px;
    height:450px;
    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.05);
    border-radius:30px;
    backdrop-filter:blur(10px);
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.hero-card img{
    width:250px;
    position:relative;
    z-index:2;
}

.circle{
    position:absolute;
    width:300px;
    height:300px;
    background:#ff3434;
    border-radius:50%;
    filter:blur(120px);
    opacity:0.35;
}

/* SERVICES */

.services{
    padding:120px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#ff3434;
}

.section-title h2{
    font-size:50px;
    margin-top:10px;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#111111;
    padding:45px;
    border-radius:24px;
    transition:0.4s;
    border:1px solid transparent;
}

.service-card:hover{
    transform:translateY(-10px);
    border-color:#ff3434;
    box-shadow:0 0 35px rgba(255,52,52,0.15);
}

.service-card i{
    font-size:50px;
    color:#ff3434;
    margin-bottom:25px;
}

.service-card h3{
    margin-bottom:15px;
}

/* ABOUT */

.about{
    padding:120px 8%;
    display:flex;
    align-items:center;
    gap:80px;
}

.about-left,
.about-right{
    width:50%;
}

.about-left img{
    width:100%;
}

.about-right span{
    color:#ff3434;
}

.about-right h2{
    font-size:55px;
    margin-top:15px;
}

.about-right h2 span{
    color:#ff3434;
}

.about-right p{
    margin:30px 0;
    color:#bdbdbd;
    line-height:32px;
}

/* CTA */

.cta{
    padding:120px 8%;
}

.cta-box{
    background:linear-gradient(to right,#111,#191919);
    border:1px solid rgba(255,255,255,0.05);
    padding:70px;
    border-radius:35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.cta-box h2{
    font-size:45px;
}

/* FOOTER */

.footer{
    background:#0b0b0b;
    padding:80px 8% 20px;
}

.footer-container{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
}

.footer-box img{
    width:200px;
    margin-bottom:20px;
}

.footer-box p{
    color:#bdbdbd;
    line-height:30px;
}

.footer-box h3{
    margin-bottom:20px;
}

.footer-box a{
    display:block;
    color:#bdbdbd;
    text-decoration:none;
    margin-top:12px;
    transition:0.3s;
}

.footer-box a:hover{
    color:#ff3434;
}

.footer-bottom{
    margin-top:50px;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.05);
    text-align:center;
    color:#777;
}