
  
        .btn-open-popup { 
          
            font-size: 18px; 
            background-color: #F1A410; 
            color: #fff; 
            border: none; 
           width: 48px;
           height: 48px;
            cursor: pointer;
            top: 59.5%; 
            transition: background-color 0.3s ease;
           
            position: fixed;
            z-index: 99;
        } 
        .popup-boxx .close {
            float: right;
        }
        .popup-boxx p {
            font-size: 20px;
            font-weight: 600;
            color: #1ECBE1;
        }
        @media only screen and (max-width:425px) {
          
            .sidebar-contact.active {
                left: 0%;
            }
            .form-input { 
                padding: 6px; 
                margin-bottom: 10px; 
                border: 1px solid #ccc; 
                border-radius: 8px; 
                font-size: 12px; 
                width: 100%; 
                box-sizing: border-box; 
            } 
            .form-label { 
                margin-bottom: 10px; 
                font-size: 12px; 
                color: #444; 
                text-align: left; 
            } 
            .btn-submit, 
            .btn-close-popup { 
                padding: 6px 16px; 
                border: none; 
                border-radius: 8px; 
                cursor: pointer; 
                transition: background-color 0.3s ease, color 0.3s ease; 
            } 
      .broken img {
        width: 150px;
      }
          }
       

        
          
          @media (max-width:425px)
          {
              .flexx 
              {
                  flex-direction: column;
              }
           
          }
        .btn-open-popup1 { 
          
            font-size: 18px; 
            background-color: #F1A410; 
            color: #fff; 
            border: none; 
           border-radius: 30px;
           height: 48px;
            cursor: pointer;
           
            transition: background-color 0.3s ease;
           
           
            z-index: 99;
        } 
  
        .btn-open-popup:hover { 
            background-color: #4caf50; 
        } 
  
        .overlay-container { 
            display: none; 
            position: fixed; 
            top: 0; 
            left: 0; 
            width: 100%; 
            height: 100%; 
            background: rgba(0, 0, 0, 0.6); 
            justify-content: center; 
            align-items: center; 
            opacity: 0; 
            transition: opacity 0.3s ease; 
        } 
  
        .popup-box { 
            background: #fff; 
            padding: 24px; 
            border-radius: 12px; 
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); 
            width:60%;
            text-align: center; 
            opacity: 0; 
            transform: scale(0.8); 
            animation: fadeInUp 0.5s ease-out forwards; 
        } 
        .image img 
        {
            width: 100%;
        }

        .popup-boxx { 
            background: #fff; 
            padding: 24px; 
            border-radius: 12px; 
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.4); 
            text-align: center; 
            opacity: 0; 
            transform: scale(0.8); 
            animation: fadeInUp 0.5s ease-out forwards; 
        } 
        @media only screen and (min-width:426px) {
            .popup-boxx {
                max-width: 80%;
                max-height: 75%;
              
            }
            .broken {
                padding: 15px;
            }
            .overlay-container {
                z-index: 99;
            }
                .oops {
                    padding: 300px;
                }
          }

          @media only screen and (max-width:425px) {
            .popup-boxx {
                max-width: 80%;
                max-height: 80%;
            }
            .form-input { 
                padding: 5px; 
                margin-bottom:10px; 
                border: 1px solid #ccc; 
                border-radius: 8px; 
                font-size: 12px; 
                width: 100%; 
                height: 20px;
                box-sizing: border-box; 
            } 
          }
        .form-container { 
            display: flex; 
            flex-direction: column; 
        } 
  
        @media only screen and (min-width:426px) {
            .form-label { 
                margin-bottom: 10px; 
                font-size: 16px; 
                color: #444; 
                text-align: left; 
            } 
      
            .form-input { 
                padding: 5px; 
                margin-bottom:10px; 
                border: 1px solid #ccc; 
                border-radius: 8px; 
                font-size: 16px; 
                width: 100%; 
                box-sizing: border-box; 
            } 
            .btn-submit, 
            .btn-close-popup { 
                padding: 12px 24px; 
                border: none; 
                border-radius: 8px; 
                cursor: pointer; 
                transition: background-color 0.3s ease, color 0.3s ease; 
            } 
      
        }
        
        .btn-submit { 
            background-color: #F1A410; 
            color: #fff; 
        } 
  
        .btn-close-popup { 
            margin-top: 12px; 
            background-color: #F1A410; 
            color: #fff; 
        } 
  
        .btn-submit:hover, 
        .btn-close-popup:hover { 
            background-color: #4caf50; 
        } 
  
        /* Keyframes for fadeInUp animation */ 
        @keyframes fadeInUp { 
            from { 
                opacity: 0; 
                transform: translateY(20px); 
            } 
  
            to { 
                opacity: 1; 
                transform: translateY(0); 
            } 
        } 
  
        /* Animation for popup */ 
        .overlay-container.show { 
            display: flex; 
            opacity: 1; 
            z-index: 99;
        } 