html{
scroll-behavior:smooth;
}

body{
font-family: Arial, Helvetica, sans-serif;
margin:0;
background:#f4f4f4;
color:#333;
line-height:1.6;
}



/* NAVBAR */

.navbar{
background:#2f2f2f;
padding:14px 0;
position:sticky;
top:0;
z-index:1000;
}

.nav-links{
display:flex;
justify-content:center;
gap:40px;
list-style:none;
margin:0;
padding:0;
}

.nav-links a{
color:white;
text-decoration:none;
font-size:16px;
font-weight:500;
}

.nav-links a:hover{
color:#dcdcdc;
}



/* HERO */

.hero{
background:linear-gradient(#f3f3f3,#e9e9e9);
text-align:center;
padding:90px 20px 70px 20px;
border-bottom:1px solid #ddd;
}

.hero-logo{
width:320px;
max-width:90%;
margin-bottom:20px;
}

.hero h1{
font-size:40px;
margin:15px 0;
color:#333;
}

.hero p{
font-size:18px;
color:#666;
}



/* CONTAINER */

.container{
max-width:1100px;
margin:auto;
padding:50px 20px;
}



/* HEADINGS */

h2{
text-align:center;
margin-bottom:30px;
font-size:28px;
color:#444;
}



/* SERVICES */

#services{
background:white;
}

.service-cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.card{
background:#fafafa;
padding:34px;
border-radius:10px;
border:1px solid #ececec;
box-shadow:0 6px 16px rgba(0,0,0,0.06);
transition:transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover{
transform:translateY(-6px);
box-shadow:0 14px 28px rgba(0,0,0,0.12);
}

.card h3{
margin-bottom:12px;
color:#2f2f2f;
}

.card p{
color:#666;
}



/* ABOUT */

#about{
background:#f0f0f0;
}

.about-card{
background:white;
padding:36px;
max-width:760px;
margin:auto;
border-radius:10px;
box-shadow:0 6px 16px rgba(0,0,0,0.08);
}



/* CONTACT */

#contact{
background:white;
padding-top:30px;
padding-bottom:60px;
}

.contact-panel{
max-width:600px;
margin:auto;
text-align:center;
}

.contact-text{
font-size:18px;
margin-bottom:8px;
color:#555;
}

.contact-email{
font-size:20px;
font-weight:bold;
color:#333;
text-decoration:none;
}

.contact-email:hover{
text-decoration:underline;
}
