
    .about-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.2); /* transparent overlay */
      z-index: 1;
    }

    .about-content {
      position: relative;
      z-index: 2;
      max-width: 600px;
       font-family: 'Inter', sans-serif;
    }

   .about-content h2 {
  font-size: 4rem;   /* increased from 3rem */
  line-height: 1.2;  /* keeps it neat */
  font-weight: 700;
}

.about-content h2 span {
 color :white;
  font-size: 4rem;   /* match parent */
}


    .btn-group {
      margin-top: 20px;
    }

.btn {
  display: inline-block;
  padding: 14px 32px;   /* bigger button size */
  margin-right: 15px;
  border-radius: 30px;
  font-size: 1.2rem;    /* increase text size */
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}


   .btn-primary {
  background: #1d2c6e;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.btn-primary:hover {
  background: #132050;
}

.btn-second {
  border: 1px solid white;
  color: white;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-second:hover {
  background: white;
  color: #132050;
}
    .about-content {
  max-width: 600px;
  text-align: left; /* ensures text stays aligned left */
}

.btn-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-group .btn {
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

/* Primary Button */
.btn-group .btn-primary {
  background: #00327a;
  color: #fff;
  border: none;
}

.btn-group .btn-primary:hover {
  background: #00327a;
}

/* Outline Button */
.btn-group .btn-outline {
  border: 2px solid #020202;
  color: #010101;
  background: transparent;
}

.btn-group .btn-outline:hover {
  background: #ffffff;
  color: #000000;
}

/* 📱 Mobile Responsive */
@media (max-width: 576px) {
  .btn-group {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .btn-group .btn {
    width: 100%;   /* Full width on mobile */
    font-size: 15px;
  }
}







.about-tncd {
  padding: 60px 8%;
  background: #ffffff;
     font-family: 'Inter', sans-serif;
  }

.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;   /* keeps text & image vertically aligned */
  gap: 40px;
  margin-bottom: 50px;
}

.about-text {
  flex: 1;
  min-width: 320px;
}

.about-text p {
  color: #333;
  font-size: 16px;
  line-height: 1.9;        /* more spacing between lines */
  margin-bottom: 20px;
}
.core-title {
  color: #28367B;
  font-weight: 600;
  margin: 25px 0 15px;
  font-size: 20px;
  text-align: left; /* changed from center to left */
}

/* Align core values to left */
.core-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 500px;
  justify-content: start; /* ensures grid stays left-aligned */
  text-align: left; /* aligns text within grid to the left */
}

.core-values span {
  border: 1px solid #39508C;
  background: #ffffff;
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  color: #E6B122;
  text-align: center; /* keeps text centered inside the span */
  white-space: nowrap;
}


.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
    max-width: 700px;
  width: 100%;
  height: auto;
}
.about-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  gap: 10px;
  margin-top: 40px;
}

.stat-card {
  flex: 1 1 220px;   /* responsive width */
  max-width: 250px;  /* prevents too wide on desktop */
}

.stat-card img {
  max-width: 65px;
  margin-bottom: 12px;
}

.stat-card h3 {
  color: #E6B122;
  font-size: 38px;
  margin: 8px 0;
  font-weight: 700;
}

.stat-card p {
  color: #333;
  font-size: 15px;
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .about-stats {
    gap: 20px;
  }

  .stat-card {
    flex: 1 1 45%;   /* 2 cards per row */
    max-width: none;
  }

  .stat-card img {
    max-width: 50px;
  }

  .stat-card h3 {
    font-size: 28px;
  }

  .stat-card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .stat-card {
    flex: 1 1 100%;   /* 1 card per row */
  }

  .stat-card img {
    max-width: 45px;
  }

  .stat-card h3 {
    font-size: 24px;
  }
}


/* Leadership Section */
.leadership-section {
    background-color: #ECEAE6;
  padding: 60px 20px;
  text-align: center;

  color: #333; 
}

