/*  video section css */
 .press-section {
      background: #f2a41d; /* Orange gradient */
      border-radius: 20px;
      padding: 40px 20px;
      color: #fff;
      position: relative;
      margin: 40px auto;
    }
    .video-box video {
      width: 100%;
      border-radius: 12px;
    }
    /* Custom center bottom arrows */
    .carousel-controls {
     position: absolute;
    bottom: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: 40px;
    padding: 6px 18px;
    display: flex;
    gap: 15px;
    }
    .carousel-controls button {
      border: none;
      background: transparent;
      font-size: 20px;
      color: #444;
      cursor: pointer;
    }
    .carousel-controls button:hover {
      color: #ff7b00;
    }
    .btn-primary {
      background-color: #fff !important;
      color: #ff7b00 !important;
      border: none;
    }
    .btn-primary:hover {
      background-color: #ff7b00 !important;
      color: #fff !important;
    }

    /* */
 .bg-darkblue {
    background: #0f3054;
  }
  .bg-orange {
    background: #ff5e14;
  }
  .case-card {
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 18px;
  }
  .case-content {
    max-width: 55%;
    z-index: 2;
  }
  .case-image {
    position: absolute;
    bottom: 0;
    right: 10px;
    z-index: 1;
  }
  .case-image img {
    max-height: 220px;
    object-fit: contain;
  }
  .case-card:hover {
    transform: translateY(-5px);
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  }