
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f8fafc;
    color:#0f172a;
    line-height:1.6;
}

/* Navbar */

nav{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
    background:#0f172a;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 4px 20px rgba(0,0,0,.15);
}

.logo{
    font-size:30px;
    font-weight:700;
    color:#2563eb;
}

nav ul{
    display:flex;
    list-style:none;
    gap:30px;
}

nav ul li a{
    text-decoration:none;
    color:#fff;
    font-weight:500;
    transition:.3s;
}

nav ul li a:hover{
    color:#2563eb;
}

.quote-btn{
    background:#2563eb;
    color:#fff;
    border:none;
    padding:12px 24px;
    border-radius:8px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.quote-btn:hover{
    transform:translateY(-2px);
    background:#1d4ed8;
}



/* Common */

section{
    padding:100px 8%;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:42px;
    color:#0f172a;
}

/* About */

.about-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:center;
}
/* =========================
   NAVBAR
========================= */

nav {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 8%;

    background: #0f172a;

    position: sticky;
    top: 0;

    z-index: 1000;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}


/* LOGO */

.logo {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2563eb;

    color: #ffffff;

    border-radius: 10px;

    font-size: 20px;
    font-weight: 800;

    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.30);
}


/* NAVIGATION */

nav ul {
    display: flex;

    align-items: center;

    list-style: none;

    gap: 30px;
}

nav ul li a {
    text-decoration: none;

    color: #ffffff;

    font-weight: 500;

    font-size: 14px;

    transition: 0.3s;
}

nav ul li a:hover {
    color: #60a5fa;
}
.about-content h3{
    font-size:35px;
    margin-bottom:15px;
}

.about-content p{
    color:#475569;
}

.about-content img{
    width:100%;
    border-radius:15px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}




/* Footer */

footer{
    background:#0f172a;
    color:#fff;
    text-align:center;
    padding:50px 20px;
}

footer h3{
    color:#2563eb;
    margin-bottom:10px;
}

/* Mobile */

@media(max-width:768px){

    nav{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .hero-content h1{
        font-size:42px;
    }

    .hero-content p{
        font-size:16px;
    }

    .about-content{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:32px;
    }

    .quote-btn{
        width:100%;
    }
}








/* Portfolio */

.portfolio{
    background:#f1f5f9;
}

.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.portfolio-grid img{
    width:100%;
    height:260px;
    object-fit:cover;
    border-radius:15px;
    transition:.4s;
    box-shadow:0 10px 20px rgba(0,0,0,.12);
}

.portfolio-grid img:hover{
    transform:scale(1.05);
}