/* Intro Section */
.leadership-intro h2 {
  font-size: 28px;
  line-height: 1.4;
  margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.leadership-intro p {
  max-width: 700px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
  font-family: 'Inter', sans-serif;
  
}

.highlight {
  font-size: 28px;
  color: #E6B122;
  font-weight: 600;
}

.passion {
  font-size: 28px;
  font-weight: 600;
}

.highlight-secondary {
  color: #004080;
  font-size: 28px;
  font-weight: 600;
}

/* Founders Section */
.founders-wrapper {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 60px;
}

.founder-profile {
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.founder-profile.reverse {
  flex-direction: row-reverse;
}

.founder-image img {
  width: 260px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  object-fit: cover;
}

.founder-info {
  flex: 1;
  
}

.founder-info h4 {
  font-size: 16px;
  margin-bottom: 15px;
  color: #333;
  font-family: 'Inter', sans-serif;
}

.founder-info .quote {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 12px;
  position: relative;
}

.founder-info .quote::before {
  content: "“";
  font-size: 36px;
  color: #f6a623;
  position: absolute;
  left: -20px;
  top: -10px;
}

.founder-name {
  font-weight: 600;
  color: #28367B;
  display: block;
  margin-top: 5px;
  font-size: 15px;
}

/* Team Leadership Section */
.team-leadership h2 {
   font-size: 40px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #28367B;
 
}
.team-leadership img {
  max-width: 750px;   /* limits max size */
  width: 100%;        /* responsive inside parent */
  height: auto;       /* keeps aspect ratio */
  border-radius: 12px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto; /* centers image */
}


.team-leadership p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 992px) {
  .founder-profile {
    flex-direction: column;
    text-align: center;
  }

  .founder-profile.reverse {
    flex-direction: column;
  }

  .founder-image img {
    width: 220px;
  }

  .founder-info {
    text-align: center;
  }

  .founder-info .quote::before {
    left: 0;
    top: -20px;
    position: relative;
    display: block;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .leadership-intro h2,
  .highlight,
  .highlight-secondary,
  .passion {
    font-size: 22px;
  }

  .founder-image img {
    width: 180px;
  }

  .team-leadership h3 {
    font-size: 22px;
  }
}

.founder-section {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 100px; /* spacing between cards */
  text-align: left;
 
}

.founder-card {
  display: flex;
  align-items: center;
  gap: 50px;
}

.founder-card.reverse {
  flex-direction: row-reverse;
}

.founder-img img {
  width: 320px;
  height: 380px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
    border: 2px solid #E6B122 !important;
}

.founder-text {
  flex: 1;
  line-height: 1.7;
  color: #333;
  position: relative;
  font-family: 'Inter', sans-serif;

}

.founder-text h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;

}

.founder-text h4 span {
  color: #28367B; /* brand blue */
  font-family: 'Inter', sans-serif;

}

.founder-text p {
  font-size: 17px;
  margin-bottom: 20px;
  color: #444;
  font-family: 'Inter', sans-serif;

}

.founder-name {
  font-weight: 600;
  font-size: 18px;
  margin-top: 10px;
  color: #111;
}

.founder-name span {
  display: block;
  font-size: 14px;
  color: #28367B;
}

/* Big opening quote mark */
.quote-mark {
  font-size: 60px;
  font-weight: bold;
  color: #28367B;
  line-height: 0;
  margin-right: 10px;
  float: left;
  font-family:  sans-serif;

}

/* Responsive */
@media (max-width: 768px) {
  .founder-card,
  .founder-card.reverse {
    flex-direction: column;
    text-align: center;
    
  }
.founder-img img {
  width: 220px;
  height: 260px;
  object-fit: cover;         /* ensures image doesn’t stretch */
  border-radius: 12px;       /* keeps smooth edges */
  border: 2px solid #E6B122 !important; /* orange border */
  box-shadow: 0 6px 16px rgba(0,0,0,0.12); /* subtle shadow */
}


  .founder-text {
    text-align: center;
  }

  .quote-mark {
    float: none;
    display: block;
    margin: 0 auto 10px;
  }
}



/* CTA Section */
.cta-section {
  position: relative;
  background: #243377; /* dark blue */
  color: #fff;
  padding: 50px 10%;
  overflow: hidden;
  border-radius: 6px;
 
}

/* Container */
.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 2;
  position: relative;
}

/* Text */
.cta-text h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 14px;
  color: #dcdcdc;
  max-width: 500px;
}

/* Button */
.btn-cta {
  background: #f4b400; /* yellow */
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-cta:hover {
  background: #e0a200;
}

/* Decorative Circle */
.cta-circle {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  z-index: 1;
}









.vision-section {
  background-color: #f9f9f9;  /* light background */
  padding: 80px 20px;
  text-align: center;
}

.vision-container {
  max-width: 900px;
  margin: 0 auto;
}

.vision-title {
  font-size: 40px;
  font-weight: 600;
  color: #2b3a67; /* deep blue */
  margin-bottom: 10px;
  margin-top:-220px;
}

.vision-subtitle {
  font-size: 18px;
  color: #E6B122; /* yellow-orange */
  margin-bottom: 30px;
 text-align: left;
}

.vision-text {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 20px;
  text-align: center;
}

/* Wrapper */
.mv-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  background-color: #f3f2ef;
  padding: 40px;
  font-family: 'Georgia', serif;
}

