/* Start Variables */
:root {
  --main-color: #5beb00;
  --transparent-color: #ff6700;
  --section-padding: 60px;
}

/* Start Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Open Sans", sans-serif;
  background-color: #13124b;
  color: #ffffff;
}
[dir="rtl"] body {
  font-family: "Noto Sans Arabic", sans-serif;
}
.scroller {
  background-color: var(--main-color);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 9999;
  width: 0;
  height: 5px;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
/* Small */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
/* Medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
/* Large */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

/* Start Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(90deg, #000000, #3533cd);
  z-index: 10000;
  display: flex;
  align-items: center;
}
header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 120px;
}
header .logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 10001;
}
header .logo img {
  max-height: 100px;
  width: auto;
}
header .logo-text {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: bold;
  margin-left: 15px;
}
[dir="rtl"] header .logo-text {
  margin-left: 0;
  margin-right: 15px;
}
header nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 10001;
}
header nav .toggle-icon, header nav .close-icon {
  color: var(--main-color);
  font-size: 28px;
  cursor: pointer;
  display: none;
}
header nav .close-icon {
  display: none;
}
header nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
header nav ul li {
  margin-right: 15px;
}
[dir="rtl"] header nav ul li {
  margin-right: 0;
  margin-left: 15px;
}
header nav ul li a {
  color: #ffffff;
  padding: 15px 25px;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s;
}
header nav ul li a:hover,
header nav ul li a.active {
  color: var(--main-color);
  border-bottom: 2px solid var(--main-color);
}
header nav .language-menu {
  margin-left: 25px;
}
header nav .language-menu i {
  color: var(--main-color);
  font-size: 1.5rem;
}
header nav .language-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #13124b;
  border: 1px solid var(--main-color);
  border-radius: 4px;
  list-style: none;
  padding: 5px 0;
  z-index: 10002;
  width: 150px;
}
header nav .language-dropdown.active {
  display: block;
}
header nav .language-dropdown li a {
  color: var(--main-color);
  padding: 5px 10px;
  font-size: 0.9rem;
  display: block;
}
header nav .language-dropdown li a:hover,
header nav .language-dropdown li a[data-selected="true"] {
  background-color: var(--transparent-color);
  color: #ffffff;
}
[dir="rtl"] header nav .language-menu {
  margin-left: 0;
  margin-right: 25px;
}
[dir="rtl"] header nav .language-dropdown {
  right: auto;
  left: 0;
}
[dir="rtl"] header nav ul li a {
  text-align: right;
}
@media (max-width: 768px) {
  header {
    height: 100px;
  }
  header .container {
    min-height: 100px;
  }
  header .logo img {
    max-height: 80px;
  }
  header .logo-text {
    font-size: 1.2rem;
    margin-left: 10px;
  }
  [dir="rtl"] header .logo-text {
    margin-right: 10px;
  }
  header nav .toggle-icon {
    display: block;
    margin-left: 15px;
  }
  [dir="rtl"] header nav .toggle-icon {
    margin-left: 0;
    margin-right: 15px;
  }
  header nav ul.active ~ .close-icon {
    display: block;
  }
  header nav ul.active ~ .toggle-icon {
    display: none;
  }
  header nav ul {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #000000, #3533cd);
    z-index: 9999;
    padding: 10px 0;
    max-height: calc(100vh - 100px);
    overflow-y: auto;
  }
  header nav ul.active {
    display: flex !important;
  }
  header nav ul li {
    margin-right: 0;
  }
  [dir="rtl"] header nav ul li {
    margin-left: 0;
  }
  header nav ul li a {
    padding: 10px 15px;
    font-size: 0.9rem;
    text-align: left;
  }
  [dir="rtl"] header nav ul li a {
    text-align: right;
  }
  header nav .language-menu {
    margin-left: 15px;
  }
  [dir="rtl"] header nav .language-menu {
    margin-right: 15px;
  }
  header nav .language-dropdown {
    right: 15px;
    width: calc(100vw - 30px);
    max-width: 160px;
  }
  [dir="rtl"] header nav .language-dropdown {
    right: auto;
    left: 15px;
  }
}
/* End Header */

