/* HERO */
/* Base Styles */
* {
  margin: 0px;
  margin-bottom: 0px;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  position: relative;
}

body {
  background-color: #f4f7fa;
  color: #273246;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* navbar */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .7rem 5%;
  background-color: #273246;
  box-shadow: var(--shadow-sm);
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: var(--transition);
}



.logo {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  /* Remove the filter that was making it white */
}

.logo h2 {
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover,
.nav-link.active {
  /* color: rgb(10, 10, 10); */
  transition: transform 0.5s ease;
}


/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: var(--shadow-md);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
  background-color: rgba(59, 130, 246, 0.05);
  color: var(--primary);
}

.container h2 {
  text-align: center;
  margin-bottom: 30px;
}

/* res */
/* Default desktop styles */
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

/* Responsive styles */
@media (max-width: 1010px) {
  .hamburger {
    display: block;
    z-index: 1101;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: white;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    padding: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1100;
    max-height: 80vh;
    /* Add this */
    overflow-y: auto;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    color: #273246;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    background-color: white;
    padding-left: 1rem;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

}


.hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/education_background.jpeg');
  /* Replace with your image path */
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  color: rgb(246, 242, 242);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8rem 0 4rem;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  line-height: 1.6;
  font-weight: 500;
}

.hero a.button {
  text-decoration: none;
  background-color: rgb(231, 76, 60);
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.hero a.button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}
@media (min-width: 2560px) {
  .hero {
    padding: 10vh 5vw 6vh;
  }

  .hero-content {
    max-width: 1400px;
    padding: 3vw;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .hero p {
    font-size: 1.8rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero a.button {
    font-size: 1.4rem;
    padding: 1.2em 2.5em;
  }
}


/* vision mision */
.mv-wrap {
  position: relative;
  padding: 100px 5vw 120px;
  overflow: hidden;
}

.mv-wrap h2 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 80px;
  letter-spacing: 0.5px;
}

/* Floating Blobs */
.blob {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at 30% 30%, #273246 0%, #273246 60%, rgba(24, 154, 180, 0) 80%);
  filter: blur(40px);
  animation: float 18s ease-in-out infinite;
  z-index: -1;
}

.blob.b1 {
  top: -120px;
  left: -150px;
  animation-delay: -3s;
}

.blob.b2 {
  bottom: -140px;
  right: -160px;
  animation-delay: 2s;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(40px) rotate(25deg);
  }
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
}

.panel {
  position: relative;
  padding: 60px 50px;
  color: #fff;
  overflow: hidden;
  opacity: 0;
  transform: translateY(60px) scale(0.96);
  transition:
    opacity 1s cubic-bezier(.25, .8, .3, 1),
    transform 0.6s ease,
    box-shadow 0.6s ease;
  border-radius: 18px;
}

.panel.visible {
  opacity: 1;
  transform: scale(1);
}

