/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  color: #333;
  padding:20px;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  background-color: #004080;
  color: #fff;
  padding: 20px;
  text-align: center;
}

header h2 {
  margin-bottom: 10px;
  vertical-align: middle;
}

/* Navigation */
nav {
  margin-top: 10px;
}

.list {
  justify-content: space-between;
  color: #301872;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  white-space: nowrap;
}

nav a:hover {
  text-decoration: underline;
}

/* Section */
main {
  background-color: #fff;
  padding: 20px;
  margin-top: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

main h2 {
  margin-bottom: 10px;
  color: #004080;
}

/* Footer */
footer {
  margin-top: 30px;
  text-align: center;
  font-size: 0.9em;
  color: #555;
}
/* Contact Page Styling */
.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px;
  background-color: #fdfcfb;
  border-radius: 10px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.contact-info, .social-info {
  display: flex;
    align-items: center;
    gap: 10px;
}


.contact-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #555;
}

.contact-details .divider {
  width: 1px;
  height: 20px;
  background-color: #ccc;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  color: #000;
  background-color: #fff;
  border: 2px solid #000;
  padding: 8px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.social-icons a:hover {
  background-color: #000;
  color: #fff;
}
/*About Us*/
nav a {
      margin: 0 15px;
      color: white;
      text-decoration: none;
    }
.org-chart {
      display: flex;
      flex-direction: column;
      align-items: center;
      margin: 40px auto;
    }

    .person {
      text-align: center;
      margin: 20px;
    }

    .person img {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #ccc;
    }

    .person .name {
      font-weight: bold;
      margin-top: 10px;
    }

    .person .title {
      font-size: 0.9em;
      color: gray;
    }

    .circle-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      max-width: 1000px;
    }

    .ceo {
      border: 4px solid black;
    }

    .team {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 50px;
      margin-top: 30px;
    }
.services-section {
  background-color: #fdfcfb;
  text-align: center;
  padding: 60px 20px;
}

.services-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.services-section .underline {
  width: 50px;
  height: 2px;
  background-color: #faf9f9;
  margin: 0 auto 20px auto;
}

.services-description {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 16px;
  color: #333;
  line-height: 1.6;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.service-item {
  width: 150px;
  text-align: center;
  color: #355f4c;
}

.service-item i {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
}

.service-item p {
  font-size: 14px;
  color: gray;
}
.home-scope-section {
  background-color: #fdfcfb;
  text-align: center;
  padding: 60px 20px;
  margin-top: 40px;
}

.home-scope-section h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1a1a1a;
}

.home-scope-section .underline {
  width: 50px;
  height: 2px;
  background-color: #faf9f9;
  margin: 0 auto 20px auto;
}
.org-chart h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #1a1a1a;
}
.scope-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.scope-item {
  width: 180px;
  text-align: center;
  color: #355f4c;
}

.scope-item i {
  font-size: 36px;
  margin-bottom: 10px;
  display: block;
}

.scope-item p {
  font-size: 14px;
  color: gray;
}
