        body {
            font-family: 'Aleo', serif;
            margin: 0;
            padding: 0;
        }

        /* Top Header*/
        .top-header {
            background-color: #ffffff; 
            padding: 10px 20px; 
            box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            justify-content: flex-start; 
            animation: fadeInLeft 1s ease forwards;
        }

   
        .logo-container {
            max-width: 400px; 
        }

        .logo-container img {
            width: 100%;
            height: auto;
            display: block;
        }

   
        @keyframes fadeInLeft {
            0% {
                opacity: 0;
                transform: translateX(-20px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

 
        @media (max-width: 768px) {
            .top-header {
                padding: 5px 10px;
            }

            .logo-container {
                max-width: 250px;
                margin-left: 70px;
                padding: 10px 0px;
            }
        }

        /*Header*/
{
            font-family: 'Aleo', serif;
            margin: 0;
            padding: 0;
            background-color: #f9f9f9;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            overflow-x: hidden;
        }


        section {
            max-width: 1400px;
            width: 100%;
            padding: 20px;
            box-sizing: border-box;
            margin: 0 auto;
        }


        .promo-card {
            display: flex;
            flex-direction: row;
            background-color: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            animation: fadeInLeft 1s ease-out forwards;
            width: 100%;
        }


        .promo-content {
            padding: 40px;
            width: 60%;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-sizing: border-box;
        }

        .promo-content h1 {
            font-size: 2em;
            color: #00abaf;
            margin: 0 0 10px;
        }

        .promo-content h2 {
            font-size: 1.5em;
            color: #000;
            font-weight: 700;
            margin: 10px 0;
        }

        .promo-content p {
            color: #555;
            margin: 10px 0 20px;
            line-height: 1.6;
        }


        .info-row {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .info-item {
            color: #00abaf;
        }

        .info-label {
            font-weight: bold;
            color: #555;
        }

  
        .btn-group {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 10px 20px;
            border: none;
            border-radius: 5px;
            font-size: 1em;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .btn-download {
            background-color: #ffffff;
            color: #333;
            border: 1px solid #ddd;
        }

        .btn-apply {
            background-color: #00abaf;
            color: #ffffff;
        }

        .btn-apply:hover {
            background-color: red;
        }

        .contact-info {
            font-size: 0.9em;
            color: #888;
            margin-top: 10px;
        }

        .promo-image {
            width: 40%;
            background-color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            background-image: url('../img/banner2.jpeg'); /* Placeholder Image */
            background-size: cover;
            background-position: center;
            aspect-ratio: 1; /* Ensures the image scales correctly */
        }

/*        .promo-image::before {
            content: '';
            position: absolute;
            width: 80px;
            height: 80px;
            background-color: #00abaf;
            top: 20px;
            left: 20px;
        }*/


        @keyframes fadeInLeft {
            0% {
                opacity: 0;
                transform: translateX(-20px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }


        .popup-form {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            justify-content: center;
            align-items: center;
        }

        .form-container {
            background-color: #ffffff;
            padding: 30px;
            border-radius: 10px;
            width: 90%;
            max-width: 400px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .form-container h3 {
            margin-top: 0;
            color: #00abaf;
        }

        .form-container input, .form-container select {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ddd;
            border-radius: 5px;
            box-sizing: border-box;
        }

        .form-container button {
            width: 100%;
            padding: 10px;
            background-color: #00abaf;
            color: #ffffff;
            border: none;
            border-radius: 5px;
            font-size: 1em;
            cursor: pointer;
        }

        .form-container button:hover {
            background-color: red;
        }

        .close-btn {
            color: red;
            font-weight: bold;
            float: right;
            cursor: pointer;
            font-size: 1.2em;
        }

        @media (max-width: 768px) {
            .promo-card {
                flex-direction: column;
                align-items: center;
            }
            .promo-content, .promo-image {
                width: 100%;
            }
            .promo-content {
                padding: 20px;
            }
            .promo-image {
          /*      height: 200px;*/
                background-size: contain;
            }
            .promo-content h1 {
                font-size: 1.5em;
                margin-bottom: 5px;
            }
            .promo-content h2 {
                font-size: 1.2em;
                margin: 5px 0;
            }
            .promo-content p {
                font-size: 0.9em;
                line-height: 1.5;
            }
            .info-row {
                flex-direction: column;
                gap: 10px;
            }
            .btn {
                font-size: 0.9em;
                padding: 8px 15px;
            }
            .contact-info {
                font-size: 0.8em;
                margin-top: 10px;
            }
        }




        /*Header-3*/

        {
            margin: 0;
            font-family: Aleo, serif;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            background-color: #f4f4f4;
        }
        .isbf-banner-header-3 {
            display: flex;
            width: 1500px;
            height: 560px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            border-radius: 8px;
            overflow: hidden;
            margin: 10px 10px;
        }
        .isbf-banner-header-3 .banner-section {
            flex: 0 0 70%;
            position: relative;
            overflow: hidden;
        }
        .isbf-banner-header-3 .slick-slider img {
            width: 100%;
            height: 560px;
            object-fit: cover;
        }
        .isbf-banner-header-3 .form-section {
            flex: 0 0 30%;
            background-color: #ffffff;
            padding: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-left: 1px solid #ddd;
        }
        .isbf-banner-header-3 .form-section h2 {
            margin-bottom: 20px;
            font-size: 24px;
            color: #333;
        }
        .isbf-banner-header-3 .form-section form {
            display: flex;
            flex-direction: column;
        }
        .isbf-banner-header-3 .form-section input {
            margin-bottom: 15px;
            padding: 10px;
            font-size: 16px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        .isbf-banner-header-3 .form-section button {
            padding: 10px;
            font-size: 16px;
            background-color: #007BFF;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        .isbf-banner-header-3 .form-section button:hover {
            background-color: #0056b3;
        }

        @media (max-width: 768px) {
            .isbf-banner-header-3 {
                flex-direction: column;
                width: 100%;
                height: auto;
                margin: 0;
            }
            .isbf-banner-header-3 .banner-section {
                flex: 0 0 auto;
                width: 100%;
            }
            .isbf-banner-header-3 .slick-slider img {
                height: auto;
            }
            .isbf-banner-header-3 .form-section {
                flex: 0 0 auto;
                width: 100%;
                padding: 10px;
                border-left: none;
                border-top: 1px solid #ddd;
            }
        }

/*ISBF Text*/

{
            font-family: Aleo, serif;
            margin: 0;
            padding: 0;
            background-color: #f4f4f9;
            color: #333;
            text-align: center;
        }

        .isbf-text {
            padding: 30px 15px;
            background: linear-gradient(135deg, #e0f7fa, #ffffff);
           /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);*/
            border-radius: 10px;
            max-width: 1200px;
            margin: 50px auto;
            text-align: center;

        }

        .isbf-text h2 {
            font-size: 34px;
            color: #00abaf;
            margin-bottom: 15px;
            font-weight: bold;
            text-transform: capitalize;
        }

        .isbf-text h5 {
            font-size: 25px;
            color: #000;
            margin-top: 10px;
            font-weight: 400;
        }

        @media (max-width: 600px) {
            .isbf-text h2 {
                font-size: 23px;
            }

            .isbf-text h5 {
                font-size: 15px;
            }

            .isbf-text {
                padding: 20px 10px;
            }
        }





        /*Key Highlight*/
   * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

   {
      font-family: Aleo, serif;
      background-color: #f8f8f8;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      padding: 20px;
    }

    .key-program-highlights {
      max-width: 1000px;
      width: 100%;
      background: #fff;
      padding: 30px;
      border-radius: 12px;
      margin: 0 auto;
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 30px;
 /*     box-shadow: 0px 4px 15px rgb(216 206 206 / 10%);*/
    }

    .highlight-text {
      color: #00abaf;
    }

    .highlight-details {
      flex: 1;
    }

    .highlight-info {
      display: flex;
      justify-content: space-between;
      margin-bottom: 20px;
    }

    .stat {
      text-align: center;
      margin: 10px 0;
      padding: 15px;
      background: #f9f9f9;
      border-radius: 8px;
      box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    }

    /* Desktop font sizes */
    h2 {
          font-size: 35px;
    margin-bottom: 20px;
}

    .stat .number {
      font-size: 24px;
      font-weight: bold;
      color: #e63946;
    }

    .stat .label {
      font-size: 14px;
      color: #333;
      margin-top: 5px;
      max-width: 90px;
    }

    .program-benefits {
      list-style: none;
      padding: 0;
      margin-top: 10px;
    }

    .program-benefits li {
      margin-bottom: 10px;
    }

    .list-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      line-height: 1.4;
    }

    .list-item .icon {
      color: #00abaf;
      font-size: 18px;
      flex-shrink: 0;
    }

    .list-item .text {
      font-size: 14px;
      color: #555;
      text-align: left;
    }

    .video-container {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .video-container iframe {
      width: 100%;
      height: 330px;
      max-height: 330px;
      border-radius: 10px;
      border: 1px solid #ddd;
    }

    /* Desktop-only margin for video */
    @media (min-width: 769px) {
      .video-container {
        margin-top: 80px;
      }
    }

    /* Responsive styling for tablets */
    @media (max-width: 768px) {
      .key-program-highlights {
        flex-direction: column;
        text-align: center;
        padding: 20px;
      }

      .highlight-info {
        flex-direction: column;
 /*       gap: 15px;*/
      }

      h2 {
        font-size: 22px;
      }

      .stat .number {
        font-size: 20px;
      }

      .stat .label {
        font-size: 13px;
      }

      .list-item .text {
        font-size: 13px;
      }

      .video-container iframe {
        height: 180px;
      }
    }

    /* Responsive styling for mobile */
    @media (max-width: 480px) {
      h2 {
        font-size: 25px;
      }

      .stat .number {
        font-size: 22px;
      }

      .stat .label {
        font-size: 15px;
      }

      .list-item .text {
        font-size: 15px;
      }

      .video-container iframe {
        max-width: 300px;
        height: 220px;
      }
    }

    /*Benfits of Heading*/
   * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

  {
      font-family: Aleo, serif;
      background-color: #f8f8f8;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      padding: 20px;
    }

    /* Centered H1 heading */
    .main-heading {
      font-size: 30px;
      color: #333;
      margin-bottom: 20px;
      text-align: center;
      animation: fadeInUp 1s ease-in-out; 
    }

    .benefits-content {
      max-width: 1500px;
      width: 100%;
      background: #00abaf;
      padding: 30px;
      border-radius: 12px;
      margin: 0 auto;
      display: flex;
      flex-direction: row;
      align-items: flex-start;
      gap: 30px;
      box-shadow: 0px 4px 15px rgba(216, 206, 206, 0.1);
      animation: fadeInUp 1s ease-in-out;
    }

    .text-section {
      flex: 1;
    }

    .text-section-heading {
      font-size: 25px;
      color: #fff;
      margin-bottom: 20px;
      text-align: center;
    }

    .text-section-paragraph {
      font-size: 14px;
      color: #fff;
      line-height: 1.6;
      margin-bottom: 15px;
      text-align: justify;
    }

    .video-section {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .video-frame {
      width: 100%;
      height: 330px;
      max-height: 330px;
      border-radius: 10px;
      border: 1px solid #ddd;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (min-width: 769px) {
      .video-section {
        margin-top: 20px;
      }
    }

    /* Tablet and mobile styling */
    @media (max-width: 768px) {
      .benefits-content {
        flex-direction: column;
        text-align: center;
        padding: 20px;
      }

      .text-section-heading {
        font-size: 22px;
      }

      .text-section-paragraph {
        font-size: 13px;
      }

      .video-section {
        display: flex;
        justify-content: center;
        text-align: center;
        width: 100%;
      }

      .video-frame {
        max-width: 100%;
        height: 180px;
      }
    }

    /* Mobile-specific styling */
    @media (max-width: 480px) {
      .text-section-heading {
        font-size: 20px;
      }

      .text-section-paragraph {
        font-size: 12px;
      }

      .video-section {
        display: flex;
        justify-content: center;
        width: 100%;
        text-align: center;
      }

      .video-frame {
        max-width: 100%;
        height: 230px;
      }
    }

    /*Programs at ISBF*/

 * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

     {
      font-family: Aleo, serif;
      background: linear-gradient(135deg, #e0f7fa, #f1f8e9);
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      min-height: 100vh;
      padding: 20px;
    }

    .container {
      max-width: 1200px;
      width: 100%;
      padding: 20px;
      margin: 0 auto;
      background-color: #ffffff;
      border-radius: 12px;
    }

    /* Styled heading with half black and half red */
    .main-heading {
      font-size: 32px;
      text-align: center;
      margin-bottom: 20px;
      font-weight: bold;
      letter-spacing: 1px;
    }

    .main-heading .highlight {
      color: #00abaf;
    }

    .intro-paragraph {
      max-width: 800px;
      color: #555;
      font-size: 17px;
      line-height: 1.6;
      text-align: center;
      margin: 0 auto 30px auto;
    }

    .grid-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .grid-item {
      background: #ffffff;
      border-radius: 15px;
      padding: 30px 20px;
      text-align: center;
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      opacity: 0;
      transform: translateX(-50px);
      animation: fadeInLeft 0.8s forwards;
    }

    .grid-item:nth-child(1) {
      animation-delay: 0.1s;
    }
    .grid-item:nth-child(2) {
      animation-delay: 0.2s;
    }
    .grid-item:nth-child(3) {
      animation-delay: 0.3s;
    }
    .grid-item:nth-child(4) {
      animation-delay: 0.4s;
    }

    .grid-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }

    .icon-container {
      background-color: #e0f4f4;
      border-radius: 50%;
      width: 60px;
      height: 60px;
      display: flex;
      justify-content: center;
      align-items: center;
      margin: 0 auto 15px auto;
      color: #e63946;
      font-size: 28px;
      transition: background-color 0.3s ease;
    }

    .grid-item:hover .icon-container {
      background-color: #c7e9e9;
      color: #008a8a;
    }

    .grid-item h3 {
      font-size: 16px;
      color: #333333;
      margin-bottom: 10px;
      font-weight: 500;
    }

    .grid-item p {
      font-size: 15px;
      color: #666666;
      line-height: 1.5;
    }

    @keyframes fadeInLeft {
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    @media (max-width: 768px) {
      .grid-container {
        grid-template-columns: repeat(2, 1fr);
      }

      .main-heading {
        font-size: 26px;
      }

      .intro-paragraph {
        font-size: 15px;
      }

      .icon-container {
        width: 50px;
        height: 50px;
        font-size: 22px;
      }

      .grid-item h3 {
        font-size: 16px;
      }

      .grid-item p {
        font-size: 13px;
      }
    }

    @media (max-width: 480px) {
      .grid-container {
        grid-template-columns: repeat(2, 1fr);
      }

      .main-heading {
        font-size: 24px;
      }

      .intro-paragraph {
        font-size: 14px;
      }

      .icon-container {
        width: 45px;
        height: 45px;
        font-size: 20px;
      }

      .grid-item h3 {
        font-size: 15px;
      }

      .grid-item p {
        font-size: 12px;
      }
    }


    /*Lse Programme*/

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }


    .isbf-section-container {
      font-family: Aleo, serif;
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      padding: 40px 20px;
    }

    .isbf-section-wrapper {
      max-width: 1200px;
      width: 100%;
      background-color: #ffffff;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
      padding: 30px;
      text-align: center;
      overflow: hidden;
      animation: isbf-section-fadeInUp 1s ease forwards;
    }

    @keyframes isbf-section-fadeInUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .isbf-section-heading {
      font-size: 32px;
      margin-bottom: 20px;
      font-weight: bold;
      color: #333;
      animation: isbf-section-fadeInUp 1s ease forwards;
    }

    .isbf-section-heading .highlight {
      color: #00abaf;
    }


    .isbf-section-paragraph {
      font-size: 16px;
      color: #555;
      line-height: 1.6;
      margin-bottom: 30px;
      max-width: 800px;
      margin: 0 auto 30px auto;
    }


    .isbf-section-content {
      display: flex;
      gap: 40px;
      align-items: flex-start;
      justify-content: center;
      flex-wrap: wrap;
    }

    .isbf-section-text {
      flex: 1;
      max-width: 600px;
      animation: isbf-section-fadeInLeft 1s ease forwards;
    }

    .isbf-section-quote {
      font-size: 16px;
      color: #555;
      background: #fefefe;
      border-left: 6px solid #e63946;
      padding: 20px;
      border-radius: 8px;
      line-height: 1.5;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
      position: relative;
      text-align: left;
      animation: isbf-section-fadeInLeft 1s ease forwards;
    }

    .isbf-section-quote-icon {
      font-size: 30px;
      color: #00abaf;
      position: absolute;
      top: -15px;
      left: -15px;
    }

    .isbf-section-quote-author {
      display: block;
      font-weight: bold;
      color: #333;
      margin-top: 10px;
      text-align: right;
    }

    .isbf-section-video {
      flex: 1;
      display: flex;
      justify-content: center;
      align-items: center;
      max-width: 600px;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
      animation: isbf-section-fadeInRight 1s ease forwards;
    }

    .isbf-section-video-frame {
      width: 100%;
      height: 400px;
      border-radius: 12px;
      border: none;
    }

    @media (min-width: 769px) {
      .isbf-section-video {
        margin-top: 80px;
      }
    }

    @media (max-width: 768px) {
      .isbf-section-content {
        flex-direction: column;
        align-items: center;
      }

      .isbf-section-text, .isbf-section-video {
        max-width: 100%;
      }

      .isbf-section-heading {
        font-size: 28px;
      }

      .isbf-section-paragraph, .isbf-section-quote {
        font-size: 16px;
      }

      .isbf-section-video-frame {
        height: 220px;
      }
    }

    @media (max-width: 480px) {
      .isbf-section-heading {
        font-size: 24px;
      }

      .isbf-section-paragraph, .isbf-section-quote {
        font-size: 15px;
      }

      .isbf-section-video-frame {
        height: 180px;
      }
    }

    /*ISBF Profile*/
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
            font-family: 'Aleo', serif;
        }

       {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background-color: #f9f9f9;
        }

        .isbf-faculty-member-container {
            width: 90%;
            max-width: 1000px;
            background-color: #fff;
            padding: 20px;
    /*        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);*/
            border-radius: 12px;
            overflow: hidden;
            text-align: center;
            position: relative;
            margin: 0 auto;
        }

        .isbf-faculty-member-header {
            margin-bottom: 20px;
        }

        .isbf-faculty-member-header h2 {
            font-size: 32px;
            color: #333;
        }

        .isbf-faculty-member-header h2 span {
            color: #00abaf;
        }

        .isbf-faculty-member-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 10px;
        }

        .isbf-faculty-member-stat-item {
            display: flex;
            align-items: center;
            text-align: left;
            color: #333;
        }

        .isbf-faculty-member-stat-icon {
            width: 60px;
            height: 60px;
            background-color: #ffe6e6;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #ff4d4d;
            font-size: 2em;
            margin-right: 10px;
        }

        .isbf-faculty-member-stat-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .isbf-faculty-member-stat-content span {
            font-size: 1.5em;
            font-weight: bold;
            color: #333;
        }

        .isbf-faculty-member-stat-content p {
            font-size: 0.9em;
            color: #777;
            margin: 0;
        }

        .isbf-faculty-member-tab-container {
            display: flex;
            justify-content: space-around;
            margin-bottom: 20px;
        }

        .isbf-faculty-member-tab-button {
            flex: 1;
            padding: 12px;
            cursor: pointer;
            background-color: #f1f1f1;
            border: none;
            outline: none;
            color: #333;
            font-weight: bold;
            border-radius: 8px;
            transition: all 0.3s;
        }

        .isbf-faculty-member-tab-button.active {
            background-color: #e63946;
            color: #fff;
            box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
        }

        .isbf-faculty-member-tab-button:hover {
            background-color: #00abaf;
            color: #fff;
            box-shadow: 0 4px 10px rgba(0, 123, 255, 0.2);
        }

        .isbf-faculty-member-carousel {
            display: none;
            overflow: hidden;
            position: relative;
        }

        .isbf-faculty-member-carousel.active {
            display: block;
        }

        .isbf-faculty-member-carousel-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 20px;
            will-change: transform;
        }

        .isbf-faculty-member-card {
            flex: 1;
            min-width: 30%;
            padding: 20px;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            background-color: #f9f9f9;
            margin: 10px;
        }

        .isbf-faculty-member-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
        }

        .isbf-faculty-member-card img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 10px;
            border: 3px solid #007bff;
        }

        .isbf-faculty-member-card h3 {
            font-size: 1.1em;
            margin: 10px 0;
            color: #333;
        }

        .isbf-faculty-member-card p {
            font-size: 0.9em;
            color: #555;
            margin-bottom: 15px;
        }

        .isbf-faculty-member-linkedin-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background-color: #00abaf;
            color: #fff;
            font-weight: bold;
            text-decoration: none;
            border-radius: 20px;
            transition: background-color 0.3s ease, transform 0.2s ease;
            box-shadow: 0 4px 10px rgba(0, 119, 181, 0.3);
        }

        .isbf-faculty-member-linkedin-btn:hover {
            background-color: #005582;
            transform: translateY(-2px);
        }

        .isbf-faculty-member-linkedin-btn img {
            width: 16px;
            height: 16px;
        }

        .isbf-faculty-member-carousel-nav {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 10px;
        }

        .isbf-faculty-member-carousel-nav button {
            background-color: rgba(0, 0, 0, 0.5);
            color: #fff;
            border: none;
            padding: 10px;
            cursor: pointer;
            border-radius: 50%;
            font-size: 1.5em;
            transition: background-color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .isbf-faculty-member-carousel-nav button:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }

        .isbf-faculty-member-carousel-nav svg {
            width: 20px;
            height: 20px;
        }

        @media (max-width: 768px) {
            .isbf-faculty-member-stats {
                flex-direction: row;
                flex-wrap: wrap;
                justify-content: center;
                gap: 20px;
            }

            .isbf-faculty-member-card {
                min-width: 100%;
                margin: 10px auto;
            }
        }

        @media (max-width: 480px) {
            .isbf-faculty-member-stats {
                flex-direction: row;
                flex-wrap: nowrap;
                gap: 10px;
            }

            .isbf-faculty-member-stat-item {
                flex: 1 1 50%;
                max-width: 50%;
                justify-content: center;
            }

            .isbf-faculty-member-card {
                min-width: 100%;
            }

            .isbf-faculty-member-carousel-nav button {
                padding: 8px;
                font-size: 1.2em;
            }
        }

        /*Lse Award*/

      @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

      {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }

        .ict-container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .ict-section {
            background-color: #fcfbfb;
        }

        .ict-heading {
            text-align: center;
            margin-bottom: 20px;
        }

        .ict-heading h1 {
            font-size: 32px;
            font-weight: 700;
            margin: 0;
            color: #000;
            font-family: 'Aleo', serif;
            padding-bottom: 25px;
        }

        .ict-heading p {
            font-size: 18px;
            line-height: 26px;
            color: #666;
            margin: 10px 0 30px;
        }

        .ict-text-desktop, .ict-text-mobile {
            text-align: center;
            margin-bottom: 40px;
        }

        .ict-text-mobile {
            display: none;
        }

        .ict-row {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center;
        }

        .ict-col-left {
            width: 45%;
            box-sizing: border-box;
            animation: fadeInLeft 1s ease-in-out;
        }

        .ict-col-right {
            width: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-sizing: border-box;
            animation: fadeInRight 1s ease-in-out;
        }

        .ict-tooltip {
            display: flex;
            align-items: center;
            background: #00abaf;
            box-shadow: 0px 4px 80px 3px rgba(0, 0, 0, 0.07);
            border-radius: 8px;
            padding: 22px 30px 30px;
            position: relative;
            transition: all 0.3s;
            margin-bottom: 20px;
            color: #fff;
        }

        .ict-tooltip img {
            width: 50px;
            height: 50px;
            padding-right: 10px;
        }

        .ict-tooltip-text h5 {
            font-weight: 700;
            font-size: 23px;
            line-height: 28px;
            color: #fff;
            font-family: 'Aleo', serif;
            margin: 0;
        }

        .ict-tooltip-text p {
            font-weight: 400;
            font-size: 14px;
            line-height: 22px;
            color: #fff;
            margin: 10px 0 0;
            font-family: 'Lato', sans-serif;
        }

        .ict-tooltip:hover {
            background-color: #fff;
            color: #000B2B;
        }

        .ict-tooltip:hover h5,
        .ict-tooltip:hover p {
            color: #000B2B;
        }

        .ict-img-container img {
            width: 100%;
            border-radius: 8px;
            display: block;
            max-width: 100%;
            height: auto;
        }

        @media (max-width: 992px) {
            .ict-col-left, .ict-col-right {
                width: 100%;
            }

            .ict-text-desktop {
                display: none;
            }

            .ict-text-mobile {
                display: block;
            }

            .ict-img-container img {
                width: 100%;
            }
        }

        @media (max-width: 576px) {
            .ict-heading h1 {
                font-size: 22px;
                font-weight: 700;
                line-height: 30px;
                color: #000;
                font-family: 'Aleo', serif;
                padding-bottom: 25px;
                text-align: center;
            }

            .ict-tooltip {
                flex-direction: row;
                align-items: flex-start;
            }

            .ict-tooltip img {
                margin-bottom: 0;
                padding-right: 15px;
            }

            .ict-tooltip-text {
                flex: 1;
            }
        }

/*Download Brochure*/

 {
        margin: 0;
        padding: 0;
        font-family: Aleo, serif;
        background: linear-gradient(135deg, #1e88e5, #42a5f5);
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        color: #333;
    }

    .program-card {
        max-width: 1000px;
        padding: 20px 30px;
        background-color: #ffffff;
        border-radius: 16px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        text-align: center;
        animation: fadeInEffect 0.8s ease-in-out;
        margin: 0 auto;
    }

    .program-title {
        font-size: 32px;
        color: #6e6e6e;
        font-weight: 700;
        margin-bottom: 15px;
        letter-spacing: 0.5px;
    }

    .program-divider {
        width: 80px;
        height: 4px;
        background-color: #00abaf;
        margin: 0 auto 25px;
        border-radius: 2px;
    }

    .program-description {
        font-size: 18px;
        color: #666;
        line-height: 1.7;
        margin-bottom: 40px;
    }

    .download-button {
        display: inline-flex;
        align-items: center;
        background: linear-gradient(135deg, #e63946, #e63946);
        color: #ffffff;
        padding: 12px 30px;
        font-size: 18px;
        font-weight: bold;
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.3s ease;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        cursor: pointer;
    }

    .download-button:hover {
        background: #e63946;
    }

    .download-icon {
        width: 20px;
        height: 20px;
        margin-right: 8px;
        fill: #ffffff;
    }

    @keyframes fadeInEffect {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    @media (max-width: 768px) {
        .program-title {
            font-size: 24px;
        }
        .program-description {
            font-size: 14px;
        }
        .download-button {
            font-size: 16px;
            padding: 10px 25px;
        }
    }

    /*ISBF Program*/

    {
            font-family: 'Aleo', serif;
            color: #333;
            margin: 0;
            padding: 0;
            background-color: #f4f4f4; 
        }

        .isbf-program {
            max-width: 1400px;
            margin: 30px auto;
            padding: 20px;
            text-align: center;
            background: linear-gradient(to right, #00abaf, #e6ebf2); 
            border-radius: 10px;
            box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
        }

        .isbf-header h1 {
            font-size: 2.2em;
            color: #e63946;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .isbf-header p {
            font-size: 1em;
            color: #000;
            margin: 5px;
            font-family: 'Aleo', serif;
            line-height: 1.6;
        }

        .isbf-program-section {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
            padding: 0 20px;
                justify-content: center;
        }

        .isbf-program-card {
            background-color: #fff;
            width: 45%;
            border-radius: 15px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            padding: 30px 20px;
            box-sizing: border-box;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            cursor: pointer;
        }

        .isbf-program-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
        }

        .isbf-program-card h2 {
            font-size: 1.6em;
            color: #e63946;
            margin-bottom: 15px;
            font-weight: bold;
        }

        .isbf-program-card p {
            font-size: 0.9em;
            color: #666;
            margin: 10px 0;
            line-height: 1.5;
        }

        .isbf-program-list {
            list-style: none;
            padding: 0;
            margin: 20px 0 0;
            font-size: 17px;
            color: #333;
        }

        .isbf-program-list-item {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            display: flex;
            align-items: center;
            position: relative;
            padding-left: 30px;
        }

        .isbf-program-list-item:before {
            content: "";
            background-image: url('https://img.icons8.com/?size=100&id=RvAnr1suwU5j&format=png&color=000000');
            background-size: contain;
            background-repeat: no-repeat;
            width: 25px;
            height: 18px;
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .isbf-program-section {
                flex-direction: column;
                padding: 0;
            }

            .isbf-program-card {
                width: 100%;
            }

            .isbf-header h1 {
                font-size: 24px;
            }

            .isbf-header p {
                font-size: 0.9em;
            }

            .isbf-program-card h2 {
                font-size: 21px;
            }

            .isbf-program-card p, .isbf-program-list-item {
                font-size: 0.9em;
            }
        }

        /*Timeline*/

{
            background: #fff;
            margin: 0;
            font-family: 'Roboto', sans-serif;
        }
        .container {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 1000px;
            margin: 20px auto;
            text-align: center;
        }

        /* Top Heading & Paragraph Styling */
        .heading {
            margin-bottom: 20px;
            font-size: 2em;
            color: #333;
        }
        .heading .highlight {
            color: #14b6c1;
        }
        .intro {
            max-width: 700px;
            font-size: 1em;
            color: #666;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        /* Timeline Styling */
        .single-box {
            display: flex;
            justify-content: center;
            width: 100%;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }
        .single-box:nth-child(odd) {
            animation-delay: 0.3s;
        }
        .single-box:nth-child(even) {
            animation-delay: 0.6s;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .date-area {
            display: flex;
            background: linear-gradient(to right, #fff 45%, #000 45%, #000 55%, #fff 55%);
            text-align: center;
            color: #fff;
            font-size: 28px;
            flex-basis: 100px;
            order: 2;
        }
        .date-area > span {
            font-size: 20px;
            line-height: 70px;
            margin: auto;
            background: #14b6c1;
            width: 70px;
            height: 70px;
            border-radius: 50%;
        }
        .content {
            background: #fff;
            text-align: center;
            padding: 20px;
            border-radius: 25px;
            color: #858585;
            order: 3;
            width: 80%;
            margin-bottom: 10px;
            transition: transform 0.3s;
/*                border-radius: 8px;*/
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        .content:hover {
            transform: scale(1.05);
        }

        .content h2 {
            margin: 0;
            font-size: 15px;
            text-transform: uppercase;
            color: #333;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }
        .content h2 span.highlight {
            color: #14b6c1;
        }

        .content p {
            font-size: 14px;
            color: #666;
        }


        @media (min-width: 640px) {
            .content, .custom {
                width: 40%;
            }
            .box-right .content {
                order: 1;
                border-radius: 25px;
                padding-right: 10px;
            }
            .box-right .custom {
                order: 3;
            }
        }

        /*Life @ISBF*/
         {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
         {
            font-family: Aleo, serif;
            background-color: #ffffff;
            color: #333;
            padding: 20px;
        }
        .content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            text-align: center;
        }
   
        .section-title {
            font-size: 2em;
            color: #333;
            margin-bottom: 30px;
            position: relative;
            text-align: center;
        }
        .section-title .highlight-color {
            color: #00abaf;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 40px;
            height: 2px;
            background-color: #333;
            margin: 8px auto 0;
        }

        .card-grid {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .card-item {
            background-color: #ffffff;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            width: calc(33.333% - 20px);
            margin-bottom: 20px;
            text-align: center;
            overflow: hidden;
            padding-bottom: 20px;
            opacity: 0;
            transform: translateY(30px);
            animation: slideInUp 0.6s ease forwards;
        }
        .card-item:nth-child(1) {
            animation-delay: 0.2s;
        }
        .card-item:nth-child(2) {
            animation-delay: 0.4s;
        }
        .card-item:nth-child(3) {
            animation-delay: 0.6s;
        }
        .card-item img {
            width: 100%;
            height: auto;
            border-bottom: 2px solid #eaeaea;
        }

        .card-title {
            font-size: 1.2em;
            color: #D8232A;
            margin: 15px 0 5px;
            font-weight: bold;
            position: relative;
        }
        .underline-bar {
            width: 40px;
            height: 5px;
            background-color: teal;
            margin: 10px auto;
        }

        .card-item:nth-child(1) .underline-bar {
            background-color: teal;
        }
        .card-item:nth-child(2) .underline-bar {
            background-color: #D8232A;
        }
        .card-item:nth-child(3) .underline-bar {
            background-color: #2C2A72;
        }
        .card-text {
            font-size: 0.9em;
            color: #666;
            line-height: 1.6;
            padding: 0 15px;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        @media (max-width: 768px) {
            .card-item {
                width: calc(50% - 20px);
            }
            .section-title {
                font-size: 1.8em;
            }
        }
        @media (max-width: 480px) {
            .card-item {
                width: 100%;
            }
            .section-title {
                font-size: 1.5em;
            }
            .card-title {
                font-size: 1.1em;
            }
            .card-text {
                font-size: 0.85em;
            }
        }

        /*Scholarships*/
         * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

         {
            font-family: 'Aleo', serif;
            background-color: #f3f4f6;
            padding: 40px 20px;
            color: #333;
            line-height: 1.6;
        }

        .scholarship-container {
            max-width: 1100px;
            margin: 0 auto;
            padding: 20px;
            text-align: center;
        }

        .scholarship-section-title {
            font-size: 2.5em;
            color: #6e6e6e;
            font-weight: bold;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }

        .scholarship-section-description {
            font-size: 1.1em;
            color: #666;
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }

        .scholarship-grid {
            display: grid;
            gap: 25px;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .scholarship-card {
            background: linear-gradient(135deg, #00abaf, #6bb2b3);
            color: #fff;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .scholarship-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
        }

        .scholarship-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.05);
            mix-blend-mode: overlay;
            pointer-events: none;
        }

        .scholarship-card-title {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 10px;
            color: #ffffff;
        }

        .scholarship-card-description {
            font-size: 1em;
            color: #f0f8ff;
            margin-bottom: 15px;
        }

        .scholarship-eligibility-section {
            background: rgba(255, 255, 255, 0.1);
            padding: 10px;
            border-radius: 10px;
            color: #ffffff;
        }

        .scholarship-eligibility-title {
            font-weight: bold;
            color: #ffeb3b;
            margin-bottom: 5px;
        }

        .scholarship-eligibility-details {
            font-size: 0.95em;
            color: #ffebee;
        }

        .scholarship-card.duplicate {
            display: none;
        }

        @media (max-width: 768px) {
            .scholarship-section-title {
                font-size: 2em;
            }
            .scholarship-card-title {
                font-size: 1.2em;
            }
            .scholarship-card-description, .scholarship-eligibility-details {
                font-size: 0.9em;
            }
        }

        @media (max-width: 480px) {
            .scholarship-section-title {
                font-size: 1.8em;
            }
            .scholarship-card-title {
                font-size: 27px;
            }
            .scholarship-card-description, .scholarship-eligibility-details {
                font-size: 0.85em;
            }
        }

        /*Career Pros*/

         * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        {
            font-family: Aleo, serif;
            background-color: #ffffff;
            color: #333;
            line-height: 1.6;
            padding: 20px;
        }
        .career-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }
        .career-heading {
            font-size: 2.5em;
            font-weight: bold;
            text-align: center;
            margin-bottom: 20px;
        }
        .career-heading .highlight {
            color: #00abaf;
        }
        .career-description {
            font-size: 1.1em;
            color: #555;
            text-align: center;
            margin-bottom: 40px;
            max-width: 800px;
            margin: 0 auto;
        }
        

        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeIn 0.8s ease forwards;
        }
        .fade-in:nth-child(1) { animation-delay: 0.2s; }
        .fade-in:nth-child(2) { animation-delay: 0.4s; }
        .fade-in:nth-child(3) { animation-delay: 0.6s; }
        .fade-in:nth-child(4) { animation-delay: 0.8s; }
        @keyframes fadeIn {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }


        .career-card {
            display: flex;
            align-items: flex-start;
            background-color: #fff;
            border-radius: 8px;
            padding: 20px;
            margin: 15px 0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .career-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
        }
        

        .career-icon-circle {
            width: 50px;
            height: 50px;
            background-color: #00abaf;
            color: #fff;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5em;
            margin-right: 15px;
            flex-shrink: 0;
        }
        .career-icon-circle::before {
            content: "➔"; 
            font-weight: bold;
            font-size: 1.2em;
        }
        
        .career-content {
            text-align: left;
            flex: 1;
        }
        .career-title {
            font-size: 1.2em;
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }
        .career-description-small {
            font-size: 1em;
            color: #555;
        }


        ul.custom-list {
            list-style: none;
            padding-left: 0;
        }
        ul.custom-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 8px;
            color: #555;
            font-size: 1em;
        }
        ul.custom-list li::before {
            content: "✔"; 
            position: absolute;
            left: 0;
            top: 0;
            color: #00abaf;
            font-weight: bold;
            font-size: 1.2em;
        }
        
        .logo-grid {
            display: grid;
            gap: 20px;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            margin-top: 40px;
        }
        .logo-item {
            background: #ffffff;
            padding: 15px;
            border-radius: 8px;
            border: 1px solid #e0e0e0;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .logo-item:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        }
        .logo-item img {
            max-width: 100%;
            height: auto;
        }

        @media (max-width: 768px) {
            .career-card {
                flex-direction: column;
                align-items: flex-start;
                padding: 15px;
            }
            .career-icon-circle {
                margin: 0 0 10px 0;
            }
            .career-heading {
                font-size: 2em;
            }
            .career-title {
                font-size: 1.1em;
            }
            .career-description, .career-description-small {
                font-size: 0.95em;
            }
        }
        @media (max-width: 480px) {
            .career-heading {
                font-size: 1.8em;
            }
            .career-title {
                font-size: 1em;
            }
            .career-description, .career-description-small {
                font-size: 0.9em;
            }
        }

        /*Sucess Stories*/
            * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Aleo', serif;
    }

    {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: #F3F4F6;
      flex-direction: column;
    }

    .alumni-success-stories {
      max-width: 1200px;
      width: 100%;
      padding: 20px;
      text-align: center;
    }

    .heading {
      font-size: 2.5em;
      font-weight: bold;
      color: #333;
      margin-bottom: 10px;
    }

    .description {
      font-size: 1.1em;
      color: #555;
      margin-bottom: 40px;
      line-height: 1.5;
    }

    .highlight {
      color: #00abaf;
    }

    .slide-container {
      max-width: 1200px;
      width: 100%;
      padding: 0 20px;
    }

    .swiper-wrapper {
      display: flex;
    }

    .alumni-card {
      background: #fff;
      padding: 20px;
      border-radius: 15px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
      width: 300px;
      min-height: 520px;
      display: flex;
      flex-direction: column;
      align-items: center;
      transition: transform 0.3s ease;
      text-align: center;
      margin: 0 auto;
    }

    .alumni-card:hover {
      transform: scale(1.05);
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    }

    .alumni-image {
      width: 100%;
      height: 250px;
      border-radius: 10px;
      margin-bottom: 15px;
      object-fit: cover;
    }

    .name {
      font-size: 1.4em;
      font-weight: bold;
      color: #D9232E;
      margin-bottom: 5px;
    }

    .position {
      font-size: 1em;
      color: #555;
      margin-bottom: 20px;
    }

    .timeline {
      display: flex;
      flex-direction: column;
      gap: 10px;
      position: relative;
      padding-left: 20px;
      text-align: left;
    }

    .timeline-line {
      position: absolute;
      left: 10px;
      top: 5px;
      bottom: 5px;
      width: 2px;
      background-color: #e0e0e0;
    }

    .timeline-item {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .timeline-bullet {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background-color: #00abaf;
    }

    .timeline-bullet.final {
      background-color: #D9232E;
    }

    .timeline-content {
      font-size: 0.95em;
      color: #555;
    }

    .swiper-pagination-bullet {
      background-color: #0078D7;
      opacity: 1;
    }

    .swiper-pagination-bullet-active {
      background-color: #D9232E;
    }

    .swiper-button-next, .swiper-button-prev {
      color: #00abaf;
      transition: color 0.3s ease;
    }

    .swiper-button-next:hover, .swiper-button-prev:hover {
      color: #D9232E;
    }

    @media screen and (max-width: 768px) {
      .swiper-button-next, .swiper-button-prev {
        display: none;
      }
    }


    @media (max-width: 480px) {
          
     .heading {
      font-size: 25px;
     
    }

    .description {
      font-size: 15px;

    }
        }

        /*UG Application*/

            * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      font-family: 'Aleo', serif;
    }

{
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 100vh;
      background-color: #f0f4f8;
      color: #333;
      padding: 20px;
    }

    .application-process {
      max-width: 1200px;
      width: 100%;
      background-color: #ffffff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
      position: relative;
      overflow: hidden;
      margin: 0 auto;
          margin-top: 40px;
    }

    .application-process h1 {
      text-align: center;
      font-size: 2em;
      font-weight: 700;
      margin-bottom: 30px;
      position: relative;
      color: #333;
    }

    .application-process h1::after {
      content: '';
      position: absolute;
      width: 100px;
      height: 4px;
      background-color: #00abaf;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      border-radius: 2px;
    }

    .application-process h1 span {
      color: #00abaf;
    }

    .steps-container {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .step {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      background-color: #f9fbfd;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, opacity 0.3s ease;
      opacity: 0;
      transform: translateY(20px);
      animation: fadeInUp 0.6s ease forwards;
    }

    @keyframes fadeInUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .step:nth-child(1) {
      animation-delay: 0.2s;
    }
    .step:nth-child(2) {
      animation-delay: 0.4s;
    }
    .step:nth-child(3) {
      animation-delay: 0.6s;
    }

    .step-icon {
      min-width: 50px;
      height: 50px;
      background-color: #00abaf;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2em;
      color: #fff;
      font-weight: bold;
    }

    .step-content {
      flex: 1;
    }

    .step-content strong {
      display: block;
      font-size: 1.1em;
      margin-bottom: 8px;
      color: #d9232e;
    }

    .step-content p {
      font-size: 1em;
      color: #555;
      line-height: 1.6;
      margin-bottom: 5px;
    }

    .note {
      font-size: 0.9em;
      color: #777;
      padding: 10px;
      background: #f0f8fc;
      border-left: 3px solid #00abaf;
      margin-top: 10px;
      border-radius: 4px;
    }

    @media (max-width: 600px) {
      .application-process {
        padding: 20px;
      }

      .application-process h1 {
        font-size: 1.8em;
      }

      .steps-container {
        gap: 15px;
      }

      .step {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .step-icon {
        margin-bottom: 10px;
      }

      .step-content strong {
        font-size: 1em;
      }

      .step-content p {
        font-size: 0.95em;
      }

      .note {
        font-size: 0.85em;
      }
    }

    /*Footer*/

        footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            background-color: #f8f8f8;
            font-family: 'Roboto', sans-serif;
            border-top: 2px solid #ccc;
            margin-top: 50px;
            box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
        }

        .footer-item {
            flex: 1;
            text-align: center;
            padding: 10px;
            border-right: 1px solid #ddd; /* Subtle border */
        }

        .footer-item:last-child {
            border-right: none;
        }

        .footer-item a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
        }

        .footer-logo .footer-img {
            width: 120px;
            margin-left: 10px;
            vertical-align: middle;
        }

        /* Social icons with circular colorful borders */
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            margin: 0 10px;
            text-align: center;
            border-radius: 50%;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .social-icons a .footer-img {
            vertical-align: middle;
            width: 20px;
            height: 20px;
        }

        /* Colorful background for each icon */
        .facebook {
            background-color: #3b5998;
        }

        .twitter {
            background-color: #55acee;
        }

        .instagram {
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        }

        .linkedin {
            background-color: #0077B5;
        }

        .youtube {
            background-color: #FF0000;
        }

        /* Hover effects */
        .social-icons a:hover {
            transform: scale(1.1);
            box-shadow: 0 0 6px rgba(0,0,0,0.2);
        }

        /* Media Queries for responsiveness */
        @media (max-width: 768px) {
            footer {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 20px;
                box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
            }

            .footer-item {
                border-right: none;
                padding: 10px 0;
            }

            .social-icons a {
                width: 35px;
                height: 35px;
                line-height: 35px;
                margin: 0 5px;
            }

            .social-icons a .footer-img {
                width: 18px;
                height: 18px;
            }

            .footer-logo .footer-img {
                width: 100px;
            }
        }

        @media (max-width: 480px) {
            .social-icons a {
                width: 30px;
                height: 30px;
                line-height: 30px;
                margin: 0 5px;
            }

            .social-icons a .footer-img {
                width: 16px;
                height: 16px;
            }
