@import url('https://fonts.googleapis.com/css2?family=El+Messiri:wght@400..700&display=swap');
:root {
  --primaryColor: #0275d8;
  --helperColor: #0275d8;
  --lightHelper: #f0ad4e;
  --hrColor: #e8eef3;
  --middleColor: #3d3d3d;
  --transparentColor: rgba(0, 0, 0, 0.699);
  --shadow: rgba(189, 188, 188, 0.514);
  /* --------------------------------- */
  --whatsappColor: #25D366;
  --white: #ffff;
  --blue: #0275d8;
  --green: #25D366;
  --gray: #f8f8f8;
  --container-width: 1340px;
  --header-height: 200px;
  --radius0: 5px;
  --radius1: 25px;
  

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "El Messiri", sans-serif;
}

a {
  text-decoration: none;
  transition: all 0.5s;
  color: inherit;  
}

ul {
  list-style: none;
}


img {
  border-style: none;
  max-width: 100%;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}


.container {
      margin: 0 auto;
      position: relative;
      max-width: 1400px;
}

@media (max-width: 1250px) {
  .container {
      padding: 0 50px;
  }
}    
@media (max-width: 768px) {
  .container {
      padding: 0 25px;
  }
  
}

body::-webkit-scrollbar {
  width: 8px
}
body::-webkit-scrollbar-track {
  background-color: var(--primaryColor)
}

body::-webkit-scrollbar-thumb {
  background-color: var(--lightHelper);
  background-image: linear-gradient(0deg,var(--lightHelper) 0%,var(--helperColor) 100%);
  border-radius: 5px
}

/* ===== Popup Style ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 99999;
}

.popup-box {
  background: #fff;
  width: 85%;
  max-width: 350px;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.popup-box h3 {
  margin-bottom: 10px;
  color: var(--primaryColor);
  font-size: 20px;
}

.popup-box p {
  margin-bottom: 15px;
  font-size: 16px;
}

.popup-btn {
  background: #6c63ff;
  color: white;
  padding: 10px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.popup-btn:hover {
  background: #584bd4;
}

@keyframes fadeIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.loader {
  margin: 10px auto;
  border: 4px solid #ddd;
  border-top: 4px solid #6c63ff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.upload-label {
  width: 100%;
  border: 2px dashed #6c63ff;
  padding: 15px;
  text-align: center;
  cursor: pointer;
  border-radius: 12px;
  display: block;
  background: #f7f7ff;
  transition: 0.3s;
}

.upload-label:hover {
  background: #ecebff;
}