.vission-image {
  width: 100%;
  border-radius: 10px;
}

.about-us-content {
  padding: 50px 0px;
}

.vission-header,
.mission-header {
  font-size: 40px;
  font-weight: 700;
  display: inline-block;
  padding-bottom: 5px;
  color: transparent;
  background: linear-gradient(135deg, #142b63, #6a11cb);
  -webkit-background-clip: text;
  background-clip: text;
  border-bottom: none;
  position: relative;
}

.vission-header::after,
.mission-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #142b63, #6a11cb);
  border-radius: 4px;
}

.vission-text,
.mission-text {
  font-size: 16px;

}


.about-us-image {
  overflow: hidden;
  border-radius: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Image inside container */
.about-us-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  will-change: transform, filter;
}

/* Hover effect */
.about-us-image:hover img {
  transform: scale(1.08) rotate(1deg);
  filter: brightness(1.1);
}

/* Optional: container lift & shadow */
.about-us-image:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.genz-header-title {
  color: #142b63;
  font-size: 2.5rem;
  font-weight: 800;
  position: relative;
  padding-top: 50px;
  text-align: center;
  margin-bottom: 3rem !important;
  background: linear-gradient(135deg, #142b63, #6a11cb);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.genz-header-title::after {
  content: '';
  position: absolute;
  top: 95px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #142b63, #6a11cb);
  border-radius: 10px;
}

.owner-image {
  width: 100%;
  border-radius: 15px;
}


.owner-text {
  font-size: 16px;
}

/* --- Base Card Styling --- */
.owner-card {
  position: relative;
  /* background-color: #ffffff; */
  /* background-color: #0f596826; */
  border-radius: 15px;
  overflow: hidden;
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* height: 1200px; */
  width: 90%;
  cursor: pointer;


  background: linear-gradient(135deg,
      rgba(20, 43, 99, 0.15),
      rgba(248, 184, 47, 0.15));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

}

/* --- Hover Effect --- */
.owner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* --- Image Styling --- */
.leadership-image {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
}

.owner-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
}

.owner-card:hover .owner-image {
  transform: scale(1.08);
  filter: brightness(1.05);
}

/* --- Header Styling --- */
.owner-name {
  display: inline-block;
  font-size: 25px;
  font-weight: 700;
  border-bottom: 3px solid #6a11cb;
  padding-bottom: 5px;
  margin-bottom: 10px;
  transition: border-color 0.3s ease;

  color: transparent;
  background: linear-gradient(135deg, #142b63, #6a11cb);
  -webkit-background-clip: text;
  background-clip: text;
  /* border-bottom: none; */
}

.owner-card:hover .owner-name {
  border-color: #f8b82f;
}

.owner-position {
  font-size: 18px;
  color: #6c757d;
  margin-top: 5px;
}

/* --- Owner Text --- */
.owner-text {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  opacity: 0.95;
}

/* --- Optional: subtle background highlight --- */
.owner-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.02));
  z-index: 0;
}

/* --- Make sure content stays on top --- */
.owner-card>* {
  position: relative;
  z-index: 1;
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .owner-card {
    margin-bottom: 30px;
  }
}

.wave-top {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
  margin-top: 20px;
}

.wave-top svg {
  position: relative;
  display: block;
  width: 100%;
  height: 80px;
  /* medium height, adjust as needed */
}

.wave-top svg path {
  fill: #0d1e46;
  /* wave color */
}



/* Section */
.leaders-section {
  position: relative;
  text-align: center;
}

/* Top blue area */
/* .top-bg {
  background: #7fa5ad;
  height: 385px;
  display: flex;
  align-items: center;
  justify-content: center;
} */

.top-bg {
  background: linear-gradient(135deg, #142b63, #f8b82f);
  background-size: 200% 200%;
  height: 385px;
  animation: gradientMove 6s ease infinite;
}

@keyframes gradientMove {
  0% {
    background-position: left;
  }

  50% {
    background-position: right;
  }

  100% {
    background-position: left;
  }
}

.genz-header-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem !important;

  /* background: linear-gradient(135deg, #142b63, #f8b82f); */
  background: linear-gradient(135deg, #142b63, #ffffff, #f8b82f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.genz-header-title::after {
  content: '';
  position: absolute;
  top: 95px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 5px;
  background: linear-gradient(90deg, #142b63, #f8b82f);
  border-radius: 10px;
}


/* Container */
.leaders-container {
  max-width: 1300px;
  margin: -200px auto 80px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
}


.role {
  color: #7fa5ad;
  font-weight: bold;
  margin-bottom: 15px;
  text-align: center;
}


/* Social icons */
.social i {
  margin: 0 8px;
  color: #111;
  cursor: pointer;
  transition: 0.3s;
}

.leadership-section a {
  text-decoration: none;
}

.leadership-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.owner-info {
  display: none;
}



/* ================= MODAL ================= */

.owner-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 9999;
  padding: 15px;
}

.owner-modal.show {
  display: flex;
}

/* Modal Box */
.owner-modal-box {
  background: #142b638f;
  border-radius: 16px;
  max-width: 700px;
  width: 100%;
  padding: 45px;
  position: relative;
  animation: modalFade 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;

  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 40px rgba(248, 184, 47, 0.2);
  
}

/* Animation */
@keyframes modalFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Close button */
.modal-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 28px;
  border: none;
  background: none;
  cursor: pointer;

  color: #142b63;
  font-weight: bold;
  transition: 0.3s;
}
.modal-close:hover {
  color: #f8b82f;
  transform: rotate(90deg);
}

/* Header */
.modal-header h2 {
  display: inline-block;
  font-size: 25px;
  font-weight: 700;
  border-bottom: 3px solid #6a11cb;
  padding-bottom: 5px;
  margin-bottom: 10px;
  transition: border-color 0.3s ease;
  color: transparent;
  background: linear-gradient(#f8b82f);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0.85;
}

.modal-header h4 {
  color: #f8b82f;
  margin-bottom: 15px;
}

/* Text */
.modal-content-body p {
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff; 
  opacity: 0.95;
  font-weight: 500;

}

/* Mobile */
@media (max-width: 576px) {
  .owner-modal-box {
    padding: 18px;
  }
}

.owner-card:active {
  transform: scale(0.97);
}

