/* ===============================
   scta Under Construction Page
   =============================== */
/* Simple CSS Reset */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  font-family: "Inter";
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

/* font load*/
/* Alexandria Regular */
@font-face {
  font-family: "Alexandria";
  src: url("../font/Alexandria-Light.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: "Alexandria";
  src: url("../font/Alexandria-Regular.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Alexandria";
  src: url("../font/Alexandria-Medium.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Alexandria Medium */
@font-face {
  font-family: "Alexandria";
  src: url("../font/Alexandria-SemiBold.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

/* Alexandria Bold */
@font-face {
  font-family: "Alexandria";
  src: url("../font/Alexandria-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

/* Inter Bold */
@font-face {
  font-family: "Inter";
  src: url("../font/Inter_24pt-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

/* Inter Bold */
@font-face {
  font-family: "Inter";
  src: url("../font/Inter_24pt-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

/* Inter Bold */
@font-face {
  font-family: "Inter";
  src: url("../font/Inter_24pt-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

/* Inter Bold */
@font-face {
  font-family: "Inter";
  src: url("../font/Inter_24pt-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* Use the font */
.scta-ar {
  font-family: "Alexandria", sans-serif !important;
}

.scta-section-en {
  position: relative;
  min-height: 100vh;
  color: #fff;
  background: url("../images/bg.jpg") center/cover no-repeat;
  background-position: top;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}

/* Gradient Overlay */
.scta-section-en::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 52, 85, 0.83) 21.25%,
    rgba(0, 39, 75, 0.53) 68%
  );
  z-index: 0;
}
.scta-section-ar {
  position: relative;
  min-height: 100vh;
  color: #fff;
  background: url("../images/ar-bg.jpg") top/cover no-repeat;
  background-position: top;
  overflow: hidden;
  font-family: "Inter", sans-serif;
}
/* Gradient Overlay */
.scta-section-ar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    270deg,
    rgba(3, 52, 85, 0.83) 21.25%,
    rgba(0, 39, 75, 0.53) 68%
  );
  z-index: 0;
}

.scta-parent {
  height: 100vh;
}

/* Layer Content Above Overlay */
.scta-header,
.scta-main,
.scta-footer {
  position: relative;
  z-index: 2;
}
.scta-main {
  margin-top: 150px;
}

/* Header */
.scta-header {
  padding: 1.5rem 0rem;
}

.scta-logo img {
  height: 95px;
}

.scta-icons {
  color: #fff;
}
.scta-icons a {
  color: #fff;
}

/* Main Section */
.scta-main {
  padding: 0;
  max-width: 900px;
  text-align: left;
}

.scta-welcome-badge {
  display: inline-block;

  padding: 12px 20px;
  border-radius: 25px;
  font-size: 0.95rem;
  margin-bottom: 20px;

  border-radius: 30px;
}
.gradient-top-border {
  position: relative;
  padding: 14px 20px;
  border-radius: 50px;
  color: #fff; /* text color */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.gradient-top-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px; /* border thickness */
  background: linear-gradient(to bottom, rgb(255, 255, 255), transparent);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.scta-heading {
  font-weight: 700;
  font-size: 30px;
  line-height: 1.3;
  margin-bottom: 10px;
}

.scta-contact {
  font-size: 20px;
  font-weight: 400;
}

.scta-contact a {
  color: #fff;
  text-decoration: underline;
  font-weight: 400;
  &:hover {
    color: #f1f1f1;
  }
}

/* Footer */
.scta-footer {
  padding: 2rem 3rem;
}

.scta-follow-text {
  margin-bottom: 1rem;
}

.scta-social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #fff;
  color: #fff;
  margin-right: 10px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.scta-social-icons a:hover {
  background: #09456d;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .scta-heading {
    font-weight: 700;
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 25px;
  }
  .scta-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      90deg,
      #033455 30.66%,
      rgba(0, 39, 75, 0.3) 221.47%
    );
    z-index: 0;
  }
  .scta-welcome-badge {
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
  }
  .scta-header {
    padding: 15px;
  }
  .scta-main {
    padding: 15px;
    max-width: 450px;
    text-align: left;
  }
  .scta-footer {
    padding: 15px;
  }
  .scta-logo img {
    height: 60px;
  }
  .scta-contact {
    font-size: 16px;
    font-weight: 400;
  }
}

/*ar css*/
.scta-ar .scta-heading {
  font-family: "Alexandria", sans-serif;
  font-weight: 500;
}
.scta-ar .scta-welcome-badge {
  font-family: "Alexandria", sans-serif;
  font-weight: 200;
}
.scta-ar .scta-contact {
  font-family: "Alexandria", sans-serif;
  font-weight: 300;
}
.scta-ar .scta-icons {
  font-family: "Alexandria", sans-serif;
  font-weight: 300;
}
.scta-icons {
  font-family: "Alexandria", sans-serif;
  font-weight: 300;
}

/* Small devices (landscape phones, ≥576px) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .scta-heading {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 25px;
  }
  .scta-welcome-badge {
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
  }
  .scta-header {
    padding: 18px;
  }
  .scta-main {
    padding: 20px;
    max-width: 450px;
    text-align: left;
  }
  .scta-footer {
    padding: 20px;
  }
  .scta-logo img {
    height: 80px;
  }
}

/* Medium devices (tablets, ≥768px) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .example {
    background-color: lightyellow;
  }
}

/* Large devices (desktops, ≥992px) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .example {
    background-color: orange;
  }
}

/* Extra large devices (large desktops, ≥1200px) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .example {
    background-color: lightcoral;
  }
}

/* XXL devices (larger desktops, ≥1400px) */
@media (min-width: 1400px) {
  .example {
    background-color: violet;
  }
}

.scta-ar {
  .en-logo {
    display: none;
  }
  .ar-logo {
    display: block;
  }
  
}

.ar-logo {
  display: none;
}