.panel:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mission {
  background: linear-gradient(135deg, #273246 0%, #273246 100%);
  clip-path: polygon(0 0, 100% 4%, 100% 96%, 0 100%);
}

.vision {
  background: linear-gradient(135deg, #273246 0%, #273246 100%);
  clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 96%);
}

.panel h3 {
  font-size: 1.8rem;
  margin-bottom: 22px;
  letter-spacing: 0.4px;
}

.panel p {
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 560px;
}

@media (max-width: 900px) {
  .mv-grid {
    grid-template-columns: 1fr;
  }

  .panel {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

/* Journey Timeline Section */
/* ---------- BASE STYLING ---------- */
.timeline-section {
  padding: 5vw 2vw;
}

.timeline-header {
  text-align: center;
  margin-bottom: 4vw;
}

.timeline-header h1 {
  font-size: 2.8rem;
  color: #1f2d3d;
  margin-bottom: 10px;
  font-weight: bold;
}

.timeline-header p {
  color: #555;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.timeline-wrapper {
  position: relative;
  max-width: 90vw;
  margin: 0 auto;
}

/* ---------- CENTER LINE ---------- */
.timeline-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 10px;
  background: #ccc;
  transform: translateX(-50%);
  z-index: 0;
}

/* ---------- TIMELINE ITEM ---------- */
.timeline-item {
  position: relative;
  width: 50%;
  padding: 40px;
  box-sizing: border-box;
}

.timeline-item.left {
  left: 0;
  text-align: left;
}

.timeline-item.right {
  left: 50%;
  text-align: left;
}

/* ---------- CARD ---------- */
.timeline-card {
  background: #fff;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 2;
  transition: background 0.3s ease;
}

.timeline-card:hover {
  background: #273246;
}
.timeline-card:hover h3,
.timeline-card:hover p {
  color: white;
}

/* ---------- YEAR BADGE ---------- */
.year-badge {
  position: absolute;
  top: -14px;
  background: #273246;
  color: #fff;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: bold;
  border-radius: 20px;
  z-index: 3;
}

.timeline-item.left .year-badge {
  left: 0;
}

.timeline-item.right .year-badge {
  right: 0;
}

/* ---------- CONNECTOR LINE ---------- */
.connector-line {
  position: absolute;
  top: 50%;
  width: 50%;
  height: 5px;
  background: #bbb;
  z-index: 1;
  transform: translateY(-50%);
}

.timeline-item.left .connector-line {
  right: 0;
}

.timeline-item.right .connector-line {
  left: 0;
}

/* ---------- DOT ---------- */
.dot {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 20px;
  background-color: #273246;
  border-radius: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.timeline-item.left .dot {
  right: -6px;
}

.timeline-item.right .dot {
  left: -6px;
}

/* ---------- TEXT ---------- */
.timeline-card h3 {
  margin-top: 0;
  font-size: 1.3rem;
  font-weight: bold;
  color: #1f2d3d;
}

.timeline-card p {
  margin: 0;
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

/* ---------- RESPONSIVE: SMALL SCREEN ---------- */
@media (max-width: 768px) {
  /* Spine moved to the left */
  .timeline-wrapper::before {
    left: 25px;
    transform: none;
    width: 6px;
    background: #bbb;
  }

  /* Stack all cards vertically */
  .timeline-item,
  .timeline-item.left,
  .timeline-item.right {
    width: 100%;
    left: 0 !important;
    text-align: left;
    padding: 30px 20px 30px 60px;
    box-sizing: border-box;
  }

  /* Timeline card to the right of spine */
  .timeline-card {
    margin-left: 0;
  }

  /* Position year badge to top-left */
  .timeline-item .year-badge {
    left: 0 !important;
    right: auto !important;
  }

  /* Connector line: horizontal from spine to card */
  .timeline-item .connector-line {
    position: absolute;
    left: 25px;         /* matches spine */
    top: 50%;
    width: 35px;
    height: 4px;
    background: #bbb;
    transform: translateY(-50%);
    z-index: 1;
  }
  .timeline-item.right .connector-line {
    left: 25px;
  }

  /* Dot exactly at junction of spine and connector */
  .timeline-item .dot {
    position: absolute;
    left: 20px;        /* half dot width (20px) + small gap = aligns with spine */
    top: 50%;
    width: 15px;
    height: 15px;
    background-color: #273246;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
  .timeline-item.right .dot {
    position: absolute;
    left: 20px;        /* half dot width (20px) + small gap = aligns with spine */
    top: 50%;
    width: 15px;
    height: 15px;
    background-color: #273246;
    border-radius: 50%;
    transform: translateY(-50%);
    z-index: 2;
  }
}


/* ---------- ULTRA WIDE (4K) SCREENS ---------- */
@media (min-width: 2560px) {
  .timeline-wrapper {
    max-width: 1800px;
  }

  .timeline-header h1 {
    font-size: 4rem;
  }

  .timeline-card {
    padding: 30px;
  }

  .timeline-card h3 {
    font-size: 2rem;
  }

  .timeline-card p {
    font-size: 1.2rem;
  }
}


/* leadership */
.team-circles-section {
  padding: 80px 20px;
  background: #f5f8fa;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  font-size: 36px;
  color: #222;
  margin-bottom: 60px;
}

.team-circle-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.team-circle {
  position: relative;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
}

.team-circle:hover {
  transform: translateY(-8px);
}

.team-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(25, 45, 65, 0.9);
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  padding: 20px;
  text-align: center;
  transition: opacity 0.4s ease;
}

.team-circle:hover .overlay {
  opacity: 1;
}

.overlay h4 {
  margin: 10px 0 5px;
  font-size: 20px;
}

.overlay .role {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 14px;
  color: #ffd700;
}

.overlay .bio {
  font-size: 13px;
  line-height: 1.4;
}

/* Scroll reveal */
.js-reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.6s ease;
}

/* Footer Section */

.footer {
  background: #273246;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
  padding: 40px 0 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding: 0 50px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
  min-width: 160px;
  max-width: 280px;
  flex: 1;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
  color: #fff;
}


.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color:orangered;
}

.footer-logo {
  width: 60px;
  margin-bottom: 10px;
}

.footer-col:first-child {
  padding-right: 30px;
}

.footer-col p {
  word-wrap: break-word;
  white-space: pre-line;
  line-height: 1.6;
  font-size: 14px;
}

.footer-socials {
  margin-top: 10px;
}

.footer-socials a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
 
  padding: 8px;
  transition: 0.3s;
}

.footer-socials a:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  border-color: transparent;
}

