/* home.css */
html {
  scroll-behavior: smooth;
}
/* General Styles */
body {
  font-family: "roboto", sans-serif;
  line-height: 1.6;
  color: #333;
  margin: 0;
  padding: 0;
  background-color: white;
}
.main-section {
  background: url(../images/bg.svg) no-repeat center top;
  background-size: cover;
  padding: 0;
}
.logo-a {
  text-decoration: none;
  .oola-chat {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
    img{
      width: 80px;
    }
    h1 {
      font-size: 30px;
      font-weight: bold;
      color: black;
      margin: 0;
      margin-bottom: -12px;
    }
 
  }
}
section .sub-title {
  color: #00696a;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin: 0;
  text-align: center;
}

section .title {
  color: black;
  font-size: 35px;
  font-weight: 600;
  margin: 1rem 0;
  text-align: center;
  line-height: 1.4;
  @media only screen and (max-width: 768.1px) {
    font-size: 1.5rem;
  }
}
/* Header Styles */
header {
  background-color: transparent;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 60px;
  padding: 0.5rem 3rem;
  .nav-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    li {
      display: inline-block;
      margin: 0 1rem;
    }
    a {
      position: relative;
      text-decoration: none;
      font-size: 1.1rem;
      color: #333;
      font-weight: 500;
      transition: color 0.3s ease;
      letter-spacing: 0.8px;
    }
    a::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: -0.6rem;
      left: 0;
      background-color: #d36d52;
      transform: scaleX(0);
      transform-origin: bottom right;
      transition: transform 0.3s ease;
    }
    a:hover::before {
      transform: scaleX(1);
      transform-origin: bottom left;
    }
    a:hover {
      color: #d36d52;
    }
  }
  .nav-end{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    .lang{
      display: flex;
      justify-content: center;
      gap: 0.5rem;
      a{
        text-decoration: none;
        color: black;
      }
    }
  }
  .menu-icon {
    display: none;
  }
  @media only screen and (max-width: 850px) {
    .nav-list {
      display: none;
    }
    .nav-end{
      .lang{
        display: none;
      }
    }
    .nav-btn {
      display: none;
    }
    .menu-icon {
      display: block;
    }
  }
}
.scrolled-nav {
  background-color: #fff;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
}
.side-menu {
  position: absolute;
  width: 100%;
  left: 0;
  top: 60px;
  background-color: #fff;
  min-width: 200px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.3s ease;
  ul {
    list-style: none;
    padding: 1rem 0;
  }
  li {
    list-style: none;
    padding: 10px;
    div{
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    a {
      text-decoration: none;
      font-size: 1.1rem;
      color: #333;
      font-weight: 500;
      transition: color 0.3s ease;
      letter-spacing: 0.8px;
    }
    a::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 2px;
      bottom: -0.6rem;
      left: 0;
      background-color: #d36d52;
      transform: scaleX(0);
      transform-origin: bottom right;
      transition: transform 0.3s ease;
    }
    a:hover::before {
      transform: scaleX(1);
      transform-origin: bottom left;
    }
    a:hover {
      color: #d36d52;
    }
  }
}
.opened-menu {
  height: auto;
  transform: scaleX(1);
}
.main-btn{
  width: 17rem;
  margin-bottom: 3rem;
}
.get-started-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  border-radius: 25px;
  min-width: fit-content;
  text-align: center;
  padding: 0.6rem 1.5rem;
  letter-spacing: 0.7px;
  cursor: pointer;
  background: -moz-linear-gradient(
    to right,
    rgba(0, 30, 30, 1),
    rgba(0, 132, 132, 1)
  );
  background: -webkit-linear-gradient(
    to right,
    rgba(0, 30, 30, 1),
    rgba(0, 132, 132, 1)
  );
  background: linear-gradient(
    to right,
    rgba(0, 30, 30, 1),
    rgba(0, 132, 132, 1)
  );
  color: #fff;
  text-decoration: none;
}
.get-started-btn img {
  margin-inline-start: 0.6rem;
  max-width: 30px;
}

/* Section Styles */
section {
  padding: 4rem 1rem;
  margin: auto;
  @media only screen and (max-width: 768px) {
    padding: 3rem 1rem;
  }
  @media only screen and (max-width: 600px) {
    padding: 2rem 1rem;
  }
}

/* home styles */
section#home {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1rem 0;
  h1 {
    font-size: 3.2rem;
    margin-top: 2rem;
    width: 60%;
    text-align: center;
    color: #000;
    line-height: 1.4;
  }
  img {
    width: 70%;
  }
  @media only screen and (max-width: 1024px) {
    h1 {
      font-size: 3rem;
      margin-top: 2rem;
      width: 80%;
    }
  }
  @media only screen and (max-width: 992px) {
    h1 {
      font-size: 1.8rem;
      width: 90%;
    }
  }
  @media only screen and (max-width: 600px) {
    h1 {
      font-size: 1.6rem;
      width: auto;
    }
  }
}

