@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css");
:root {
  --primary-color: #ffa03f;
  --primary-color-dark: #e08b37;
  --text-dark: #020617;
  --text-light: #1e293b;
  --extra-light: #f3f4f6;
  --white: #ffffff;
  --max-width: 1200px;
  --pr-color: #ff8e2b;
  --bg_pr--color: #e0eaf5;
  --bg_sec-color: #0d2137;
  --light-color: #2e77ae;
  --prim: #0d2137;
  --sec: #ff8e2b;
  --bg: #2e77ae;
  --kl: #e0eaf5;
  --ff: #f5f5f5;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  overflow-x: hidden;
}

.header {
  background-color: #212121;
  color: var(--kl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 120px;
}

.social-icons a,
.contact-info a,
.language-switch a,
.my-algedra {
  color: var(--kl);
  text-decoration: none;
  margin: 0 10px;
  font-size: 13px;
}
.social-icons .active {
  color: #fff;
}

.social-icons a:hover,
.contact-info a:hover,
.language-switch a:hover,
.my-algedra:hover {
  color: var(--sec);
}

.social-icons i {
  font-size: 13px;
}

.contact-info {
  display: flex;
  gap: 10px;
}
.contact-info a {
  margin-top: 3px;
}
.contact-info i {
  padding-right: 5px;
}

.right-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.language-switch i {
  margin-right: 5px;
}

.my-algedra i {
  margin-right: 5px;
}
@media (max-width: 1024px) {
  .header {
    padding: 10px 60px;
  }
  .right-section {
    gap: 15px;
  }
  .social-icons .active {
    color: #fff;
  }
}

@media (max-width: 768px) {
  .header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 30px;
  }
  .right-section {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
  .social-icons a,
  .contact-info a,
  .language-switch a,
  .my-algedra {
    font-size: 10px;
  }
  .social-icons .active {
    color: #fff;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 10px 15px;
  }
  .right-section {
    gap: 5px;
  }
  .social-icons a,
  .contact-info a,
  .language-switch a,
  .my-algedra {
    font-size: 7px;
    font-weight: 600;
    margin: 0 5px;
  }
  .social-icons .active {
    color: #fff;
  }
}

/*icons*/
.icons-col {
  top: 200px;
  left: 0;
  width: 76px;
  position: fixed;
  z-index: 2;
}
.icons {
  display: flex;
  flex-direction: column;
  padding: 13% 16%;
  z-index: 1;
  position: absolute;
  background-color: #f5f5f5;
}
.icons i {
  font-size: 26px;
  padding: 20% 0;
  color: #212121;
}
.icons i:hover {
  cursor: pointer;
  transform: scale(1.3);
}
/*navbar*/
.logo img {
  width: 8rem;
  cursor: pointer;
  transition: 0.3s ease;
  padding-left: 50px;
}
.navbar {
  display: flex;
  text-align: center;
  position: absolute;
  padding: 2% 3%;
  width: 100%;
  background-color: transparent;
  transition: background-color 0.5s;
  z-index: 1;
  top: 0;
}
.navbar-items {
  flex: 1;
  text-align: right;
  margin-top: 12px;
}
.navbar-items ul {
  padding-right: 20px;
}
.navbar-items ul li {
  list-style: none;
  display: inline-block;
}
.navbar-items ul li a {
  color: var(--sec);
  padding: 0 16px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
}
.navbar-items ul li a:hover {
  color: #212121;
}
.menu {
  display: none;
  cursor: pointer;
}
/*responsive*/
@media only screen and (max-width: 887px) {
  .navbar-items {
    position: absolute;
    background-color: #f5f5f5;
    height: 100vh;
    width: 100%;
    right: 0;
    top: 0;
    text-align: left;
    z-index: 2;
    margin-top: 0;
    transition: all 1s ease-out;
  }
  .navbar-items ul li {
    display: block;
    padding: 16px 0;
    margin-left: 15px;
  }
  .navbar-items ul {
    padding-top: 48%;
    padding-right: 5px;
    text-align: center;
  }
  .navbar-items ul li a {
    color: var(--sec);
    padding: 0 18px;
    font-size: 22px;
  }
  .navbar-items ul li a:hover {
    color: #121212;
  }
  .menu {
    display: block;
    z-index: 3;
    position: absolute;
    color: var(--sec);
    right: 7%;
    top: 5px;
    font-size: 35px;
    padding-top: 30px;
  }
  .h-class {
    height: 100vh;
    opacity: 0;
  }
  .v-class {
    opacity: 0;
  }
  .A_box {
    width: 62%;
    top: 2rem;
  }
  .h-class {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease;
    visibility: hidden;
  }

  .v-class {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease;
    visibility: hidden;
  }

  .h-class.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  .v-class.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }
}
.section__container {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
}