/* Newsletter */
.newsletter-col {
  max-width: 280px;
}

.newsletter-form {
  display: flex;
  width: 100%;
  max-width: 280px;
  margin-top: 10px;
}

.newsletter-form input[type="email"] {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 3px 0 0 3px;
  outline: none;
  font-size: 14px;
}

.newsletter-form button {
  padding: 10px 15px;
  background: #e74c3c;
  border: none;
  color: white;
  font-weight: bold;
  border-radius: 0 3px 3px 0;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
  white-space: nowrap;
}

.newsletter-form button:hover {
  opacity: 0.9;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding-top: 20px;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  margin-top: 30px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
  }

  .footer-col {
    max-width: 100%;
    align-items: center;
    text-align: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    border-radius: 3px;
    margin-bottom: 10px;
  }

  .newsletter-form button {
    border-radius: 3px;
  }
}
@media screen and (max-width: 1165px) {
  .footer-container {
    padding: 0 20px;
  }

  .footer-col {
    max-width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }

  .footer-socials {
    justify-content: center;
    margin-top: 10px;
  }

  .newsletter-form {
    flex-direction: column;
    max-width: none;
  }

  .newsletter-form input[type="email"],
  .newsletter-form button {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* map */
#map-container {
  position: relative;
  width: 100%;
  height: 60vh;
}

#map {
  width: 100%;
  height: 100%;
}

#side-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  background-color: #fff;
  box-shadow: -3px 0 10px rgba(0, 0, 0, 0.15);
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  z-index: 1000;
  padding: 20px;
  overflow-y: auto;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

#side-panel.active {
  transform: translateX(0);
}

#panel-close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 20px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

#panel-content h3 {
  margin-top: 0;
  color: #333;
}

#panel-content p {
  margin: 10px 0;
  color: #555;
}

#panel-content a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

#panel-content a:hover {
  text-decoration: underline;
}

.custom-icon {
  border-radius: 50%;
  border: none;
  box-shadow: none;
}

/* presence */
#presence-section {
  background: #273246;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
  padding: 80px 20px;
  border-top: 1px solid #e0e0e0;
}

#presence-section .content-wrapper {
  max-width: 900px;
  height: 200px;
  margin: auto;
  text-align: center;
  margin-top: -50px;
}


#presence-section h2 {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

#presence-section p {
  font-size: 1.35rem;
  line-height: 1.8;
  color: #ffffff;

}

/* programs */
/* Section container */
.programs-section {
  padding: 80px 20px;
  text-align: center;
}

/* Section heading */
.section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #1d2540;
  font-weight: 700;
}

/* Wrapper to help center the grid */
.programs-grid-wrapper {
  display: flex;
  justify-content: center;
}

/* Grid layout for cards */
.programs-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  width: 100%;
}

/* Enhanced responsive styles */
@media (max-width: 992px) {
   .hero{
    height: 60vh;
  } 
  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .mv-wrap h2 {
    font-size: 2.4rem;
    margin-bottom: 60px;
  }

  .panel {
    padding: 50px 40px;
  }

  .team-circle {
    width: 220px;
    height: 220px;
  }

  #presence-section h2 {
    font-size: 2.5rem;
  }

  #presence-section p {
    font-size: 1.2rem;
  }

  .program-card {
    flex: 0 1 calc(33.33% - 30px);
  }

  #map-container {
    height: 80vh;
  }
}

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

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 20px;
  }

  .mv-wrap {
    padding: 70px 4vw 90px;
  }

  .mv-wrap h2 {
    font-size: 2rem;
    margin-bottom: 50px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .panel {
    padding: 40px 30px;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .panel h3 {
    font-size: 1.6rem;
  }

  .team-circle-grid {
    gap: 30px;
  }

  .team-circle {
    width: 180px;
    height: 180px;
  }

  .overlay h4 {
    font-size: 18px;
  }

  .overlay .bio {
    font-size: 12px;
  }

  #presence-section {
    padding: 60px 15px;
  }

  #presence-section .content-wrapper {
    height: auto;
    margin-top: -30px;
  }

  #presence-section h2 {
    font-size: 2.2rem;
  }

  #presence-section p {
    font-size: 1.1rem;
  }

  .program-card {
    flex: 0 1 calc(50% - 30px);
  }

  #map-container {
    height: 70vh;
  }

  #side-panel {
    width: 280px;
  }

  .footer-container {
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .hero {
    height: 60vh;

  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero a.button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

  .mv-wrap {
    padding: 60px 4vw 80px;
  }

  .mv-wrap h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .panel {
    padding: 35px 25px;
  }

  .panel h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
  }

  .panel p {
    font-size: 0.95rem;
  }

  .team-circle {
    width: 150px;
    height: 150px;
  }

  .overlay h4 {
    font-size: 16px;
    margin: 5px 0 3px;
  }

  .overlay .role {
    font-size: 12px;
    margin-bottom: 5px;
  }

  .overlay .bio {
    font-size: 11px;
    line-height: 1.3;
  }

  #presence-section h2 {
    font-size: 1.8rem;
  }

  #presence-section p {
    font-size: 1rem;
  }

  .program-card {
    flex: 0 1 100%;
    padding: 25px 15px;
  }

  .program-card i {
    font-size: 60px;
    margin-bottom: 15px;
  }

  #map-container {
    height: 100vh;
  }

  #side-panel {
    width: 250px;
  }
}

