 /* =============================
           ABOUT HEADER SECTION
        ============================== */
    .about-section {
        width: 100%;
        background: linear-gradient(90deg, #e8f0ff 0%, #f5f7ff 100%);
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 50px 20px;
    }

    .about-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        max-width: 1200px;
        width: 100%;
    }

    .about-left {
        flex: 1 1 400px;
        text-align: center;
        margin-top: 58px;
    }

    .student-img {
        width: 80%;
        max-width: 379px;
        position: relative;
        bottom: -94px;
    }

    .about-right {
        flex: 1 1 400px;
        text-align: left;
        padding: 20px;
        position: relative;
    }

    .arrow-img {
        width: 168px;
        position: relative;
        top: 28px;
        left: -138px;
    }

    .about-right h1 {
        font-size: 2.5rem;
        font-weight: 700;
        color: #000;
    }

    .breadcrumb {
        font-size: 1rem;
        margin-top: 5px;
        color: #444;
    }

    .breadcrumb span {
        color: #7a2ed6;
        font-weight: 600;
    }

    /* =============================
           SUCCESS STAGES SECTION
        ============================== */
    .success-section {
        padding: 40px 20px;
        background: #fff;
    }

    .success-title {
        text-align: center;
    }

    .success-title h2 {
        font-size: 1.8rem;
        color: #4b299a;
        font-weight: 700;
    }

    .success-title .highlight {
        color: #e43e96;
    }

    .success-title p {
        margin-top: 10px;
        font-size: 1rem;
        color: #333;
    }

    .container-stages {
        background-color: #fff;
        padding: 20px;
    }

    .stages {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(318px, 1fr));
        gap: 25px;
        margin: 40px auto;
        width: 100%;
        max-width: 1200px;
    }

    .stage-circle {
        background: #fff;
    }

    .stage {
        display: flex;
        align-items: center;
        background: linear-gradient(to right, #dae2f2, #c8b6d9);
        border-radius: 20px;
        /* padding: 3px 10px 3px 3px; */
        width: 66%;
        height: 15%;
    }

    .circle {
        background-color: #6a1b9a;
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 20px;
        margin-right: 10px;
    }

    .label {
        font-weight: bold;
        color: #000;
        font-size: 14px;
    }

    .stage-circle ul {
        margin-top: 15px;
        padding-left: 20px;
        font-size: 14px;
    }

    .stage-circle ul li {
        margin-bottom: 6px;
        color: #444;
        line-height: 1.5;
    }

    /* =============================
           HEARTBEAT SECTION
        ============================== */
    .heartbeat-container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding: 60px 20px;
    }

    .heartbeat {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: nowrap;
        gap: 30px;
        width: 100%;
    }

    .underline{
        text-decoration: underline;
        color: #7a2ed6;
       
       
    }   
    
    .underline2{
        text-decoration: underline;
        color: #EC2C63;
    }   
    
    .underline3{
        text-decoration: underline;
        color: #0065B8;
    }    


.success-title hr {
     display: block;
    width: 26%;
    margin: 5px auto;
    border: 1px dashed #0065B8;
    border-block-width: 1px;
}


    .left,
    .right {
        flex: 1 1 300px;
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .center {
        flex: 1 1 200px;
        text-align: center;
    }

    .center img {
        height: 60vh;
        max-width: 100%;
    }

    .title {
        text-align: center;
        margin-bottom: 40px;
    }

    .title h1 {
        font-size: 2.5rem;
        color: #000;
        font-weight: 600;
    }

    .title h2 {
        font-size: 2.5rem;
        color: #333;
        font-weight: 400;
        letter-spacing: 2px;
    }

    /* CARD DESIGN */
    .card {
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .card img {
        width: 100px;
        height: 100px;
    }

    .card-content h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .card-content p {
        font-size: 0.95rem;
        color: #444;
        max-width: 450px;
        text-align: justify;
    }

    /* COLORS */
    .vision h3 {
        color: #4a3fc0;
    }

    .mission h3 {
        color: #0065b8;
    }

    .values h3 {
        color: #e91e63;
    }

    /* =============================
           RESPONSIVE DESIGN
        ============================== */
    @media (max-width: 992px) {
        .about-container {
            flex-direction: column;
            text-align: center;
        }

        .about-right {
            padding: 10px;
        }

   .arrow-img {
    width: 100px;
    position: relative;
    top: 29px;
    left: -88px;
}
        .about-right h1 {
            font-size: 2rem;
        }

        .heartbeat {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .center img {
            height: 35vh;
        }

        .card {
            justify-content: center;
        }

        .card-content p {
            max-width: 100%;
        }
    }
    /* Default (Desktop / Tablet) layout */
.about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* Mobile layout (reverse order) */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    height:auto;
  }

  /* Make text section (about-right) appear first */
    .about-right {
        order: 1;
        text-align: center;
        height: auto;
        margin-top: 49px;
        flex: 0;
    }

  /* Make image section (about-left) appear second */
    .about-left {
        order: 2;
        margin: 0;
        display: none;
    }

  /* Adjust sizes for better mobile fit */
     .student-img {
        width: 81%;
        max-width: 250px;
        position: relative;
        left: -72px;
        top: 284px;
    }

.arrow-img {
    width: 100px;
    position: relative;
    top: 29px;
    left: -88px;
}
  .about-right h1 {
    font-size: 1.8rem;
  }
}

.journey-section {
  background: linear-gradient(to right, #dff3ff, #eaf3ff);
  padding: 60px 20px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  color: #222;
}

.journey-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #5a2ca0; /* deep purple */
  margin-bottom: 10px;
}

.journey-section h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #5a2ca0;
  margin-top: 25px;
  margin-bottom: 8px;
}