.free-trial-btn {
  width: 13.5rem;
  margin-bottom: 3rem;
}

/* features styles */

section#features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  justify-items: center;
  text-align: center;
  .desc {
    color: black;
    font-size: 18px;
    width: 50%;
    margin: auto;
  }
  .features {
    display: flex;
    flex-direction: row;
    column-gap: 1rem;
    padding: 3rem 0 0;
    overflow-x: scroll;
    overflow-y: hidden;
    scrollbar-width: none;
    justify-content: flex-start;
    flex-wrap: nowrap;
  }
  .feature-col {
    min-width: 300px;
    width: 350px;
    text-align: center;
    margin-top: 1rem;
    border: 1px solid rgba(234, 236, 240, 1);
    border-radius: 20px;
    padding: 30px;
  }
  .feature-col img {
    width: 50px;
  }
  .feature-col h3 {
    color: #000;
    margin: 0.6rem;
  }
  .feature-col p {
    color: #101828;
    font-size: 14px;
  }
  @media only screen and (max-width: 768.1px) {
    .desc {
      width: 80%;
    }
  }
  @media only screen and (max-width: 600px) {
    .desc {
      font-size: 15px;
      width: 99%;
    }
    .feature-col {
      min-width: 250px;
    }
  }
}
section.oola-integration-section {
  padding: 2rem;
  text-align: center;
  background-image: linear-gradient(
    65.68deg,
    rgba(24, 47, 61, 0.1) 12.9%,
    rgba(0, 105, 106, 0.1) 38.34%,
    rgba(248, 140, 84, 0.1) 76.28%,
    rgba(255, 118, 112, 0.1) 94.08%
  );
  background-image: -moz-linear-gradient(
    65.68deg,
    rgba(24, 47, 61, 0.1) 12.9%,
    rgba(0, 105, 106, 0.1) 38.34%,
    rgba(248, 140, 84, 0.1) 76.28%,
    rgba(255, 118, 112, 0.1) 94.08%
  );
  background-image: -webkit-linear-gradient(
    65.68deg,
    rgba(24, 47, 61, 0.1) 12.9%,
    rgba(0, 105, 106, 0.1) 38.34%,
    rgba(248, 140, 84, 0.1) 76.28%,
    rgba(255, 118, 112, 0.1) 94.08%
  );
  .title {
    width: 40%;
    text-align: center;
    margin-inline: auto;
  }
  .img-row {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 1.5rem;
    margin-top: 2.5rem;
  }
  .img-col {
    display: flex;
    padding: 0.8rem;
    justify-content: center;
    align-items: center;
    box-shadow: 4px 9px 60px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    background-color: #fff;
  }
  .img-col img {
    max-width: 45px;
  }
  .btn{
    display: flex;
    justify-content: center;
    a{
      margin-bottom: 0;
      margin-top: 1rem;
    }
  }
  @media only screen and (max-width: 768.1px) {
    padding: 2rem 1rem;
    .title {
      width: auto;
    }
  }
  @media only screen and (max-width: 450px) {
    .img-row {
      overflow-x: scroll;
      overflow-y: hidden;
      scrollbar-width: none;
      justify-content: flex-start;
      flex-wrap: nowrap;
    }
  }
  .img-col img {
    max-width: 40px;
  }
}

/* Pricing styles */
section#pricing {
  padding: 1rem;
  margin-top: 2rem;
  max-width: 1000px;
  h1 {
    margin: 0 0 0.6rem;
    font-size: 2rem;
  }
  .price h1 small {
    font-size: 15px;
    font-weight: 500;
  }
  .price {
    display: flex;
    flex-direction: column;
    width: 60%;
    margin: 2rem auto;
    color: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    background-image: linear-gradient(
      65.68deg,
      rgba(255, 255, 255, 0.1) 12.9%,
      rgba(22, 222, 224, 0.1) 38.34%,
      rgba(255, 255, 255, 0.1) 76.28%,
      rgba(255, 255, 255, 0.1) 94.08%
    );
    background-color: rgba(38, 38, 38, 1);
    ul {
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 15px;
      color: #fff;
    }
    li {
      padding: 4px;
      img {
        vertical-align: middle;
        max-width: 20px;
        margin-inline-end: 0.6rem;
      }
    }
  }
  .free-trial-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    min-width: fit-content;
    text-align: center;
    padding: 0.6rem 1.5rem;
    letter-spacing: 0.7px;
    cursor: pointer;
    width: fit-content;
    margin-bottom: 0;
    margin-top: 2rem;
    background-color: #fff;
    color: #000;
    text-decoration: none;
    align-self: flex-end;
    img {
      margin-inline-start: 0.5rem;
      max-width: 30px;
    }
  }
  @media only screen and (max-width: 768.1px) {
    .price {
      width: 80%;
    }
  }
  @media only screen and (max-width: 600px) {
    .price {
      width: 60%;
      padding: 2rem;
    }
    .free-trial-btn {
      font-size: 12px;
      padding: 0.6rem 1rem;
    }
    h1 {
      font-size: 1.8rem;
    }
  }
}

