:root{
    --primary:#0f4c81;
    --secondary:#1f2937;
    --accent:#2563eb;
    --light:#f8fafc;
    --white:#ffffff;
}

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

body{
    font-family: "Segoe UI", Arial, sans-serif;
    line-height:1.6;
    color:#333;
}

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

/* Header */
header{
    background:var(--secondary);
    color:white;
    position:sticky;
    top:0;
    z-index:1000;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

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

.logo svg{
    width:55px;
    height:55px;
}

.logo-text{
    font-size:1.5rem;
    font-weight:bold;
}

nav ul{
    display:flex;
    list-style:none;
}

nav ul li{
    margin-left:25px;
}

nav ul li a{
    color:white;
    text-decoration:none;
    transition:0.3s;
}

nav ul li a:hover{
    color:#93c5fd;
}

/* Hero */
.hero{
    background:linear-gradient(rgba(15,76,129,.85), rgba(15,76,129,.85)),
    url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1600');
    background-size:cover;
    background-position:center;
    color:white;
    text-align:center;
    padding:120px 20px;
}

.hero h1{
    font-size:3.2rem;
    margin-bottom:20px;
}

.hero p{
    font-size:1.2rem;
    max-width:700px;
    margin:auto;
    margin-bottom:30px;
}

.btn{
    display:inline-block;
    background:white;
    color:var(--primary);
    text-decoration:none;
    padding:14px 28px;
    border-radius:5px;
    font-weight:bold;
}

/* Sections */
section{
    padding:80px 0;
	scroll-margin-top: 230px;
}

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

.section-title h2{
    color:var(--primary);
    font-size:2.2rem;
}

/* Services */
.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.service-card{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 3px 10px rgba(0,0,0,.1);
}

.service-card h3{
    margin-bottom:15px;
    color:var(--primary);
}

/* About */
.about{
    background:var(--light);
}

.about-content{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

/* Team 
.team-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.team-member{
    text-align:center;
    background:white;
    padding:25px;
    border-radius:10px;
    box-shadow:0 3px 10px rgba(0,0,0,.1);
}

.team-member img{
    width:120px;
    height:120px;
    border-radius:50%;
    object-fit:cover;
    margin-bottom:15px;
}

*/



/* Contact */
.contact{
    background:var(--light);
}

form{
    max-width:700px;
    margin:auto;
}

input, textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:5px;
}

button{
    background:var(--primary);
    color:white;
    border:none;
    padding:12px 25px;
    cursor:pointer;
    border-radius:5px;
}

/* Footer */
footer{
    background:var(--secondary);
    color:white;
    text-align:center;
    padding:25px;
}

@media(max-width:768px){
    .navbar{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

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

    .hero h1{
        font-size:2.2rem;
    }
}