.journey-section p {
  font-size: 1rem;
  color: #111;
  max-width: 1028px;
  margin: 0 auto 20px auto;
  line-height: 1.6;
}

.journey-section .black-text {
  color: #000;
}

/* history  */
   .inspiring {
    background-image: url("../icon/about_backgorund.png");
    background-size: cover;
    background-position: center;
    padding: 53px 20px;
    text-align: center;
    font-family: "Poppins", sans-serif;
    color: #222;
    background-repeat: no-repeat;
    object-fit: fill;
   }
   .inspiring h2 {
      text-align: center;
      color: #4b2c82;
      font-size: 28px;
      margin: 20px 0;
    } 
    
    
    .discover h2 {
      text-align: center;
      color: #4b2c82;
      font-size: 28px;
      margin: 20px 0;
    }

    .established{
        max-width: 1280px;
        margin: 0 auto;
        padding: 16px;
        line-height: 1.5rem;
        text-align: justify;
        letter-spacing: 0.5px;
        color: #222;
    }
    /* Slider Section */
    .slider-container {
      background: #f3f6fb;
      margin: 0 auto;
      padding: 20px;
      max-width: 900px;
      border-radius: 8px;
    }

    .slider-tabs {
      display: flex;
      justify-content: space-around;
      font-weight: bold;
      margin-bottom: 10px;
      flex-wrap: wrap;
      gap: 10px;
      white-space: nowrap;
    }

    .slider-tabs div {
      cursor: pointer;
      padding: 8px 12px;
      background: #e0e0e0;
      border-radius: 4px;
      transition: all 0.3s ease;
      text-align: center;
      flex: 1;
      max-width: 179px;
    }

    .slider-tabs div:hover {
      background: #5e3aa1;
      color: white;
    }

    .slider-tabs div.active {
      background: #5e3aa1;
      color: white;
    }

    .slider {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .slide-container {
      display: flex;
      width: 100%;
      height: 300px;
      position: relative;
    }

    .slide-category {
      display: none;
      width: 100%;
      height: 100%;
      justify-content: space-between;
    }

    .slide {
      width: 45%;
      height: 100%;
      background: #fafafa;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .slide.dark {
      background: #ffffff;
    }

    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 6px;
    }

    .arrow {
      font-size: 24px;
      cursor: pointer;
      user-select: none;
      font-weight: bold;
      padding: 0 10px;
    }


    /* Discover Campus */
    .discover {
      text-align: center;
      width: 56%;
      margin: 30px auto;
      line-height: 1.6;
    }
    .discover h2 {
      margin-bottom: 10px;
    }

    /* Reach Us */
    .reach {
   

      padding: 40px 20px;
      margin-top: 40px;
      text-align: center;
      position: relative;
    }
    .reach h3 {
      color: #d62828;
      font-size: 22px;
    }
    .reach select {
      padding: 8px;
      border-radius: 5px;
      border: 1px solid #ccc;
      margin: 10px 0;
    }
    .address-box {
      background: #f1f8ff;
      display: inline-block;
      padding: 20px;
      border-radius: 10px;
      text-align: left;
      margin-top: 20px;
      max-width: 500px;
    }
    .address-box h4 {
      margin: 0 0 10px;
      font-size: 18px;
      color: #333;
    }
    .address-box ul {
      padding-left: 20px;
      margin: 0;
      list-style: disc;
      font-size: 14px;
    }

    /* Decorative */
    .reach img, .decor {
      position: absolute;
    }

    .reach-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

