
*{box-sizing:border-box;margin:0;padding:0;font-family:Arial,Helvetica,sans-serif;}
body{background:#f4f6f8;color:#222;}
header{background:#0a1f44;display:flex;align-items:center;justify-content:space-between;padding:15px 30px;position:sticky;top:0;}
.logo{height:65px;}
nav a{color:#fff;text-decoration:none;margin-left:20px;font-weight:600;}
nav a:hover{color:#d61f26;}
.hero{background:linear-gradient(rgba(10,31,68,.7),rgba(10,31,68,.7)),url('../images/hero.jpg');background-size:cover;background-position:center;color:#fff;text-align:center;padding:120px 20px;}
.hero h1{font-size:48px;margin-bottom:15px;}
.hero p{font-size:20px;margin-bottom:25px;}
.btn{background:#d61f26;color:#fff;padding:14px 32px;text-decoration:none;font-weight:bold;border-radius:4px;}
.section{padding:70px 40px;background:#fff;}
.section h2{text-align:center;color:#0a1f44;margin-bottom:40px;}
.grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:25px;}
.card{border:1px solid #ddd;border-radius:6px;overflow:hidden;}
.card img{width:100%;height:200px;object-fit:cover;}
.card div{padding:20px;}
.card h3{color:#d61f26;margin-bottom:10px;}
footer{background:#0a1f44;color:#fff;text-align:center;padding:20px;}
.contact a{color:#d61f26;text-decoration:none;font-weight:600;}
@media(max-width:768px){
header{flex-direction:column;}
nav{margin-top:10px;}
.hero h1{font-size:34px;}
}
/* ===============================
   PROJECTS PAGE STYLING
================================ */

.projects-section {
  padding: 60px 8%;
}

.projects-section h2 {
  text-align: center;
  font-size: 36px;
  color: #0b2c4d;
  margin-bottom: 12px;
}

.projects-intro {
  text-align: center;
  font-size: 17px;
  color: #444;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.project-block {
  display: flex;
  gap: 40px;
  margin-bottom: 70px;
  align-items: center;
}

.project-block.reverse {
  flex-direction: row-reverse;
}

.project-block img {
  width: 50%;
  border-radius: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.project-content {
  width: 50%;
}

.project-content h3 {
  font-size: 28px;
  color: #0b2c4d;
  margin-bottom: 15px;
}

.project-content p {
  font-size: 16.5px;
  line-height: 1.7;
  color: #333;
}

/* Mobile Responsive */
@media (max-width: 900px) {
  .project-block,
  .project-block.reverse {
    flex-direction: column;
  }

  .project-block img,
  .project-content {
    width: 100%;
  }
}
/* ===============================
   GLOBAL STYLES
================================ */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #ffffff;
  color: #333;
}

/* ===============================
   HEADER & NAVIGATION
================================ */

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 8%;
  background: #0b2c4d;
}

.logo {
  height: 55px;
}

.nav a {
  color: #ffffff;
  text-decoration: none;
  margin-left: 25px;
  font-size: 16px;
}

.nav a:hover,
.nav a.active {
  text-decoration: underline;
}

/* ===============================
   ABOUT HERO SECTION
================================ */

.about-hero {
  position: relative;
  height: 65vh;
  background: url("../images/About Us.jpeg") center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-hero-overlay {
  background: rgba(0, 0, 0, 0.6);
  padding: 40px 60px;
  border-radius: 8px;
  text-align: center;
  color: #ffffff;
}

.about-hero-overlay h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.about-hero-overlay p {
  font-size: 18px;
  opacity: 0.9;
}

/* ===============================
   ABOUT CONTENT
================================ */

.about-content {
  padding: 60px 10%;
  text-align: center;
}

.about-content h2 {
  font-size: 32px;
  color: #0b2c4d;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 17px;
  line-height: 1.7;
  max-width: 900px;
  margin: auto;
}

/* ===============================
   FOOTER
================================ */

.footer {
  background: #0b2c4d;
  color: #ffffff;
  text-align: center;
  padding: 15px;
  font-size: 14px;
}

/* ===============================
   RESPONSIVE DESIGN
================================ */

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

  .nav {
    margin-top: 10px;
  }

  .nav a {
    margin: 10px;
    display: inline-block;
  }

  .about-hero {
    height: 50vh;
  }

  .about-hero-overlay h1 {
    font-size: 28px;
  }
}
/* ===============================
   CONTACT PAGE
================================ */

.contact-section {
  padding: 60px 10%;
  text-align: center;
}

.contact-section h2 {
  font-size: 36px;
  color: #0b2c4d;
  margin-bottom: 30px;
}

.contact-details p {
  font-size: 17px;
  margin-bottom: 15px;
}

.contact-details a {
  color: #0b2c4d;
  text-decoration: none;
}

.contact-details a:hover {
  text-decoration: underline;
}

/* MAP */
.map-container {
  margin-top: 40px;
  width: 100%;
  height: 420px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* DIRECTIONS BUTTON */
.map-button {
  margin-top: 25px;
}

.map-button a {
  display: inline-block;
  padding: 12px 25px;
  background: #0b2c4d;
  color: #ffffff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
}

.map-button a:hover {
  background: #154b7d;
}

/* Mobile */
@media (max-width: 768px) {
  .map-container {
    height: 300px;
  }
}
