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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter', sans-serif;
    background:#0b0f19;
    color:white;
    overflow-x:hidden;
}

/* CONTAINER */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* BACKGROUND */

.background-glow{
    position:fixed;
    width:500px;
    height:500px;
    background:#2563eb;
    filter:blur(180px);
    opacity:0.18;
    top:-120px;
    right:-120px;
    z-index:-1;
}

/* HEADER */

.header{
    position:fixed;
    width:100%;
    top:0;
    z-index:999;
    backdrop-filter:blur(14px);
    background:rgba(11,15,25,0.72);
    border-bottom:1px solid rgba(255,255,255,0.06);
    transition:0.3s;
}

.navbar{
    height:85px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo-container{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo-container img{
    width:48px;
    height:48px;
    object-fit:cover;
    border-radius:14px;
}

.logo-container h2{
    font-size:22px;
    font-weight:700;
}

.navigation-buttons{
    display:flex;
    gap:18px;
}

.navigation-buttons a{
    text-decoration:none;
    color:white;
    transition:0.3s;
    font-weight:500;
    background:transparent;
    border:none;
    padding:0;
}

.navigation-buttons a:hover{
    color:#60a5fa;
}

/* BUTTONS */

.primary-btn{
    background:#2563eb;
    padding:13px 24px;
    border-radius:14px;
    text-decoration:none;
    color:white;
    transition:0.35s;
    display:inline-block;
}

.primary-btn:hover{
    transform:translateY(-3px);
    background:#3b82f6;
    box-shadow:0 12px 30px rgba(37,99,235,0.35);
}

.secondary-btn{
    border:1px solid rgba(255,255,255,0.12);
    padding:13px 24px;
    border-radius:14px;
    text-decoration:none;
    color:white;
    transition:0.35s;
    display:inline-block;
}

.secondary-btn:hover{
    background:rgba(255,255,255,0.08);
    transform:translateY(-3px);
}

/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
}

.hero-content{
    display:flex;
    justify-content:center;
    text-align:center;
}

.hero-text{
    max-width:850px;
}

.hero-badge{
    display:inline-block;
    padding:10px 18px;
    border-radius:999px;
    background:rgba(37,99,235,0.14);
    border:1px solid rgba(96,165,250,0.15);
    color:#93c5fd;
    margin-bottom:24px;
}

.hero h1{
    font-size:68px;
    line-height:1.05;
    margin-bottom:28px;
    font-weight:700;
}

.hero p{
    color:#b8c1d1;
    font-size:20px;
    line-height:1.8;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:16px;
}

/* GENERAL SECTION */

section{
    padding:120px 0;
}

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

.section-title h2{
    font-size:44px;
    margin-bottom:14px;
}

.section-title p{
    color:#94a3b8;
    font-size:17px;
}

/* SERVICES */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:28px;
}

.service-item{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.06);
    padding:40px 34px;
    border-radius:28px;
    backdrop-filter:blur(12px);
    transition:0.45s;
}

.service-item:hover{
    transform:translateY(-12px);
    border-color:#3b82f6;
    box-shadow:0 20px 40px rgba(0,0,0,0.25);
}

.service-item i{
    font-size:34px;
    margin-bottom:24px;
    color:#60a5fa;
}

.service-item h3{
    font-size:23px;
    margin-bottom:16px;
}

.service-item p{
    color:#b8c1d1;
    line-height:1.8;
}

/* TEAM */

.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(340px,1fr));
    gap:36px;
}

.team-member{
    overflow:hidden;
    border-radius:30px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.06);
    transition:0.45s;
    backdrop-filter:blur(10px);
}

.team-member:hover{
    transform:translateY(-12px);
    border-color:rgba(96,165,250,0.3);
    box-shadow:0 25px 45px rgba(0,0,0,0.3);
}

.member-portrait{
    width:100%;
    height:440px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:20px;
    background:#111827;
}

.member-portrait::after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(11,15,25,0.65),
        rgba(11,15,25,0.05),
        transparent
    );
    pointer-events:none;
}

.member-portrait img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center top;
    transition:0.6s;
}

.team-member:hover .member-portrait img{
    transform:scale(1.03);
}

.team-member h4{
    font-size:28px;
    margin-top:26px;
    margin-bottom:10px;
    padding:0 28px;
}

