/* =========================================================
   RESET
========================================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

:root{

    --primary:#2563eb;
    --primary-light:#3b82f6;
    --secondary:#06b6d4;

    --dark:#0f172a;
    --text:#1f2937;
    --muted:#64748b;

    --white:#ffffff;

    --shadow:0 15px 45px rgba(0,0,0,.08);
    --shadow-hover:0 30px 60px rgba(37,99,235,.18);

    --radius:24px;

}

body{

    font-family:'Poppins',sans-serif;

    color:var(--text);

    background:
        radial-gradient(circle at top left,#3b82f618,transparent 35%),
        radial-gradient(circle at bottom right,#06b6d418,transparent 35%),
        linear-gradient(135deg,#edf4ff,#ffffff);

    overflow-x:hidden;

    position:relative;

}

/* =========================================================
   BACKGROUND BLOBS
========================================================= */

.bg-circle{

    position:fixed;

    border-radius:50%;

    filter:blur(90px);

    z-index:-10;

    opacity:.45;

    animation:floatBlob 12s ease-in-out infinite;

}

.bg1{

    width:350px;
    height:350px;

    background:#60a5fa;

    top:-100px;
    left:-120px;

}

.bg2{

    width:420px;
    height:420px;

    background:#22d3ee;

    right:-120px;
    top:30%;

    animation-delay:2s;

}

.bg3{

    width:280px;
    height:280px;

    background:#93c5fd;

    bottom:-120px;
    left:35%;

    animation-delay:4s;

}

/* =========================================================
   HEADER
========================================================= */

header{

    width:100%;

    padding:20px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    position:sticky;

    top:0;

    z-index:999;

    backdrop-filter:blur(18px);

    background:rgba(255,255,255,.72);

    border-bottom:1px solid rgba(255,255,255,.45);

}

.logo{

    display:flex;

    align-items:center;

    gap:14px;

}

.logo img{

    width:62px;

    height:62px;

    object-fit:contain;

}

.logo-text{

    display:flex;

    flex-direction:column;

    line-height:1.1;

}

.logo-text h2{

    color:var(--primary);

    font-size:30px;

    font-weight:700;

}

.logo-text span{

    font-size:14px;

    color:var(--muted);

}

.tech {

    display:flex;

    align-items:center;

    gap:14px;

}

.tech img{

    width:112px;

    height:112px;

    object-fit:contain;
    
    margin-left: auto;
    margin-right: auto;
    width: 50%;

}

/* =========================================================
   NAVIGATION
========================================================= */

nav{

    display:flex;

    align-items:center;

    gap:34px;

}

nav a{

    text-decoration:none;

    color:#475569;

    font-weight:500;

    transition:.3s;

    position:relative;

}

nav a:hover{

    color:var(--primary);

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-6px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.35s;

}

nav a:hover::after{

    width:100%;

}

/* =========================================================
   HERO
========================================================= */

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:48px 20px 80px;

}

.hero-content{

    max-width:980px;

}

.hero-tag{

    display:inline-block;

    padding:10px 22px;

    border-radius:40px;

    background:rgba(37,99,235,.10);

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    margin-bottom:28px;

}

.hero h1{

    font-size:48px;

    line-height:1.15;

    margin-bottom:28px;

    font-weight:800;

}

.hero h1 span{

    color:var(--primary);

}

.hero p{

    max-width:850px;

    margin:auto;

    color:var(--muted);

    font-size:16px;

    line-height:1.9;

    margin-bottom:50px;

}

/* =========================================================
   HERO BUTTONS
========================================================= */

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:70px;

}

.hero-button{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    padding:16px 38px;

    border-radius:50px;

    background:linear-gradient(135deg,var(--primary),var(--secondary));

    color:white;

    font-weight:600;

    transition:.35s;

    box-shadow:0 18px 40px rgba(37,99,235,.30);

}

.hero-button:hover{

    transform:translateY(-5px);

    box-shadow:0 25px 55px rgba(37,99,235,.40);

}

.hero-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    padding:16px 38px;

    border-radius:50px;

    border:2px solid rgba(37,99,235,.15);

    background:white;

    color:var(--primary);

    font-weight:600;

    transition:.35s;

}

.hero-secondary:hover{

    transform:translateY(-5px);

    background:#f8fbff;

}

/* =========================================================
   HERO STATS
========================================================= */

.hero-stats{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(170px,1fr));

    gap:22px;

    margin-bottom:70px;

}

.stat-card{

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(18px);

    border-radius:22px;

    padding:28px;

    border:1px solid rgba(255,255,255,.45);

    box-shadow:var(--shadow);

    transition:.35s;

}