/* Start Components */
.main-heading {
  text-align: center;
}
.main-heading h2 {
  color: var(--main-color);
  font-weight: normal;
  font-size: 40px;
  position: relative;
  margin-bottom: 60px;
  text-transform: uppercase;
}
.main-heading h2::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background-color: var(--transparent-color);
  bottom: -20px;
  width: 120px;
}
.main-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--main-color);
  bottom: -28px;
  background-color: var(--main-color);
}
.main-heading p {
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
  color: #ffffff;
}
[dir="rtl"] .main-heading p {
  text-align: right;
}
@media (max-width: 768px) {
  .main-heading h2 {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .main-heading h2::before {
    bottom: -15px;
  }
  .main-heading h2::after {
    bottom: -23px;
  }
  .main-heading p {
    margin-bottom: 30px;
    padding: 0 10px;
  }
}
/* End Components */

/* Start Messages */
.messages {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 65%;
  z-index: 20000; /* Above header (z-index: 10000) */
  animation: popup 0.5s ease-in-out;
}
.messages .message {
  position: relative;
  padding: 15px 40px 15px 20px;
  margin-bottom: 10px;
  border-radius: 4px;
  background-color: #1e1e6b; /* Darker than body (#13124b) */
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 500;
  border: 2px solid transparent;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
  text-align: center;
}
.messages .message-success,
.messages .message-contact {
  border: 2px solid var(--main-color);
  background-color: #5beb00; /* Solid green */
  color: #1e1e6b; /* Dark blue for contrast */
}
.messages .message-error,
.messages .message-subscribe {
  border: 2px solid var(--transparent-color);
  background-color: #ff6700; /* Solid orange */
  color: #1e1e6b; /* Dark blue for contrast */
}
.messages .message .close-message {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 1.2rem;
  cursor: pointer;
  transition: color 0.3s;
}
.messages .message .close-message:hover {
  color: #cccccc;
}
.messages .message[dir="rtl"] .close-message {
  right: auto;
  left: 15px;
}
@keyframes popup {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 768px) {
  .messages {
    max-width: 90%;
    padding: 0 10px;
  }
  .messages .message {
    padding: 10px 30px 10px 15px;
    font-size: 0.8rem;
  }
  .messages .message .close-message {
    right: 10px;
    font-size: 1rem;
  }
  .messages .message[dir="rtl"] .close-message {
    left: 10px;
  }
}
/* End Messages */

/* Start Landing */
.landing {
  position: relative;
  min-height: calc(100vh - 120px);
  width: 100%;
  background-color: #1f2021;
  padding-top: 120px;
  z-index: 1;
}
.landing .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.landing .carousel {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
}
.landing .carousel-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
}
.landing .carousel-image.active {
  display: block;
}
.landing .fa-angle-left, .landing .fa-angle-right {
  color: var(--main-color);
  font-size: 32px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}
.landing .fa-angle-left {
  left: 15px;
}
.landing .fa-angle-right {
  right: 15px;
}
[dir="rtl"] .landing .fa-angle-left {
  left: auto;
  right: 15px;
}
[dir="rtl"] .landing .fa-angle-right {
  right: auto;
  left: 15px;
}
.landing .bullets {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  display: flex;
  z-index: 10;
}
.landing .bullets li {
  width: 16px;
  height: 16px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  margin-right: 8px;
  cursor: pointer;
}
[dir="rtl"] .landing .bullets li {
  margin-right: 0;
  margin-left: 8px;
}
.landing .bullets li.active {
  background-color: var(--main-color);
}
.form-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(6, 23, 116, 0.8);
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 400px;
  z-index: 5;
}
.form-container h2 {
  margin: 0 0 15px;
  color: var(--main-color);
  font-size: 1.5rem;
  text-align: center;
}
.form-container h2 a {
  text-decoration: none;
}
.form-container .button-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-container .form-button {
  display: block;
  width: 100%;
  padding: 10px;
  background-color: var(--main-color);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  text-align: center;
  text-decoration: none;
  font-size: 1rem;
  cursor: pointer;
}
.form-container .form-button:hover {
  background-color: var(--transparent-color);
}
#bookingForm label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--main-color);
  font-size: 0.9rem;
}
#bookingForm input {
  width: 100%;
  margin-bottom: 10px;
  padding: 8px;
  border: 1px solid var(--main-color);
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
#bookingForm input:focus {
  outline: none;
  border-color: var(--transparent-color);
}
#bookingForm button {
  width: 100%;
  padding: 10px;
  background-color: var(--main-color);
  color: #ffffff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}
