* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f4f6f8;
  color: #333;
}

header {
  position: fixed;
  top: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  z-index: 1000;
}

.header-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.brand {
  font-size: 22px;
  font-weight: 600;
  color: #1f3a5f;
}

nav a {
  margin-left: 24px;
  text-decoration: none;
  color: #1f3a5f;
  font-weight: 500;
}

section {
  padding: 100px 24px;
}

/* ✅ HERO FIX */
.hero {
  height: 85vh; /* reduced from 90vh */
  background: url('../images/hero.jpg') center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 0 8%;
}


.hero .overlay {
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 40px;
  border-radius: 8px;
  max-width: 700px;
}

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

h2 {
  color: #1f3a5f;
  margin-bottom: 20px;
}

.about-wrap {
  display: flex;
  gap: 40px;
  align-items: center;
}

.about-wrap img {
  width: 100%;
  max-width: 420px;
  border-radius: 8px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.card img {
  width: 100%;
}

.card div {
  padding: 20px;
}

footer {
  background: #1f3a5f;
  color: #fff;
  text-align: center;
  padding: 32px 16px;
}

/* 📱 Responsive adjustments */
@media (max-width: 900px) {
  .about-wrap {
    flex-direction: column;
  }
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 768px) {
  .hero {
    height: 55vh;
  }
}


@media (max-width: 600px) {
  .grid {
    grid-template-columns: 1fr;
  }
  nav {
    margin-top: 10px;
  }
}


*{box-sizing:border-box}
body{margin:0;font-family:'Segoe UI',Arial,sans-serif;background:#f4f6f8;color:#333}
header{position:fixed;top:0;width:100%;background:#fff;box-shadow:0 2px 8px rgba(0,0,0,.08);z-index:1000}
.header-inner{max-width:1200px;margin:auto;display:flex;justify-content:space-between;align-items:center;padding:16px 24px}
.brand{font-size:22px;font-weight:600;color:#1f3a5f}
nav a{margin-left:24px;text-decoration:none;color:#1f3a5f;font-weight:500}
section{padding:100px 24px}
.hero{height:90vh;background:url('../images/hero.jpg') center/cover no-repeat;display:flex;align-items:center;justify-content:center;text-align:center}
.hero .overlay{background:rgba(0,0,0,.55);color:#fff;padding:40px;border-radius:8px;max-width:700px}
.container{max-width:1200px;margin:auto}
.grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.card{background:#fff;border-radius:8px;overflow:hidden;box-shadow:0 8px 20px rgba(0,0,0,.06)}
.card img{width:100%}
.card div{padding:20px}
.contact-wrap{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:flex-start}
form{max-width:100%}
input,textarea{width:100%;padding:12px;margin-bottom:15px;border-radius:6px;border:1px solid #ccc}
button{background:#1f3a5f;color:#fff;padding:12px 20px;border:none;border-radius:6px;font-size:16px;cursor:pointer}
button:hover{background:#16314d}
.map iframe{width:100%;height:350px;border:0;border-radius:8px}
footer{background:#1f3a5f;color:#fff;text-align:center;padding:32px}
@media(max-width:900px){.grid{grid-template-columns:repeat(2,1fr)}.contact-wrap{grid-template-columns:1fr}}
@media(max-width:600px){.grid{grid-template-columns:1fr}}
