body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f7f7f7;
}

/* ===== HEADER & TITLE ===== */
header {
  background-color: #095ba6;
  color: white;
}
.site-header {
  background: #fff;
  padding: 40px 0;
  border-bottom: 2px solid #095ba6;
}

.header-horizontal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  text-align: center;
}

.logo-link {
  display: block;
}

.site-logo {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.header-text {
  max-width: 500px;
}

.company-name {
  font-size: 2rem;
  font-weight: bold;
  color: #095ba6;
  margin: 0;
}

.company-tagline {
  font-size: 1rem;
  color: #555;
  font-weight: 400;
  margin-top: 8px;
}

.logo-title-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px;
  gap: 20px;
  flex-wrap: wrap;
}
.company-logo {
  height: 100px;
  width: auto;
  border-radius: 50%;
}
.company-title h1 {
  margin: 0;
  font-size: 1.6em;
}
.company-title p {
  margin: 5px 0 0;
  font-size: 1em;
  color: #eee;
}

/* ===== NEW NAVIGATION ===== */
.nav-toggle {
  display: none;
  background-color: #095ba6;
  color: white;
  padding: 12px 18px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
}

.main-nav {
  background-color: #095ba6;
  font-family: 'Segoe UI', sans-serif;
}
.nav-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li {
  position: relative;
}
.nav-links a {
  color: rgb(248, 248, 250);
  padding: 12px 18px;
  text-decoration: none;
  display: block;
}
.nav-links a:hover {
  background-color: white;
  color: #010913;
  border-radius: 30px;

}
.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #0d4c86;
  min-width: 160px;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.dropdown-content a {
  padding: 10px 15px;
  display: block;
  color: white;
}
.dropdown:hover .dropdown-content {
  display: block;
}
.dropdown-content a:hover {
  background-color: #5985c5;
}

/* ===== MOBILE NAVIGATION ===== */
@media screen and (max-width: 1378px) {
  .nav-toggle {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #095ba6;
    width: 100%;
  }
  body.nav-open .nav-links {
    display: flex;
  }
  .nav-links li {
    width: 100%;
  }
  .nav-links a {
    padding: 14px 20px;
    border-bottom: 1px solid #0d4c86;
  }
  .dropdown:hover .dropdown-content {
    display: none;
  }
  .dropdown-content {
    position: static;
    display: none;
    background-color: #0d4c86;
    padding-left: 20px;
  }
  .dropdown.active .dropdown-content {
    display: block;
  }
}

/* ===== CAROUSEL ===== */
.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-bottom: 40px;
}
.carousel img {
  width: 100%;
  flex-shrink: 0;
  height: 750px;
  object-fit: cover;
  object-position: center;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background-color: #eef5fb;
  padding: 60px 30px;
  font-family: 'Segoe UI', sans-serif;
}
.about-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  background: #fff;
  box-shadow: 0 0 25px rgba(0,0,0,0.08);
  border-radius: 12px;
  overflow: hidden;
}
.about-content {
  flex: 3;
  padding: 40px;
  color: #2a3e59;
}
.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.about-content p {
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 25px;
}
.about-card {
  flex: 1;
  background-color: #095ba6;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.focus-card {
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
}
.focus-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.focus-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.focus-card li {
  margin-bottom: 10px;
  font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn {
  background-color: #fb7a24;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.btn:hover {
  background-color: #e0681d;
}

/* ===== FOOTER ===== */
footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 15px;
}

/* ===== RESPONSIVE ABOUT ===== */
@media screen and (max-width: 1378px) {
  .about-container {
    flex-direction: column;
  }
  .about-content, .about-card {
    flex: 1;
    padding: 30px;
  }
  .logo-title-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-wrapper {
    flex-direction: column;
    padding: 20px;
    width: 100%;
  }
  .about-text, .about-card {
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
  }
  .carousel img {
    height: 300px;
  }
}

/* ===== AWARDS SECTION ===== */
.award-shelf {
  background: linear-gradient(to right, #f9f9f9, #eaeaea);
  padding: 60px 30px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}
.award-shelf h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #095ba6;
}
.award-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 30px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 20px 0;
}
.award-box {
  background: white;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease, z-index 0s ease;
  z-index: 1;
  position: relative;
  flex: 0 0 auto;
}
.award-box img {
  width: 200px;
  height: auto;
  display: block;
  border-radius: 8px;
}
.award-box:hover {
  transform: scale(1.3) translateY(-20px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 10;
}

/* ===== CORE EXPERTISE ===== */
.core-expertise-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 10px;
}
.expertise-card {
  background: white;
  color: #095ba6;
  font-weight: bold;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-align: left;
  position: relative;
  z-index: 1;
}
.expertise-card:hover {
  transform: scale(1.07) translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  z-index: 10;
}
.footer-clean {
  background: #222;
  color: #ddd;
  padding: 40px 20px;
  font-family: 'Segoe UI', sans-serif;
  font-size: 0.95rem;
}

.footer-cols {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  padding-bottom: 30px;
  border-bottom: 1px solid #444;
}

.footer-col {
  flex: 1 1 250px;
  margin: 15px;
}

.footer-col h3 {
  font-size: 1.4rem;
  color: #fb7a24;
  margin-bottom: 10px;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #eee;
}

.footer-col p {
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: #fb7a24;
}

.footer-base {
  text-align: center;
  margin-top: 30px;
  font-size: 0.85rem;
  color: #aaa;
}