@media (max-width: 400px) {
  
  .hero h1 {
    font-size: 1.6rem;
  }

  .team-circle-grid {
    gap: 20px;
  }

  .team-circle {
    width: 130px;
    height: 130px;
  }

  .overlay {
    padding: 10px;
  }

  .overlay h4 {
    font-size: 14px;
  }

  .overlay .role {
    font-size: 11px;
  }

  .overlay .bio {
    display: none;
  }

  #side-panel {
    width: 100%;
    border-radius: 0;
  }
}

/* Program card base style */
.program-card {
  flex: 0 1 calc(25% - 30px);
  /* 4 per row with spacing */
  background: #ffffff;
  border-radius: 15px;
  padding: 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, background-color 0.3s, color 0.3s, filter 0.3s;
  cursor: pointer;
  text-align: center;
}

/* Icon inside card */
.program-card i {
  color: #273246;
  font-size: 80px;
  margin-bottom: 20px;
  transition: color 0.3s, filter 0.3s;
}

/* Card title */
.program-card h3 {
  font-size: 1rem;
  color: #273246;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.3s;
}

/* Hover state */
.program-card:hover {
  background: #273246;
  color: white;
  transform: translateY(-5px);
}

.program-card:hover h3,
.program-card:hover i {
  color: white;
  filter: brightness(0) invert(1);
}

/* Input-based selection styling */
.card-input {
  display: none;
}

.card-input:checked+.program-card {
  background: #273246;
  color: white;
}

.card-input:checked+.program-card h3,
.card-input:checked+.program-card i {
  color: white;
  filter: brightness(0) invert(1);
}


/*contact us button footer*/
.btn {
    padding: 10px 20px;
    background-color: rgb(231, 76, 60);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
}
.btn:hover {
    background-color: rgb(241, 93, 77);
}

@media (min-width: 2560) {
  .hero{
    height:60vh;
  }

}

.strategic-pillars-section {
  padding: 4rem 0;
  background-color: #f4f7fa; /* Light background */
  text-align: center;
}

.strategic-pillars-section .section-title {
  margin-bottom: 3rem;
}

.pillars-container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.pillar-card {
  background-color: #fff; /* White background for cards */
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  flex: 1 1 300px; /* Flexible sizing for responsiveness */
  max-width: 350px; /* Max width for cards */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.pillar-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.pillar-icon.blue-icon {
  color: #3498db; /* Blue color for icon */
}

.pillar-icon.green-icon {
  color: #2ecc71; /* Green color for icon */
}

.pillar-icon.purple-icon {
  color: #9b59b6; /* Purple color for icon */
}

.pillar-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: #273246; /* Dark text for headline */
}

.pillar-card p {
  font-size: 1rem;
  color: #555; /* Slightly lighter text for paragraph */
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .pillars-container {
    gap: 1.5rem;
  }

  .pillar-card {
    flex: 1 1 250px; /* Adjust flex basis */
    max-width: none;
  }
}

@media (max-width: 768px) {
  .pillars-container {
    flex-direction: column;
    align-items: center;
  }

  .pillar-card {
    width: 90%; /* Full width on small screens */
    max-width: 350px; /* Maintain max-width */
  }

  .pillar-icon {
    font-size: 2.5rem;
  }

  .pillar-card h3 {
    font-size: 1.3rem;
  }

  .pillar-card p {
    font-size: 0.95rem;
  }
}

/*crousel sections*/
/* CSS */

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  width: max-content; /* dynamic width based on children */
  animation: scrollCarousel 40s linear infinite;
  gap: 70px;
}

.carousel-track img {
  width: 240px;
  height: 300px;
  object-fit: contain;
  border: 2px solid black;
}

/* Pause on hover */
.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-track img:hover {
  transform: scale(1.02);
  transition: transform 0.3s ease-in-out;
}

/* Keyframes that scroll the first set of items only */
@keyframes scrollCarousel {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
