/* ========== GLOBAL RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
}

body {
  background-color: #fff;
  color: #333;
  line-height: 1.6;
}

/* ========== HERO SECTION ========== */
.about-hero {
  position: relative;
  width: 100%;
  height: 80vh;
  background: url("images/hero-groups2.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.about-hero .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 40, 0.5);
  z-index: 1;
}

.about-hero-text {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeSlideUp 1.5s ease-out 0.5s forwards;
}

.about-hero-text h1 {
  font-size: 7rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
  letter-spacing: 6px;
  text-align: center;
  text-transform: uppercase;
}

/* ========== GENERAL SECTION LAYOUT ========== */
section {
  padding: 60px 8%;
  border-bottom: 1px solid #eee;
  background: #fff;
}

.msg-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

/* ========== ABOUT US SECTION ========== */
.about-us .text-section {
  flex: 1 1 50%;
  padding-right: 40px;
}

.about-us .image-section {
  flex: 1 1 40%;
  text-align: center;
}

.about-us img {
  width: 100%;
  max-width: 520px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.about-us h4 {
  color: #0099cc;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.about-us h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #111;
}

.about-us p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.read-more {
  display: inline-block;
  padding: 10px 25px;
  background: #1abc9c;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.read-more:hover {
  background: #16a085;
}

/* ========== MESSAGE SECTIONS ========== */
.sheikh-section .msg-container,
.chairman-section .msg-container,
.director-section .msg-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.chairman-section .msg-container {
  flex-direction: row-reverse;
}

.image-section img {
  width: 100%;
  max-width: 520px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.text-section {
  flex: 1 1 50%;
  padding: 0 20px;
}

.text-section h4 {
  color: #1abc9c;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.text-section h1 {
  font-size: 2.2rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 16px;
  color: #111;
}

.text-section p {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 18px;
}

.name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 5px;
}

.title {
  font-size: 0.95rem;
  color: #666;
}

/* ========== VISION & MISSION ========== */
.vision-mission {
  padding: 80px 10%;
  text-align: center;
  background: #fff;
}

.section-subtitle {
  color: #1abc9c;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 50px;
  display: block;
}

.cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 420px;
  padding: 40px 30px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  text-align: left;
}

.card .icon {
  font-size: 28px;
  color: #1abc9c;
  margin-bottom: 15px;
}

.card h2 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.card p {
  font-size: 0.97rem;
  line-height: 1.7;
  color: #333;
}

.card:hover {
  background: #1abc9c;
  color: #fff;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(26, 188, 156, 0.3);
}

.card:hover .icon,
.card:hover h2,
.card:hover p {
  color: #fff;
}

/* ========== ANIMATION ========== */
@keyframes fadeSlideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .hero-text h1 { font-size: 5rem; }
  .container { flex-direction: column; text-align: center; }
  .text-section { padding: 0; }
  section { padding: 40px 6%; }
}

@media (max-width: 600px) {
  .hero-text h1 { font-size: 3.5rem; letter-spacing: 3px; }
  .text-section h1, .about-us h1 { font-size: 1.8rem; }
}
/* ===== Improve Sheikh, Chairman & Director Sections ===== */

.sheikh-section .msg-container,
.chairman-section .msg-container,
.director-section .msg-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px; /* Increased space between text and image */
  flex-wrap: wrap;
  margin: 80px auto;
  max-width: 1200px;
  padding: 0 40px;
}

.sheikh-section .image-section img,
.chairman-section .image-section img,
.director-section .image-section img {
  width: 450px; /* Professional, not too large */
  height: auto;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.sheikh-section .text-section,
.chairman-section .text-section,
.director-section .text-section {
  flex: 1;
  min-width: 320px;
}