body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #002244;
  color: white;
  padding: 1rem 2rem;
}
.logo { font-weight: 700; font-size: 1.4rem; }
nav ul { list-style: none; display: flex; gap: 1rem; margin: 0; padding: 0; }
nav a { text-decoration: none; color: white; }
nav a:hover, nav a.active { color: #ffcc00; }

.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: url('construction-bg.jpg') center/cover no-repeat;
  color: white;
}
.hero .btn {
  display: inline-block;
  margin: 1rem;
  padding: 0.75rem 1.5rem;
  background: #ffcc00;
  color: #002244;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
}
.hero .btn.secondary {
  background: white;
  color: #002244;
}

.services, .about, .contact {
  padding: 3rem 2rem;
  text-align: center;
}
.services .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.card {
  background: white;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.card:hover { transform: translateY(-5px); }

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 400px;
  margin: auto;
}
form input, form textarea, form button {
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}
form button {
  background: #002244;
  color: white;
  border: none;
  font-weight: 600;
  cursor: pointer;
}
footer {
  text-align: center;
  padding: 1rem;
  background: #002244;
  color: white;
}
.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 6px 6px 0 0;
  margin-bottom: 1rem;
}
.card h3 {
  margin-top: 0;
  font-size: 1.2rem;
  color: #002244;
}
.card p {
  font-size: 0.95rem;
  color: #444;
}


/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f8f9fa;
}

h1, h2, h3 {
  font-weight: 700;
  color: #222;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

/* ===== HEADER ===== */
header {
  background: #fff;
  padding: 1rem 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .logo img {
  width: 198px;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

nav a {
  font-weight: 500;
  transition: 0.3s;
}

nav a:hover,
nav a.active {
  color: #0077b6;
}

/* ===== HERO ===== */
.hero {
  text-align: center;
  padding: 5rem 10%;
  background: linear-gradient(to right, #0077b6, #0096c7);
  color: #fff;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  background: #fff;
  color: #0077b6;
  font-weight: 600;
  margin: 0.5rem;
  transition: 0.3s;
}

.btn:hover {
  background: #e0f4ff;
}

.btn.secondary {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.btn.secondary:hover {
  background: #fff;
  color: #0077b6;
}

/* ===== SERVICES ===== */
.services {
  padding: 4rem 10%;
  text-align: center;
}

.services h2 {
  margin-bottom: 2rem;
  font-size: 2rem;
}

.services .grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 12px;
  padding: 1.2rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.card h3 {
  margin: 1rem 0 0.5rem;
  color: #0077b6;
}

/* ===== ABOUT ===== */
.about {
  padding: 4rem 10%;
  text-align: center;
  background: #eef7fb;
}

.about h2 {
  margin-bottom: 1rem;
}

.about p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  color: #555;
}

/* ===== CONTACT ===== */
.contact {
  padding: 4rem 10%;
  text-align: center;
}

.contact h2 {
  margin-bottom: 1.5rem;
}

form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

form input, form textarea {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

form button {
  padding: 0.9rem;
  border: none;
  border-radius: 30px;
  background: #0077b6;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background: #0096c7;
}

/* ===== FOOTER ===== */
footer {
  text-align: center;
  padding: 1.5rem;
  background: #0077b6;
  color: #fff;
  font-size: 0.9rem;
}

/* ===== RESPONSIVE NAV (MOBILE) ===== */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 5%;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  }
  nav ul.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
    font-size: 1.8rem;
    cursor: pointer;
  }
}

/* Hide toggle on desktop */
.menu-toggle {
  display: none;
}


/* Default nav (desktop) */
nav {
  position: relative;
}

nav ul {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

/* Mobile menu hidden by default */
.menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
}

/* MOBILE STYLES */
@media (max-width: 768px) {
  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
  }

  nav ul.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 4rem 10%;
  background: #f8f9fa;
}

.contact h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #0077b6;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.contact-info {
  flex: 1;
  min-width: 250px;
}

.contact-info h3 {
  margin-bottom: 1rem;
  color: #333;
}

.contact-info p {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.contact-form {
  flex: 1;
  min-width: 280px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  padding: 0.9rem;
  border: none;
  border-radius: 30px;
  background: #0077b6;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #0096c7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}

/* Spinner animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid #ccc;
  border-top: 2px solid #0077b6;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-left: 8px;
  vertical-align: middle;
}

/* CEO Section */
.leadership {
  padding: 60px 20px;
  background: #f9f9f9;
  text-align: center;
}

.leadership h2 {
  margin-bottom: 40px;
  font-size: 28px;
  color: #222;
}

.ceo-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.ceo-image {
  flex: 1 1 300px;
  text-align: center;
}

.ceo-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.ceo-bio {
  flex: 1 1 500px;
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}
.ceo-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 20px; /* reduce spacing */
  max-width: 1100px;
  margin: 0 auto; /* center the content */
}

.ceo-image {
  flex: 0 0 280px; /* fix width for image side */
  text-align: center;
}

.ceo-bio {
  flex: 1;
  max-width: 650px; /* control text width */
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  color: #444;
}
@media (max-width: 768px) {
  .ceo-container {
    flex-direction: column;
    align-items: center;
  }
  
  .ceo-image, .ceo-bio {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
  }
  
  .ceo-bio {
    text-align: center;
  }
}
.linkedin-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background-color: #0077b5;
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.linkedin-btn:hover {
  background-color: #005983;
}

.ceo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}

.ceo-image img {
  max-width: 320px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.ceo-bio {
  max-width: 600px;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  margin-top: 15px;
  padding: 10px 18px;
  background-color: #0077b5;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.linkedin-btn:hover {
  background-color: #005582;
}

.linkedin-btn .linkedin-icon {
  width: 80px;
  margin-right: 8px;
}
/* Adjust logo size */