:root {
    
--primary-color: #25376D;
--Text-Dark: #161616;
--Text-Medium: #5C5C5C;

}
body{
    font-family: "IBM Plex Sans Arabic" !important;
}
h1{
       color: var(--Text-Dark);
text-align: center;
font-size: 40px;
font-weight: 700;
line-height: normal;
}


p{
    color: var(--Text-Medium);
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 0;
}
h1,h2,h3,h4,h5,h6{
    
    margin: 0;
}

.primary-color{
    color: var(--primary-color);
}
.Text-Dark{
    color: var(--Text-Dark);
}
.Text-Medium{
    color: var(--Text-Medium);
}

/* Jazan Button Styles */
.jazan-button{
    padding: 16px 24px;
    border-radius: 12px;
    outline: none;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}
.jazan-button:hover{
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.jazan-button span{
    font-size: 14px;
    font-weight: 700;
}

.jazan-button:disabled,
.jazan-button[disabled] {
    background-color: var(--Border-Dark, #E0E2E5) !important;
    color: var(--Text-Light, #9B9FA4) !important;
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
}

.jazan-button:disabled:hover,
.jazan-button[disabled]:hover {
    transform: none;
    box-shadow: none;
}

/* Jazan Input Styles */
.jazan-input {
    display: flex;
    padding: 12px 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid var(--Border-Dark, #E0E2E5);
    background: var(--White, #FFF);
    color: var(--Text-Light, #161616);
    text-align: right;

    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; 
    transition: all 0.3s ease;
    width: 100%;
}

.jazan-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 55, 109, 0.1);
}

.jazan-input::placeholder {
    color: var(--Text-Light, #9B9FA4);
    text-align: right;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

/* Disabled input styling */
.jazan-input:disabled,
.jazan-input[disabled] {
    background: var(--Background-Light, #F5F6F7);
    color: var(--Text-Light, #9B9FA4);
    border-color: var(--Border-Light, #E0E2E5);
    cursor: not-allowed;
    opacity: 0.7;
}

.jazan-input:disabled::placeholder,
.jazan-input[disabled]::placeholder {
    color: var(--Text-Light, #C4C7CC);
}

/* Select dropdown arrow styling */
select.jazan-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23161616' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 16px center;
    background-size: 16px;
    padding-left: 48px;
}

/* Textarea styling */
textarea.jazan-input {
    min-height: 120px;
    resize: vertical;
    display: block;
}

/* Date input styling */
input[type="date"].jazan-input,
input[type="datetime-local"].jazan-input,
input[type="time"].jazan-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23161616' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3e%3c/rect%3e%3cline x1='16' y1='2' x2='16' y2='6'%3e%3c/line%3e%3cline x1='8' y1='2' x2='8' y2='6'%3e%3c/line%3e%3cline x1='3' y1='10' x2='21' y2='10'%3e%3c/line%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: left 16px center;
    background-size: 16px;
    padding-left: 48px;
}

input[type="date"].jazan-input::-webkit-calendar-picker-indicator,
input[type="datetime-local"].jazan-input::-webkit-calendar-picker-indicator,
input[type="time"].jazan-input::-webkit-calendar-picker-indicator {
    opacity: 0;
    cursor: pointer;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

/* Input Group Fixes */
.input-group-prepend .input-group-text,
.input-group-append .input-group-text {
    height: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #ced4da;
    background-color: #e9ecef;
    padding: 0.375rem 0.75rem;
}

.input-group > .form-control {
    height: auto;
}

/* Input Icon Container */
.input-icon {
    position: relative;
}

.input-icon .jazan-input {
    padding-left: 48px;
}

/* Jazan Input Feedback */
.jazan-input-feedback {
    position: absolute;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    color: #9B9FA4;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.jazan-input-feedback i {
    font-size: 18px;
}

/* Submit Button Styles */
.btn-submit-form {
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    color: #161616 !important;
}

.btn-submit-form span {
    color: #161616 !important;
}

.btn-submit-form:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(27, 131, 84, 0.3);
}

.btn-submit-form:active:not(:disabled) {
    transform: translateY(0);
}

.btn-submit-form:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-submit-form .submit-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-submit-form:hover:not(:disabled) .submit-icon {
    transform: translateX(3px);
}



/* advantages section */
/* advantages section */
.advantages-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 64px 48px 54px 48px;
    margin-top:75px;
    background: #F6F8F7;
    border-radius: 16px;
    gap: 40px;
}




.advantages-section-cards{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
    justify-content: space-between;
}
.advantages-section-card{
display: flex;
flex-direction: column;
max-width: 297px;
max-height: 243px;
padding: 40px 20px;
justify-content: center;
align-items: center;
border-radius: 16px;
background-color: #fff;
gap: 16px;
}
.advantages-section-card-icon{
    width: 40px;
    height: 40px;
}

.advantages-section-card-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
}
.advantages-section-card-content h3{
color: #161616;
text-align: center;
font-size: 18px;
font-weight: 700;

}
.advantages-section-card-content p{
color: #757B80;
text-align: center;
font-size: 16px;
font-weight: 300;
margin-bottom: 0;
}
.advantages-section-footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.advantages-section-footer h5{
    color: #161616;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    max-width: 510px;
}

@media (max-width: 992px) and (min-width: 769px) {
    .advantages-section {
        padding: 40px 28px 36px 28px;
        gap: 28px;
    }

    .advantages-section-cards {
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }

    .advantages-section-card {
        max-width: 48%;
        min-width: 260px;
        padding: 32px 18px;
    }

    .advantages-section-content h1 {
        font-size: 26px;
    }

    .advantages-section-content p {
        font-size: 14px;
    }

    .advantages-section-card-content h3 {
        font-size: 17px;
    }

    .advantages-section-card-content p {
        font-size: 15px;
    }

    .advantages-section-footer h5 {
        font-size: 14px;
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .advantages-section {
        padding: 40px 24px;
        margin-top: 60px;
        gap: 32px;
    }

    .advantages-section-cards {
        flex-direction: column;
    }

    .advantages-section-card {
        max-width: 100%;
        width: 100%;
    }

    .advantages-section-content h1 {
        font-size: 24px;
    }

    .advantages-section-content p {
        font-size: 14px;
    }

    .advantages-section-card-content h3 {
        font-size: 16px;
    }

    .advantages-section-card-content p {
        font-size: 14px;
    }

    .advantages-section-footer {
        flex-direction: column;
    }

    .advantages-section-footer h5 {
        font-size: 14px;
    }
}




/* statistics section */
.statistics-section{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 119px;
   background: rgba(20, 87, 58, 0.04);
   border-radius: 16px;
   padding: 78px 68px 82px 76px;
   margin-top:64px;

}
.statistics-section h1{
   color: #161616;

font-size: 36px;
font-weight: 700;
line-height: 56px;
}

.statistics-items{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 94px;
}
.statistics-item{
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    gap: 11px;
}
.statistics-item span{
   color: #25376D;
font-size: 48px;
font-weight: 700;
}
.statistics-item p{
color: rgba(23, 26, 58, 0.70);
font-size: 18px;
font-weight: 300;
}

@media (max-width: 992px) and (min-width: 769px) {
    .statistics-section {
        gap: 50px;
        padding: 50px 32px;
        margin-top: 45px;
    }

    .statistics-section h1 {
        font-size: 26px;
        line-height: 38px;
        text-align: center;
    }

    .statistics-items {
        gap: 40px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .statistics-item {
        min-width: 180px;
    }

    .statistics-item span {
        font-size: 36px;
    }

    .statistics-item p {
        font-size: 15px;
    }
}

@media (max-width: 768px) {
    .statistics-section {
        flex-direction: column;
        gap: 40px;
        padding: 40px 24px;
        margin-top: 40px;
    }

    .statistics-section h1 {
        font-size: 24px;
        line-height: 36px;
        text-align: center;
    }

    .statistics-items {
        flex-direction: column;
        gap: 32px;
        width: 100%;
    }

    .statistics-item {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .statistics-item span {
        font-size: 36px;
    }

    .statistics-item p {
        font-size: 15px;
    }
}


.form-group label{
    color: var(--Text-Dark);
    text-align: right;
    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
    margin-bottom: 4px;
    display: flex;
    justify-content: start;
    gap: 4px;
}
.step-content {
    width: 100%;
  }
  
  .step-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 24px;
    text-align: center;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  .form-group label {
    color: #161616;
  text-align: right;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  }
  
  .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
  }
  
  .form-control:focus {
    outline: none;
    border-color: #00A389;
    box-shadow: 0 0 0 3px rgba(0, 163, 137, 0.1);
  }
  
  .text-danger {
    color: #e53e3e;
    font-size: 13px;
    margin-top: 4px;
  }
  
  .required-asterisk {
    color: #e53e3e;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
  }
  
  .gap-1 {
    gap: 4px;
  }
  
  .text-muted {
    color: #757B80;
  text-align: right;
  
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  }
  
  @media (max-width: 768px) {
    .step-title {
      font-size: 20px;
    }
  }

/* Upload Styles */
.upload-wrapper {
  margin-bottom: 24px;
}

.upload-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.upload-box {
  position: relative;
}

.upload-input {
  display: none;
}

.upload-area {
  border: 2px dashed #d1d5db;
  border-radius: 10px;
  padding: 28px 16px;
  text-align: center;
  cursor: pointer;
  background: #fafafa;
  transition: all 0.2s ease;
}

.upload-area:hover {
  border-color: #00a389;
  background: #f0fdfa;
}

.upload-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.upload-text {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
}

.upload-subtext {
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 12px;
}

.upload-btn {
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
}

.upload-btn:hover {
  background: #e5e7eb;
}

/* Uploaded file row */
.uploaded-file {
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #d1fae5;
  border-radius: 8px;
  background: #ecfdf5;
  font-size: 13px;
}

.file-name {
  flex: 1;
}

.file-check {
  color: #10b981;
}

.file-remove {
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  color: #6b7280;
}

.file-remove:hover {
  color: #ef4444;
}

.jazan-label {
    color: #232A31;
    margin-bottom: 4px;

    font-size: 14px;
    font-weight: 500;
    line-height: 24px;
}

/* Radio Options */
.radio-options-container {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.radio-option-item {
    min-width: 214px;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 12px 16px;
    border: 1px solid #E0E2E5;
    border-radius: 12px;
    background: #fff;
    transition: all 0.2s ease;
}

.radio-label:hover {
    border-color: var(--primary-color);
}

.radio-label input[type="radio"] {
    accent-color: var(--primary-color);
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.radio-label input[type="radio"]:checked + span {
    color: var(--primary-color);
    font-weight: 500;
}

.radio-label span {
    font-size: 14px;
    color: #161616;
}

@media (max-width: 991px) {
    .radio-options-container {
        flex-direction: column;
    }

    .radio-option-item {
        min-width: 100%;
    }
}

/* Profile Avatar Upload */
.profile-avatar-upload {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.profile-avatar-upload .imageUpload {
    display: none;
}

.profile-avatar-upload .avatar-preview {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #eee;
    transition: border-color 0.3s ease;
}

.profile-avatar-upload:hover .avatar-preview {
    border-color: var(--primary-color);
}

.profile-avatar-upload .avatar-preview .imagePreview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: none;
}

.profile-avatar-upload .LabelUploadImg {
    color: #666;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.profile-avatar-upload .LabelUploadImg ion-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.profile-avatar-upload:hover .LabelUploadImg {
    color: var(--primary-color);
}