.section__subheader {
  margin-bottom: 10px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--primary-color);
}

.section__header {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 3.25rem;
}

.section__header span {
  color: var(--primary-color);
}

.section__description {
  color: var(--text-light);
  line-height: 1.75rem;
}

.btn {
  padding: 0.75rem 1.5rem;
  outline: none;
  border: none;
  font-size: 1rem;
  color: var(--white);
  background-color: var(--primary-color);
  border-radius: 5px;
  transition: 0.3s;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--primary-color-dark);
}

img {
  display: flex;
  width: 100%;
}

a {
  text-decoration: none;
  transition: 0.3s;
}

ul {
  list-style: none;
}

html,
body {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

.header__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
  margin-top: 100px;
  padding-bottom: 0rem;
}

.header__content h1 {
  margin-bottom: 2rem;
  font-size: 4rem;
  color: var(--text-dark);
  text-align: center;
}

.header__content h1 span {
  text-decoration: underline;
  text-decoration-color: var(--primary-color);
}

.header__content .section__description {
  text-align: center;
}

.header__image {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, 1fr);
  grid-auto-rows: 90px;
}

.header__image img {
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}

.header__image img:nth-child(1) {
  grid-area: 1/1/4/3;
}

.header__image img:nth-child(2) {
  grid-area: 4/1/7/3;
}

.header__image img:nth-child(3) {
  grid-area: 2/3/6/6;
}

.header__image img:nth-child(4) {
  position: absolute;
  top: -2rem;
  right: 5rem;
  height: 10rem;
  width: unset;
  object-fit: contain;
  aspect-ratio: 1;
  box-shadow: none;
}

.custom-shape-divider-top-1740400380 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-top-1740400380 svg {
  position: relative;
  display: block;
  width: calc(113% + 1.3px);
  height: 127px;
}

.custom-shape-divider-top-1740400380 .shape-fill {
  fill: #ffffff;
}

.custom-shape-divider-bottom-1740400602 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1740400602 svg {
  position: relative;
  display: block;
  width: calc(113% + 1.3px);
  height: 127px;
}

.custom-shape-divider-bottom-1740400602 .shape-fill {
  fill: #ffffff;
}

.choose__container {
  display: grid;
  gap: 2rem;
  overflow: hidden;
  background-color: #121212;
}

.bg_choose {
  background-color: #121212;
  position: relative;
}

.choose__image img {
  max-width: 475px;
  margin-inline: auto;
  border-radius: 2rem;
  box-shadow: -11px 11px 20px 11px #2e77ae;
}

.choose__list {
  margin-top: 4rem;
  display: grid;
  gap: 3rem;
}

.choose__list li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.choose__list li span {
  display: inline-block;
  padding: 6px 14px;
  font-size: 2rem;
  color: var(--primary-color);
  border-radius: 10px;
  box-shadow: 0px 0px 30px #2e77ae;
}

.choose__list li h4 {
  margin-bottom: 5px;
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--extra-light);
}

.choose__list li p {
  color: var(--bg_pr--color);
}

.choose__container .btn {
  padding: 1.25rem 2.5rem;
  font-size: 1.5rem;
  border-radius: 1.25rem;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 2rem;
  font-size: 1rem;
}

.popular__container {
  position: relative;
  isolation: isolate;
  padding-bottom: 1rem;
}
#aboutQ {
  color: var(--white);
}

.popular__bg {
  position: absolute;
  left: 75%;
  top: 0;
  transform: translate(-65%, -50%) rotate(-135deg);
  height: 12rem;
  width: unset;
  aspect-ratio: 1;
  object-fit: contain;
}

.explore__container {
  display: grid;
  gap: 2rem 1rem;
  overflow: hidden;
}

.explore__image img {
  max-width: 475px;
  margin-inline: auto;
  border-radius: 2rem;
  box-shadow: -30px -30px 0px rgba(0, 0, 0, 0.1);
}

