  .directors-desk {
      padding: 40px 20px;
      background-color: #ffffff;
      margin-top: 0;
  }

  .directors-desk h3 {
      font-size: 24px;
      margin-bottom: 20px;
  }

  .directors-desk p {
      font-size: 16px;
      line-height: 1.6;
      margin-bottom: 15px;
      color: #333;
  }


  /* mission */
  .card-custom-gradient {
      background: linear-gradient(135deg, #7b2ff7, #ff416c);
      border-radius: 20px !important;
      /* Increased corner radius */
      border: none;
  }

  .icon-circle {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .icon-circle i {
      font-size: 20px;
      background: linear-gradient(135deg, #7b2ff7, #ff416c);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
  }
  .director-section {
  background-color: #f5f5f6;
  padding: 80px 0;
}

.director-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.semi-circle-container {
  flex: 0 0 35%;
  height: 400px;
  position: relative;
  background: linear-gradient(to right, #7b2ff7, #ff416c); /* Gradient semi-circle */
  border-radius: 0 200px 200px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: white;
  padding: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}


.director-card {
  flex: 0 0 55%;
  background:white ;
  color: black;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.director-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: bold;
}

.director-card p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #000;
}

@media (max-width: 992px) {
  .director-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .semi-circle-container {
    width: 100%;
    height: auto;
    border-radius: 200px 200px 0 0;
    padding: 30px 0;
  }

  .director-card {
    width: 100%;
    border-radius: 0 0 20px 20px;
    margin-top: -30px;
  }
}
.ceo-section {
  background-color: #f5f5f6;
  padding: 80px 0;
}

.ceo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.ceo-card {
  flex: 0 0 55%;
  background: white;
  color: black;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.ceo-card h3 {
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: bold;
}

.ceo-card p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 10px;
  color: #000;
}

.semi-circle-right {
  flex: 0 0 35%;
  height: 400px;
  position: relative;
  background: linear-gradient(to left, #7b2ff7, #ff416c); /* Reversed gradient */
  border-radius: 200px 0 0 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-image {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: white;
  padding: 10px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

@media (max-width: 992px) {
  .ceo-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .semi-circle-right {
    width: 100%;
    height: auto;
    border-radius: 200px 200px 0 0;
    padding: 30px 0;
  }

  .ceo-card {
    width: 100%;
    border-radius: 0 0 20px 20px;
    margin-top: -30px;
  }
}

/* timeline */
 .main-timeline2 .timeline {
      width: 50%;
      float: left;
      padding: 20px 60px;
      border-top: 7px solid #084772;
      border-right: 7px solid #084772;
      border-radius: 0 30px 0 0;
      position: relative;
      right: -3.5px;
    }

    .main-timeline2 .icon {
      display: block;
      width: 50px;
      height: 50px;
      line-height: 50px;
      border-radius: 50%;
      background: #ff1a1a;
      border: 1px solid #fff;
      text-align: center;
      font-size: 20px;
      color: #ffffff !important;
      box-shadow: 0 0 0 2px #ff1a1a;
      position: absolute;
      top: -30px;
      left: 0;
    }

    .main-timeline2 .timeline-content {
      display: block;
      padding: 30px 10px 10px;
      border-radius: 20px;
      background: #ff1a1a;
      color: #ffffff !important;
      position: relative;
    }

    .main-timeline2 .timeline-content:hover {
      text-decoration: none;
      color: #ffffff;
    }

    .main-timeline2 .timeline-content:after,
    .main-timeline2 .timeline-content:before {
      content: "";
      display: block;
      width: 10px;
      height: 50px;
      border-radius: 10px;
      background: #ff1a1a;
      border: 1px solid #ffffff;
      position: absolute;
      top: -35px;
      left: 50px;
    }

    .main-timeline2 .timeline-content:after {
      left: auto;
      right: 50px;
    }

    .main-timeline2 .title {
      font-size: 22px;
      margin: 0 0 10px;
      font-weight: bold;
    }

    .main-timeline2 .description {
      font-size: 15px;
      letter-spacing: 0.5px;
      margin: 0;
    }

    .main-timeline2 .timeline:nth-child(2n) {
      border-right: none;
      border-left: 7px solid #084772;
      border-radius: 30px 0 0;
      right: auto;
      left: -3.5px;
    }

    .main-timeline2 .timeline:nth-child(2n) .icon {
      left: auto;
      right: 0;
      box-shadow: 0 0 0 2px #084772
    }

    .main-timeline2 .timeline:nth-child(2n) .timeline-content,
    .main-timeline2 .timeline:nth-child(2n) .icon,
    .main-timeline2 .timeline:nth-child(2n) .timeline-content:after,
    .main-timeline2 .timeline:nth-child(2n) .timeline-content:before {
      background: #590098;
    }

    .main-timeline2 .timeline:nth-child(3n) .icon,
    .main-timeline2 .timeline:nth-child(3n) .timeline-content,
    .main-timeline2 .timeline:nth-child(3n) .timeline-content:after,
    .main-timeline2 .timeline:nth-child(3n) .timeline-content:before {
      background: #ff1a1a;
    }

    .main-timeline2 .timeline:nth-child(3n) .icon {
      box-shadow: 0 0 0 2px #ff1a1a;
    }

    .main-timeline2 .timeline:nth-child(4n) .icon,
    .main-timeline2 .timeline:nth-child(4n) .timeline-content,
    .main-timeline2 .timeline:nth-child(4n) .timeline-content:after,
    .main-timeline2 .timeline:nth-child(4n) .timeline-content:before {
      background: #590098;
    }

    .main-timeline2 .timeline:nth-child(4n) .icon {
      box-shadow: 0 0 0 2px #084772;
    }

    @media only screen and (max-width: 767px) {
      .main-timeline2:before {
        left: 0;
        right: auto;
      }

      .main-timeline2 .timeline,
      .main-timeline2 .timeline:nth-child(even),
      .main-timeline2 .timeline:nth-child(odd) {
        width: 100%;
        float: none;
        padding: 20px 30px;
        margin: 0 0 30px;
        border-right: none;
        border-left: 7px solid #084772;
        border-radius: 30px 0 0;
        right: auto;
        left: 0;
      }

      .main-timeline2 .icon {
        left: auto;
        right: 0;
      }
    }

.infra-section {
      padding: 60px 20px;
      
    }

    .infra-title {
      text-align: center;
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 50px;
    }

    .infra-card {
       background: linear-gradient(135deg, #7b2ff7, #ff416c);
      color: #fff;
      border-radius: 15px;
      padding: 30px 20px;
      margin-bottom: 30px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      backdrop-filter: blur(8px);
      transition: all 0.3s ease;
      height: 100%;
    }

    .infra-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    }

    .infra-icon {
      font-size: 36px;
      margin-bottom: 20px;
      color: #ffffff;
    }

    .infra-text {
      font-size: 16px;
      font-weight: 500;
      color: #f1f1f1;
    }


.cert-section {
      background-color: #590098;
      padding: 60px 0;
      color: #fff;
    }

    .cert-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      text-align: center;
      height: 100%;
      box-shadow: 0 6px 16px rgba(0,0,0,0.2);
      transition: transform 0.3s ease;
    }

    .cert-card:hover {
      transform: translateY(-5px);
    }

    .cert-card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .cert-card-body {
      padding: 15px;
      color: #333;
    }

    .cert-card-body h5 {
      font-size: 17px;
      font-weight: 600;
      margin-bottom: 5px;
    }

    .cert-card-body p {
      font-size: 14px;
      margin: 0;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      background-color: rgba(0,0,0,0.5);
      padding: 20px;
      border-radius: 50%;
    }