* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    

    /* Hide desktop on mobile/tablet */
    .desktop-view {
      display: none;
    }

    /* ✅ MOBILE VIEW (max-width: 767px) */
    @media (max-width: 767px) {
      .mobile-view {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        display: block;
        background: url('OTPDMC_Image_WEBP/Bg-Image.webp') no-repeat center center/cover;
      }

      .mobile-section {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        color: white;
        /* padding: 20px; */
      }

      .mobile-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      select, .search-btn {
        background: #f89123;
        width: 90%;
        padding: 10px 16px;
        margin: 10px 0;
        font-size: 1rem;
        /* border-radius: 8px; */
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      }
       .search-btn:hover {
        background: #52a4dd;
        color: #fff;
      }

      .search-section select {
        border: 1px solid #ccc;
        background-color: #fff;
        appearance: none;
        outline: none;
        transition: border 0.3s ease;
      }
    }

    /* ✅ TABLET VIEW (768px to 991px) */
    @media (min-width: 768px) and (max-width: 991px) {
      .mobile-view {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        display: block;
        background: url('OTPDMC_Image_WEBP/Bg-Image.webp') no-repeat center center/cover;
      }

      .mobile-section {
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        color: white;
        /* padding: 20px; */
      }

      .mobile-section .container {
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      select, .search-btn {
        background: #f89123;
        width: 500px;
        padding: 10px 16px;
        margin: 10px 0;
        font-size: 1rem;
        /* border-radius: 8px; */
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      }
      .search-btn:hover {
        background: #52a4dd;
        color: #fff;
      }

      .search-section select {
        border: 1px solid #ccc;
        background-color: #fff;
        appearance: none;
        outline: none;
        transition: border 0.3s ease;
      }
    }

    /* ✅ DESKTOP VIEW (min-width: 992px) */
    @media (min-width: 992px) {
      .mobile-view {
        display: none !important;
      }

      .desktop-view {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        display: flex;
        flex-direction: column;
        height: 100vh;
        justify-content: center;
        align-items: center;
        text-align: center;
        background: url('OTPDMC_Image_WEBP/Bg-Image.webp') no-repeat center center/cover;
        color: white;
        /* padding: 20px; */
      }

      .desktop-view .heading {
        margin-bottom: 30px;
      }

      .desktop-view .search-wrap {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
      }

      .desktop-view select,
      .desktop-view .search-btn {
        width: 200px;
        padding: 10px 16px;
        font-size: 1rem;
        /* border-radius: 8px; */
        box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      }

      .search-btn {
        background: #f89123;
        border: none;
        color: #000;
        font-weight: bold;
        text-decoration: none;
        text-align: center;
      }

      .search-btn:hover {
        background: #52a4dd;
        color: #fff;
      }

      select {
        border: 1px solid #ccc;
        background-color: #fff;
      }
    }