/* Mission block (left) */
.mission-container {
  flex: 1;
}
.mission-heading {
  font-size: 44px;
  font-weight: bold;
  color: #E6B122; /* golden yellow */
  margin-bottom: 10px;
  position: relative;
  display: inline-block; /* so underline aligns with text */
}
.mission-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #333;
  margin-top: 6px;
}
.mission-description {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  width: 100%; /* full width */
  text-align: left;
}

/* Vision block (right, lower) */
.vision-container {
  flex: 1;
  margin-top: 250px; /* pushes vision lower */
  text-align: right; /* align content to right side */
}
.vision-heading {
  font-size: 44px;
  font-weight: bold;
  color: #2e3a7b; /* deep navy blue */
  margin-bottom: 10px;
  position: relative;
  display: inline-block; /* shrink to text */
}
.vision-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #333;
  margin-top: 6px;
  margin-left: auto; /* align line to the right under text */
  margin-right: 0;
}
.vision-description {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  width: 100%; /* full width */
  text-align: right;
}

/* Responsive */
@media (max-width: 768px) {
  .mv-wrapper {
    flex-direction: column;
  }
  .vision-container {
    margin-top: 40px; /* reduce gap on small screens */
    text-align: left; /* reset to left on mobile */
  }
  .vision-heading {
    float: none;
  }
  .vision-heading::after {
    margin-left: 0; /* underline back to left on mobile */
  }
  .vision-description {
    text-align: left;
  }

  .vision-title {
  
  margin-top:-100px;
}
}


.carousel-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f8f8f8;
  padding: 60px 20px;
}

.carousel {
  display: flex;
  align-items: center;
  position: relative;
  max-width: 700px;
  width: 100%;
}

/* NEW wrapper */
.carousel-window {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out; /* smooth slide */
}

.carousel-card {
  min-width: 100%;
  background: #fff;
  border-radius: 25px;
  padding: 30px;
  /*box-shadow: 0 2px 6px rgba(0,0,0,0.2);*/
  text-align: left;
}

.icon {
  font-size: 34px;
  color: #E6B122; /* golden icon */
  margin-bottom: 10px;
}

.card-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
}

.card-subtitle {
  color: #2e3a7b;
  font-size: 14px;
  margin-bottom: 15px;
}

.card-text {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.carousel-btn {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  padding: 10px;
  color: #333;
  transition: 0.2s;
}

.carousel-btn:hover {
  color: #2e3a7b;
}






.milestones {
  font-family: "Helvetica", sans-serif;
  padding: 40px 20px;
  background: #fff;
}

.milestones-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
  color: #111;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

/* vertical line */
.timeline::after {
  content: '';
  position: absolute;
  width: 3px;
  background-color: #ddd;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}

/* container */
.container {
  padding: 15px 30px;
  position: relative;
  width: 50%;
}

.left { left: 0; }
.right { left: 50%; }

/* milestone content box */
.content {
  background: #fff;
  padding: 18px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  border: 1px solid #d1d1d1;
}

.content h3 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.content p {
  margin-top: 6px;
  font-size: 14px;
  line-height: 1.6;
  color: #555;
}

/* colored borders */
.blue-border { border: 1px solid #1a3b8d; color: #1a3b8d; }
.yellow-border { border: 1px solid #e5b52e; color: #e5b52e; }

/* circle numbers */
.circle {
  position: absolute;
  top: 20px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
}

.circle.blue {
  right: -14px;
  background: #1a3b8d;
  color: #fff;
}

.circle.yellow {
  left: -14px;
  background: #e5b52e;
  color: #111;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .timeline::after {
    left: 20px;
  }
  .container {
    width: 100%;
    padding-left: 60px;
    padding-right: 25px;
  }
  .circle {
    left: 0 !important;
    right: auto;
  }
  .right {
    left: 0%;
  }
}

#resident-videos {
  text-align: center;
  padding: 40px 20px;
  background-color: #cce6ff;
}

#resident-videos .resident-title {
  color: #3a4a8c;
  font-size: 24px;
  margin-bottom: 30px;
}

#resident-videos .resident-slider-container {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
}

#resident-videos .resident-slider {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

#resident-videos .resident-card {
  flex: 0 0 33.33%; /* Default: 3 cards */
  box-sizing: border-box;
  padding: 15px;
}

/* #resident-videos .resident-card-inner {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  padding: 20px;
} */

#resident-videos video {
  width: 100%;
  height: 200px;
  border-radius: 10px;
}

/* Tablet view (max-width: 900px) → 2 videos */
@media (max-width: 900px) {
  #resident-videos .resident-card {
    flex: 0 0 50%;
  }
}

/* Mobile view (max-width: 600px) → 1 video */
@media (max-width: 600px) {
  #resident-videos .resident-card {
    flex: 0 0 100%;
  }
}






