/* GOOGLE FONT */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    text-decoration:none;
    list-style:none;
    scroll-behavior:smooth;
}

/* ROOT */
:root{
    --primary:#2563eb;
    --secondary:#1e40af;
    --dark:#0f172a;
    --light:#f8fafc;
    --text:#1e293b;
    --gray:#64748b;
}

/* BODY */
body{
    font-family:'Poppins',sans-serif;
    background:var(--light);
    color:var(--text);
    overflow-x:hidden;
    padding-top:180px;
}

/* SECTION */
section{
    padding:90px 10%;
}

/* BLUR */
.blur-circle{
    position:fixed;
    width:350px;
    height:350px;
    background:rgba(37,99,235,0.15);
    filter:blur(120px);
    border-radius:50%;
    top:-100px;
    right:-100px;
    z-index:-1;
}

/* HEADER */
.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    background:rgba(255,255,255,0.9);
    backdrop-filter:blur(10px);

    border-bottom:1px solid rgba(0,0,0,0.05);

    z-index:1000;
}

/* NAVBAR */
.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:18px 10%;
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:50px;
}

.logo h2{
    font-size:1.5rem;
    color:var(--dark);
}

/* NAV LINKS */
.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-links a{
    color:var(--text);
    font-weight:500;
    transition:0.3s;
}

.nav-links a:hover{
    color:var(--primary);
}

/* BUTTON */
.btn,
.nav-btn{
    display:inline-block;

    padding:12px 24px;

    border-radius:14px;

    font-weight:600;

    transition:0.3s;
}

.primary,
.nav-btn{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:white;

    box-shadow:
    0 10px 25px rgba(37,99,235,0.2);
}

.secondary{
    border:2px solid var(--primary);
    color:var(--primary);
}

.primary:hover,
.nav-btn:hover,
.secondary:hover{
    transform:translateY(-3px);
}

.secondary:hover{
    background:var(--primary);
    color:white;
}

/* HERO */
.hero{
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:60px;

    flex-wrap:wrap;
}

.hero-text,
.hero-image{
    flex:1;
    min-width:300px;
}

.tag{
    display:inline-block;

    padding:8px 18px;

    border-radius:999px;

    background:rgba(37,99,235,0.1);

    color:var(--primary);

    margin-bottom:20px;
}

.hero-text h1{
    font-size:3.3rem;
    line-height:1.2;

    margin-bottom:20px;

    color:var(--dark);
}

.hero-text p{
    color:var(--gray);
    line-height:1.8;

    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:20px;

    flex-wrap:wrap;

    margin-bottom:35px;
}

.hero-stats{
    display:flex;
    gap:20px;

    flex-wrap:wrap;
}

.stat-box{
    background:white;

    padding:20px;

    border-radius:20px;

    min-width:120px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);
}

.stat-box h2{
    color:var(--primary);
}

.hero-image{
    text-align:center;
}

.hero-image img{
    width:100%;
    max-width:450px;
}

/* SECTION TITLE */
.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.5rem;
    color:var(--dark);

    margin-bottom:10px;
}

.section-title p{
    color:var(--gray);
}

/* SERVICES */
.service-container{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;
}

.service-card,
.portfolio-card,
.about-title,
.vision,
.mission,
.services{
    background:white;

    padding:35px;

    border-radius:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.05);

    transition:0.3s;
}

.service-card:hover,
.portfolio-card:hover,
.vision:hover,
.mission:hover{
    transform:translateY(-8px);
}

.service-card h3,
.portfolio-content h3,
.vision h3,
.mission h3,
.services h3,
.why-us h3{
    margin-bottom:15px;
    color:var(--dark);
}

.service-card p,
.portfolio-content p,
.about-title p,
.vision p,
.mission li,
.closing p{
    color:var(--gray);
    line-height:1.8;
}

/* PORTFOLIO */
.portfolio-card img{
    width:100%;

    border-radius:18px;

    margin-bottom:20px;
}

.tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;

    margin:20px 0;
}

.tags span{
    padding:8px 14px;

    border-radius:999px;

    background:#eff6ff;

    color:var(--primary);

    font-size:0.9rem;
}

.portfolio-buttons{
    display:flex;
    gap:15px;
}

.demo-btn,
.source-btn{
    flex:1;

    text-align:center;

    padding:12px;

    border-radius:14px;

    font-weight:600;
}

.demo-btn{
    background:var(--primary);
    color:white;
}

.source-btn{
    border:2px solid #e2e8f0;
    color:var(--dark);
}

/* ABOUT */
.about-container{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.vision-mission{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;
}

.mission ul{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.mission li{
    border-left:3px solid var(--primary);
    padding-left:12px;
}

/* WHY US */
.why-us{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;
}

.why-box{
    background:var(--dark);

    color:white;

    padding:35px;

    border-radius:25px;
}

.why-box p{
    line-height:1.8;
    color:#cbd5e1;
}

/* CTA */
.cta{
    text-align:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary)
    );

    color:white;

    border-radius:30px;

    margin:80px 10%;
}

.cta h2{
    font-size:2.5rem;
    margin-bottom:30px;
}

/* FOOTER */
.footer{
    background:var(--dark);
    color:white;
}

.footer-container{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:40px;

    padding:80px 10%;

    text-align:center;
}

.footer-logo{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;

    margin-bottom:20px;
}

.footer-logo img{
    width:45px;
}

.footer p{
    color:#94a3b8;
    line-height:1.8;
}

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

.footer a{
    display:block;

    color:#cbd5e1;

    margin-bottom:12px;

    transition:0.3s;
}

.footer a:hover{
    color:white;
}

.support-btn{
    display:inline-block;

    margin-top:15px;

    padding:12px 22px;

    background:#facc15;

    color:#111;

    border-radius:14px;

    font-weight:600;
}

.footer-bottom{
    text-align:center;

    border-top:
    1px solid rgba(255,255,255,0.08);

    padding:25px;
}

.footer-bottom p{
    color:#64748b;
}

/* FLOATING MENU */
.floating-menu{
    position:fixed;

    bottom:25px;
    right:25px;

    z-index:9999;
}

#menu-btn{
    width:60px;
    height:60px;

    border:none;

    border-radius:18px;

    background:var(--dark);
    color:white;

    font-size:28px;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    box-shadow:
    0 10px 25px rgba(0,0,0,0.2);
}

.menu-content{
    position:absolute;

    bottom:75px;
    right:0;

    background:white;

    padding:15px;

    border-radius:20px;

    display:none;

    flex-direction:column;
    gap:10px;

    min-width:180px;

    box-shadow:
    0 10px 30px rgba(0,0,0,0.1);
}

.menu-content.active{
    display:flex;
}

.menu-content a{
    color:var(--dark);

    padding:10px 14px;

    border-radius:12px;

    white-space:nowrap;
}

.menu-content a:hover{
    background:#eff6ff;
    color:var(--primary);
}

/* RESPONSIVE */
@media(max-width:900px){

    body{
        padding-top:150px;
    }

    .navbar{
        flex-direction:column;
        gap:20px;
    }

    .nav-links{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

    .hero{
        flex-direction:column;
        text-align:center;
    }

    .hero-buttons,
    .hero-stats{
        justify-content:center;
    }

    .hero-text h1{
        font-size:2.6rem;
    }

}

@media(max-width:600px){

    section{
        padding:70px 7%;
    }

    .hero-text h1{
        font-size:2.1rem;
    }

    .section-title h2,
    .cta h2{
        font-size:2rem;
    }

}

.why-box h3{
    color:white;
}