@keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

    .whatsapp-link {
    position: fixed;
    bottom: 50px;
    left: 50px;
    background-color: #25D366;
    color: #fff;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 99;
    -webkit-animation: spin 4s linear infinite;
    -moz-animation: spin 4s linear infinite;
    animation: spin 4s linear infinite;
}
.form-group {
    margin-top: 20px;
}

/* Style the input fields */
.form-control {
    border: 1px solid #ccc;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: #28a745;
    box-shadow: 0px 0px 5px rgba(40, 167, 69, 0.3);
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-top: 10px;
}

.section-divider {
    height: 3px !important;
    background-color: #0d5f30;
    border: none;
    width: 25%;
    margin-top: -5px;
    margin-bottom: 0px !important;
    opacity: 1 !important;
}
.language-select{
    padding: 0;
    color: white;
    border: none;
    cursor: pointer;
    margin-left: 15px;
    background: transparent;
}

.language-select option{
    background-color: #0d5f30;
    color: white;
  
}

.footer-widget li {
    display: flex; 
    align-items: center; 
    gap: 10px; 
}

.main-menu .has-sub a:hover {
    color: #ffc236;
}

/* Preloader Container */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d5f30;
         z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    display: grid;
    grid-template: 1fr 1fr/1fr 1fr;
    gap: 40%;
    width: 80px;
    aspect-ratio: 1/1;
    animation: rotate 2s linear infinite;
  }
  .loader .dot {
    width: 50px;
    aspect-ratio: 1/1;
    background-image: url('../img/coffee_bean_transparent-removebg-preview.png'); /* رابط الصورة */
    background-size: cover; /* تجعل الصورة تغطي العنصر بالكامل */
    background-position: center;
    animation: scale 2s infinite alternate;
  }
  .loader .dot:nth-child(3) {
    order: 1;
  }
  .loader .dot:nth-child(1) {
    animation-delay: -0.5s;
  }
  .loader .dot:nth-child(2) {
    animation-delay: -1s;
  }
  .loader .dot:nth-child(3) {
    animation-delay: -1.5s;
  }
  .loader .dot:nth-child(4) {
    animation-delay: -2s;
  }
  @keyframes scale {
    0% {
      scale: 0.1;
    }
    100% {
      scale: 1;
    }
  }
  @keyframes rotate {
    0% {
      rotate: 0deg;
    }
    100% {
      rotate: 360deg;
    }
  }
  