    /* Hero — fit within first viewport, vertically center the content. */
    .banner-area .banner-slider-item-style2 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
        min-height: calc(100vh - 130px);
        display: flex;
        align-items: center;
    }
    @media (max-width: 991px) {
        .banner-area .banner-slider-item-style2 {
            min-height: 70vh;
            padding-top: 40px !important;
            padding-bottom: 40px !important;
        }
    }
    .bg-light {
        --bs-bg-opacity: 0.4;
        background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
    }
    .time-table tbody tr td {
            white-space: unset;
        padding: 10px;
        text-align: center;
    }
    .time-table tbody tr td.serial {
        font-size: 13px;
    }
    #overlayForPopup {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      z-index: 999;
      display: none;
    }
    
    /* Popup */
    #loadpopup {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 5px 25px rgba(0,0,0,0.3);
      z-index: 1000;
      width: 45%;
      max-width: 90%;
      background-image: url(assets/images/popup-bg-new.png);
      background-position:center;
      background-size: cover;
      display: none;
    }
    #loadpopup .popup-content h2 {
        font-size: 50px;
        text-align: center;
        font-weight: 900;
        letter-spacing: 0.2rem;
    }
    #loadpopup .popup-content {
      position: relative;
      text-align: center;
    }
    .image-box{
        position: relative;display: flex;
    }
    .image-collage {
      position: relative;
      width: 500px;
      height: 220px;
      margin: 50px auto;
    }
    
    .image-box {
      position: absolute;
      border: 10px solid white;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      transition: transform 0.4s ease, z-index 0.4s ease;
    }
    
    .image-box img {
      width: 250px;
      height: 160px;
      object-fit: cover;
      display: block;
    }
    
    /* Image positions */
    .img1 {
      left: 0;
      top: 40px;
      transform: rotate(-5deg);
      z-index: 1;
    }
    
    .img2 {
      left: 120px;
      top: 0;
      transform: rotate(0deg);
      z-index: 2;
    }
    
    .img3 {
      left: 240px;
      top: 40px;
      transform: rotate(5deg);
      z-index: 1;
    }
    
    /* Hover effect (optional) */
    .image-box:hover {
      transform: scale(1.05);
      z-index: 3;
    }

    #closePopup {
        position: absolute;
        margin-top: 15px;
        padding: 8px 15px;
        border: none;
        background: #000;
        color: #fff;
        border-radius: 5px;
        cursor: pointer;
        right: -13px;
        top: -30px;
    }
    
    #closePopup:hover {
      background: #333;
    }

