:root {
  --primary-color: #022c3d;
  --primary-light: #245481;
  --secondary-color: #9c7d2f;
  --body-bg: #f6f6f6;
  --input-box: #e2e2e288;
}
/* General Style ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
*::selection {
  background-color: var(--primary-color);
  color: var(--body-bg);
}
body {
  font-family: "Cairo", Arial, sans-serif;
  direction: rtl;
  background-color: var(--body-bg);
}
a {
  text-decoration: none;
  font-family: "Cairo", Arial, sans-serif;
}
.mb-section {
  margin-bottom: 100px;
}
.nav-active {
  color: var(--secondary-color);
}
.h-50 {
  height: 50vh !important;
}
.abs-section {
  width: 100%;
  height: 100%;
}

.section-title {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 1rem;
}
/* BootStrap Override ===== */
.btn-outline-secondary {
  color: var(--secondary-color);
  border-color: var(--secondary-color);
  background-color: transparent;
}

.btn-outline-secondary:hover,
.btn-outline-secondary:focus,
.btn-outline-secondary:active {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.accordion-collapse {
  transition: 0.5s;
}
.accordion-button {
  background-color: var(--primary-color) !important;
  color: var(--body-bg) !important;
}
.accordion-button:focus {
  box-shadow: none;
}
.accordion-button::after {
  background-image: url("/svgs/plus.svg");
  transition: transform 0.5s;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("/svgs/dash.svg");
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(
    to bottom,
    var(--primary-color),
    var(--primary-light)
  );
}

.navbar-brand {
  margin: 0;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  min-height: 80px;
  border-bottom: 5px solid var(--secondary-color);
  z-index: 5;
}

.navbar-brand {
  position: absolute;
  padding: 0;
  top: -2.8px;
  right: 0;
  width: 120px;
  height: 120px;
  & img {
    width: 100%;
    height: 100% !important;
  }
}
.navbar-toggler {
  margin-right: auto !important;
}

.nav-link:hover {
  color: var(--secondary-color);
}
.navbar-nav {
  display: flex;
  justify-content: space-evenly;
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.navbar-brand img {
  height: 48px;
}
.logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.1;
}
.logo-text span {
  font-size: 0.9rem;
  font-weight: 400;
  display: block;
}
/* Hero Style */
.hero-bg {
  margin-top: 78.8px;
  position: relative;
  width: 100%;
  background: url("/img/hero-bg.jpeg") center / cover no-repeat;
}
.hero-content {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  color: var(--body-bg);
  z-index: 2;
  padding: 0 10vw;
}
.hero-title {
  font-size: 3rem;
  font-weight: bold;
}

/* Side Menu */
.side-menu {
  position: fixed;
  left: 15px;
  bottom: 30px;
  z-index: 20;
}

/* About Section === */
/* About Section ===== */
.about-container {
  padding: 0 30px;
}

.about-video {
  flex: 1;
  position: relative;
  overflow: hidden;
  padding-top: 30%;
  /* flex: 2; */
  & iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
}
.about-details {
  flex: 1;
}
/* Footer */
footer {
  background-color: var(--primary-color);
  & * {
    color: var(--body-bg);
  }
  & .footer-text:hover {
    color: var(--secondary-color);
    cursor: pointer;
  }
  & .footer-link {
    color: var(--body-bg);
    &:hover {
      color: var(--secondary-color);
    }
  }
}
.footer-line {
  height: 2px;
  background-color: var(--secondary-color);
}

/* Default (mobile first) */
.hero-content {
  padding: 0 5vw;
}
.about-container {
  flex-direction: column;
}
.about-video {
  padding-top: 56.25%;
}
.navbar-collapse {
  padding-top: 62px;
}

/* Larger screens (lg and up) */
@media (min-width: 992px) {
  #mainNavbar {
    max-width: calc(100% - 120px);
    margin-inline-start: 120px;
  }
  .navbar-collapse {
    padding-top: 0;
  }
  .hero-content {
    padding: 0 10vw;
  }
  .about-container {
    flex-direction: row;
  }
  .about-video {
    padding-top: 30%;
  }
}

/* Default for small screens */
.hero-title {
  font-size: 2.5rem;
}

/* Medium screens and up */
@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 578px) {
  .about-container p {
    font-size: 22px;
  }
}