.team-member span{
    color:#60a5fa;
    display:block;
    padding:0 28px;
    margin-bottom:18px;
    font-size:15px;
}

.team-member p{
    color:#b8c1d1;
    line-height:1.8;
    padding:0 28px 34px;
}

/* CONTACT */

.contact-box{
    text-align:center;
    padding:80px;
    border-radius:36px;
    background:linear-gradient(
        135deg,
        rgba(37,99,235,0.18),
        rgba(15,23,42,0.95)
    );
    border:1px solid rgba(255,255,255,0.06);
}

.contact-box h2{
    font-size:46px;
    margin-bottom:20px;
}

.contact-box p{
    color:#cbd5e1;
    margin-bottom:34px;
    line-height:1.8;
    font-size:18px;
}

/* FOOTER */

.footer{
    padding:34px;
    text-align:center;
    border-top:1px solid rgba(255,255,255,0.06);
    color:#94a3b8;
}

/* ANIMATION */

.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:all 0.9s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}

/* ===================================================== */
/* PERFECT RESPONSIVE SYSTEM */
/* ===================================================== */

/* TABLET */

@media screen and (max-width: 992px){

    .container{
        width:92%;
    }

    section{
        padding:100px 0;
    }

    .hero{
        padding-top:120px;
        min-height:auto;
    }

    .hero h1{
        font-size:54px;
        line-height:1.1;
    }

    .hero p{
        font-size:18px;
        line-height:1.7;
    }

    .section-title h2{
        font-size:38px;
    }

    .team-grid{
        grid-template-columns:1fr;
        max-width:700px;
        margin:auto;
    }

    .services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* MOBILE */

@media screen and (max-width: 768px){

    html,
    body{
        overflow-x:hidden;
    }

    .container{
        width:92%;
    }

    section{
        padding:80px 0;
    }

    /* NAVBAR */

    .header{
        padding:14px 0;
    }

    .navbar{
        flex-direction:column;
        gap:18px;
        height:auto;
    }

    .logo-container h2{
        font-size:20px;
    }

    .navigation-buttons{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
        gap:12px;
    }

    .navigation-buttons a{
        font-size:14px;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        max-width:260px;
        text-align:center;
    }

    /* HERO */

    .hero{
        padding-top:180px;
        min-height:auto;
    }

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

    .hero-badge{
        font-size:13px;
        padding:10px 16px;
    }

    .hero h1{
        font-size:40px;
        line-height:1.15;
        margin-bottom:22px;
    }

    .hero p{
        font-size:16px;
        line-height:1.7;
        margin-bottom:30px;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        width:100%;
    }

    /* TITLES */

    .section-title{
        margin-bottom:50px;
    }

    .section-title h2{
        font-size:32px;
    }

    .section-title p{
        font-size:15px;
    }

    /* SERVICES */

    .services-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .service-item{
        padding:32px 26px;
        border-radius:24px;
    }

    .service-item h3{
        font-size:21px;
    }

    .service-item p{
        font-size:15px;
    }

    /* TEAM */

    .team-grid{
        grid-template-columns:1fr;
        gap:28px;
    }

    .team-member{
        border-radius:26px;
    }

    .member-portrait{
        height:360px;
        padding:18px;
    }

    .team-member h4{
        font-size:24px;
        padding:0 22px;
    }

    .team-member span{
        padding:0 22px;
    }

    .team-member p{
        padding:0 22px 28px;
        font-size:15px;
    }

    /* CONTACT */

    .contact-box{
        padding:50px 24px;
        border-radius:28px;
    }

    .contact-box h2{
        font-size:32px;
        line-height:1.2;
    }

    .contact-box p{
        font-size:15px;
    }

    /* FOOTER */

    .footer{
        padding:24px;
        font-size:14px;
    }

}

/* SMALL MOBILE */

@media screen and (max-width: 480px){

    .hero{
        padding-top:190px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero p{
        font-size:15px;
    }

    .section-title h2{
        font-size:28px;
    }

    .member-portrait{
        height:320px;
    }

    .contact-box h2{
        font-size:28px;
    }

}

/* EXTRA SMALL DEVICES */

@media screen and (max-width: 360px){

    .hero h1{
        font-size:30px;
    }

    .navigation-buttons{
        flex-direction:column;
        align-items:center;
    }

    .primary-btn,
    .secondary-btn{
        max-width:100%;
    }

}