body {
  background-color: #356bb7;
}
* {
  font-family: 'Alexandria', sans-serif !important;
}

.hero-section {
  position: relative;
  text-align: left;
  padding-top: 120px;
  padding-bottom: 120px;
  display: flex;
  flex-direction: row; /* Changed to row-reverse */
  justify-content: space-around;
  min-height: 657px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0.8;
}

.hero-background img {
  width: 60%;
  height: auto;
  object-fit: cover;
  object-position: 20% 50%;
}

.hero-content {
  width: 100%;
}

.hero-title {
  font-weight: 600;
  font-size: 64px;
  line-height: 1.2;
  color: #ffffff;
  max-width: 611px;
  margin-bottom: 36px;
}
.right {
  text-align: right !important;
}
.hero-subtitle {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
  color: #ffffff;
  max-width: 506px;
  margin-bottom: 98px;
}

.hero-divider {
  border: none;
  height: 5px;
  background-color: #ef6341;
  width: 547px;
  margin: 0;
}

@media (max-width: 992px) {
  .hero-section {
    flex-direction: column; /* Stack vertically on small screens */
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: auto;
  }
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-title {
    font-size: 48px;
    margin-bottom: 24px;
  }
  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 48px;
  }
  .hero-divider {
    width: 80%;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-subtitle {
    font-size: 16px;
  }
  .hero-background img {
    width: 100% !important;
  }
}

/* CSS from section:contact */
.contact-section {
  padding-top: 120px;
}
.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 85px;
}

.contact-image-wrapper {
  position: relative;
  width: 628px;
  height: 476px;
  flex-shrink: 0;
}

.image-bg-deco {
  position: absolute;
  background-color: #ef6341;
  width: 563px;
  height: 422px;
  top: 54px;
  left: -16px;
  z-index: -1;
}

.contact-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-form-wrapper {
  flex-grow: 1;
  max-width: 563px;
}

.form-title {
  font-weight: 500;
  font-size: 40px;
  color: #ffffff;
  text-align: right;
  margin-bottom: 40px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 15px 20px;
  border: none;
  font-family: 'Alexandria', sans-serif;
  font-size: 15px;
  color: #4d4d4d;
  background-color: #ffffff;
  text-align: right;
}

.form-input {
  height: 49px;
  border-radius: 10px;
}

.form-textarea {
  height: 184px;
  border-radius: 20px;
  resize: vertical;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #4d4d4d;
  opacity: 1;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 20px;
  width: 8px;
  height: 8px;
  border-bottom: 2px solid #4d4d4d;
  border-left: 2px solid #4d4d4d;
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

select.form-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 222px;
  height: 48px;
  background-color: #ef6341;
  border: none;
  border-radius: 50px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
  align-self: center;
  margin-top: 25px;
}

.submit-button:hover {
  background-color: #d85432;
}

.submit-button img {
  width: 22px;
  height: 20px;
}

@media (max-width: 1200px) {
  .contact-container {
    flex-direction: column;
    gap: 60px;
  }
  .contact-image-wrapper {
    width: 100%;
    max-width: 628px;
    height: auto;
  }
  .image-bg-deco {
    display: none;
  }
  .contact-form-wrapper {
    width: 100%;
  }
  .form-title {
    text-align: center;
  }
  .submit-button {
    align-self: center;
  }
}

/* CSS from section:info */
.info-section {
  text-align: center;
}

.info-title {
  font-weight: 600;
  font-size: 40px;
  color: #ffffff;
  margin-bottom: 33px;
}

.info-items-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 33px;
  flex: 1;
  min-width: 250px;
}

.icon-wrapper {
  position: relative;
  width: 68px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-bg, .icon-fg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.icon-fg {
  width: auto;
  height: auto;
  max-width: 65%;
  max-height: 65%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.info-text {
  font-weight: 600;
  font-size: 22px;
  color: #ffffff;
  text-decoration: none;
  word-break: break-all;
}

.info-text:hover {
  text-decoration: underline;
}

@media (max-width: 992px) {
  .info-items-container {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
  .info-text {
    font-size: 28px;
  }
}

@media (max-width: 768px) {
  .info-title {
    font-size: 32px;
  }
  .info-text {
    font-size: 24px;
  }
}

span img{
  width: 30px;
}body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url('/water_mark.jpeg');
  background-repeat: repeat;
  background-attachment: fixed;
  background-size: 200px auto;
  opacity: 0.3;
  z-index: -1;
  pointer-events: none;
}@media (max-width: 768px) {
  body::before {
    background-size: 150px auto;
  }
  
}

/* Directional layout for contact form and image */
body[dir="ltr"] .contact-container {
  flex-direction: row-reverse !important;
}
body[dir="rtl"] .contact-container {
  flex-direction: row-reverse !important;
}
