@import url("https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&family=Dancing+Script:wght@400..700&family=IBM+Plex+Sans+Arabic:wght@100;200;300;400;500;600;700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");

* {
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
:root {
  --main-color-font: #359381;
  --section-color: #003329;
  --font-title: "Comic Neue", sans-serif;
  --italic-font: "Dancing Script", serif;
}
html {
  scroll-behavior: smooth;
    overflow-x: hidden;
}
body {
  background-color: #fff;
  overflow-x: hidden;
  min-height: 100vh;
  user-select: none;
  section.home {
    height: 100vh;
    header {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      padding: 30px 100px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 100;
      h2.logo {
        color: var(--main-color-font);
        font-family: var(--italic-font);
        font-size: 50px;
        margin-left: 25px;
      }
      nav {
        margin-right: 45%;
        ul {
          padding: 10px;
          a {
            text-decoration: none;
            text-transform: capitalize;
            font-weight: 600;
            font-size: 25px;
            font-family: var(--font-title);
            color: var(--main-color-font);
            margin-inline: 20px;
            padding: 5px 10px;
          }
          & a:hover {
            color: white;
            background-color: var(--main-color-font);
            border-radius: 20px;
          }
        }
      }
    }
    section.parallax {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      height: inherit;
      z-index: -1;
      img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        pointer-events: none;
      }
      [src="photos/plant.png"] {
        top: -10%;
      }
    }
  }
  section.about {
    width: 100%;
    height: 100vh;
    position: relative;
    background-color: var(--section-color);
    h2 {
      color: #3b8f7c;
      font-size: 100px;
      font-weight: 900;
      font-family: var(--italic-font);
      text-align: center;
      text-transform: capitalize;
      letter-spacing: 7px;
      position: relative;
      top: 10%;
    }
    div.illustration {
      width: 600px;
      height: 500px;
      position: absolute;
      top: 35%;
      right: 5%;
      img {
        width: inherit;
        height: inherit;
        border-radius: 20px;
      }
    }
    div.text {
      width: 750px;
      position: absolute;
      top: 40%;
      left: 5%;
      p#text {
        color: #777;
        font-size: 25px;
        font-family: var(--font-title);
        text-transform: capitalize;
        line-height: 2rem;
      }
    }
  }
  section.Company_message {
    width: 100%;
    height: 500px;
    position: relative;
    div {
      width: inherit;
      height: inherit;
      position: inherit;
      h1 {
        width: inherit;
        font-size: 70px;
        font-family: var(--italic-font);
        text-transform: capitalize;
        text-align: center;
        position: absolute;
        top: 25%;
        color: #fff;
      }
      p {
        width: inherit;
        font-size: 50px;
        font-family: var(--italic-font);
        text-transform: capitalize;
        text-align: center;
        position: absolute;
        top: 50%;
        color: #fff;
      }
      div.background {
        width: inherit;
        height: inherit;
        background-image: url("../photos/green_space.jpg");
        background-size: cover;
        background-position: center;
        z-index: -1;
      }
      &::before {
        content: "";
        position: absolute;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.568);
        z-index: 1;
      }
      &:hover::before {
        background-color: rgba(0, 0, 0, 0);
      }
    }
  }
  section.service {
    width: 100%;
    height: 100vh;
    position: relative;
    h2 {
      color: #3b8f7c;
      font-size: 100px;
      font-weight: 900;
      font-family: var(--italic-font);
      text-align: center;
      text-transform: capitalize;
      letter-spacing: 7px;
      position: relative;
      top: 7%;
      z-index: 10;
    }
    section.container {
      width: 90%;
      display: flex;
      justify-content: space-around;
      align-items: center;
      position: absolute;
      top: 25%;
      left: 5%;
      div.card {
        width: 450px;
        height: 500px;
        border-radius: 10px;
        background-color: #efefef;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        cursor: pointer;
        margin-inline: 20px;
        div.pattern {
          width: 100%;
          height: 300px;
          padding: 10px;
          margin-bottom: 20px;
          img {
            width: inherit;
            height: inherit;
          }
        }
        div.contant {
          width: 100%;
          height: 200px;
          padding: 10px;
          p {
            width: inherit;
            text-align: center;
            font-family: var(--font-title);
            &:first-child {
              font-size: 25px;
              font-weight: 600;
              margin-bottom: 20px;
            }
            &:last-child {
              font-size: 20px;
              font-weight: 300;
            }
          }
        }
      }
    }
  }
  section.contact {
    width: 100%;
    height: 100vh;
    margin-bottom: 100px;
    position: relative;
    div.background {
      width: 100%;
      height: 100vh;
      position: absolute;
      top: 0%;
      img {
        width: inherit;
        height: inherit;
      }
    }
    h2 {
      color: #3b8f7c;
      font-size: 100px;
      font-weight: 700;
      font-family: var(--italic-font);
      text-align: center;
      text-transform: capitalize;
      letter-spacing: 7px;
      position: relative;
      top: 10%;
      z-index: 10;
    }
    div.contant {
      position: relative;
      top: 20%;
      left: 5%;
      h1 {
        color: #3c3a53;
        font-size: 30px;
        font-weight: 700;
        font-family: var(--font-title);
        text-transform: capitalize;
        line-height: 50px;
      }
      a {
        font-weight: 700;
        font-size: 33px;
        color: #3c3a53;
        text-decoration: none;
        font-family: var(--font-title);
      }
    }
    div.icons_contact {
      width: 300px;
      position: absolute;
      top: 45%;
      left: 6%;
      i {
        color: rgb(0, 0, 0);
        font-size: 30px;
        cursor: pointer;
        margin-inline: 20px;
      }
      .fa-phone {
        color: #c75353dc;
      }
      .fa-whatsapp {
        color: #25d366;
      }
      .fa-linkedin {
        color: #023e8a;
      }
      .fa-facebook {
        color: #3f37c9;
      }
    }
  }
  footer {
    width: 100%;
    height: 700px;
    position: relative;
    section {
      width: inherit;
      height: inherit;
      background-color: #004f3f;
      div.help {
        width: 300px;
        position: absolute;
        top: 20%;
        left: 5%;
        line-height: 2rem;
        text-align: center;
        h2 {
          color: #00b692;
          font-family: var(--font-title);
          font-size: 30px;
          text-transform: capitalize;
          margin-bottom: 20px;
        }
        a {
          font-size: 25px;
          font-weight: 600;
          font-family: var(--font-title);
          text-transform: capitalize;
          text-decoration: none;
          color: #00b692;
          display: block;
          &:hover {
            color: #fff;
          }
        }
      }
      div.jops {
        width: 300px;
        position: absolute;
        top: 60%;
        left: 5%;
        text-align: center;
        h2 {
          color: #00b692;
          font-family: var(--font-title);
          font-size: 30px;
          text-transform: capitalize;
          margin-bottom: 10px;
        }
        a {
          font-size: 25px;
          font-weight: 600;
          font-family: var(--font-title);
          text-transform: capitalize;
          text-decoration: none;
          color: #00b692;
          display: block;
          &:hover {
            color: #fff;
          }
        }
      }
      div.Social_Media {
        width: 300px;
        text-align: center;
        position: absolute;
        top: 20%;
        right: 5%;
        h2 {
          color: #00b692;
          font-family: var(--font-title);
          font-size: 30px;
          text-transform: capitalize;
          margin-bottom: 10px;
        }
        a {
          font-size: 25px;
          font-weight: 600;
          font-family: var(--font-title);
          text-transform: capitalize;
          text-decoration: none;
          color: #00b692;
          display: block;
          line-height: 2rem;
          &:hover {
            color: #fff;
          }
        }
      }
      div.Get_Sectoin {
        width: 300px;
        text-align: center;
        position: absolute;
        top: 45%;
        right: 5%;
        h2 {
          color: #00b692;
          font-family: var(--font-title);
          font-size: 30px;
          text-transform: capitalize;
          margin-bottom: 10px;
        }
        a {
          font-size: 25px;
          font-weight: 600;
          font-family: var(--font-title);
          text-transform: capitalize;
          text-decoration: none;
          color: #00b692;
          display: block;
          line-height: 2rem;
          &:hover {
            color: #fff;
          }
        }
      }
      div.Dev_Info {
        width: 300px;
        text-align: center;
        position: absolute;
        top: 20%;
        right: 42%;
        h2 {
          color: #00b692;
          font-family: var(--font-title);
          font-size: 30px;
          text-transform: capitalize;
          margin-bottom: 10px;
        }
        a {
          font-size: 25px;
          font-weight: 600;
          font-family: var(--font-title);
          text-transform: capitalize;
          text-decoration: none;
          color: #00b692;
          display: block;
          line-height: 2rem;
          &:hover {
            color: #fff;
          }
        }
      }
      div.sign {
        width: 300px;
        text-align: center;
        position: absolute;
        top: 50%;
        right: 42%;
        h2 {
          color: #00b692;
          font-family: var(--font-title);
          font-size: 30px;
          text-transform: capitalize;
          margin-bottom: 10px;
        }
        a {
          font-size: 25px;
          font-weight: 600;
          font-family: var(--font-title);
          text-transform: capitalize;
          text-decoration: none;
          color: #00b692;
          display: block;
          line-height: 2rem;
          &:hover {
            color: #fff;
          }
        }
      }
      div.Copyright {
        width: 100%;
        height: 50px;
        background-color: var(--main-color-font);
        position: absolute;
        bottom: 0%;
        a {
          font-size: 20px;
          display: block;
          text-align: center;
          text-decoration: none;
          text-transform: capitalize;
          color: #fff;
          margin-top: 15px;
        }
      }
    }
  }
}
