body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  background-color: #ffffff;
  color: #333;
}

/* Contact Strip */
.contact-strip {
  background-color: #63ddf3d4;
  padding: 20px 35px;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  color: black;
  gap: 10px;
  text-align: center;
}

/* Header */
/* header {
  background-color: #fff;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #e0e0e0;
} */

/* header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap; 
  overflow-x: auto; 
} */

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap; /* Prevents wrapping */
  overflow-x: auto;  /* Allows horizontal scroll on very small screens if needed */
}


nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 15px;
}

nav a {
  text-decoration: none;
  color: #004080;
  font-weight: 500;
}



/* Headings */
h2 {
  text-align: center;
  font-size: 28px;
  margin: 40px 0 20px;
  color: #004080;
}

/* Services Grid */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

/* Service Item */
.service-item {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.03);
}

.service-item:hover {
  box-shadow: 0 6px 12px rgba(0,0,0,0.08);
}

.service-title {
  font-size: 18px;
  font-weight: 600;
  color: #002b5c;
}

.service-desc {
  margin-top: 10px;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease;
}

.service-item:hover .service-desc {
  opacity: 1;
  max-height: 300px;
}

/* Image */
img {
  display: block;
  margin: 20px auto;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 8px;
}

/* Footer */
footer {
  text-align: center;
  padding: 20px;
  background-color: #63ddf3d4;
  font-size: 14px;
  color: #777;
}

/* Form */
form {
  max-width: 600px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 20px;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}

form input,
form select,
form textarea {
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}

form button {
  padding: 12px;
  background-color: #004080;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

form button:hover {
  background-color: #003060;
}

/* Navigation Active Link */
nav a.active {
  border-bottom: 2px solid #004080;
  padding-bottom: 4px;
}

/* About Section */
.about-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.8;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #444;
}

/* About Goals & Vision */
.about-goal-vision {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.about-card {
  flex: 1 1 45%;
  background: #f9f9f9;
  padding: 20px;
  border-left: 4px solid #004080;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  margin-top: 20px;
}

.about-card h3 {
  color: #004080;
  margin-top: 0;
}

/* Career List */
.career-list {
  list-style-type: disc;
  padding-left: 20px;
  margin: 10px 0 20px;
}

.career-list li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #333;
}

@media (max-width: 768px) {
  .contact-strip {
    flex-direction: column;
    gap: 5px;
    text-align: center;
  }

  header {
    flex-direction: column;
    align-items: flex-start;
  }

  nav {
    text-align: center;
    width: 100%;
    margin-top: 10px;
  }

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

/* ===================
   RESPONSIVE QUERIES
   =================== */
@media (max-width: 768px) {
  nav {
    justify-content: center;
  }

  .about-goal-vision {
    flex-direction: column;
  }

  header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 22px;
  }

  .contact-strip {
    flex-direction: column;
    padding: 15px 20px;
  }

  .service-title {
    font-size: 16px;
  }

  .service-desc {
    font-size: 14px;
  }

  nav a {
    font-size: 14px;
  }
}
