 
      .service-content {
        margin-bottom: 2rem;
        transition: all 0.3s ease;
      }

      .service-content.collapsed {
        max-height: 150px;
        overflow: hidden;
        position: relative;
      }

      .service-content.collapsed::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        background: linear-gradient(
          to bottom,
          transparent,
          rgba(20, 20, 20, 0.95)
        );
      }

      .read-more-service {
        display: block;
        text-align: center;
        margin-top: 1rem;
        color: #8a0303;
        cursor: pointer;
        font-weight: bold;
        transition: all 0.3s ease;
      }

      .read-more-service:hover {
        color: #ff0000;
        text-shadow: 0 0 8px rgba(255, 0, 0, 0.6);
      }

      .service-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
        display: block;
        text-align: center;
      }

      .service-title {
        text-align: center;
        margin-bottom: 1.5rem;
        color: #e0d6c2;
        font-size: 1.5rem;
        position: relative;
        padding-bottom: 10px;
      }

      .service-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 60px;
        height: 2px;
        background: linear-gradient(
          to right,
          transparent,
          #8a0303,
          transparent
        );
      }
      .contact-container {
        max-width: 800px;
        margin: 2rem auto;
        padding: 30px 20px;
        background: linear-gradient(
          135deg,
          rgba(20, 20, 20, 0.95) 0%,
          rgba(40, 40, 40, 0.95) 100%
        );
        border: 2px solid #8a0303;
        border-radius: 15px;
        box-shadow:
          0 0 30px rgba(138, 3, 3, 0.4),
          inset 0 0 20px rgba(0, 0, 0, 0.6);
        position: relative;
      }

      .royal-crown {
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
        height: 20px;
        background: linear-gradient(135deg, #c8b090 0%, #e0d6c2 100%);
        clip-path: polygon(
          0% 100%,
          20% 0%,
          30% 50%,
          50% 0%,
          70% 50%,
          80% 0%,
          100% 100%
        );
        z-index: 4;
      }

      .table-decoration {
        position: absolute;
        width: 30px;
        height: 30px;
        border: 2px solid #8a0303;
        border-radius: 50%;
        opacity: 0.6;
      }

      .decoration-top-left {
        top: -15px;
        left: -15px;
      }

      .decoration-top-right {
        top: -15px;
        right: -15px;
      }

      .decoration-bottom-left {
        bottom: -15px;
        left: -15px;
      }

      .decoration-bottom-right {
        bottom: -15px;
        right: -15px;
      }

      .contact-title {
        text-align: center;
        margin-bottom: 2rem;
        color: #e0d6c2;
        font-size: 2rem;
        text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
        position: relative;
        padding-bottom: 15px;
      }

      .contact-title::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 2px;
        background: linear-gradient(
          to right,
          transparent,
          #8a0303,
          transparent
        );
      }

      .contact-form {
        width: 100%;
      }

      .form-group {
        margin-bottom: 1.5rem;
        position: relative;
      }

      .form-label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 600;
        color: #c8b090;
      }

      .form-input,
      .form-select,
      .form-textarea {
        width: 100%;
        padding: 12px 15px;
        background: rgba(30, 30, 30, 0.8);
        border: 1px solid #8a0303;
        border-radius: 8px;
        color: #e0d6c2;
        font-family: "El Messiri", "Arial", sans-serif;
        font-size: 1rem;
        transition: all 0.3s ease;
      }

      .form-input:focus,
      .form-select:focus,
      .form-textarea:focus {
        outline: none;
        border-color: #ff0000;
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
      }

      .form-textarea {
        min-height: 150px;
        resize: vertical;
      }

      .form-error {
        color: #ff4d4d;
        font-size: 0.9rem;
        margin-top: 5px;
        display: none;
      }

      .submit-button {
        position: relative;
        display: inline-block;
        padding: 15px 30px;
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        border: 2px solid #8a0303;
        border-radius: 10px;
        color: #e0d6c2;
        text-decoration: none;
        font-family: "El Messiri", "Arial", sans-serif;
        font-size: 1.2rem;
        font-weight: 600;
        text-align: center;
        overflow: hidden;
        transition: all 0.3s ease;
        min-width: 180px;
        cursor: pointer;
        margin-top: 1rem;
        width: 100%;
      }

      .submit-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 0 25px rgba(138, 3, 3, 0.7);
        color: #ffffff;
      }

      .button-content {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        position: relative;
        z-index: 2;
      }

      .button-glow {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          45deg,
          transparent 0%,
          rgba(138, 3, 3, 0.3) 50%,
          transparent 100%
        );
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: 1;
      }

      .submit-button:hover .button-glow {
        opacity: 1;
      }

      .success-message {
        text-align: center;
        padding: 15px;
        background: rgba(0, 100, 0, 0.2);
        border: 1px solid #008000;
        border-radius: 8px;
        margin-top: 20px;
        display: none;
      }
 
      .form-flex {
        display: flex;
        gap: 15px;
      }

      .form-flex .form-group {
        flex: 1;
      }

      .verify-button {
        padding: 12px 20px;
        background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
        border: 2px solid #8a0303;
        border-radius: 8px;
        color: #e0d6c2;
        font-family: "El Messiri", "Arial", sans-serif;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
        margin-top: 1.8rem;
        min-width: 120px;
      }

      .verify-button:hover {
        background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
        box-shadow: 0 0 10px rgba(138, 3, 3, 0.5);
      }

      .verify-button:disabled {
        opacity: 0.6;
        cursor: not-allowed;
      }

      .otp-container {
        display: none;
        background: rgba(30, 30, 30, 0.8);
        border: 1px solid #8a0303;
        border-radius: 8px;
        padding: 15px;
        margin-bottom: 1.5rem;
      }

      .otp-inputs {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-bottom: 15px;
      }

      .otp-input {
        width: 40px;
        height: 40px;
        text-align: center;
        font-size: 1.2rem;
        background: rgba(20, 20, 20, 0.8);
        border: 1px solid #8a0303;
        border-radius: 5px;
        color: #e0d6c2;
      }

      .otp-input:focus {
        outline: none;
        border-color: #ff0000;
        box-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
      }

      .timer-container {
        text-align: center;
        margin-top: 10px;
        color: #c8b090;
      }

      .resend-link {
        color: #8a0303;
        cursor: pointer;
        text-decoration: underline;
        margin-left: 5px;
      }

      .resend-link:hover {
        color: #ff0000;
      } 
 
 