.explore__content .section__description {
  padding-block: 2rem;
}

.explore__content .btn {
  padding: 1.25rem 2.5rem;
  font-size: 1.5rem;
  border-radius: 1.25rem;
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
  border-radius: 2rem;
  font-size: 1rem;
}

.explore__grid {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.explore__grid h4 {
  font-size: 3rem;
  font-weight: 500;
  color: var(--text-dark);
}

.explore__grid p {
  color: var(--text-light);
}

.main2 {
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
  background-color: #121212;
  color: #ffffff;
  overflow: hidden;
  border-radius: 40px 40px 0px 0px;
}

#hero {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 5rem;
}

.container {
  position: relative;
  width: 95%;
  max-width: 1600px;
  background-color: #1e1e1e;
  padding: 2rem;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.hero__text {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin-bottom: 2rem;
}

.sub__header {
  grid-column: span 12;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.circle {
  width: 0.5rem;
  height: 0.5rem;
  background-color: #e08b37;
  margin-right: 0.5rem;
  border-radius: 50%;
  margin-bottom: 0.125rem;
}

.sub__header h4 {
  font-weight: bold;
}

.hero__header {
  grid-column: span 12;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: clamp(1.5rem, 7vw, 4rem);
  line-height: clamp(2rem, 7.25vw, 5rem);
  word-wrap: break-word;
}

@media (max-width: 768px) {
  .hero__header {
    line-height: 1.2;
    font-size: 2rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__header {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }
}

.hero__intro {
  grid-column: span 15;
  margin-bottom: -3rem;
  opacity: 0.8;
}

.image__container {
  position: relative;
  width: 100%;
  padding-top: 40%;
  height: 0;
}

.main__hero__image {
  position: absolute;
  top: 0;
  left: 0;
}

.bottom__div {
  position: relative;
  width: 95%;
  padding-top: 30px;
  max-width: 1600px;
  display: flex;
}

.left {
  position: absolute;
  width: 50%;
  height: 100%;
  top: 0;
  left: 0;
}

.curve {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #1e1e1e;
}

.cover {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #121212;
  border-top-right-radius: 20px;
  z-index: 1;
}
.right {
  position: absolute;
  top: 0;
  padding: 1rem;
  left: 50%;
  width: 50%;
  min-height: 20px;
  background-color: #1e1e1e;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.services {
  padding: 1rem;
  width: 100%;
  text-align: center;
  background-color: #121212;
  border-radius: 15px;
}

.carousel {
  position: relative;
  width: 100%;
  margin-top: 1rem;
  overflow: hidden;
}

.carousel__inner {
  position: relative;
  display: flex;
  width: 200%;
  animation: marquee 15s linear infinite;
}

.item {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.item img {
  width: 60%;
}

.left__carousel {
  position: absolute;
  left: 0;
  top: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(270deg, transparent, #1e1e1e);
  z-index: 1;
}

.right__carousel {
  position: absolute;
  right: 0;
  top: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, transparent, #1e1e1e);
  z-index: 1;
}

@keyframes marquee {
  0% {
    transform: translate(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

#about {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
}

.about__container {
  position: relative;
  top: -5rem;
  width: 95%;
  max-width: 1600px;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.about__text {
  grid-column: span 5;
  padding-left: 2rem;
  line-height: 1.75rem;
  width: 50%;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}

/* Wrapper */
.wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  background-color: #121212;
  margin-bottom: 100px;
}

.wrapper > .container1 {
  /* height: 400px; */
  width: 95%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  gap: 10px;
  overflow-x: auto;
  padding: 0 1rem;
  padding-bottom: 15px;
  scroll-behavior: smooth;
}

.section__container1 {
  max-width: var(--max-width);
  margin: auto;
  padding: 5rem 1rem;
  text-align: center;
}

.section__header1 h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section__description {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: var(--text-light);
  line-height: 1.8rem;
  max-width: 800px;
  margin: 0 auto;
}

.card {
  width: 80px;
  border-radius: 2rem;
  background-size: cover;
  cursor: pointer;
  overflow: hidden;
  margin: 0 5px;
  display: flex;
  align-items: flex-end;
  background-position: center;
  transition: all 0.7s ease-in-out;
  box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.8);
  opacity: 0.6;
  transform: scale(0.9);
}

.card > .row {
  color: white;
  display: flex;
  flex-wrap: nowrap;
}

.card > .row > .icon {
  background: #212121;
  color: white;
  border-radius: 50%;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 15px;
}

.card > .row > .description {
  display: flex;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  height: 80px;
  width: 520px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
  font-size: 1vw;
}

.description p {
  color: #b0b0ba;
  padding-top: 5px;
}

.description h4 {
  text-transform: uppercase;
}

input {
  display: none;
  width: 10%;
}

input:checked + label {
  width: 80%;
  opacity: 1;
  transform: scale(1);
}

input:checked + label .description {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: opacity 0.5s ease-in-out, transform 0.5s ease-in-out;
}

input:checked + label + label {
  opacity: 0.8;
  transform: scale(0.95);
}

.card {
  transition: transform 0.7s ease, opacity 0.5s ease;
}

/* Cards with Images */
.card[for="c1"] {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)),
    url("../img/offices.jpg");
}
.card[for="c2"] {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)),
    url("../img/plots.jpg");
}
.card[for="c3"] {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)),
    url("../img/townhouse1.jpg");
}
.card[for="c4"] {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)),
    url("../img/appartment.jpg");
}
.card[for="c5"] {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)),
    url("../img/studio.jpg");
}

