   body {
      font-family: 'Inter', sans-serif;
      background-color: #f8fafc;
      color: #2b2b2b;
      overflow-x: hidden;
    }

    /* Navbar */
    .navbar {
      background-color: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1030;
    }
    .navbar-brand {
      font-weight: 600;
      color: #5a2c91 !important;
    }
    .nav-link {
      color: #333 !important;
      font-weight: 500;
      margin-right: 10px;
    }
    .nav-link:hover {
      color: #7b3db9 !important;
    }
    .btn-provider {
      background-color: #7b3db9;
      color: #fff;
      border-radius: 6px;
      padding: 8px 18px;
      font-weight: 500;
    }
    .btn-provider:hover {
      background-color: #692ea4;
      color: #fff;
    }

    /* Hero Carousel */
    #heroCarousel {
      margin-top: 76px; /* offset for fixed navbar */
    }

    .carousel-item {
      height: 85vh;
      min-height: 450px;
      background-position: center;
      background-size: cover;
      position: relative;
    }

    .carousel-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      /*background: rgba(255,255,255,0.6);*/
      /*backdrop-filter: blur(3px);*/
    }

    .carousel-caption {
      z-index: 10;
      text-align: left;
      max-width: 600px;
      background: rgba(255, 255, 255, 0.4);
      border-radius: 16px;
      padding: 30px;
      backdrop-filter: blur(6px);
    }

    .carousel-caption h1 {
      font-size: 2.5rem;
      font-weight: 700;
      color: #2b2b2b;
    }
    .carousel-caption p {
      color: #555;
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }

    .search-bar {
      background: #fff;
      padding: 12px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }

    .search-bar select, 
    .search-bar input {
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 8px 10px;
      width: 100%;
    }

    .search-bar button {
      background-color: #7b3db9;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 8px 18px;
    }

    /* Service Icons */
    .service-icons {
      background-color: #fff;
      padding: 50px 0;
    }
    .icon-box {
      text-align: center;
      padding: 20px;
      transition: all 0.3s ease;
    }
    .icon-box i {
      font-size: 2rem;
      color: #7b3db9;
      margin-bottom: 10px;
    }
    .icon-box:hover {
      transform: translateY(-5px);
    }
    
/*=================== Button Style=====================*/
 .btn-apply-now {
    background-color: #7b3db9;
    color: #fff;
    font-weight: 500;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    box-shadow: 0 4px 10px rgba(123, 61, 185, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
  }

  .btn-apply-now:hover {
    background-color: #692ea4;
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 6px 14px rgba(123, 61, 185, 0.4);
  }

  .carousel-caption {
    z-index: 10;
    text-align: left;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: 30px;
    backdrop-filter: blur(6px);
  }

  .carousel-caption h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2b2b2b;
  }

  .carousel-caption p {
    color: #555;
    font-size: 1.1rem;
  }
  
/*=============== Work shop ==================  */
 
  .workshop-section {
    background-color: #fff;
  }

  .section-title {
    font-weight: 700;
    font-size: 2rem;
    color: #222;
    text-transform: uppercase;
  }

  .section-title span {
    color: #7b3db9;
  }

  .workshop-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    background: #fff;
    transition: all 0.3s ease;
  }

  .workshop-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.08);
  }

  .workshop-body {
    padding: 20px;
  }

  .workshop-body h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2b2b2b;
    margin-bottom: 10px;
  }

  .workshop-body p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 15px;
  }

  .read-more {
    font-weight: 500;
    color: #7b3db9;
    text-decoration: none;
  }

  .read-more i {
    transition: transform 0.3s ease;
  }

  .read-more:hover i {
    transform: translateX(4px);
  }

  .btn-enroll {
    background-color: #7b3db9;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .btn-enroll:hover {
    background-color: #692ea4;
    box-shadow: 0 4px 12px rgba(123, 61, 185, 0.3);
    color: #fff;
  }
  
  
/*============== Conference Heilights ====================*/
  .conference-highlights {
    background-color: #f1f3f7;
    position: relative;
    overflow: hidden;
  }

  .highlight-title {
    font-weight: 700;
    color: #222;
  }

  .btn-learn-more {
    background-color: #7b3db9;
    color: #fff;
    border-radius: 8px;
    padding: 10px 24px;
    transition: all 0.3s ease;
    font-weight: 500;
  }

  .btn-learn-more:hover {
    background-color: #692ea4;
    transform: translateY(-3px);
    color: #fff;
  }

  /* Floating Animated Circle */
  .floating-circle {
    position: absolute;
    top: -30px;
    right: -40px;
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    animation: floatCircle 6s ease-in-out infinite alternate;
  }

  @keyframes floatCircle {
    0% {
      transform: translateY(0) rotate(0deg);
    }
    50% {
      transform: translateY(10px) rotate(3deg);
    }
    100% {
      transform: translateY(-10px) rotate(-3deg);
    }
  }

  .highlight-content {
    background-color: #fff;
    border-radius: 16px;
  }

  .highlight-content p {
    line-height: 1.6;
    font-size: 1rem;
  }

  @media (max-width: 767px) {
    .floating-circle {
      width: 80px;
      height: 80px;
      right: -20px;
      top: -20px;
    }
  }
  
  
  /*================= Events Heilights =========================*/
  .event-highlights-section {
    background-color: #fff;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
  }

  .carousel-item {
    min-height: 90vh;
  }

  .content-block {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #fff;
  }

  .content-inner {
    max-width: 520px;
  }

  .image-block img {
    object-fit: cover;
    height: 100%;
  }

  h1 {
    color: #1e1e1e;
    line-height: 1.2;
  }

  .btn-gradient {
    background: linear-gradient(90deg, #f6a21d, #1db9a5);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
  }

  .btn-gradient:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }

  /* Progress Indicator */
  .progress-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
  }

  .progress-line {
    position: relative;
    width: 120px;
    height: 2px;
    background: #ddd;
    overflow: hidden;
  }

  .progress-line #progressBar {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #1db9a5;
    animation: progressAnim 6s linear infinite;
  }

  @keyframes progressAnim {
    from { width: 0; }
    to { width: 100%; }
  }

  /* Carousel Controls */
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    filter: invert(0.3);
  }

  @media (max-width: 767px) {
    .carousel-item {
      flex-direction: column;
    }
    .content-block {
      padding: 40px 20px;
      text-align: center;
    }
    h1 {
      font-size: 1.8rem;
    }
    .progress-line {
      width: 80px;
    }
  }