@font-face {
  font-family: 'TheYearofTheCamel';
  src: url('../TheYearofTheCamel-Regular.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'TheYearofTheCamel';
  src: url('../TheYearofTheCamel-Bold.otf') format('opentype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

.iti.iti--allow-dropdown.iti--separate-dial-code {
  margin-top: 10px;
}

.bgRed {
  background-color: #81262b;
}

.cRed {
  color: #81262b;
}

.bgOrange {
  background-color: #ffad6c;
}

.cOrange {
  color: #ffad6c;
}

.bgDRed {
  background-color: #43120a;
}

.cgDRed {
  color: #43120a;
}

.bgDOrange {
  background-color: #cb6a32;
}

.cDOrange {
  color: #cb6a32;
}

body {
  font-family: 'SomarSans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  position: static;
}

body {
  font-family: 'TheYearofTheCamel';
}

.navHeader {
  padding: 50px 20px;
  font-weight: 600;
  text-align: center;
  background-color: #81262b;
  color: #ffad6c;
  font-size: 30px;
}

.container {
  width: 100%;
  max-width: 1400px;
  padding: 20px;
  margin: auto;
  margin-top: 30px;

}

.customInput {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-bottom: 1px solid #43120ad9;
  margin-bottom: 4px;
  font-size: 18px;
  color: #43120a;
}

.customInput:focus {
  outline: none;
  border-bottom: 1px solid #43120a;
}

input::placeholder {
  color: #43120ad9;
}

.inputForm {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
}

.inputForm .item {
  width: 45%;
}

.file-upload-wrapper {
  position: relative;
}

.file-input {
  display: none;
}

.file-upload-label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: inherit;
  font-family: inherit;
  /* Match customInput styling */
  padding: 12px 16px;
  border: none;
  border-bottom: 1px solid #43120ad9;
  background-color: #fff;
  color: #43120ad9;
  outline: none;
}

.file-upload-label:hover {
  border-color: #81262b;
}

.file-upload-label:focus-within {
  border-color: #81262b;
}

.upload-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.upload-text {
  color: #43120ad9;
}

.file-upload-label.has-file {
  border-color: #43120a;
  background-color: #fff;
}

.file-upload-label.has-file .upload-text {
  color: #43120a;
}

/* Make phone input full width */
.iti {
  width: 100% !important;
}

.iti__selected-country {
  width: auto;
}

.iti__country-list {
  width: 100%;
}

/* Checkbox styling */
.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 10px 0;
}

.checkbox-input {
  width: 18px;
  height: 18px;
  margin: 0;
  cursor: pointer;
  accent-color: #43120a;
}

.checkbox-label {
  font-size: 18px;
  color: #43120a;
  cursor: pointer;
  line-height: 1.4;
  margin: 0;
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent !important;
  height: auto !important;
  margin-top: 6px !important;
}

.iti__country-list {
  width: auto;
}

.error-message {
  color: #dc3545;
  font-size: 15px;
  display: block;
  font-family: inherit;
  line-height: 1.2;
}

.error-message.validation-error {
  color: #dc3545;
}

.error-message.warning {
  color: #ffc107;
}

.error-message.success {
  color: #28a745;
}

/* Alert styling for validation errors */
.alert {
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 5px;
  font-size: 14px;
}

.alert-error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

.alert h4 {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
}

.alert ul {
  margin: 0;
  padding-left: 20px;
}

.alert li {
  margin: 5px 0;
  line-height: 1.4;
}

/* File reselect notice */
.file-reselect-notice {
  margin-top: 5px;
}

.info-text {
  color: #856404;
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  display: block;
  line-height: 1.3;
}

.help-text {
  font-size: 14px;
  color: #43120ad9;
}

.submit-btn {
  background-color: #81262b;
  color: #ffad6c;
  margin: auto;
  padding: 10px 30px;
  width: 200px;
  font-size: 18px;
  cursor: pointer;
  max-width: 200px;
  display: block;
  transition: all 0.3s ease;
  margin-top: 40px;
  border-radius: 4px;
  border: 1px solid #81262b;
}

.submit-btn:hover {
  background-color: #ffad6c;
  color: #81262b;
  border: 1px solid #ffad6c;
}


/* Language Switcher Styles */
.language-switcher {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 10px;
  z-index: 1000;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
}

.lang-btn.active {
  background: rgba(255, 255, 255, 0.6);
  border-color: rgba(255, 255, 255, 0.6);
  color: #333;
}

.lang-btn.active:hover {
  color: #333;
}

.lang-btn svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
}

.lang-btn span {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Responsive design for language switcher */


/* RTL Support */
[dir="rtl"] .language-switcher {
  right: auto;
  left: 20px;
}


.contact {
  padding: 5px 0 20px 0px;
  margin-top: 50px;
  text-align: center;
  background-color: #81262b;
  color: #ffad6c;
  font-size: 20px;
}

.contact a {
  color: #fff;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
  color: #ffad6c;
}

.footer {
  width: 100%;
  max-width: 1400px;
  padding: 40px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: nowrap;
}

.footer .item {
  width: 25%
}

.footerlogo {
  width: 100%;
  max-width: 150px;
}

.footerTitle {
  font-size: 16px;
  font-weight: 600;
  color: #cb6a32;
  margin-bottom: 10px;
}

.footerText {
  font-size: 18px;
  color: #ffad6c;
  line-height: 1.6;
}

.contact .footerText a {
  color: #ffad6c;
  text-decoration: none;
}

.contact .footerText a:hover {
  color: #cb6a32;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .language-switcher {
    top: 10px;
    right: 10px;
  }

  .lang-btn {
    padding: 6px 10px;
    font-size: 12px;
  }

  .lang-btn svg {
    width: 14px;
    height: 14px;
  }

  [dir="rtl"] .language-switcher {
    left: 10px;
    right: auto;
  }

  .inputForm .item {
    width: 100%;
  }

  .footer {
    flex-wrap: wrap;
  }

  .footer .item {
    width: calc(50% - 40px);
    margin-bottom: 20px;
  }
}

@media all and (max-width: 440px) {
  .footer .item {
    width: 100%;
    margin-bottom: 20px;
  }

  .navHeader {
    font-size: 24px;
  }
}