/* 
.pop-register{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;

}


.popup-content {
  background: #222;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  width: 55%;
  height: 75%;
  position: relative;
  animation: fadeIn 0.3s ease;
}




.popup-content {
  background: #222;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  width: 55%;
  height: 75%;
  position: relative;
  animation: fadeIn 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}




.pop-above{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px ;
  gap: 30px;
}



.billing-container {
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            max-width: 450px;
            width: 100%;
            overflow: hidden;
        }






.billing-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 10px;
            text-align: center;
        }

        .billing-header h1 {
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 2px;
        }

        .billing-header p {
            font-size: 14px;
            opacity: 0.9;
        }

        .billing-body {
            padding: 30px;
        }

        .billing-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 0;
            border-bottom: 1px solid #e5e7eb;
        }

        .billing-item:last-child {
            border-bottom: none;
        }

        .item-label {
            font-size: 15px;
            color: #4b5563;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .item-icon {
            width: 20px;
            height: 20px;
            display: inline-block;
        }

        .item-amount {
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
        }

        .billing-divider {
            height: 2px;
            background: linear-gradient(90deg, transparent, #667eea, transparent);
            margin: 20px 0;
        }

        .billing-total {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            background: #f9fafb;
            border-radius: 12px;
            padding: 20px;
            margin-top: 10px;
        }

        .total-label {
            font-size: 18px;
            font-weight: 700;
            color: #1f2937;
        }

        .total-amount {
            font-size: 24px;
            font-weight: 700;
            color: #667eea;
        }

        .billing-footer {
            padding: 0 30px 30px;
        }

        .pay-button {
            width: 100%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border: none;
            padding: 16px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
        }

        .pay-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
        }

        .pay-button:active {
            transform: translateY(0);
        }

        @media (max-width: 480px) {
            .billing-header h1 {
                font-size: 24px;
            }
            
            .billing-body {
                padding: 20px;
            }
            
            .billing-footer {
                padding: 0 20px 20px;
            }
        }












@keyframes fadeIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}


@media(max-width: 900px){
  


}



@media(max-width: 786px){


  .popup-content {
  width: 80%;
  height: 70%;
  background: #222;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

  .pop-above{
    flex-direction: column;
    width: 80%;
    height: 90%;
    gap: 20px;
    padding: 0px ;
    overflow: hidden; 
   
   }

  
.pop-img-style{
  width: 100%;
  height: 70%;
  padding: 10px;
}

 .pop-img-style img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position:center
 }

 .pop-description{
  width: 100%;
  height: 30%;
  padding: 10px;
  gap: 10px;  
 }

 .pop-description h1{
  color: white;
  font-size: 1.2rem;
 }

 .pop-description p{
  color: rgba(255, 255, 255, 0.658);
  font-size: 0.7rem;
  line-height: 1.2;
 }

 .pop-desc-p2{
  display: none;
 }

 
} 
 */

/* Popup Styles */
.pop-register {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
}

.popup-content {
  /* background: #222; */
  background-color: rgb(243, 243, 243);
  /* padding: 60px 0 30px 0; */
  padding: 50px 0;
  border-radius: 15px;
  width: 45%;
  height: 75%;
  position: relative;
  animation: fadeIn 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.close-btn {
  position: absolute;
  top: 0px;
  right: 10px;
  font-size: 34px;
  cursor: pointer;
  color: black;
  z-index: 10000;
}

.pop-above {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Billing Card Styles */
.billing-container {
  background: white;
  border-radius: 16px;
  border: 1px solid black;
  /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3); */
  /* max-width: 350px; */
  width: 80%;
  height: 95%;
  overflow: hidden;
}

.billing-header {
  /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
  color: black;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid black;
}

.billing-header h1 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 3px;
}

.billing-header p {
  font-size: 13px;
  opacity: 0.9;
}

.billing-body {
  padding: 20px;
}

.billing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
}

.billing-item:last-child {
  border-bottom: none;
}

.item-label {
  font-size: 14px;
  color: #4b5563;
  display: flex;
  align-items: center;
  gap: 6px;
}

.item-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.item-amount {
  font-size: 15px;
  font-weight: 600;
  color: #1f2937;
}

.billing-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #667eea, transparent);
  margin: 15px 0;
}

.billing-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  background: #f9fafb;
  border-radius: 12px;
  margin-top: 8px;
}

.total-label {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
}

.total-amount {
  font-size: 20px;
  font-weight: 700;
  color: #667eea;
}

.billing-footer {
  padding: 0 20px 20px;
}

.pay-button {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pay-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(102, 126, 234, 0.4);
}

.pay-button:active {
  transform: translateY(0);
}

@keyframes fadeIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 786px) {
  .popup-content {
    width: 80%;
    height: fit-content;
    background: white;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pop-above {
    flex-direction: column;
    width: 100%;
    height: 100%;
    gap: 20px;
    padding: 10px 20px;
    overflow-y: auto;
  }

  .billing-container {
    width: 100%;
    height: fit-content;
  }

  .billing-header h1 {
    font-size: 20px;
  }

  .billing-body {
    padding: 15px;
  }

  .billing-footer {
    padding: 0 15px 15px;
  }

  .billing-item {
    padding: 10px 0;
  }

  .item-label {
    font-size: 13px;
  }

  .item-amount {
    font-size: 14px;
  }

  .total-label {
    font-size: 15px;
  }

  .total-amount {
    font-size: 18px;
  }
}