.powered {
  font-style: italic;
  color: #888;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .footer-cols {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-col {
    margin-bottom: 20px;
  }
}

.about-banner {
  background: linear-gradient(to right, #85afd6, #a7b3d4);
  color: white;
  padding: 60px 30px;
  text-align: center;

}

.about-banner h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.about-banner p {
  font-size: 1.1rem;
  font-weight: 300;
  /* text-align: justify; */

}

.about-story, .about-process, .about-impact {
  background: #f7f9fc;
  padding: 60px 30px;
  font-family: 'Segoe UI', sans-serif;
  text-align: justify;
}

.about-story h2,
.about-process h2,
.about-impact h2 {
  font-size: 2rem;
  color: #095ba6;
  margin-bottom: 20px;
}

.about-story p,
.about-impact p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 20px;
}

.about-process ul {
  list-style: none;
  padding: 0;
  font-size: 1.05rem;
}

.about-process li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  color: #333;
}

.about-process li::before {
  content: "✔️";
  position: absolute;
  left: 0;
}

.footer-social-icons {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  justify-content: center;
}

.footer-social-icons a {
  color: #ddd;
  font-size: 3rem;
  transition: transform 0.3s ease, color 0.3s ease;
}

.footer-social-icons a:hover {
  color: #fb7a24;
  transform: scale(1.3);
}

.social-col h4 {
  color: #eee;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

/* Founder Block */
.founder-block {
  background: linear-gradient(to right, #eef2f7, #d9e5f2);
  padding: 60px 20px;
}

.founder-container {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: auto;
}

.founder-photo {
  width: 220px;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.founder-quote {
  flex: 1;
  color: #2a3e59;
}

.founder-quote h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.founder-quote p {
  font-size: 1.2rem;
  font-style: italic;
  color: #555;
}

/* Contractor Journey Text */
.contractor-journey {
  background: #fefefe;
  padding: 60px 30px;
}

.contractor-journey h2 {
  font-size: 2rem;
  color: #095ba6;
  margin-bottom: 30px;
  text-align: center;
}

.contractor-journey p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 25px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.resume-section {
  background: #f9f9fc;
  padding: 60px 30px;
  font-family: 'Segoe UI', sans-serif;
}

.resume-section h2 {
  font-size: 2rem;
  color: #095ba6;
  margin-bottom: 30px;
  text-align: center;
}

.resume-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.resume-form label {
  font-weight: 600;
  color: #2a3e59;
}

.resume-form input[type="text"],
.resume-form input[type="email"],
.resume-form input[type="file"] {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  background: #fefefe;
  transition: border 0.3s ease;
}

.resume-form input:focus {
  border-color: #095ba6;
  outline: none;
}

.btn-submit {
  background-color: #fb7a24;
  color: white;
  font-weight: bold;
  border: none;
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
  background-color: #e0681d;
  transform: translateY(-2px);
}

.submit-note {
  margin-top: 25px;
  font-size: 0.95rem;
  color: #555;
  text-align: center;
}
/* 
.staff-grid {
  background: #fefefe;
  padding: 60px 30px;
}

.staff-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  padding: 20px;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.staff-photo {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #095ba6;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
}

.staff-info h3 {
  margin-bottom: 6px;
  font-size: 1.3rem;
  color: #095ba6;
}

.staff-info p {
  margin: 4px 0;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
} */

.contact-section {
  background: #f1f7fc;
  padding: 60px 30px;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.contact-card {
  flex: 1 1 450px;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.05);
}

.contact-card h3 {
  color: #095ba6;
  margin-bottom: 10px;
}

.contact-card p, .contact-card a {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.contact-card a {
  text-decoration: none;
  color: #fb7a24;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 8px;
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #095ba6;
  outline: none;
}

.btn-submit {
  background-color: #fb7a24;
  color: white;
  font-weight: bold;
  padding: 14px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
  background-color: #e0681d;
  transform: translateY(-2px);
}

.contact-social {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.contact-social a {
  color: #777;
  font-size: 1.4rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.contact-social a:hover {
  color: #fb7a24;
  transform: scale(1.2);
}

/* Responsive */
@media screen and (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}

.map-section {
  background: #f7fbff;
  padding: 50px 20px;
  border-top: 1px solid #ccc;
}

.map-section h2 {
  font-size: 1.8rem;
  color: #095ba6;
  margin-bottom: 20px;
  font-weight: 600;
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.staff-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.staff-photo {
  width: 220px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  flex-shrink: 0;
}

.staff-info {
  flex: 1;
  min-width: 250px;
}

.staff-info h3 {
  margin-top: 0;
  font-size: 20px;
  font-weight: bold;
}

.staff-info p {
  text-align: justify;
  font-family: 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

.project-row {
        background: #f9f9f9;
        border: 1px solid #ddd;
        border-radius: 6px;
        padding: 15px 20px;
        margin-bottom: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
    }

    .project-info {
        flex: 1;
        min-width: 250px;
    }

    .project-actions a {
        margin-left: 10px;
        text-decoration: none;
        font-weight: bold;
        color: #007bff;
    }

    .project-actions a:hover {
        text-decoration: underline;
    }

    .toggle-card-group {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .toggle-card {
        padding: 10px 20px;
        margin: 0 10px;
        cursor: pointer;
        background: #eee;
        border-radius: 4px;
        font-weight: bold;
    }

    .toggle-card.active {
        background: #007bff;
        color: white;
    }

    .table-section {
        display: none;
    }

    .table-section.active {
        display: block;
    }

    a {
        text-decoration: none;
    }