/* ===============================
   About Hero Section
================================= */

.about-hero {
  width: 100%;
  height: 100vh; /* full screen */

  background-image: url("../images/about_us_img.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.about-overlay {
  width: 100%;
  height: 100%;
  background: rgba(33, 0, 70, 0.65); /* purple overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  text-align: center;
}

.about-content h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-content p {
  max-width: 700px;
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-btn {
  background: #ff6636;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-btn:hover {
  background: #ffb300;
}

/* ===============================
   Stats Section
================================= */

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-item i {
  font-size: 32px;
  margin-bottom: 10px;
  color: #fff;
}

.stat-item h3 {
  font-size: 28px;
  margin-bottom: 5px;
  font-weight: 700;
}

.stat-item p {
  font-size: 14px;
  letter-spacing: 1px;
  text-align: center;
}

@media (max-width: 992px) {
  .about-hero {
    height: auto;
  }

  .about-content h1 {
    font-size: 42px;
  }

  .about-content p {
    font-size: 16px;
    padding: 0 20px;
    text-align: justify;
  }

  .about-stats {
    margin-top: 60px;
    gap: 30px;
    justify-content: center;
  }

  .stat-item {
    flex: 0 0 45%;
  }
}

@media (max-width: 768px) {
  .about-hero {
    height: auto;
  }

  .about-overlay {
    padding: 30px 15px;
  }

  .about-content h1 {
    font-size: 32px;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.6;
  }

  .about-btn {
    padding: 10px 24px;
    font-size: 14px;
  }

  /* Stats Grid */
  .about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
  }

  .stat-item {
    width: 100%;
  }

  .stat-item i {
    font-size: 24px;
  }

  .stat-item h3 {
    font-size: 22px;
  }

  .stat-item p {
    font-size: 12px;
  }
}

/* ================================
   Vision / Mission Section
================================ */

.vm-section {
  padding: 80px 8%;
  background: #ffffff;
  margin-top: 30px;
}

/* Row Layout */
.vm-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  height: 100%;
}

.vm-row:last-child {
  margin-bottom: 0;
}

.vm-row.reverse {
  flex-direction: row-reverse;
}

/* ================= TEXT ================= */

.vm-text {
  flex: 1;
  max-width: 550px;
}

.vm-text h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2d2d2d;
}

.vm-text h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #444;
}

.vm-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 16px;
  text-align: justify;
}

/* ================= IMAGE ================= */

.vm-row img {
  flex: 1;
  max-width: 100%;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
}
.vm-tag {
  display: inline-block;
  background: #fceecf;
  color: #c49f1e;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* IMAGE WRAPPER */
.vm-image-wrapper {
  position: relative;
  flex: 1;
  max-width: 80%;
  transform: translateX(-100px);
}

/* IMAGE */
.vm-image-wrapper img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  object-fit: contain;
}

/* SHAPES BASE */
.vm-shape {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  filter: blur(40px);
  opacity: 0.7;
  animation: floatShape 6s ease-in-out infinite;
}

/* RED SHAPE */
.vm-shape.red {
  width: 120px;
  height: 120px;
  background: #ff3d3d;
  top: -20px;
  left: -30px;
  animation-delay: 0s;
}

/* YELLOW SHAPE */
.vm-shape.yellow {
  width: 150px;
  height: 150px;
  background: #ffc107;
  bottom: -30px;
  right: -40px;
  animation-delay: 2s;
}

/* FLOAT ANIMATION */
@keyframes floatShape {
  0% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.1);
  }
  100% {
    transform: translateY(0px) scale(1);
  }
}

.vm-image-wrapper::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 100px;   /* pushes to right */
  right: 5px;
  border-radius: 16px;
  border: 2px solid rgba(255, 193, 7, 0.6);
  animation: pulseBorder 3s infinite ease-in-out;
}

/* BORDER PULSE */
@keyframes pulseBorder {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.01);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

/* ================= TABLET ================= */