/* App Section */
  .app-section {
            background: #5e3aa1;
            /* purple background */
            color: white;
            text-align: center;
            padding: 40px 20px;
        }

        .app-section h2 {
            font-size: 20px;
            margin-bottom: 10px;
        }

        .app-section p {
            font-size: 14px;
            margin-bottom: 25px;
        }

        .app-buttons {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 70px;
        }

        .store-buttons {
            display: flex;
            flex-direction: column;
            align-items: start;
            margin: 0;
        }



        .qr-box,
        .elearning-box {
            background: white;
            border-radius: 10px;
            padding: 15px 25px;
            display: flex;
            align-items: center;
            gap: 15px;
            color: black;
            font-size: 14px;
            cursor: pointer;
            transition: 0.3s;
        }

        .qr-box:hover,
        .elearning-box:hover {
            transform: translateY(-5px);
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        }

        .qr-box img {
            width: 70px;
            height: 70px;
        }

        .elearning-box img {
            width: 60px;
            height: 60px;
        }

        .qr-button {
            background-color: #f1f1f1;
            color: #5a5959;
            padding: 10px 20px;
            border: 1px groove #666;
            border-radius: 50px;
            cursor: pointer;
            transition: 0.3s;
        }

        .qr-button:hover {
            background-color: #5e3aa1;
            color:#fff;
        }



.card-pencil {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: fit-content;
    margin: auto;
 
}
      
        @media (max-width: 768px) {
            .app-buttons {
                flex-direction: column;
            }
        }

    /* Responsive styles for slider */
    @media (max-width: 768px) {
      .slider-tabs {
        flex-wrap: wrap;
      }

      .slider-tabs div {
        max-width: 160px;
        font-size: 0.9rem;
        padding: 6px 8px;
      }
      
      .slide-container {
        height: 250px;
      }
      
      .arrow {
        font-size: 20px;
      }
            .discover {
 
    width: 100%;

        text-align: justify;
}

.reach-container {
    width: 100%;
}

.app-buttons {
   
    gap: 20px;
}

 
    }

    @media (max-width: 480px) {
      .slider-container {
        padding: 15px;
      }
         .about-right {
        flex: 0;
    }

      .slider-tabs div {
        min-width: 80px;
        font-size: 0.8rem;
        padding: 5px 6px;
      }
      
      .slide-container {
        height: 200px;
      }
      
      .arrow {
        font-size: 18px;
        padding: 0 5px;
      }

      .discover {
 
    width: 100%;

        text-align: justify;
}
    }

/* Style the tab */
 .reach-container {
      width: 83%;
      margin: 0 auto;
      padding: 20px;
      height: auto;
      display: flex;
      flex-direction: row;
      justify-content: center;
    }

    .reach {
      text-align: center;
      margin-bottom: 20px;
    }

    .reach h3 {
      color: #e91e63;
      margin-bottom: 5px;
    }

    .reach p {
      color: #555;
      margin-bottom: 10px;
    }

    .reach select {
      padding: 8px 12px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 5px;
      outline: none;
      cursor: pointer;
    }

    .row {
      display: none;
      margin-top: 20px;
    }

    .row.active {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
    }

    .address-box {
      flex: 1 1 45%;
      background: #f1f8ff;
      padding: 15px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    }

    .address-box h4 {
      color: #5e3aa1;
      margin-bottom: 10px;
    }

    .address-box ul {
      list-style-type: none;
      padding: 0;
      margin: 0;
    }

    .address-box a {
color:#000;
    }
    .address-box ul li {
      padding: 5px 0;
      color: #333;
      border-bottom: 1px dashed #ccc;
    }

    @media (max-width: 768px) {
      .address-box {
        flex: 1 1 100%;
      }
      .reach-container {
 
    display: flex;
    flex-direction: column;
    
}
.reach {
    padding: 0;
}
    }


      @media (max-width: 768) {
    .slider-tabs {
 display: block;
    justify-content: space-between;
    font-weight: bold;
    margin-bottom: 10px;
}

    .about-right {
        flex: 0;
    }

.discover h2 {
    text-align: center;
    color: #4b2c82;
    font-size: 23px;
    margin: 20px 0;
}

.title h1 {
    font-size: 1.8rem;
    color: #000;
    font-weight: 600;
}
.title h2 {
    font-size: 2rem;
}
.about-right {
    flex: none;
    text-align: left;
    padding: 20px;
    position: relative;
}

.arrow-img {
    width: 100px;
    position: relative;
    top: 29px;
    left: -88px;
}
    }