#bookingForm button:hover {
  background-color: var(--transparent-color);
}
@media (max-width: 768px) {
  .landing {
    min-height: calc(100vh - 100px);
    padding-top: 100px;
  }
  .form-container {
    width: 95%;
    max-width: 340px;
    padding: 15px;
  }
  .form-container h2 {
    font-size: 1.2rem;
  }
  .form-container .form-button {
    font-size: 0.9rem;
    padding: 8px;
  }
  .landing .fa-angle-left, .landing .fa-angle-right {
    font-size: 24px;
  }
  .landing .bullets li {
    width: 12px;
    height: 12px;
    margin-right: 6px;
  }
  [dir="rtl"] .landing .bullets li {
    margin-left: 6px;
  }
}
/* End Landing */

/* Start Social Embeds */
.social-embeds {
    padding: 0;
    background-color: #13124b;
    position: relative;
    z-index: 3;
}
.social-embeds .container {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: center;
}
.social-embeds .social-post {
    width: 100%;
    max-width: 540px;
    margin: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}
.social-embeds .social-post iframe {
    width: 100%;
    height: 650px;
    display: block;
}
.social-embeds .social-post .fallback-link {
    display: none;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
}
.social-embeds .social-post.instagram-post .fallback-link {
    color: #c13584;
}
.social-embeds .social-post.facebook-post .fallback-link {
    color: #3b5998;
}
.social-embeds .social-post .fallback-link svg {
    margin-right: 10px;
    flex-shrink: 0;
}
[dir="rtl"] .social-embeds .social-post .fallback-link svg {
    margin-right: 0;
    margin-left: 10px;
}
.social-embeds .social-post:empty {
    display: none;
}
@media (min-width: 992px) {
    .social-embeds .container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }
    .social-embeds .social-post {
        flex: 0 0 calc(33.333% - 10px);
        margin: 0 5px;
    }
}
@media (max-width: 768px) {
    .social-embeds .social-post {
        max-width: 100%;
    }
    .social-embeds .social-post .fallback-link {
        font-size: 14px;
        padding: 8px;
    }
}
/* End Social Embeds */

/* Start About */
.about {
  padding: var(--section-padding) 0;
  background-color: #13124b;
  text-align: center;
  position: relative;
  z-index: 3;
}
.about .main-heading p {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .about .main-heading p {
    margin-bottom: 20px;
    padding: 0 10px;
  }
}
/* End About */

/* Start Design */
.design {
  padding: var(--section-padding) 0;
  position: relative;
  min-height: 300px;
  max-height: 500px;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  z-index: 2;
  background-color: #13124b; /* Fallback background */
}
.design .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.design .image img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Fit image without zooming */
  object-position: center;
  display: block;
}
.design .text {
  position: relative;
  z-index: 3;
  padding: 30px;
  color: #ffffff;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 8px;
  display: block; /* Ensure visibility */
}
.design .text h2 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.design .text ul {
  list-style: none;
  padding: 0;
}
.design .text ul li {
  color: #ffffff;
  padding: 10px 0;
  font-size: 1rem;
}
.design .text ul li::before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  margin-right: 10px;
  color: var(--main-color);
}
[dir="rtl"] .design .text ul li::before {
  margin-right: 0;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .design {
    min-height: 250px;
    max-height: 400px;
  }
  .design .image img {
    object-fit: contain;
  }
  .design .text {
    padding: 20px;
    max-width: 90%;
  }
}
/* End Design */

