.about-section {
    background: linear-gradient(161.69deg, #BDCD36 -16.46%, #FFFFFF 46.46%);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    padding: 2rem 4rem; /* Top/Bottom 2rem, Left/Right 4rem */
  }
  
  .about-text {
    max-width: 600px;
  }
  
  .about-text h2 {
    font-size: 2rem;
    color: #1f2937;
    margin-bottom: 1rem;
  }
  
  .about-text p {
    font-size: 1rem;
    line-height: 1.6;
     margin-bottom: 1.5rem;
    color: #555;
    font-weight: bold;
  }
  
  .apply-button {
    background: linear-gradient(180deg, #ff6600 0%, #ff5204 0%, #ff270d 100%);
    color: #fff;
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .apply-button:hover {
    background-color: #e55b2f;
  }
  
  .about-image-container {
    max-width: 500px;
    flex: 1;
  }
  
  .about-image-container img {
    width: 100%;
    border-radius: 12px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  }
  
  /* Tablet */
  @media (max-width: 1024px) {
    .about-section {
      padding: 1.5rem;
    }
  }
  
  /* Mobile */
  @media (max-width: 768px) {
    .about-section {
      flex-direction: column;
      padding: 1rem;
    }
  }
  
  /* Small Mobile */
  @media (max-width: 480px) {
    .about-section {
      /* padding: 0.8rem; */
      padding: 20px;
    }
  }
  


  /* ========================================= */

  /* body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 2rem;
    background-color: #fff;
  } */
  
  
  .top-universities-section {
    max-width: 1200px;
    margin: auto;
  }
  
  .section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #111827;
  }
  
  .universities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  
  .university-card {
    background-color: #f0f0f0;
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 350px;
    box-sizing: border-box;
  }
  
  .university-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }
  
  .university-card a {
    color: #000;
    font-weight: 500;
    font-size: 0.95rem;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .university-card a:hover {
    color: #ff6a3d;
  }
  
  .university-card img {
    width: 100%;
    height: auto;
    margin-top: auto;
    border-radius: 10px;
    object-fit: cover;
  }
  
  .purple {
    background-color: #dcd3fa;
  }
  
  .cyan {
    background-color: #cbf2f1;
  }
  
  /* Responsive tweaks */
  @media (max-width: 768px) {
    .section-title {
      font-size: 1.5rem;
      text-align: center;
    }
    .top-universities-section{
      padding: 20px;
    }
  }

  /* ================================== */

  .legacy-section {
    background-color: #EFEFD0;
    padding: 3rem 2rem;
    border-radius: 16px;
    max-width: 1200px;
    margin: 2rem auto;
  }
  
  .legacy-content {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
  }
  
  .legacy-text {
    flex: 2;
    min-width: 300px;
  }
  
  .legacy-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }
  
  /* .highlight {
    background-color: #2563eb;
    color: #fff;
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    margin-right: 0.3rem;
    display: inline-block;
  } */
  
  .legacy-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #555;
    font-weight: bold;
  }
  
  .founder-card {
    flex: 1;
    text-align: center;
    min-width: 250px;
    background-color: white;
    border-radius: 20px;
    background: linear-gradient(135deg, #eee8e8, #ffffff); /* grey to black gradient */
    box-shadow: 0 0 12px #fa5400; /* Glowing orange shadow */
  }
  
  .founder-card img {
    width: 100%;
    max-width: 252px;
    border-radius: 12px;
    /* margin-bottom: 1rem; */
    margin-left: 7rem;
  }
  
  .founder-info {
    font-size: 1.5rem;
    color: #fa5400; /* Deep orange */
    line-height: 1.5;
    padding: 1rem;
    
    border-radius: 8px;
  }
  
  
  .founder-info span {
    color: #e11d48;
    font-weight: 500;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .legacy-content {
      flex-direction: column;
      align-items: center;
    }
  
    .legacy-text {
      text-align: center;
    }
  
    .legacy-text h2 {
      font-size: 1.5rem;
    }

    .founder-card img {
        width: 100%;
        max-width: 198px;
        border-radius: 12px;
        /* margin-bottom: 1rem; */
        margin-left: 7rem;
      }
  }

  /* ========================================== */

  .journey-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  
  .slides-container {
    display: flex;
    height: 100%;
  }
  
  .slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    display: none;
    align-items: center;
    justify-content: center;
  }
  
  .slide.active {
    display: flex;
  }
  
  .about-content2 {
    color: #fff;
    padding: 2rem;
    max-width: 500px;
  }
  
  .about-content2 h2 {
    color: white;
    /* font-size: 2rem; */
    margin-bottom: 2rem;
    text-shadow: 0px 0px 5px rgba(0,0,0,0.6);
  }
  
  .new-timeline {
    list-style: none;
  }
  
  .new-timeline li {
    background: rgba(0, 0, 0, 0.5);
    margin-bottom: 1rem;
    padding: 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
  }

  .new-timeline li p{
    margin-bottom: 0;
  }
  
  .new-timeline .year {
    background: #fff;
    color: #000;
    font-weight: bold;
    margin-right: 1rem;
    padding: 10px 25px;
    width: auto;
    height: auto;
    line-height: 1;
    border-radius: 20px;
  }
  
  /* Navigation Buttons */
  .prev3, .next3 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    border-radius: 25%;
    cursor: pointer;
    /* z-index: 1000; */
  }
  
  .prev3 {
    left: 20px;
  }
  
  .next3 {
    right: 20px;
  }
  
  .prev3:hover, .next3:hover {
    background: rgba(0, 0, 0, 0.8);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-content2 {
      max-width: 90%;
      text-align: center;
      padding: 1rem;
    }
  
    .new-timeline li {
      flex-direction: column;
      text-align: center;
    }
  
    .new-timeline .year {
      margin-bottom: 0.5rem;
      font-size: small;
    }
    .prev3, .next3 {
     font-size: 0.7rem;
    }

    .new-timeline li {
      margin: 10px 40px;
    }
  }


  /* ===================================== */

  .headlines-section {
    padding: 2rem 5rem;
    /* text-align: center; */
    background-color: #fafafa;
  }
  
  /* .headlines-section h2 {
    text-align: left;
  } */
  
  .carousel-wrapper {
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
  }
  
  .carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .headline-card {
    flex: 0 0 31.3333%;
    background: white;
    border: 1px solid rgba(37, 32, 54, 0.1);
    margin: 0 0.5rem;
    margin-right: 1rem;
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s;
    border-left: 5px solid #F26722;
  }
  
  @media (max-width: 768px) {
    .headline-card {
      flex: 0 0 50%;
      max-width: 50%;
    }

    .headlines-section{
      padding: 2rem 2rem;
    }
  }
  
  @media (max-width: 480px) {
    .headline-card {
      flex: 0 0 94%;
      max-width: 94%;
    }
  }
  
  
  .headline-card img {
    max-width: 150px;
    margin-bottom: 1rem;
    border-radius: 10px;
  }
  
  .headline-card p {
    font-size: 18px;
    color: #555;
  }

  .headline-card .oro {
    font-size: 22px;
    background: linear-gradient(135deg, #F26722 0%, #fcb900 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #F26722;
  }
  
  .headline-card:hover {
    transform: translateY(-5px);
  }
  
  /* Pagination dots */
  .pagination-dots2 {
    margin-top: 1rem;
    text-align: center;
  }
  
  .pagination-dots2 span {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin: 0 4px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .pagination-dots2 .active {
    background-color: #333;
  }
  
 /* ============================== */

 .leaders-section {
    padding: 2rem;
    /* text-align: center; */
  }
  
  .leaders-carousel-container {
    overflow: hidden;
    position: relative;
  }
  
  .leaders-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .leaders-card {
    flex: 0 0 33.3333%;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    background: #f5fafa;
    margin: 0 0.5rem;
    border-radius: 15px;
    padding: 1rem;
    box-sizing: border-box;
    text-align: center;
    background: linear-gradient(161.69deg, #BDCD36 -16.46%, #FFFFFF 46.46%);
  }
  
  .leaders-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
  
  .leaders-card h3 {
    margin: 10px 0 5px;
    font-size: 18px;
  }
  
  .leaders-card p {
    font-size: 14px;
    color: #555;
    font-weight: bold;
  }
  
  .leaders-pagination-dots {
    margin-top: 1rem;
    text-align: center;
  }
  
  .leaders-pagination-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
  }
  
  .leaders-pagination-dots span.active {
    background: #000;
  }
  
  @media (max-width: 768px) {
    .leaders-card {
      flex: 0 0 94%;
    }
  }

  /* ======================= */

  .impact-section {
    padding: 3rem 4rem;
    background: #151419 url(../img/individual-course/grid-bg.png);
    color: white;
    /* text-align: center; */
  }
  
  .impact-section h2 {
    /* font-size: 38px; */
    margin-bottom: 2rem;
    /* color: #ff7100dd; */
    color: white;
    /* padding: 0 3rem; */
    /* text-align: left; */
  }
  
  .impact-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 4rem;
    text-align: center;
  }
  
  .impact-item {
    flex: 1 1 200px;
    margin: 1rem;
  }
  
  .impact-item h3 {
    font-size: 3rem;
    color: #fff;
    font-weight: bold;
    font-size: 69px;
  }
  
  .impact-item p {
    font-size: 1rem;
    color: #555;
    font-weight: bold;
    /* padding: 0 50px; */
  }
  
  .benefits-carousel-wrapper {
    overflow: hidden;
    position: relative;
    margin-top: 2rem;
    margin-left: 2rem;
  }
  
  .benefits-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    /* margin-left: 2rem; */
  }
  
  .benefits-card {
    flex: 0 0 25%;
    /* background: white; */
    background: linear-gradient(161.69deg, rgb(205, 195, 54) -16.46%, #FFFFFF 46.46%);
    color: black;
    margin: 0 0.5rem;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    text-align: center;
    box-sizing: border-box;
  }
  
  .benefits-card img {
    width: 50px;
    margin-bottom: 1rem;
  }
  
  .benefits-card h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  .benefits-card p {
    font-size: 0.95rem;
    color: #555;
    font-weight: bold;
  }
  
  .benefits-pagination-dots {
    text-align: center;
    margin-top: 1rem;
  }
  
  .benefits-pagination-dots span {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
  }
  
  .benefits-pagination-dots span.active {
    background: #000;
  }
  
  @media (max-width: 768px) {
    .benefits-card {
      flex: 0 0 82%;
    }

    .benefits-carousel-wrapper {
        overflow: hidden;
        position: relative;
        margin-top: 2rem;
        margin-left: 0rem;
      }

      .impact-section {
        padding: 3rem 2rem;
      }

      
  }
  