@media (max-width: 992px) {
  .vm-section {
    padding: 70px 6%;
  }

  .vm-row {
    flex-direction: column;
    text-align: center;
    gap: 5px;
    margin-bottom: 80px;
  }

  .vm-row.reverse {
    flex-direction: column;
  }

  .vm-text {
    max-width: 100%;
  }

  .vm-text h2 {
    font-size: 28px;
  }

  .vm-text p {
    font-size: 14px;
  }

  .vm-row img {
    max-width: 380px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .vm-section {
    padding: 60px 5%;
  }

  .vm-row {
    gap: 10px;
    margin-bottom: 60px;
  }

  .vm-text h2 {
    font-size: 24px;
  }

  .vm-text h4 {
    font-size: 14px;
  }

  .vm-text p {
    font-size: 13px;
    line-height: 1.7;
  }

  .vm-row img {
    max-width: 100%;
  }
}

/* ================================
   Achievement Section
================================ */

.achievement-section {
  padding: 0 8%;
  background: #ffffff;
  position: relative;
}

/* ================= HEADER ================= */

.achievement-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.achievement-header img {
  width: 60px;
  max-width: 100%;
}

.title-wrapper {
  text-align: center;
}

.title-wrapper h2 {
  font-size: 38px;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 6px;
}

.subtitle {
  font-size: 14px;
  color: #666;
}

/* ================= INTRO TEXT ================= */

.achievement-intro {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
  font-size: 15px;
  line-height: 1.8;
  color: #555;
}

/* ================= SUBTITLE ================= */

.achievement-subtitle {
  font-size: 20px;
  color: #2c4b87;
  font-weight: 600;
  margin-bottom: 40px;
  text-align: center;
}

/* ================= CARDS ================= */

.achievement-cards {
  display: flex;
  gap: 40px;
}

.achievement-card {
  flex: 1;
}

.achievement-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 18px;
  object-fit: cover;
}

.achievement-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.achievement-card p {
  font-size: 14px;
  line-height: 1.8;
  color: #555;
}

/* ================= Decorative Dots ================= */

.dot {
  position: absolute;
  border-radius: 50%;
}

.dot.pink {
  width: 12px;
  height: 12px;
  background: #ff4f8b;
  left: 40px;
  bottom: 100px;
}

.dot.yellow {
  width: 14px;
  height: 14px;
  background: #ffc107;
  right: 80px;
  top: 200px;
}

.dot.red {
  width: 35px;
  height: 35px;
  background: #e63946;
  right: 30px;
  bottom: 50px;
}

/* ================= TABLET ================= */

@media (max-width: 992px) {
  .achievement-section {
    padding: 80px 6%;
  }

  .achievement-cards {
    flex-direction: column;
    gap: 50px;
  }

  .title-wrapper h2 {
    font-size: 32px;
  }

  .achievement-intro {
    font-size: 14px;
  }

  .dot {
    display: none; /* hide decorative dots on smaller screens */
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .achievement-section {
    padding: 60px 5%;
  }

  .achievement-header {
    gap: 10px;
  }

  .achievement-header img {
    width: 40px;
  }

  .title-wrapper h2 {
    font-size: 26px;
  }

  .subtitle {
    font-size: 13px;
  }

  .achievement-subtitle {
    font-size: 17px;
  }

  .achievement-card h4 {
    font-size: 16px;
  }

  .achievement-card p {
    font-size: 13px;
  }
}

/* ================================
   Culture Section
================================ */

.culture-section {
  padding: 90px 8%;
  background: #ffffff;
} /* ================= HEADER ================= */
.culture-header {
  text-align: center;
  margin-bottom: 60px;
}
.culture-header h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #2b2b2b;
}
.culture-header p {
  max-width: 750px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  color: #666;
} /* ================= CONTENT LAYOUT ================= */
.culture-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
} /* ================= LEFT TEXT ================= */
.culture-text {
  flex: 1;
}
.culture-text .process-icon {
  position: relative;
  top: -9px;
}
.culture-block {
  margin-bottom: 28px;
}
.culture-block h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #333;
}
.culture-block p {
  font-size: 17px;
  line-height: 1.8;
  color: #555;
  text-align: justify;
} /* ================= RIGHT IMAGE COLLAGE ================= */
.culture-images {
  flex: 1;
  position: relative;
  min-height: 520px;
}
.culture-images img {
  position: absolute;
  border-radius: 20px;
  object-fit: cover;
  /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12); */
} /* Top Image */
.img-top {
  width: 320px;
  height: 220px;
  top: 0;
  right: 0;
  z-index: 3;
} /* Middle Image */
.img-middle {
  width: 300px;
  height: 230px;
  top: 180px;
  left: 0;
  z-index: 2;
} /* Bottom Image */
.img-bottom {
  width: 280px;
  height: 210px;
  bottom: 0;
  right: 30px;
  z-index: 1;
}