.stat-card:hover{

    transform:translateY(-8px);

    box-shadow:var(--shadow-hover);

}

.stat-card h3{

    color:var(--primary);

    font-size:34px;

    margin-bottom:10px;

}

.stat-card span{

    color:var(--muted);

    font-size:15px;

    line-height:1.6;

    display:block;

}

/* =========================================================
   SCROLL INDICATOR
========================================================= */

.scroll-indicator{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:10px;

    color:var(--muted);

    font-size:14px;

}

.scroll-arrow{

    font-size:26px;

    color:var(--primary);

    animation:bounce 1.8s infinite;

}

/* =========================================================
   GLOBAL SECTION
========================================================= */

section{

    padding:60px 8%;

    position:relative;

}

.section-header{

    text-align:center;

    max-width:800px;

    margin:0 auto 60px;

}

.section-tag{

    display:inline-block;

    padding:8px 20px;

    border-radius:40px;

    background:rgba(37,99,235,.08);

    color:var(--primary);

    font-size:14px;

    font-weight:600;

    margin-bottom:18px;

}

.section-header h2{

    font-size:46px;

    color:var(--dark);

    margin-bottom:18px;

    font-weight:700;

}

.section-header p{

    color:var(--muted);

    font-size:18px;

    line-height:1.8;

}

/* =========================================================
   ABOUT
========================================================= */

.about-content{

    max-width:950px;

    margin:auto;

}

.about-content p{

    text-align:center;

    color:var(--muted);

    line-height:2;

    font-size:18px;

    margin-bottom:28px;

}

.about-content strong{

    color:var(--primary);

}

/* =========================================================
   MISSION
========================================================= */

.mission{

    background:linear-gradient(180deg,
        rgba(255,255,255,.55),
        rgba(245,249,255,.85));

}

.mission-content{

    max-width:900px;

    margin:0 auto 60px;

}

.mission-content p{

    text-align:center;

    color:var(--muted);

    line-height:2;

    font-size:18px;

}

.mission-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.mission-card{

    background:rgba(255,255,255,.70);

    backdrop-filter:blur(15px);

    border-radius:24px;

    padding:40px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.mission-card:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.mission-icon{

    width:85px;

    height:85px;

    margin:0 auto 25px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

    background:linear-gradient(135deg,
        var(--primary),
        var(--secondary));

    color:white;

}

.mission-card h3{

    margin-bottom:16px;

    color:var(--primary);

    font-size:24px;

}

.mission-card p{

    color:var(--muted);

    line-height:1.8;

}

/* =========================================================
   APPLICATIONS
========================================================= */

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));

    gap:35px;

}

.card{

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    border-radius:28px;

    padding:42px;

    text-decoration:none;

    color:inherit;

    box-shadow:var(--shadow);

    transition:.4s;

    border:1px solid rgba(255,255,255,.4);

}

.card:hover{

    transform:translateY(-12px);

    box-shadow:var(--shadow-hover);

}

.icon{

    width:90px;

    height:90px;

    border-radius:24px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary));

    color:white;

    font-size:44px;

    margin-bottom:28px;

}

.card h3{

    font-size:30px;

    color:var(--primary);

    margin-bottom:18px;

}

.card p{

    color:var(--muted);

    line-height:1.8;

    margin-bottom:24px;

}

.card ul{

    list-style:none;

    margin-bottom:35px;

}

.card li{

    display:flex;

    align-items:center;

    gap:10px;

    margin:14px 0;

    color:#475569;

    font-size:16px;

}

.card li::before{

    content:"?";

    width:24px;

    height:24px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#dcfce7;

    color:#16a34a;

    font-size:13px;

    font-weight:bold;

    flex-shrink:0;

}

.button{

    display:inline-block;

    padding:14px 30px;

    border-radius:40px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary));

    color:white;

    font-weight:600;

    transition:.3s;

}

.card:hover .button{

    transform:translateX(5px);

}

/* =========================================================
   WORKFLOW
========================================================= */

.workflow{

    background:linear-gradient(
        180deg,
        rgba(245,249,255,.65),
        rgba(255,255,255,.9));

}

.workflow-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.step{

    position:relative;

    background:white;

    border-radius:24px;

    padding:40px 35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.step:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.step-number{

    width:70px;

    height:70px;

    border-radius:50%;

    margin:0 auto 25px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary));

    color:white;

    font-size:28px;

    font-weight:700;

}

.step h3{

    color:var(--primary);

    margin-bottom:18px;

    font-size:24px;

}