/* Reviews styles */
.reviews-row {
  display: flex;
  flex-direction: row;
  column-gap: 1rem;
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin-top: 1rem;
  padding-inline: 2rem;
  .reviews-col {
    background-color: #ebf3f3;
    padding: 1.5rem;
    border-radius: 15px;
    width: 30%;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    .stars {
      padding: 0 0 1rem 0;
      img {
        max-width: 20px;
      }
      .review-num {
        margin-inline-start: 0.6rem;
      }
    }
    .author {
      display: flex;
      justify-content: space-between;
      h1 {
        margin: 0;
      }
    }
    .review-text {
      margin: 1rem 0 0;
      display: flex;
      flex-direction: column;
      row-gap: 1rem;
      font-size: 16px;
      line-height: 1.5;
      text-align: justify;
      img {
        max-height: 15px;
      }
      .quote-end {
        align-self: flex-end;
        margin-top: 3px;
        margin-inline-end: -5px;
      }
    }
  }
}
.stop-spending {
  background: url(../images/ellipse.svg) no-repeat left center;
  background-size: cover;
  background-color: #fbfbfb;
  padding: 4rem;
  .row {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: auto;
  }
  .text-col {
    display: flex;
    flex-direction: column;
    h3 {
      font-size: 1.8rem;
      font-weight: 500;
      width: 70%;
      color: #000;
    }
    .free-trial-btn {
      background: #001e1e;
      margin-bottom: 0;
    }
  }
  .img-col {
    max-width: 100%;
    text-align: center;
    img {
      max-width: 100%;
      width: 100%;
    }
  }
  @media only screen and (max-width: 768.1px) {
    padding: 3rem 1rem;
    .row {
      flex-direction: column;
    }
    .text-col {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      max-width: 400px;
      h3 {
        font-size: 1.4rem;
      }
    }
    .img-col {
      max-width: initial;
      img {
        max-width: auto;
        width: 100%;
      }
    }
  }
  @media only screen and (max-width: 400px) {
    .text-col {
      max-width: 300px;
      h3 {
        font-size: 1.1rem;
      }
      .free-trial-btn {
        background: #001e1e;
        margin-bottom: 0;
        font-size: 12px;
        width: 100px;
      }
    }
    .img-col {
      width: auto;
    }
  }
}

/* Footer Styles */
.footer {
  background-color: #001e1e;
  color: white;
  padding: 1rem 1rem 0;
  .before-footer {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    padding: 3rem 0;
    .oola-chat {
      width: 20%;
      min-width: 300px;
      span{
        font-size: 25px;
        font-weight: bold;
      }
      h1 {
        font-size: 2rem;
        margin: 0;
      }
      h3 {
        margin: 2rem 0 0;
      }
      a{
        text-decoration: none;
        color: rgb(207, 207, 207);
        font-weight: bold;
      }
    }
    .subscribe {
      background-color: rgba(255, 255, 255, 0.1);
      border-radius: 25px;
      display: flex;
      justify-content: flex-start;
      align-items: center;
      width: fit-content;
      padding: 0.3rem;
      margin-top: 1rem;
      input {
        background: transparent;
        border-radius: 20px;
        padding: 0.6rem;
        border: none;
      }
      input:focus,
      input:focus-visible {
        border: none;
        outline: transparent;
      }
      a {
        border-radius: 25px;
        background-color: #fff;
        text-decoration: none;
        color: #000;
        padding: 0.5rem 1rem;
      }
    }
    .footer-title {
      font-weight: 500;
      color: rgba(255, 255, 255, 0.5);
      margin: 0;
    }
    ul {
      list-style: none;
      margin: 0;
      padding: 0;
      font-size: 15px;
      color: #fff;
    }
    li {
      padding: 4px;
      a {
        text-decoration: none;
        color: #fff;
        font-size: 16px;
      }
    }
  }
  hr {
    border-color: rgba(255, 255, 255, 0.1);
    width: 80%;
    margin: 0 auto;
  }
  footer p {
    text-align: center;
    margin: 0;
    padding: 1rem 0 1.5rem;
  }
  @media only screen and (max-width: 600px) {
    .before-footer {
      flex-direction: column;
      padding: 3rem 0;
      .oola-chat {
        width: auto;
        min-width: 300px;
        padding-bottom: 2rem;
        h1 {
          font-size: 2rem;
          margin: 0;
        }
        h3 {
          margin: 1rem 0 0;
        }
      }
    }
  }
}
@media screen and (max-width: 400px) {
  .main-btn{
    width: 13rem;
    margin-bottom: 3rem;
  }
}
.ar-dir{
  direction: rtl;
}
.en-dir{
  direction: ltr;
}
.ar-arrow{
  transform: rotate(180deg);
}
.color-accent {
  color: #e07a76;
}
.color-primary {
  color: #00696a;
}