/* ================= TABLET ================= */

@media (max-width: 992px) {
  .culture-section {
    padding: 80px 6%;
  }

  .culture-content {
    flex-direction: column;
    gap: 60px;
  }

  .culture-images {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .culture-images img {
    position: relative;
    width: 100%;
    aspect-ratio: auto;
  }

  .culture-header h2 {
    font-size: 32px;
  }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {
  .culture-section {
    padding: 60px 5%;
  }

  .culture-header {
    margin-bottom: 40px;
  }

  .culture-header h2 {
    font-size: 26px;
  }

  .culture-header p {
    font-size: 14px;
  }

  .culture-block h4 {
    font-size: 15px;
  }

  .culture-block p {
    font-size: 13px;
  }

  .culture-content {
    gap: 40px;
  }
}
.img-last {
  width: 300px;
  height: 230px;
  top: 468px;
  left: 0;
  z-index: 2;
}
/* ================= RESPONSIVE FIX (ONLY THIS SECTION) ================= */

.culture-section .culture-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
}

/* Tablet */
@media (max-width: 1024px) {
  .culture-section .culture-content {
    flex-direction: column;
  }

  .culture-section .culture-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    position: relative;
    min-height: auto;
  }

  .culture-section .culture-images img {
    position: relative;
    width: 100%;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .culture-section {
    padding: 60px 20px;
  }

  .culture-section .culture-header h2 {
    font-size: 26px;
  }

  .culture-section .culture-header p {
    font-size: 14px;
  }

  .culture-section .culture-text .process-item {
    flex-direction: row;
    gap: 12px;
  }

  .culture-section .culture-images {
    grid-template-columns: 1fr;
  }

  .culture-section .process-header {
    font-size: 16px;
    padding: 10px 14px;
  }

  .culture-section .process-body {
    font-size: 14px;
  }
}
/* Ram image (left top) */
.ram-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  border-radius: 20px;
  z-index: 1;
}

/* Kids image (right bottom) */
.kids-image {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 65%;
  border-radius: 20px;
  z-index: 2;
}

@media (max-width: 768px) {
  .image-container {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .ram-image,
  .kids-image {
    position: relative;
    width: 100%;
  }
}

.process-section {
  padding: 80px 6%;
  background: #f3f3f3;
  font-family: Arial, sans-serif;
}

.process-title {
  font-size: 52px;
  font-weight: 800;
  color: #2e1d5b;
  margin-bottom: 40px;
}

/* Layout */
.process-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 35px;
}

/* Yellow Hex Icon */
.process-icon {
  width: 70px;
  height: 70px;
  background: #f5a000;
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
}

.process-icon i {
  color: #111;
  font-size: 26px;
}

/* Purple Bar */
.process-content {
  flex: 1;
}

.process-header {
  background: #2e1d5b;
  color: #fff;
  padding: 14px 20px;
  font-weight: 600;
  font-size: 18px;
}

.process-body {
  padding: 15px 5px 0 20px;
  font-size: 17px;
  color: #222;
}

.process-body ul {
  margin: 10px 0 0 20px;
}

.process-body li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 768px) {
  .process-title {
    font-size: 36px;
  }

  .process-item {
    flex-direction: column;
  }

  .process-icon {
    margin-bottom: 15px;
  }
}
.pot-btn {
  position: relative;
  bottom: 155px;
  right: -20px;
  font-size: xx-large;
}
.about-stats {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 40px;
  flex-wrap: wrap;
  position: relative;
  top: 200px;
}

