@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter', sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#07111f;
    color:white;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

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

/* =========================
   HEADER
========================= */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;

    background:rgba(7,17,31,0.92);

    backdrop-filter:blur(12px);

    border-bottom:1px solid rgba(255,255,255,0.06);
}

.navbar{
    height:90px;

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

/* =========================
   LOGO
========================= */

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

    text-decoration:none;
}

.logo img{
    width:58px;
    height:58px;

    object-fit:contain;
}

.logo-text{
    display:flex;
    flex-direction:column;
}

.logo-text span{
    color:white;

    font-size:24px;

    font-weight:800;

    letter-spacing:0.5px;
}

/* =========================
   NAVIGATION
========================= */

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

.nav-links a{
    position:relative;

    color:white;

    text-decoration:none;

    font-weight:500;

    transition:0.3s;
}

.nav-links a::after{
    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:0%;
    height:2px;

    background:#3b82f6;

    transition:0.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after{
    width:100%;
}

.nav-links a:hover,
.nav-links a.active{
    color:#3b82f6;
}

/* =========================
   MENU HAMBURGER
========================= */

.menu-toggle{
    display:none;

    width:46px;
    height:46px;

    background:#111827;

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

    border-radius:12px;

    justify-content:center;
    align-items:center;
    flex-direction:column;

    gap:5px;

    cursor:pointer;

    transition:0.3s;
}

.menu-toggle:hover{
    background:#1e293b;
}

.menu-toggle span{
    width:22px;
    height:2.5px;

    background:white;

    border-radius:20px;

    transition:0.3s;
}

/* Animation */

.menu-toggle.active span:nth-child(1){
    transform:rotate(45deg) translate(5px,5px);
}

.menu-toggle.active span:nth-child(2){
    opacity:0;
}

.menu-toggle.active span:nth-child(3){
    transform:rotate(-45deg) translate(5px,-5px);
}

/* =========================
   HERO
========================= */

.hero{
    min-height:100vh;

    display:flex;
    align-items:center;

    padding-top:120px;

    background:
    linear-gradient(rgba(7,17,31,0.88), rgba(7,17,31,0.92)),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?q=80&w=1600&auto=format&fit=crop');

    background-size:cover;
    background-position:center;
}

.hero-content{
    max-width:760px;
}

.hero-content h1{
    font-size:72px;

    line-height:1.1;

    margin-bottom:25px;

    font-weight:900;
}

.hero-content h1 span{
    color:#3b82f6;
}

.hero-content p{
    font-size:20px;

    color:#cbd5e1;

    line-height:1.9;

    margin-bottom:40px;
}

/* =========================
   BUTTON
========================= */

.btn{
    display:inline-flex;

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

    padding:18px 35px;

    background:#3b82f6;

    color:white;

    text-decoration:none;

    border-radius:14px;

    font-weight:700;

    transition:0.3s;

    border:none;

    cursor:pointer;

    box-shadow:0 10px 30px rgba(59,130,246,0.35);
}

.btn:hover{
    transform:translateY(-5px);
}

/* =========================
   SECTION
========================= */

.section{
    padding:120px 0;
}

.section-title{
    text-align:center;

    margin-bottom:70px;
}

.section-title h2{
    font-size:52px;

    margin-bottom:20px;
}

.section-title p{
    color:#94a3b8;

    max-width:750px;

    margin:auto;

    line-height:1.8;
}

/* =========================
   ABOUT
========================= */

.about-grid{
    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:50px;

    align-items:center;
}

.about-image img{
    border-radius:30px;

    width:100%;
    height:100%;

    object-fit:cover;
}

.about-content h3{
    font-size:40px;

    margin-bottom:25px;
}

.about-content p{
    color:#cbd5e1;

    line-height:2;

    margin-bottom:20px;
}

/* =========================
   SERVICES
========================= */

.services-grid{
    display:grid;

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

    gap:30px;
}

.service-card{
    background:#111827;

    padding:40px;

    border-radius:28px;

    transition:0.4s;

    border:1px solid rgba(255,255,255,0.05);
}

.service-card:hover{
    transform:translateY(-10px);

    border-color:#3b82f6;
}

.service-card img{
    width:70px;
    height:70px;

    border-radius:18px;

    margin-bottom:25px;
}

.service-card h3{
    font-size:25px;

    margin-bottom:18px;
}

.service-card p{
    color:#cbd5e1;

    line-height:1.9;
}

/* =========================
   PORTFOLIO
========================= */

.portfolio-grid{
    display:grid;

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

    gap:30px;
}

.portfolio-card{
    background:#111827;

    border-radius:28px;

    overflow:hidden;

    transition:0.4s;
}

.portfolio-card:hover{
    transform:translateY(-10px);
}

.portfolio-card img{
    width:100%;
    height:240px;

    object-fit:cover;
}

.portfolio-content{
    padding:30px;
}

.portfolio-content span{
    color:#3b82f6;

    font-size:14px;

    font-weight:700;
}

.portfolio-content h3{
    margin:15px 0;

    font-size:28px;
}

.portfolio-content p{
    color:#cbd5e1;

    line-height:1.8;
}

/* =========================
   STATS
========================= */

.stats{
    display:grid;

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

    gap:30px;
}

.stat-box{
    background:#111827;

    padding:45px;

    border-radius:25px;

    text-align:center;
}

.stat-box h3{
    font-size:55px;

    color:#3b82f6;
}

.stat-box p{
    margin-top:10px;

    color:#cbd5e1;
}

/* =========================
   CTA
========================= */

.cta{
    background:
    linear-gradient(rgba(59,130,246,0.12), rgba(59,130,246,0.12)),
    #111827;

    padding:100px 40px;

    border-radius:35px;

    text-align:center;
}

.cta h2{
    font-size:50px;

    margin-bottom:20px;
}

.cta p{
    color:#cbd5e1;

    line-height:1.9;

    max-width:700px;

    margin:auto auto 40px;
}

/* =========================
   FOOTER PREMIUM
========================= */

.footer{

    background:#020617;

    padding:100px 0 40px;

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

    overflow:hidden;
}

/* GRID */

.footer-grid{

    display:grid;

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

    gap:50px;

    margin-bottom:60px;
}

/* =========================
   ABOUT
========================= */

.footer-about p{

    color:#94a3b8;

    line-height:1.9;

    margin-top:25px;

    font-size:15px;
}

/* =========================
   LOGO
========================= */

.footer-logo{

    display:flex;
    align-items:center;

    gap:12px;

    text-decoration:none;
}

.footer-logo img{

    width:52px;
    height:52px;

    object-fit:contain;

    flex-shrink:0;
}

.footer-logo-text span{

    color:white;

    font-size:22px;

    font-weight:800;

    line-height:1.2;
}

/* =========================
   LINKS
========================= */

.footer-links{

    display:flex;
    flex-direction:column;
}

.footer-links h3{

    font-size:20px;

    margin-bottom:25px;

    color:white;
}

.footer-links a,
.footer-links p{

    color:#94a3b8;

    text-decoration:none;

    margin-bottom:14px;

    transition:0.3s;

    line-height:1.8;

    font-size:15px;

    word-break:break-word;
}

.footer-links a:hover{
    color:#3b82f6;
}

/* =========================
   BOTTOM
========================= */

.footer-bottom{

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

    padding-top:30px;

    text-align:center;
}

.footer-bottom p{

    color:#64748b;

    font-size:14px;

    line-height:1.7;
}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .footer{

        padding:90px 0 35px;
    }

    .footer-grid{

        grid-template-columns:repeat(2,1fr);

        gap:45px;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .footer{

        padding:80px 0 30px;
    }

    .footer-grid{

        grid-template-columns:1fr;

        gap:45px;

        margin-bottom:50px;
    }

    /* ABOUT */

    .footer-about{

        text-align:center;
    }

    .footer-about p{

        margin-top:20px;

        font-size:14px;
    }

    /* LOGO */

    .footer-logo{

        justify-content:center;

        gap:10px;
    }

    .footer-logo img{

        width:46px;
        height:46px;
    }

    .footer-logo-text span{

        font-size:20px;
    }

    /* LINKS */

    .footer-links{

        align-items:center;

        text-align:center;
    }

    .footer-links h3{

        margin-bottom:20px;

        font-size:19px;
    }

    .footer-links a,
    .footer-links p{

        margin-bottom:12px;

        font-size:14px;

        line-height:1.7;
    }

    /* BOTTOM */

    .footer-bottom{

        padding-top:25px;
    }

    .footer-bottom p{

        font-size:13px;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .footer{

        padding:70px 0 25px;
    }

    .footer-grid{

        gap:35px;
    }

    .footer-logo img{

        width:42px;
        height:42px;
    }

    .footer-logo-text span{

        font-size:18px;
    }

    .footer-links h3{

        font-size:18px;
    }

    .footer-links a,
    .footer-links p{

        font-size:13.5px;
    }

    .footer-bottom p{

        font-size:12px;
    }

}

/* =========================
   TABLET
========================= */

@media(max-width:992px){

    .hero-content h1{
        font-size:56px;
    }

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

    .cta h2{
        font-size:40px;
    }

    .about-grid{
        grid-template-columns:1fr;
    }

}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .container{
        width:92%;
    }

    .navbar{
        height:auto;

        padding:18px 0;

        position:relative;
    }

    /* LOGO */

    .logo img{
        width:48px;
        height:48px;
    }

    .logo-text span{
        font-size:18px;
    }

    /* HAMBURGER */

    .menu-toggle{
        display:flex;
    }

    /* NAV MOBILE */

    .nav-links{
        position:absolute;

        top:85px;
        left:0;

        width:100%;

        background:#111827;

        flex-direction:column;

        align-items:center;

        gap:22px;

        padding:30px 0;

        border-radius:0 0 24px 24px;

        display:none;

        animation:fadeMenu 0.3s ease;
    }

    .nav-links.active{
        display:flex;
    }

    .nav-links a{
        font-size:16px;
    }

    /* HERO */

    .hero{
        min-height:auto;

        text-align:center;

        padding:170px 0 100px;
    }

    .hero-content{
        max-width:100%;
    }

    .hero-content h1{
        font-size:40px;

        line-height:1.3;
    }

    .hero-content p{
        font-size:16px;
    }

    .btn{
        width:100%;
    }

    /* SECTION */

    .section{
        padding:80px 0;
    }

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

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

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

    /* ABOUT */

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

    .about-content h3{
        font-size:30px;
    }

    /* GRID */

    .services-grid,
    .portfolio-grid,
    .stats{
        grid-template-columns:1fr;
    }

    .service-card,
    .portfolio-content,
    .stat-box{
        padding:30px;
    }

    .portfolio-content h3{
        font-size:24px;
    }

    /* CTA */

    .cta{
        padding:70px 25px;
    }

    .cta h2{
        font-size:32px;

        line-height:1.4;
    }

}

/* =========================
   SMALL MOBILE
========================= */

@media(max-width:480px){

    .logo img{
        width:42px;
        height:42px;
    }

    .logo-text span{
        font-size:16px;
    }

    .hero-content h1{
        font-size:32px;
    }

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

    .about-content h3{
        font-size:26px;
    }

    .cta h2{
        font-size:28px;
    }

}

/* =========================
   ANIMATION MENU
========================= */

@keyframes fadeMenu{

    from{
        opacity:0;
        transform:translateY(-10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

