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

:root {
  --main-color: #887a6f;
}

.container {
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  width: 100%;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

body {
  font-family: "Cairo", sans-serif;
  direction: rtl;
  overflow-x: hidden;
}

.overlay {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}

header {
  position: absolute;
  z-index: 100;
  width: 100%;
  right: 0;
  top: 10px;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  height: 100px;
  width: 100px;
  display: block;
  object-fit: contain;
  transition: 0.3s;
}

header .right-side {
  display: flex;
  align-items: center;
}

header .right-side ul {
  margin-right: 20px;
}

header .right-side ul,
header .left-side ul {
  list-style: none;
  display: flex;
  align-items: center;
}

header .right-side ul li,
header .left-side ul li {
  margin-left: 20px;
}

header .right-side ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}

header .right-side ul li a:hover,
header .left-side li a:hover {
  color: #fff;
}

header .left-side li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 30px;
  transition: 0.3s;
  margin-right: 20px;
}

.burger-icon {
  display: none;
}

@media (max-width: 767px) {
  header {
    padding: 0 20px;
  }

  header .right-side ul,
  header .left-side ul {
    display: none;
  }

  header .logo {
    height: 80px;
    width: 80px;
  }

  header .burger-icon {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 30px;
    cursor: pointer;
  }
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background: white;
  padding: 40px 30px;
  transition: 0.4s ease;
  z-index: 9999;
}

.mobile-menu.active {
  right: 0;
}

.close-btn {
  font-size: 35px;
  cursor: pointer;
  color: var(--main-color);
  text-align: left;
}

.mobile-links {
  list-style: none;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  text-align: center;
}

.mobile-links li {
  border-bottom: solid var(--main-color) 1px;
  padding-bottom: 20px;
}

.mobile-links li a {
  text-decoration: none;
  font-size: 24px;
  color: var(--main-color);
  font-weight: 700;
}

.mobile-icons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  font-size: 30px;
  justify-content: center;
}

.mobile-icons a {
  color: var(--main-color);
}

.landing {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.landing-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.landing-content {
  position: relative;
  z-index: 2;
  color: white;
  height: 100%;
}

.landing-content .container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  column-gap: 140px;
}

.landing-content .container .right-side h1 {
  font-size: 50px;
  margin-bottom: 20px;
}

.landing-content .container .right-side p {
  line-height: 1.8;
  font-weight: 700;
  font-size: 18px;
  position: relative;
}

.landing-content .container .left-side {
  line-height: 1.5;
  font-size: 25px;
  text-align: center;
}

.landing-content .container .left-side p {
  font-weight: 600;
  text-wrap: nowrap;
}

.two-k {
  display: inline-block;
  font-size: 60px;
  font-weight: 800;
  color: #fff;
  transform: translateY(10px);
  opacity: 0;
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.two-k.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 991px) {
  .landing .landing-content .container {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    row-gap: 40px;
  }

  .landing .landing-content .container .right-side h1 {
    font-size: 40px;
  }

  .landing .landing-content .container .right-side p {
    max-width: 90%;
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
  }

  .landing .landing-content .container .right-side p::after {
    content: "";
    position: absolute;
    width: 40%;
    background-color: white;
    height: 3px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .landing .landing-content .container .left-side p {
    margin-top: 10px;
    font-size: 22px;
  }
}

.whatsapp-bubble {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 85px;
  height: 85px;
  cursor: pointer;
  z-index: 9999;
  animation: pulse 1.8s infinite;
}

.whatsapp-bubble img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(1.12);
  }
  100% {
    transform: scale(1);
  }
}

.whatsapp-bubble:hover {
  transform: scale(1.15);
}

@media (max-width: 767px) {
  .whatsapp-bubble {
    width: 65px;
    height: 65px;
  }
}
