body {
      background-color: #ffffff;
      color: #2c3e50;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    
    h1, h2, h3, h4, h5, h6 {
        font-family: inherit !important;
    }

    .section-title {
      text-align: center;
      margin: 60px 0 10px;
      font-size: 2.2rem;
      font-weight: 700;
      color: #2e4a3d;
    }

    .section-subtitle {
      text-align: center;
      color: #6c757d;
      font-size: 1rem;
      margin-bottom: 40px;
    }

    .intervention-card {
      border: none;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      transition: 0.3s;
      background-color: #ffffff;
    }

    .intervention-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    }

    .intervention-card img {
      height: 220px;
      object-fit: cover;
    }

    /* Slider image sizing */
    .carousel-item img {
    width: 100%;
    height: 280px;
    object-fit: contain;
    background-color: #f8f9fa; /* optional: light bg to fill gaps */
}


    /* Slider Card Styling */
    .carousel-item .card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      background-color: #ffffff;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

    .carousel-item .card-body {
      padding: 1.5rem;
    }

    /* Slider Controls */
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      width: 30px;
      height: 30px;
      background-size: 100% 100%;
      background-color: #333 !important;
      border-radius: 50%;
    }

    .carousel-control-prev,
    .carousel-control-next {
      width: 5%;
    }

    @media (max-width: 768px) {
      .carousel-item .row {
        flex-direction: column;
      }

      .carousel-item img {
        margin-bottom: 1rem;
      }
    }
  /* Modern style with visible text */
.box {
    min-height: 300px;
  background: #1c2b3d; /* Dark background to contrast with white body */
  color: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


/* Adding the moving border lines */
.box:before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2), transparent 70%);
  animation: lightSweep 8s linear infinite;
  z-index: 0;
}

@keyframes lightSweep {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Border animation for the lines */
.box span {
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background: #50dfdb; /* Visible bright cyan border line */
  animation: animate 4s linear infinite;
}

.box span:nth-child(1) { top: 0; left: 0; animation-delay: 0s; }
.box span:nth-child(2) { bottom: 0; left: 0; animation-delay: 1s; }
.box span:nth-child(3) { top: 0; left: 0; height: 100%; width: 2px; animation-delay: 2s; }
.box span:nth-child(4) { top: 0; right: 0; height: 100%; width: 2px; animation-delay: 3s; }

/* Animation keyframes for the border lines */
@keyframes animate {
  0% { transform: scaleX(0); transform-origin: left; }
  50% { transform: scaleX(1); transform-origin: left; }
  50.1% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* Content styles */
.box .content {
  position: relative;
  z-index: 1;
}

.box h4 {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.box p {
  font-size: 1rem;
  color: #eaffea;
  line-height: 1.6;
}

.box img {
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

/* Carousel control styles */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  padding: 15px;
}

.carousel-control-prev-icon:hover,
.carousel-control-next-icon:hover {
  background-color: #ffffff;
}





.bubble-bg {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #d0e9f7 0%, #ffffff 100%);

    border-radius: 1rem;
    padding: 3rem 2rem;
  }

  .bubble-bg svg {
    position: absolute;
    z-index: 0;
  }

  .bubble1 {
    top: -30px;
    left: -40px;
    width: 200px;
    opacity: 0.2;
    animation: float 10s ease-in-out infinite;
  }

  .bubble2 {
    bottom: -40px;
    right: -30px;
    width: 250px;
    opacity: 0.15;
    animation: floatReverse 12s ease-in-out infinite;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
  }

  @keyframes floatReverse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(20px); }
  }

  .bubble-content {
    position: relative;
    z-index: 1;
  }
  
  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .intv-section {
      max-width: 1200px;
      margin: auto;
      padding: 40px 20px;
    }

    .intv-wrapper {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 30px;
      margin-bottom: 40px;
      flex-wrap: wrap;
      background: #ffffff;
      padding: 25px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 180, 255, 0.2);
      opacity: 0;
      transform: translateY(60px);
      animation: fadeSlideUp 1s forwards;
    }

    .intv-wrapper:nth-child(1) { animation-delay: 0.2s; }
    .intv-wrapper:nth-child(2) { animation-delay: 0.4s; }
    .intv-wrapper:nth-child(3) { animation-delay: 0.6s; }
    .intv-wrapper:nth-child(4) { animation-delay: 0.8s; }

    @keyframes fadeSlideUp {
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .intv-wrapper.reverse {
      flex-direction: row-reverse;
    }

    .intv-wrapper img {
      width: 100%;
      max-width: 500px;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0, 180, 255, 0.1);
      transition: transform 0.4s ease;
    }

    .intv-wrapper img:hover {
      transform: scale(1.05);
    }

    .intv-content {
      flex: 1;
      min-width: 280px;
      position: relative;
    }

    .intv-title {
      font-size: 30px;
      margin-bottom: 20px;
      color: #1b6ca8;
      position: relative;
    }

    .intv-text {
      font-size: 16px;
      color: #444;
      position: relative;
      padding-left: 15px;
      line-height: 1.7;
      margin-bottom: 10px;
      overflow: hidden;
    }

    .intv-text::before {
      content: "";
      position: absolute;
      height: 100%;
      width: 3px;
      background-color: #1b6ca8;
      left: 0;
      top: 0;
    }

    .intv-text::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, #1b6ca8, #00bfff);
      transform: translateX(-100%);
      animation: underlineWave 3s infinite;
    }

    @keyframes underlineWave {
      0% { transform: translateX(-100%); }
      50% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }

    .intv-wrapper:hover {
      transform: scale(1.015);
      box-shadow: 0 16px 40px rgba(0, 140, 255, 0.3);
    }

    @media (max-width: 768px) {
      .intv-wrapper, .intv-wrapper.reverse {
        flex-direction: column;
      }

      .intv-title {
        font-size: 24px;
      }
    }
  