.step p{

    color:var(--muted);

    line-height:1.8;

}

/* =========================================================
   FEATURES
========================================================= */

.features{

    background:linear-gradient(
        180deg,
        rgba(255,255,255,.75),
        rgba(245,249,255,.9));

}

.feature-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}

.feature{

    background:white;

    border-radius:24px;

    padding:40px 35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.feature:hover{

    transform:translateY(-10px);

    box-shadow:var(--shadow-hover);

}

.feature-icon{

    font-size:50px;

    margin-bottom:20px;

}

.feature h3{

    color:var(--primary);

    margin-bottom:18px;

    font-size:24px;

}

.feature p{

    color:var(--muted);

    line-height:1.8;

}

/* =========================================================
   TECHNOLOGY
========================================================= */

.tech-category{

    margin-bottom:45px;

}

.tech-category h3{

    text-align:center;

    color:var(--primary);

    font-size:24px;

    margin-bottom:25px;

}

.tech-list{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

}

.tech-list span{

    padding:14px 28px;

    border-radius:40px;

    background:white;

    color:var(--primary);

    font-weight:600;

    box-shadow:0 8px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.tech-list span:hover{

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--secondary));

    color:white;

    transform:translateY(-5px);

}

/* =========================================================
   CONTACT
========================================================= */

.contact{

    text-align:center;

}

.contact-box{

    max-width:700px;

    margin:0 auto;

    padding:55px;

    border-radius:28px;

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(18px);

    box-shadow:var(--shadow);

}

.contact-box p{

    color:var(--muted);

    font-size:18px;

    line-height:1.9;

    margin-bottom:35px;

}

/* =========================================================
   FOOTER
========================================================= */

footer{

    margin-top:90px;

    background:var(--dark);

    color:white;

    padding:70px 20px;

}

.footer-content{

    max-width:900px;

    margin:auto;

    text-align:center;

}

.footer-content h3{

    font-size:34px;

    margin-bottom:15px;

}

.footer-content p{

    color:#cbd5e1;

    line-height:1.9;

    margin-bottom:15px;

}

.footer-divider{

    width:120px;

    height:2px;

    background:rgba(255,255,255,.2);

    margin:30px auto;

}

.footer-content small{

    color:#94a3b8;

    font-size:14px;

}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes floatBlob{

    0%{

        transform:translateY(0px) scale(1);

    }

    50%{

        transform:translateY(-40px) scale(1.08);

    }

    100%{

        transform:translateY(0px) scale(1);

    }

}

@keyframes bounce{

    0%,20%,50%,80%,100%{

        transform:translateY(0);

    }

    40%{

        transform:translateY(10px);

    }

    60%{

        transform:translateY(5px);

    }

}

/* =========================================================
   RESPONSIVE
========================================================= */

@media(max-width:992px){

    header{

        flex-direction:column;

        gap:20px;

        padding:20px;

    }

    nav{

        flex-wrap:wrap;

        justify-content:center;

    }

    .hero{

        min-height:90vh;

        padding-top:140px;

    }

    .hero h1{

        font-size:52px;

    }

    .hero p{

        font-size:18px;

    }

    .section-header h2{

        font-size:38px;

    }

}

@media(max-width:768px){

    section{

        padding:80px 6%;

    }

    .hero h1{

        font-size:42px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

    .hero-button,
    .hero-secondary{

        width:240px;

    }

    .hero-stats{

        grid-template-columns:repeat(2,1fr);

    }

    .cards{

        grid-template-columns:1fr;

    }

    .mission-grid{

        grid-template-columns:1fr;

    }

    .workflow-grid{

        grid-template-columns:1fr;

    }

    .feature-grid{

        grid-template-columns:1fr;

    }

    .contact-box{

        padding:40px 30px;

    }

}

@media(max-width:576px){

    .logo img{

        width:52px;

        height:52px;

    }

    .logo-text h2{

        font-size:24px;

    }

    .hero{

        padding-top:130px;

    }

    .hero-tag{

        font-size:13px;

    }

    .hero h1{

        font-size:34px;

    }

    .hero p{

        font-size:16px;

    }

    .hero-stats{

        grid-template-columns:1fr;

    }

    .section-header h2{

        font-size:30px;

    }

    .section-header p{

        font-size:16px;

    }

    .about-content p{

        font-size:16px;

    }

    .mission-card{

        padding:30px;

    }

    .card{

        padding:30px;

    }

    .step{

        padding:30px;

    }

    .feature{

        padding:30px;

    }

    .contact-box{

        padding:30px 25px;

    }

    .footer-content h3{

        font-size:28px;

    }

}