@media screen and (max-width: 450px) {
  .footer__container {
    gap: 3rem;
    text-align: center;
  }
  body,
  html {
    overflow-x: hidden;
  }
}

@media (max-width: 1024px) {
  .wrapper {
    height: 70vh;
  }

  .container1 {
    gap: 5px;
  }

  .card {
    width: 70px;
    margin: 0 3px;
  }

  .description {
    width: 250px !important;
  }
  body,
  html {
    overflow-x: hidden;
  }
}

@media (max-width: 768px) {
  .card {
    width: 30%;
    opacity: 0.5;
    transform: scale(0.85);
    transition: all 0.5s ease-in-out;
    display: none;
  }

  .card.active {
    width: 80%;
    opacity: 1;
    transform: scale(1);
  }

  .card.prev,
  .card.next {
    display: flex;
    width: 10%;
    opacity: 0.8;
    transform: scale(0.9);
  }
}

@media (max-width: 480px) {
  .wrapper {
    height: 50vh;
  }

  .card.prev,
  .card.next {
    display: flex;
    width: 30%;
    opacity: 0.8;
    transform: scale(0.9);
  }
  .card {
    width: 50px;
  }

  input:checked + label {
    width: 230px;
  }

  .description {
    width: 110px !important;
    font-size: 2vw !important;
  }
  body,
  html {
    overflow-x: hidden;
  }
}

@media (max-width: 1024px) {
  .about__text {
    grid-column: span 12;
    padding-left: 1.5rem;
  }
  body,
  html {
    overflow-x: hidden;
  }
}