.stat-card {
  background: #fff;
  width: 220px;
  padding: 30px 20px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: 0.3s ease;

  border-top: 5px solid transparent;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.stat-card img {
  width: 50px;
  margin-bottom: 15px;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-card i {
  font-size: 32px;
  margin-bottom: 15px;
}

/* Different colors like screenshot */
.stat-card:nth-child(1) i {
  color: #f4b400;
  border-top-color: #f4b400;
}

.stat-card:nth-child(2) i {
  color: #e91e63;
}

.stat-card:nth-child(3) i {
  color: #6a1b9a;
}

.stat-card:nth-child(4) i {
  color: #26a69a;
}
.stat-card:nth-child(1) {
  border-top-color: #f4b400;
}

.stat-card:nth-child(2) {
  border-top-color: #e91e63;
}

.stat-card:nth-child(3) {
  border-top-color: #6a1b9a;
}

.stat-card:nth-child(4) {
  border-top-color: #26a69a;
}

.stat-card h3 {
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0;
  color: #333;
}

.stat-card p {
  font-size: 14px;
  color: #666;
}
/* ==============================
   Leadership Excellence Section
================================= */

.leadership-section {
  padding: 80px 8%;
  background: #f9f8ff;
  font-family: Arial, sans-serif;
  color: #2c2462;
}

.leadership-header {
  text-align: center;
  max-width: 100%;
  margin: 0 auto;
}

.leadership-header small {
  display: inline-block;
  background: #fcd9e0;
  color: #d23a5a;
  font-weight: 600;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 12px;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.leadership-header h2 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.leadership-header h2::after {
  content: "";
  display: block;
  height: 3px;
  width: 60px;
  margin: 10px auto 0;
  background: linear-gradient(90deg, #fcb045, #d833ab);
  border-radius: 4px;
  padding-bottom: 0;
  margin-bottom: 8px;
}

/* Main card wrapper */
.leadership-main-card {
  background: #3c297d;
  color: white;
  border-radius: 24px;
  padding: 40px 50px;
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 80px;
  box-shadow: 0 15px 50px rgba(60, 41, 125, 0.3);
  position: relative;
}

/* Left text container */
.leadership-main-text {
  flex: 1;
}

/* Label tag */
.leader-label-main {
  background: #ffb300;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  border-radius: 20px;
  width: max-content;
  margin-bottom: 18px;
  text-transform: uppercase;
}

/* Name */
.leadership-main-text h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* Quote */
.leadership-main-text blockquote {
  font-style: italic;
  opacity: 0.85;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Description */
.leadership-main-text p {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Dot navigation */
.leadership-dots {
  margin-top: 30px;
}

.leadership-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #f9c34d;
  border-radius: 50%;
  margin-right: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.leadership-dots span.active {
  background: #d833ab;
}

/* Right image container */
.leadership-image-container {
  position: relative;
  flex-shrink: 0;
  width: 280px;
  height: 280px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    15px 15px 25px rgba(216, 159, 255, 0.3),
    30px 30px 40px rgba(175, 128, 237, 0.2);
  background: #6a4dc0;
}

.leadership-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Small round icon bottom-right */
.leadership-check-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: #ffb300;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 5px 10px rgba(255, 179, 0, 0.6);
  transition: background 0.3s ease;
  font-size: 24px;
  color: white;
}

.leadership-check-icon:hover {
  background: #fcbf49;
}

/* Smaller cards container */
.leadership-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

/* Smaller leader card */
.leader-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  width: 280px;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  position: relative;
}

.leader-card:hover {
  transform: translateY(-10px);
}

.leader-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: top;
}

.leadership-cards .leader-card:nth-of-type(3) img {
  object-position: center !important;
}

/* Label on smaller cards */
.leader-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #ff4081;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 10;
}

/* Override different label colors */
.leader-label.chairman {
  background: #ff4081; /* pink */
}

.leader-label.principal {
  background: #7c4dff; /* purple */
}

.leader-label.director {
  background: #ffc107; /* yellow */
}

.leader-card-content {
  padding: 18px 20px 24px;
  flex-grow: 1;
}

.leader-card-content h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #2c2462;
}

.leader-card-content p {
  font-size: 13px;
  color: #666;
  line-height: 1.4;
}
.leader-text {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.leader-card.expanded .leader-text {
  display: block;
  -webkit-line-clamp: unset;
}

.read-more-btn {
  margin-top: 10px;
  background: none;
  border: none;
  color: blue;
  cursor: pointer;
  font-weight: bold;
}
/* Responsive adjustments */
@media (max-width: 992px) {
  .leadership-main-card {
    flex-direction: column;
    padding: 30px 30px;
    max-width: 100%;
  }
  .leadership-image-container {
    width: 300px;
    height: auto;
  }

  .leadership-image-container img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
  }

  .leadership-cards {
    flex-direction: column;
    gap: 30px;
  }

  .leader-card {
    width: 100%;
  }
}

/* MODAL BACKDROP */
.leader-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 9999;
}

/* ACTIVE */
.leader-modal.active {
  opacity: 1;
  visibility: visible;
}

