
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    }
    
    body{
    background:#f5f7fb;
    color:#111;
    }
    
    
    /* NAVBAR */
    
    .navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:1000;
    }
    
    .logo{
    font-weight:700;
    font-size:22px;
    }
    
    .nav-links{
    display:flex;
    gap:30px;
    }
    
    .nav-links a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    }
    
    .menu-btn{
    display:none;
    font-size:26px;
    cursor:pointer;
    }
    
    
    /* HERO */
    
    .hero{
    padding:90px 8%;
    }
    
    .hero-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
    }
    
    .hero-text{
    max-width:500px;
    }
    
    .hero-text h1{
    font-size:48px;
    }
    
    .hero-text span{
    color:#3b82f6;
    }
    
    .hero-text p{
    margin:20px 0;
    color:#555;
    }
    
    .hero-btn{
    background:#3b82f6;
    color:white;
    padding:14px 28px;
    border-radius:30px;
    text-decoration:none;
    }
    
    .hero-image img{
    width:420px;
    max-width:100%;
    }
    
    
    
    /* WHY */
    
    .why{
    padding:80px 8%;
    text-align:center;
    }
    
    .why-container{
    display:flex;
    gap:25px;
    flex-wrap:wrap;
    justify-content:center;
    margin-top:40px;
    }
    
    .why-card{
    background:white;
    padding:30px;
    border-radius:12px;
    width:240px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    }
    
    
    
    /* SERVICES */
    
    .services{
    padding:80px 8%;
    background:white;
    text-align:center;
    }
    
    .service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
    margin-top:40px;
    }
    
    .service-card{
    background:#f8fafc;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
    }
    
    .service-card img{
    width:100%;
    height:180px;
    object-fit:cover;
    }
    
    .service-card h3{
    padding:15px;
    }
    
    
    
    /* TEAM */
    
    .team{
    padding:80px 8%;
    text-align:center;
    }
    
    .team-container{
    display:flex;
    justify-content:center;
    gap:25px;
    flex-wrap:wrap;
    margin-top:40px;
    }
    
    .member img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    }
    
    .member p{
    margin-top:10px;
    }
    
    
    
    /* CTA */
    
    .cta{
    padding:80px 8%;
    text-align:center;
    background:#eef4ff;
    }
    
    .cta a{
        background:#3b82f6;
        color:white;
        padding:14px 28px;
        border-radius:30px;
        text-decoration:none;
        margin-top:20px;
        display:inline-block;
        }
    
    
    
    /* FOOTER */
    
    footer{
    background:#111;
    color:white;
    padding:50px 8%;
    text-align:center;
    }
    
    
    
    /* RESPONSIVE */
    
    @media(max-width:900px){
    
    .menu-btn{
    display:block;
    }
    
    .nav-links{
    position:absolute;
    top:70px;
    right:-100%;
    background:white;
    flex-direction:column;
    width:200px;
    padding:20px;
    transition:0.3s;
    }
    
    .nav-links.active{
    right:0;
    }
    
    .hero-container{
    flex-direction:column;
    text-align:center;
    }
    
    .hero-text h1{
    font-size:36px;
    }
    
    .hero-image img{
    width:300px;
    }
    
    }