@media (max-width: 768px) {
  .about__text {
    grid-column: span 12;
    padding-left: 1rem;
    line-height: 1.5rem;
    text-align: center;
  }
  #about {
    flex-wrap: wrap;
  }
  body,
  html {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .about__text {
    font-size: 2vw;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@media (width > 768px) {
  .header__container {
    padding-top: 2rem;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    isolation: isolate;
  }

  .header__content {
    position: relative;
    padding-bottom: 10rem;
  }

  .header__content :is(h1, .section__description) {
    text-align: left;
  }

  .header__content form {
    position: absolute;
    width: max-content;
    padding: 1.5rem;
    margin: 0;
    bottom: 0;
    border-radius: 1.5rem;
    backdrop-filter: blur(5px);
    z-index: 10;
  }

  .choose__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .explore__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

  .explore__content {
    grid-area: 1/1/2/2;
  }
}

@media (width > 1024px) {
  .header__image {
    gap: 1.5rem;
    grid-auto-rows: 90px;
    padding-bottom: 4rem;
  }

  .about__text {
    grid-column: span 12;
    padding-left: 1.5rem;
  }
  .container1 {
    height: 400px;
  }
}

footer {
  position: relative;
  width: 100%;
  background: #f5f5f5;
  min-height: 100px;
  padding: 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 50px;
}
.footer__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  gap: 10rem;
}

.footer__section {
  flex: 1;
  min-width: 200px;
}

.footer__section h4 {
  font-size: 1.2em;
  margin-bottom: 10px;
  color: #f68002;
  font-size: 1.5rem;
  font-weight: 900;
}

.footer__section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__section ul li {
  margin-bottom: 5px;
}

.footer__section ul li a {
  text-decoration: none;
  font-size: 0.9em;
  transition: color 0.3s;
  background: transparent;
  color: #1e1e1e;
  font-weight: 600;
}

.footer__section ul li a:hover,
.footer__section span {
  color: #f68002;
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.footer__social a {
  background-color: transparent;
  color: white;
  font-size: 1.2em;
  transition: color 0.3s;
}

.footer__social a:hover {
  color: #f68002;
}

.footer__bottom {
  text-align: center;
  border-top: 1px solid #1e1e1e;
  margin-top: 20px;
  padding-top: 20px;
  font-size: 0.9em;
  width: 80%;
}

.footer__bottom p {
  margin: 5px 0;
  color: #1e1e1e;
}
.footer__bottom span {
  color: #f68002;
}
.separated__ul {
  display: flex;
  gap: 2rem;
}
.contact__ul {
  font-size: 0.9rem;
}
.footer__contact {
  width: 30rem;
}
#footer__section--logo {
  min-width: fit-content;
  max-width: 200px;
  display: flex;
  gap: 2rem;
}
#footer__section--logo p {
  max-width: 200px;
  color: #1e1e1e;
}
#footer__section--logo img {
  height: 10rem;
  width: 8rem;
  transition: 0.5s ease;
  filter: brightness(0.9);
}
#footer__section--logo img:hover,
.navbar__logo img:hover {
  filter: brightness(1);
}

footer .wave {
  position: absolute;
  top: -100px;
  left: 0px;
  width: 100%;
  height: 100px;
  background: url(../img/wave.png);
  background-size: 1000px 100px;
}

#wave1 {
  z-index: 1000;
  opacity: 1;
  bottom: 0;
  animation: animationwave 4s linear infinite;
}

#wave2 {
  z-index: 999;
  opacity: 0.5;
  bottom: 10px;
  animation: animationwave_02 4s linear infinite;
}

#wave3 {
  z-index: 1000;
  opacity: 0.2;
  bottom: 15px;
  animation: animationwave 3s linear infinite;
}

#wave4 {
  z-index: 999;
  opacity: 0.7;
  bottom: 20px;
  animation: animationwave_02 3s linear infinite;
}

@keyframes animationwave {
  0% {
    background-position: 1000px;
  }
  100% {
    background-position: 0px;
  }
}

@keyframes animationwave_02 {
  0% {
    background-position: 0px;
  }
  100% {
    background-position: 1000px;
  }
}

@media screen and (max-width: 450px) {
  .footer__container {
    gap: 3rem;
    text-align: center;
  }
  body,
  html {
    overflow-x: hidden;
  }
}
/* تحسين استجابة الفوتر على الشاشات المختلفة */
@media (max-width: 992px) {
  .footer__container {
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    text-align: center;
  }

  .footer__section {
    width: 100%;
  }

  .footer__bottom {
    width: 90%;
  }
  footer .wave {
    top: -80px;
  }
}

@media (max-width: 768px) {
  footer {
    padding: 20px;
  }

  .footer__container {
    gap: 3rem;
  }

  .footer__bottom {
    font-size: 0.8em;
  }

  #footer__section--logo {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }

  #footer__section--logo img {
    height: 8rem;
    width: 6rem;
  }
}

@media (max-width: 576px) {
  .footer__container {
    gap: 2rem;
  }

  .footer__section h4 {
    font-size: 1.3rem;
  }

  .footer__bottom {
    width: 100%;
  }

  .footer__social {
    justify-content: center;
  }
  .footer__section ul {
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .footer__bottom {
    font-size: 0.75em;
  }

  .footer__section ul li a {
    font-size: 0.85em;
  }
}

/* تحسين حركة الأمواج (wave) على الشاشات الصغيرة */
@media (max-width: 768px) {
  .wave {
    height: 80px;
    background-size: 800px 80px;
  }
}

@media (max-width: 480px) {
  .wave {
    height: 60px;
    background-size: 600px 60px;
  }
}

/* @font-face {
  font-family: 'CustomFont';
  src: url('font.woff2') format('woff2');
  font-display: swap;
} */