/* MODAL BOX */
.leader-modal-content {
  background: #fff;
  width: 900px;
  max-width: 95%;
  border-radius: 20px;
  overflow: hidden;
  animation: popupScale 0.4s ease;
  position: relative;
}

/* POPUP ANIMATION */
@keyframes popupScale {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* CLOSE BUTTON */
.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

/* BODY */
.modal-body {
  display: flex;
  flex-wrap: wrap;
}

/* IMAGE */
.modal-image {
  flex: 1;
  min-width: 300px;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.modal-text {
  flex: 1;
  padding: 30px;
}

.modal-text h2 {
  margin-top: 10px;
  color: #2c2462;
}

.modal-text p {
  margin-top: 10px;
  color: #555;
  line-height: 1.6;
}

/* MOBILE */
@media (max-width: 768px) {
  .modal-body {
    flex-direction: column;
  }

  .modal-image {
    height: 250px;
  }
}

.read-more-btn {
  position: relative;
  overflow: hidden;
}

/* SPARKLE BASE (BIGGER NOW) */
.sparkle {
  position: absolute;
  width: 14px;
  height: 14px;
  background: radial-gradient(circle, #fff 40%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  animation: sparkleAnim 2.5s infinite ease-in-out;
}

/* RANDOM POSITIONS */
.sparkle.s1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}
.sparkle.s2 {
  top: 5%;
  right: 15%;
  animation-delay: 0.4s;
}
.sparkle.s3 {
  top: 40%;
  left: 5%;
  animation-delay: 0.8s;
}
.sparkle.s4 {
  top: 60%;
  right: 10%;
  animation-delay: 1.2s;
}
.sparkle.s5 {
  bottom: 20%;
  left: 20%;
  animation-delay: 1.6s;
}
.sparkle.s6 {
  bottom: 10%;
  right: 25%;
  animation-delay: 2s;
}
.sparkle.s7 {
  top: 30%;
  right: 30%;
  animation-delay: 0.6s;
}
.sparkle.s8 {
  bottom: 35%;
  left: 35%;
  animation-delay: 1.1s;
}

/* SMOOTHER + FLOATY ANIMATION */
@keyframes sparkleAnim {
  0% {
    transform: scale(0) translateY(0);
    opacity: 0;
  }
  25% {
    transform: scale(1.4) translateY(-6px);
    opacity: 1;
  }
  50% {
    transform: scale(1) translateY(-12px);
    opacity: 0.9;
  }
  75% {
    transform: scale(0.8) translateY(-18px);
    opacity: 0.5;
  }
  100% {
    transform: scale(0) translateY(-25px);
    opacity: 0;
  }
}

.leadership-image-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.2),
    transparent 60%
  );
  pointer-events: none;
}

.sparkle {
  width: 10px;
  height: 10px;
  background: white;
  clip-path: polygon(
    50% 0%,
    60% 35%,
    100% 50%,
    60% 65%,
    50% 100%,
    40% 65%,
    0% 50%,
    40% 35%
  );
}

.leadership-image-container {
  position: relative;
  overflow: hidden;
}

/* soft glow */
.leadership-image-container::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.25),
    transparent 60%
  );
  pointer-events: none;
}

/* moving shine effect */
.leadership-image-container::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: rotate(25deg);
  animation: shineMove 4s infinite linear;
}

@keyframes shineMove {
  0% {
    transform: translateY(-100%) rotate(25deg);
  }
  100% {
    transform: translateY(100%) rotate(25deg);
  }
}

/* ===============================
   ELEGANT CARD ANIMATION
=============================== */

/* Base card */
.leader-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* Smooth entry (very subtle) */
.leader-card {
  opacity: 0;
  transform: translateY(20px);
}

.leader-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger (natural flow) */
.leader-card:nth-child(1) {
  transition-delay: 0.1s;
}
.leader-card:nth-child(2) {
  transition-delay: 0.2s;
}
.leader-card:nth-child(3) {
  transition-delay: 0.3s;
}

/* Hover lift */
.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

/* ===============================
   GRADIENT LIGHT SWEEP ✨
=============================== */

.leader-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: skewX(-20deg);
}

/* Animate on hover */
.leader-card:hover::before {
  animation: shine 0.8s ease;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 130%;
  }
}

/* Image smooth zoom */
.leader-card img {
  transition: transform 0.5s ease;
}

.leader-card:hover img {
  transform: scale(1.05);
}
