@charset "UTF-8";
@import url("https://fonts.bunny.net/css?family=Nunito");
/* General Page Section Styles (Shared) */
.page-section {
  font-family: Arial, sans-serif;
  color: #333;
}

.page-section header {
  background-color: #0b2b52;
  color: white;
  padding: 40px 0;
}

.page-section h1 {
  margin: 0;
  font-size: 2.5rem;
  color: white;
}

/* Responsive Header Padding */
@media (min-width: 992px) {
  .section-header h1 {
    padding-left: 16rem;
    text-align: left;
  }
}
@media (max-width: 991.98px) {
  .section-header h1 {
    padding-left: 0;
    text-align: center;
  }
}
/* Shared Container Width */
.page-section .container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
  padding: 40px 0;
}

.about-page .section {
  padding: 40px 0;
  border-bottom: 1px solid #ddd;
}

.about-page .section h2 {
  color: #0b2b52;
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.about-page .section img {
  max-width: 100%;
  height: auto;
}

.about-page .mission-image {
  float: right;
  margin-left: 20px;
  width: 200px;
}

.about-page .team {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.about-page .member {
  flex: 1 1 calc(25% - 20px);
  background-color: #f8f8f8;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.about-page .member img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 10px;
}

.about-page .member h4 {
  margin: 10px 0 5px;
  font-size: 1rem;
}

.about-page .member span {
  font-size: 0.9rem;
  color: #777;
}

@media (max-width: 768px) {
  .about-page .team {
    flex-direction: column;
  }
  .about-page .member {
    flex: 1 1 100%;
  }
  .about-page .mission-image {
    float: none;
    margin: 20px auto;
    display: block;
  }
}
.hero-banner {
  position: relative;
  height: 80vh;
  background: url("https://images.unsplash.com/photo-1608759265468-21c39b479c4e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80") center center/cover no-repeat;
}

.hero-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.hero-banner .container {
  z-index: 2;
}

.services ul li {
  margin-bottom: 10px;
  padding-left: 1.2em;
  position: relative;
}

.services ul li::before {
  content: "✓";
  color: #0d6efd;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.about-image-wrapper {
  position: relative;
}

.experience-badge {
  z-index: 10;
  font-size: 1rem;
  text-align: center;
  width: 150px;
}

@media (max-width: 767px) {
  .experience-badge {
    position: static !important;
    transform: none !important;
    margin-top: 1rem;
  }
}
/* General Page Section Styles (Shared) */
.page-section {
  font-family: Arial, sans-serif;
  color: #333;
}

.page-section header {
  background-color: #0b2b52;
  color: white;
  padding: 40px 0;
}

.page-section h1 {
  margin: 0;
  font-size: 2.5rem;
  color: white;
}

/* Responsive Header Padding */
@media (min-width: 992px) {
  .section-header h1 {
    padding-left: 16rem;
    text-align: left;
  }
}
@media (max-width: 991.98px) {
  .section-header h1 {
    padding-left: 0;
    text-align: center;
  }
}
/* Shared Container Width */
.page-section .container {
  width: 90%;
  max-width: 1280px;
  margin: auto;
  padding: 40px 0;
}/*# sourceMappingURL=app.css.map */


.team .member {
    transition: box-shadow 0.3s ease;
}

.team .member:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.team-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 5px solid #eee;
}

.member-description {
    font-size: 0.9rem;
    color: #555;
    min-height: 60px; /* consistent height */
}

.social-icon {
    font-size: 1.3rem;
    margin: 0 8px;
    color: #666;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #007bff; /* Bootstrap primary blue or choose your color */
}

/* Optional: Different colors per social platform */
.social-icon.twitter:hover { color: #1DA1F2; }
.social-icon.facebook:hover { color: #3b5998; }
.social-icon.instagram:hover { color: #E4405F; }
.social-icon.linkedin:hover { color: #0A66C2; }
