  
    .about-section {
      
      height: auto;
     

      & img{
        width: 100%;
      }
    }


    .about-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      padding: 20px;
    }

    .about-content h1 {
      font-size: 3rem;
      font-weight: 700;
    }

    .about-content p {
      font-size: 1.1rem;
      margin-top: 15px;
    }


    @media (max-width: 768px) {
      .about-content h1 {
        font-size: 2.2rem;
      }
    }




























     .section-title {
      text-align: center;
      font-size: 2rem;
      font-weight: 700;
      margin-top: 50px;
      margin-bottom: 30px;
      position: relative;
    }

    .section-title::after {
      content: "";
      width: 100px;
      height: 5px;
      background: rgba(0, 32, 93);
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 4px;
    }

    .highlight-blob {
      /* background-color: rgba(0, 32, 93); */
      padding: 30px;
      position: relative;  
    }

    /* .sketch-icon {
      position: absolute;
      top: -20px;
      left: -20px;
      font-size: 2rem;
    } */

    /* .sketch-squiggle {
      position: absolute;
      bottom: -20px;
      right: -40px;
      font-size: 2rem;
    } */

    .img-style {
      width: 90%;
      transform: rotate(-5deg);
    }

    .text-block h3 {
      font-weight: 700;
      margin-bottom: 15px;
    }

    .btn-yellow {
      background: linear-gradient(to right, rgba(0, 32, 93), rgba(0, 32, 93,0.8));
      border: none;
      font-weight: 600;
      padding: 10px 20px;
      border-radius: 6px;
      box-shadow: 2px 4px 6px rgba(0,0,0,0.1);
      color: white;
    }

    .btn-yellow:hover {
      background: rgba(0, 32, 93);
    }

    @media (max-width: 768px) {
      .img-style {
        transform: none;
        margin-bottom: 20px;
      }

      .highlight-blob {
        padding: 15px;
      }
    }









    .carousel-container {
      position: relative;
      max-width: 70%;
      margin-top: 40px;
    }

    .carousel-wrapper {
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      display: flex;
      gap: 30px;
      padding: 20px 60px;
      scroll-behavior: smooth;
    }

    .carousel-wrapper::-webkit-scrollbar {
      display: none;
    }

    .teacher-card {
      flex: 0 0 auto;
      width: 260px;
      text-align: center;
      scroll-snap-align: center;
      position: relative;
      transition: transform 0.3s ease;
      opacity: 0.6;
    }

    .teacher-card img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      border-radius: 10px;
    }

    .teacher-card.active {
      transform: scale(1.1);
      opacity: 1;
      z-index: 2;
    }

    .name-tag {
      background-color: rgba(0, 32, 93);
      transform: skewX(-10deg);
      padding: 8px 20px;
      font-weight: bold;
      margin-top: 10px;
      display: inline-block;
      color: white;
    }

    .name-tag span {
      transform: skewX(10deg);
      display: inline-block;
    }

    .role {
      margin-top: 8px;
      font-size: 0.9rem;
      color: #444;
    }

    .nav-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: #fff;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      box-shadow: 0 0 10px rgba(0,0,0,0.2);
      z-index: 5;
      cursor: pointer;
    }

    .nav-arrow.left {
      left: 10px;
    }

    .nav-arrow.right {
      right: 10px;
    }

    .nav-arrow:focus {
      outline: none;
    }

    .nav-arrow:hover {
      background-color: rgba(0, 32, 93, .9);
      color: white;
    }

    .team-container{
        justify-content: center;
        justify-items: center;
    }
