.programs-grid-section {
  width: 100%;
  background: #0f4361;
  padding: 90px 80px 120px;
  direction: rtl;
}

.programs-grid {
  max-width: 1250px;
  margin: auto;

  display: grid;
  grid-template-columns: repeat(3, 300px);
  justify-content: center;

  gap: 130px 85px;
}
.program-card1 {
  width: 300px;
  height: 300px;

  background: #f7f7f7;
  border-radius: 22px;

  text-align: center;

  padding: 40px 32px 25px;

  box-shadow: 0 10px 0 #9b7a36;

  display: flex;
  flex-direction: column;
  align-items: center;
}
.program-icon {
  width: 82px;
  height: 82px;

  background: #0f4361;
  border-radius: 50%;

  margin: 0 auto 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 10px 20px rgba(0,0,0,.18);
}

.program-icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.program-card1 h3 {
  color: #0f4361;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.45;
  margin-bottom: 18px;
}

.program-card1 p {
  color: #0f4361;
  font-size: 13px;
  line-height: 1.55;
  margin-bottom: 24px;
}

.program-card1 a {
  color: #9b7a36;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .programs-grid {
    grid-template-columns: repeat(2, 300px);
  }
}

@media (max-width: 700px) {
  .programs-grid {
    grid-template-columns: 1fr;
  }

  .program-card1 {
    width: 100%;
    max-width: 300px;
    margin: auto;
  }
}


.card-person5{
  position: absolute;

  left:30px;
  top: -67px;
  height: 282px;
  width: auto;

  object-fit: contain;
  z-index: 5;

  transform: none;
  display: block;
}

.program-link {
    text-decoration: none;
    color: inherit;
}

.program-link p {
    text-decoration: none;
    color: inherit;
}


/* =========================
   TRAINING PAGE RESPONSIVE
========================= */

@media (max-width: 1200px) {
  .programs-grid-section {
    padding: 70px 40px 100px;
  }

  .programs-grid {
    grid-template-columns: repeat(2, minmax(280px, 320px));
    gap: 80px 45px;
  }
}

@media (max-width: 900px) {
  .programs-grid-section {
    padding: 55px 22px 80px;
  }

  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 45px 22px;
  }

  .program-card1 {
    width: 100%;
    height: auto;
    min-height: 285px;
    padding: 32px 22px 24px;
  }

  .program-card1 h3 {
    font-size: 15px;
  }

  .program-card1 p {
    font-size: 13px;
    line-height: 1.8;
  }

  .card-person5 {
    position: relative;
    left: auto;
    top: auto;
    height: 220px;
    margin: -25px auto 20px;
    display: block;
  }
}

@media (max-width: 560px) {
  .programs-grid-section {
    padding: 45px 16px 65px;
  }

  .programs-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .program-card1 {
    max-width: 340px;
    margin: auto;
    min-height: auto;
    padding: 32px 24px 26px;
  }

  .program-card1 .icon {
    width: 74px;
    height: 74px;
    margin-bottom: 18px;
  }

  .program-card1 .icon img {
    width: 40px;
    height: 40px;
  }

  .program-card1 h3 {
    font-size: 16px;
    line-height: 1.6;
  }

  .program-card1 p {
    font-size: 14px;
    line-height: 1.9;
  }

  .card-person5 {
    height: 190px;
  }
}
/* MOBILE DROPDOWN FINAL FIX */
@media (max-width: 768px) {

  .main-header {
    height: 85px !important;
    padding: 0 20px !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    background: #ffffff !important;
    position: sticky !important;
    top: 0;
    z-index: 99999;
  }

  .logo {
    position: static !important;
    height: 70px !important;
    margin: 0 !important;
    order: 2;
  }

  .menu-toggle {
    display: block !important;
    order: 1;
    background: transparent !important;
    border: none !important;
    color: #0f4361 !important;
    font-size: 34px !important;
    cursor: pointer;
    z-index: 100000;
  }

  .main-header .nav-menu {
    display: none !important;
    position: absolute !important;
    top: 85px !important;
    right: 0 !important;
    width: 100% !important;
    background: #0f4361 !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 10px 0 !important;
    box-shadow: 0 12px 25px rgba(0,0,0,.25);
  }

  .main-header .nav-menu.show {
    display: flex !important;
  }

  .main-header .nav-menu a {
    color: #ffffff !important;
    padding: 15px 25px !important;
    text-align: right !important;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }

  .main-header .nav-menu a.active::after {
    display: none !important;
  }
}