

/* ========================== */
/*        HERO SECTION        */
/* ========================== */
.about-hero {
  height: 320px;
  background: url('assets/image/hero-bg.jpg') center/cover no-repeat;
  position: relative;
}
.about-hero .overlay {
  height: 100%;

  display: flex;
  justify-content: center;
  align-items: center;
}
.about-hero h1 {
  font-size: 3rem;
  bottom: 260px;
  color: #e8faff;
  text-shadow: 0 0 15px rgba(0,191,255,0.6);
  font-weight: 700;
}

/* ========================== */
/*         PROFILE BOX        */
/* ========================== */
.about-profile {
  padding-top: 30px !important; /* ADDED */
}

.about-profile .profile-box {
  background: rgba(0, 25, 50, 0.92);
  padding: 40px;
  border-radius: 15px;
  color: #d6f1ff;
  margin-top: -20px;

  border: 1px solid rgba(0,191,255,0.15);
  box-shadow: 0 0 25px rgba(0,191,255,0.2);
  backdrop-filter: none !important;
}
.about-hero .overlay h1 {
  position: relative;
  z-index: 1 !important;
}

.about-profile {
  position: relative;
  z-index: 10;
}


.profile-box h3 {
    color: #33eaff; /* same aqua blue as About Us */
  text-shadow: 0 0 10px rgba(0, 200, 255, 0.7),
               0 0 25px rgba(0, 200, 255, 0.4);
  font-family: 'Playfair Display', serif;

}
.profile-box p {
  text-align: justify;
}

/* ========================== */
/*     MISSION / VISION / VALUES  */
/* ========================== */
.mv-section {
  padding-top: 20px !important; /* ADDED */
  padding-bottom: 10px !important; /* ADDED */
}

.mv-section .row {
  align-items: stretch !important;
}

.mv-card {
  background: rgba(0, 30, 60, 0.55);
  padding: 25px;
  border-radius: 10px;
  border: 1px solid rgba(0,191,255,0.25);
  box-shadow: 0 0 25px rgba(0,191,255,0.15);
  height: 100%;
  text-align: justify;
}
.mv-card h4 {   color: #33eaff; /* same aqua blue as About Us */
  text-shadow: 0 0 10px rgba(0, 200, 255, 0.7),
               0 0 25px rgba(0, 200, 255, 0.4);
  font-family: 'Playfair Display', serif;
  text-align: center;
  margin-bottom: 15px;
}
.mv-card p, .mv-card li {
  color: #d9efff;
  font-size: 0.95rem;
}
.mv-card ul {
  list-style: none;
  padding: 0;
  text-align: justify;
}
.mv-card li {
  margin-bottom: 6px;
}

/* ========================== */
/*        TEAM PHOTOS         */
/* ========================== */
.team-photos {
  margin-top: 10px !important; /* ADDED */
}
.team-img {
  border-radius: 12px;
  width: 100%;
  height: 350px;
  object-fit: cover;
  box-shadow: 0 0 25px rgba(0,191,255,0.25);
}
.team-title {
   color: #33eaff; /* same aqua blue as About Us */
  text-shadow: 0 0 10px rgba(0, 200, 255, 0.7),
               0 0 25px rgba(0, 200, 255, 0.4);
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem;
}

/* =============================== */
/*         MEET OUR TEAM          */
/* =============================== */
.meet-team-section {
  margin-top: 20px !important; /* ADDED */
}

.featured-card {
  width: 100%;
  max-width: 300px;
  text-align: center;
  margin-bottom: 30px;
}
.featured-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.profile-card-flip img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.profile-name {
  margin-top: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: #d9eefd;
}
.profile-position {
  font-size: 0.85rem;
  color: #b4cbe3;
  line-height: 1.2rem;
}
.featured-card .profile-name {
  font-size: 1.15rem;
}
.featured-card .profile-position {
  font-size: 0.95rem;
  color: #cce8ff;
}

/* HERO CAROUSEL IMAGE */
.hero-img {
  height: 320px;
  object-fit: cover;
}

/* ========================== */
/*        SCROLL ARROW        */
/* ========================== */
.scroll-arrow {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  z-index: 10;
  opacity: 1;
  transition: opacity .15s linear;
}

.fade-out {
  opacity: 0 !important;
}

.team-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  margin-top: 15px;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.25);
  transition: transform .2s ease;
}

.team-card:hover {
  transform: translateY(-4px);
}