/* Start Subscribe */
.subscribe {
  padding: var(--section-padding) 0;
  background-color: #1f2021;
  position: relative;
  z-index: 3;
}
.subscribe::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 23, 116, 0.8);
}
.subscribe .container {
  position: relative;
  display: flex;
  align-items: center;
}
.subscribe form {
  display: flex;
  width: 500px;
  max-width: 100%;
  position: relative;
}
.subscribe form i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  color: var(--main-color);
}
[dir="rtl"] .subscribe form i {
  left: auto;
  right: 15px;
}
.subscribe form input[type="email"] {
  width: calc(100% - 130px);
  padding: 15px 15px 15px 40px;
  border: 1px solid var(--main-color);
  background: none;
  color: #ffffff;
}
.subscribe form input[type="submit"] {
  width: 130px;
  background-color: var(--main-color);
  color: #ffffff;
  border: 1px solid var(--main-color);
  border-left: none;
  padding: 15px;
}
.subscribe form input[type="email"]:focus,
.subscribe form input[type="submit"]:focus {
  outline: none;
  border-color: var(--transparent-color);
}
.subscribe form ::placeholder {
  color: #cccccc;
}
.subscribe p {
  margin-left: 30px;
  line-height: 1.8;
}
[dir="rtl"] .subscribe p {
  margin-left: 0;
  margin-right: 30px;
}
@media (max-width: 768px) {
  .subscribe .container {
    flex-direction: column;
  }
  .subscribe form {
    width: 90%;
  }
  .subscribe p {
    margin: 20px 0 0;
    text-align: center;
  }
}
/* End Subscribe */

/* Start Contact */
.contact {
  padding: var(--section-padding) 0;
  background-color: #13124b;
  position: relative;
  z-index: 3;
}
.contact .container .content {
  display: flex;
  justify-content: space-between;
}
.contact .container .content form {
  flex-basis: 65%;
}
.contact .container .content form .main-input {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 2px solid var(--main-color);
  background-color: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-radius: 4px;
}
.contact .container .content form .main-input:focus {
  outline: none;
  border-color: var(--transparent-color);
  background-color: rgba(255, 255, 255, 0.2);
}
.contact .container .content form textarea.main-input {
  height: 150px;
}
.contact .container .content form input[type="submit"] {
  background-color: var(--main-color);
  color: #ffffff;
  padding: 15px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-left: auto;
  display: block;
  font-weight: 500;
}
.contact .container .content form input[type="submit"]:hover {
  background-color: var(--transparent-color);
}
.contact .container .content .info {
  flex-basis: 30%;
}
.contact .container .content .info h4 {
  color: var(--main-color);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.contact .container .content .info .phone {
  display: block;
  color: var(--transparent-color);
  margin-bottom: 10px;
}
.contact .container .content .info h4:nth-of-type(2) {
  margin-top: 40px;
}
.contact .container .content .info address {
  color: var(--transparent-color);
  line-height: 1.8;
}
@media (max-width: 768px) {
  .contact .container .content {
    flex-direction: column;
  }
  .contact .container .content form {
    flex-basis: 100%;
  }
  .contact .container .content .info {
    flex-basis: 100%;
    text-align: center;
    margin-top: 20px;
  }
  .contact .container .content .info h4:nth-of-type(2) {
    margin-top: 20px;
  }
}
/* End Contact */

/* Start Footer */
.footer {
  padding: var(--section-padding) 0;
  background-color: #1f2021;
  text-align: center;
  position: relative;
  z-index: 3;
}
.footer .container {
  position: relative;
}
.footer img {
  max-height: 80px;
  margin-bottom: 20px;
}
.footer p:not(.copyright) {
  text-transform: uppercase;
  padding: 15px;
  border-bottom: 1px solid var(--main-color);
  font-size: 1.2rem;
  width: fit-content;
  margin: 20px auto;
}
.footer .social-icons i {
  padding: 10px;
  color: var(--main-color);
  font-size: 1.2rem;
}
.footer .social-icons i:hover {
  color: var(--transparent-color);
}
.footer .copyright {
  margin-top: 30px;
  color: var(--transparent-color);
}
.footer .copyright span {
  color: var(--main-color);
}
@media (max-width: 768px) {
  .footer img {
    max-height: 60px;
  }
  .footer p:not(.copyright) {
    font-size: 1rem;
  }
  .footer .social-icons i {
    padding: 8px;
    font-size: 1rem;
  }
}
/* End Footer */