.about-section, .vision-professionalism, .why-choose, .our-solutions, .board-of-directors {
    padding: 60px 20px;
    background-color: #f9f9f9;
}
.about-section .about-intro {
    display: flex;
    flex-wrap: wrap;
    align-items: end;
    gap: 40px;
}
.about-section .text {
    flex: 1;
}
.about-section .text p {
  text-align: justify;  
}
.about-section .image img {
    width: 100%;
    border-radius: 12px;
    max-width: 600px;
}
.vision-boxes {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}
.vision-boxes .box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    flex: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.reasons .reason {
    margin-bottom: 20px;
    font-size: 1rem;
}
.reasons i {
    color: #0066cc;
    margin-right: 10px;
}
.solutions {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}
.solution {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 30%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    text-align: center;
}
.solution img {
    width: 100%;
    max-height: 180px;
    object-fit: cover;
    border-radius: 8px;
}
.directors {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.director img {
    width: 100%;
    max-width: 220px;
    border-radius: 50%;
}
.director {
    text-align: center;
}
.cta-btn {
    display: inline-block;
    padding: 12px 25px;
    background-color: #003366;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.cta-btn:hover {
    background-color: #0055aa;
}

.box h4{
    color: #003366;
}
.why-choose {
  padding: 60px 20px;
  background-color: #fff;
}

.why-choose h2 {
  font-size: 2rem;
  font-weight: 700;
}

.why-choose .subtitle {
  font-size: 0.95rem;
  margin-bottom: 30px;
  color: #6c757d;
}

.why-table {
  width: 100%;
  border-collapse: collapse;
}

.why-table td {
  padding: 15px 10px;
  vertical-align: top;
  border-bottom: 1px solid #eee;
}

.icon-img {
  width: 24px;
  height: 24px;
  margin-top: 4px;
}

.title {
  display: inline-block;
  color: #0056b3;
  font-weight: 600;
  margin-bottom: 4px;
}

.why-table p {
  margin: 0;
  font-size: 0.95rem;
  color: #333;
}

@media (max-width: 768px) {
  .why-table td {
    display: block;
    width: 100%;
  }

  .why-table tr {
    display: block;
    margin-bottom: 20px;
  }

  .icon-img {
    margin-bottom: 8px;
  }
}
.our-solutions {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.solutions-heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.solutions-heading span {
  text-decoration: underline;
  text-decoration-color: #004aad;
  text-decoration-thickness: 4px;
}

.solutions-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.solution-card {
  background-color: transparent;
  border-radius: 10px;
  width: 100%;
  max-width: 350px;
  text-align: left;
  transition: transform 0.3s;
}

.solution-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.solution-text {
  padding: 15px 5px 0;
}

.solution-text h4 {
  font-size: 1.1rem;
  color: #111;
  font-weight: 600;
  margin: 15px 0 8px;
}

.solution-text p {
  font-size: 0.95rem;
  color: #4d4d4d;
  line-height: 1.5;
}

.view-more-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 6px 16px;
  border: 1px solid #004aad;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #004aad;
  text-decoration: none;
  transition: background 0.3s ease;
}

.view-more-btn:hover {
  background-color: #004aad;
  color: #fff;
}

.view-more-btn i {
  margin-left: 8px;
}
.board-of-directors {
  padding: 60px 20px;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

.subtitle {
  font-size: 0.95rem;
  color: #666;
  margin-bottom: 40px;
}

.directors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.director-card {
  position: relative;
  width: 100%;
  max-width: 320px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #2c2c2c;
}

.director-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.overlay-card {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  color: #fff;
  text-align: left;
  border-radius: 0 0 20px 20px;
}

.overlay-card h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.overlay-card .role {
  margin: 3px 0;
  font-size: 0.85rem;
  color: #e0e0e0;
}

.overlay-card .position {
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-block;
  margin-top: 5px;
}
