* {
      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: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, #134E5E, #71B280, #212529);
        min-height: 100vh;
        color: #fff;
        text-align: center;
        padding: 40px 0;
      }

      .mobile-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
      }

      .mobile-section h4 {
        font-size: 1rem;
        letter-spacing: 1px;
        color: #ffeecb;
        margin-bottom: 8px;
      }

      .mobile-section h1 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 30px;
        color: #fff;
      }

      .search-section {
        background: rgba(255, 255, 255, 0.1);
        padding: 25px 15px;
        border-radius: 12px;
        width: 90%;
        max-width: 400px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      }

      .search-section select,
      .search-section .search-btn {
        width: 100%;
        margin: 8px 0;
        padding: 10px 14px;
        font-size: 1rem;
        border: none;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      }

      .search-section select {
        background-color: #fff;
        color: #333;
      }

      .search-btn {
        display: inline-block;
        width: 100%;
        margin: 8px 0;
        padding: 10px 14px;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        border: none;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        background: #f89123;
        color: #000;
        transition: all 0.3s ease;
        cursor: pointer;
        text-decoration: none;
      }

      .search-btn:hover {
        background: #52a4dd;
        color: #fff;
      }
    }

    /* ✅ 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: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: linear-gradient(135deg, #134E5E, #71B280, #212529);
        min-height: 100vh;
        color: #fff;
        text-align: center;
        padding: 50px 0;
      }

      .mobile-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
      }

      .mobile-section h4 {
        font-size: 1.2rem;
        color: #ffeecb;
        margin-bottom: 10px;
      }

      .mobile-section h1 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 40px;
      }

      .search-section {
        background: rgba(255, 255, 255, 0.1);
        padding: 30px 20px;
        border-radius: 12px;
        width: 70%;
        max-width: 600px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      }

      .search-section select,
      .search-section .search-btn {
        width: 100%;
        margin: 10px 0;
        padding: 12px 16px;
        font-size: 1rem;
        border: none;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
      }

      .search-section select {
        background-color: #fff;
        color: #333;
      }

      .search-btn {
        display: inline-block;
        width: 100%;
        margin: 10px 0;
        padding: 12px 16px;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        border: none;
        border-radius: 8px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        background: #f89123;
        color: #000;
        transition: all 0.3s ease;
        cursor: pointer;
        text-decoration: none;
      }

      .search-btn:hover {
        background: #52a4dd;
        color: #fff;
      }
    }

    

    /* ✅ 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: linear-gradient(135deg, #134E5E, #71B280, #212529);
        /* background: url('OTPDMC_Image_WEBP/Loading 01 BG/GB Laptop.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;
      }
    }