.form-input:focus, .form-select:focus, .form-textarea:focus {
  transform: translateY(-2px);
  transition: all 0.3s ease;
}
 
.verify-button, .paste-button, .submit-button {
  transition: all 0.3s ease;
  transform: scale(1);
}

.verify-button:hover, .paste-button:hover {
  transform: scale(1.05);
}

.verify-button:active, .paste-button:active {
  transform: scale(0.95);
}
 
.button-loading {
  position: relative;
  overflow: hidden;
}

.button-loading::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { left: -100%; }
  100% { left: 100%; }
}
   
.single-otp-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    padding: 12px;
    background: rgba(30, 30, 30, 0.7);
    border: 1px solid #8a0303;
    border-radius: 8px;
}

.single-otp-input {
    flex: 1;
    padding: 10px 12px;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid #8a0303;
    border-radius: 6px;
    color: #e0d6c2;
    font-family: "El Messiri", "Arial", sans-serif;
    font-size: 1rem;
    text-align: center;
}

.single-otp-input:focus {
    outline: none;
    border-color: #ff0000;
    box-shadow: 0 0 8px rgba(255, 0, 0, 0.4);
}

.paste-button {
    padding: 8px 12px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid #8a0303;
    border-radius: 6px;
    color: #e0d6c2;
    font-family: "El Messiri", "Arial", sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.paste-button:hover:not(:disabled) {
    background: linear-gradient(135deg, #2a2a2a 0%, #3a3a3a 100%);
    box-shadow: 0 0 8px rgba(138, 3, 3, 0.4);
}

.paste-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.paste-button i {
    margin-right: 5px;
}
 

      @media (max-width: 768px) {
        .contact-container {
          margin: 1.5rem auto;
          padding: 20px 15px;
        }

        .contact-title {
          font-size: 1.5rem;
        }

        .submit-button {
          padding: 12px 25px;
          font-size: 1.1rem;
        }

        .form-flex {
          flex-direction: column;
          gap: 0;
        }

        .verify-button {
          margin-top: 0;
        }
      }

      @media (max-width: 768px) {
        .contact-container {
          margin: 1.5rem auto;
          padding: 20px 15px;
        }

        .contact-title {
          font-size: 1.5rem;
        }

        .submit-button {
          padding: 12px 25px;
          font-size: 1.1rem;
        }
      } 