.featured-programs .featured-program {
      background-color: var(--surface-color);
      border-radius: 16px;
      overflow: hidden;
      border-left: 5px solid #71b8b8;
      box-shadow: 0 4px 25px 0 color-mix(in srgb, var(--default-color), transparent 92%);
      transition: box-shadow 0.3s ease;
    }

    .featured-programs .featured-program:hover {
      box-shadow: 0 10px 40px 0 color-mix(in srgb, var(--default-color), transparent 86%);
    }

    .featured-programs .featured-program:hover .featured-img img {
      transform: scale(1.06);
    }

    .featured-programs .featured-img {
      position: relative;
      height: 100%;
      min-height: 320px;
      overflow: hidden;
    }

    .featured-programs .featured-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .featured-programs .featured-tag {
      position: absolute;
      top: 16px;
      left: 16px;
      background-color: var(--accent-color);
      color: var(--contrast-color);
      padding: 6px 14px;
      border-radius: 6px;
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .featured-programs .featured-tag i {
      margin-right: 5px;
      font-size: 0.72rem;
    }

    .featured-programs .featured-content {
      padding: 40px 35px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
    }

    .featured-programs .featured-content .category-label {
      display: inline-block;
      font-size: 1.5rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      color: var(--accent-color);
      margin-bottom: 12px;
    }

    .featured-programs .featured-content p {
      color: color-mix(in srgb, var(--default-color), transparent 25%);
      line-height: 1;
      margin-bottom: 24px;
      font-size: 0.95rem;
    }

    .featured-programs .stats-row {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 28px;
    }

    .featured-programs .stat-chip {
      display: inline-flex;
      align-items: center;
      background-color: color-mix(in srgb, var(--accent-color), transparent 92%);
      padding: 8px 16px;
      border-radius: 8px;
      font-size: 0.84rem;
      font-weight: 600;
      color: color-mix(in srgb, var(--default-color), transparent 10%);
    }

    .featured-programs .stat-chip i {
      color: var(--accent-color);
      margin-right: 8px;
      font-size: 0.95rem;
    }

    .featured-programs .explore-link {
      display: inline-flex;
      align-items: center;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--accent-color);
      transition: all 0.3s ease;
    }

    .featured-programs .explore-link i {
      margin-left: 8px;
      font-size: 1.15rem;
      transition: transform 0.3s ease;
    }

    .featured-programs .explore-link:hover {
      color: color-mix(in srgb, var(--accent-color), #000 15%);
    }

    .featured-programs .explore-link:hover i {
      transform: translateX(4px);
    }

    .featured-programs .program-card {
      background-color: var(--surface-color);
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      transition: all 0.3s ease;
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .featured-programs .program-card:hover {
      border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
      transform: translateY(-8px);
      box-shadow: 0 12px 35px 0 color-mix(in srgb, var(--default-color), transparent 88%);
    }

    .featured-programs .program-card:hover .card-thumb img {
      transform: scale(1.08);
    }

    .featured-programs .program-card:hover .card-link {
      color: var(--accent-color);
    }

    .featured-programs .program-card:hover .card-link i {
      transform: translateX(4px);
    }

    .featured-programs .card-thumb {
      position: relative;
      height: 180px;
      overflow: hidden;
    }

    .featured-programs .card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }

    .featured-programs .card-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 12px 16px;
      background: linear-gradient(to top, color-mix(in srgb, #000, transparent 30%), transparent);
      display: flex;
      justify-content: flex-end;
    }

    .featured-programs .duration-badge {
      background-color: var(--contrast-color);
      color: var(--default-color);
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
    }

    .featured-programs .card-body-content {
      padding: 22px 20px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .featured-programs .card-body-content .degree-type {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: var(--accent-color);
      margin-bottom: 8px;
    }

    .featured-programs .card-body-content h4 {
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--heading-color);
      margin-bottom: 10px;
      line-height: 1.35;
    }

    .featured-programs .card-body-content p {
      color: color-mix(in srgb, var(--default-color), transparent 30%);
      font-size: 0.85rem;
      line-height: 1.6;
      margin-bottom: 16px;
      flex: 1;
    }

    .featured-programs .card-link {
      display: inline-flex;
      align-items: center;
      font-size: 0.85rem;
      font-weight: 600;
      color: color-mix(in srgb, var(--default-color), transparent 30%);
      transition: all 0.3s ease;
      margin-top: auto;
    }

    .featured-programs .card-link i {
      margin-left: 6px;
      font-size: 0.8rem;
      transition: transform 0.3s ease;
    }

    @media (max-width: 992px) {
      .featured-programs .featured-img {
        min-height: 260px;
      }

      .featured-programs .featured-content {
        padding: 30px 25px;
      }

      .featured-programs .featured-content h3 {
        font-size: 1.4rem;
      }

      .featured-programs .stats-row {
        gap: 8px;
      }

      .featured-programs .stat-chip {
        padding: 6px 12px;
        font-size: 0.8rem;
      }
    }

    @media (max-width: 768px) {
      .featured-programs .featured-program {
        border-left: none;
        border-top: 5px solid var(--accent-color);
      }

      .featured-programs .featured-img {
        min-height: 220px;
      }

      .featured-programs .featured-content {
        padding: 24px 20px;
      }

      .featured-programs .featured-content h3 {
        font-size: 1.3rem;
      }

      .featured-programs .featured-content p {
        font-size: 0.9rem;
      }

      .featured-programs .card-thumb {
        height: 160px;
      }
    }

    @media (max-width: 576px) {
      .featured-programs .featured-img {
        min-height: 200px;
      }

      .featured-programs .stats-row {
        flex-direction: column;
        gap: 8px;
      }

      .featured-programs .stat-chip {
        justify-content: center;
      }
    }

    .main-card {
            border-radius: 20px;
            overflow: hidden;
            background: #fff;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .title-main {
            font-weight: 700;
            font-size: 48px;
        }

        .title-green {
            color: #4CAF50;
        }

        .info-box {
            background: #f1f3f5;
            border-radius: 15px;
            padding: 20px;
            margin-bottom: 20px;
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .icon-box {
            width: 60px;
            height: 60px;
            background: #e0e7ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .impact-section {
            background: #71b8b8;
            color: #fff;
            border-radius: 20px;
            padding: 30px;
            margin-top: 30px;
        }

        .impact-item {
            text-align: center;
        }

        .impact-item i {
            font-size: 30px;
            margin-bottom: 10px;
        }

        .footer-note {
            background: #eaf7ea;
            padding: 12px;
            border-radius: 10px;
            margin-top: 20px;
            text-align: center;
            font-weight: 500;
        }

        .image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @media(max-width:768px){
            .title-main {
                font-size: 32px;
            }
        }

        .icon_box{
          font-size:62px;
        }

        .icon-size{
          width:70px;
        }

        .color-pattern {
            background-image: url(data:image/svg+xml;base64,PHN2ZyAgZmlsbD0icmdiYSgwLDAsMCwwLjIpIiBoZWlnaHQ9IjhweCIgd2lkdGg9IjhweCIgdmlld0JveD0iMCAwIDggOCIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0Ii8+PC9zdmc+);
            bottom: 0;
            left: 0;
            position: absolute;
            right: 0;
            top: 0;
            width: 100%;
            height: 100%;
        }

        .et_pb_bottom_inside_divider1 {
          background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMTVweCIgdmlld0JveD0iMCAwIDEyODAgMTQwIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJub25lIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxnIGZpbGw9IiNGRkZGRkYiPjxwYXRoIGQ9Ik0wIDB2MTQwaDEyODBMMCAweiIvPjwvZz48L3N2Zz4=);
          background-size: 100% 115px;
          height: 115px;
          z-index: 1;
          position: absolute;
          bottom: 0px;
          right: 0px;
          transform: scale(-1, 1);
        }

        .img_design_1 {
            width: 100%;
            height: 340px;
            position: relative;
            top: -180px;
        }

        .m_img {
          padding-top: 50px;
        }

        .pt-300 {
            padding-top: 320px;
        }

        .txt-bold{
          color: #71b8b8;
          font-weight: 900;
        }

        .bg-heading{
          background: #71b8b8;
          color: #fff;
          text-align: center;
        }

        .min-height{
          min-height:230px; max-height:auto; background:#71b8b8; color:#fff; border-radius:12px;
        }

        @media(max-width:992px){
          .pt-300 {
              padding-top: 0px;
          }
        }


        .find-why {
        position: relative;
      }

      .find-why::before {
        content: "";
        position: absolute;
        top: -20px;
        left: 12px;
        right: 12px;
        height: 1px;
        background: linear-gradient(to right, transparent, color-mix(in srgb, var(--default-color), transparent 80%), transparent);
      }

      .find-why .feat-card {
        background-color: var(--surface-color);
        border-radius: 14px;
        padding: 36px 28px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 93%);
        border-bottom: 3px solid transparent;
        height: 100%;
        transition: all 0.3s ease;
      }

      .find-why .feat-card:hover {
        transform: translateY(-7px);
        box-shadow: 0 18px 45px color-mix(in srgb, var(--default-color), transparent 85%);
        border-bottom-color: var(--accent-color);
      }

      .find-why .feat-card:hover .feat-icon {
        background-color: #c9c9c9;
        color: var(--contrast-color);
        border-radius: 14px;
      }

      .find-why .feat-card:hover .feat-num {
        opacity: 0.06;
      }

      .find-why .feat-card .feat-icon {
        width: 58px;
        height: 58px;
        border-radius: 10px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 68%);
        color: var(--accent-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.4rem;
        margin-bottom: 22px;
        transition: all 0.3s ease;
        padding:7px;
      }

      .find-why .feat-card h3 {
        font-size: 1.1rem;
        font-weight: 600;
        margin-bottom: 12px;
        line-height: 1.3;
      }

      .find-why .feat-card p {
        font-size: 0.875rem;
        line-height: 1.75;
        color: color-mix(in srgb, var(--default-color), transparent 38%);
        margin: 0;
      }

      .find-why .feat-card .feat-num {
        position: absolute;
        bottom: 12px;
        right: 20px;
        font-size: 4.2rem;
        font-weight: 800;
        font-family: var(--heading-font);
        color: var(--heading-color);
        opacity: 0.032;
        line-height: 1;
        transition: opacity 0.3s ease;
        pointer-events: none;
        user-select: none;
      }

      
    .boardmember .team-member-card {
      background-color: var(--surface-color);
      border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
      border-radius: 6px;
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease-in-out;
    }

    .boardmember .team-member-card:hover {
      border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      transform: translateY(-4px);
    }

    .boardmember .member-image-wrapper {
      position: relative;
      overflow: hidden;
      background-color: color-mix(in srgb, #00355E, transparent 95%);
      aspect-ratio: 4/3;
      
    }

    .boardmember .member-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      transition: transform 0.3s ease-in-out;
      background:#BCDDE2;
      border-radius:7px;
    }

    .boardmember .team-member-card:hover .member-image-wrapper img {
      transform: scale(1.05);
    }

    .boardmember .member-content {
      padding: 10px 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .boardmember .member-content h4 {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 4px;
      color: var(--heading-color);
    }

    .boardmember .member-content .position {
      display: block;
      font-size: 14px;
      font-weight: 500;
      color: var(--accent-color);
      margin-bottom: 8px;
    }

    .boardmember .member-content .credentials {
      font-size: 13px;
      color: color-mix(in srgb, var(--default-color), transparent 40%);
      margin-bottom: 12px;
      font-weight: 500;
    }

    .boardmember .member-content .bio {
      font-size: 15px;
      line-height: 1.6;
      color: color-mix(in srgb, #000, transparent 20%);
      margin-bottom: 16px;
      flex: 1;
    }

    .boardmember .member-social {
      display: flex;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

    .boardmember .member-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      border-radius: 4px;
      background-color: color-mix(in srgb, var(--default-color), transparent 95%);
      color: var(--default-color);
      transition: all 0.3s ease-in-out;
    }

    .boardmember .member-social a i {
      font-size: 16px;
    }

    .boardmember .member-social a:hover {
      background-color: var(--accent-color);
      color: var(--contrast-color);
    }

    @media (max-width: 768px) {
      .boardmember .member-content {
        padding: 20px;
      }

      .boardmember .member-content h4 {
        font-size: 18px;
      }

      .boardmember .member-content .bio {
        font-size: 13px;
      }
    }

    /* Outer Frame */
    .frame {
      padding: 12px;
      border: 4px solid #ffffff;   /* Outer border */
      border-radius: 15px;
      background: #fff;
      padding-bottom:0;
    }

    /* Inner Frame */
    .inner-frame {
      padding: 8px;
      border: 5px solid #015697;   /* Inner border */
      border-radius: 10px;
      background: #015697;
    }