/* ================= imports ==============*/
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');



/*================== CSS variables ========== */

:root {
  --container-width: 70%;
  /* colors */
  --color-primary: #9859e3;
  --color-primary-rgb: 152, 89, 227;
  --color-primary-accent: #542ac3;
  --color-secondary: #ff6397;
  --color-secondary-accent: #fe7ea9;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-grey: #8491a5;
  --color-grey-rgb: 132, 145, 165;
  --primary-linear-gradient: linear-gradient(90deg,
      rgba(152, 89, 227, 1)0%,
      rgba(84, 42, 195, 1)100%);
  --secondary-linear-gradient: linear-gradient(90deg,
      rgba(255, 99, 151, 1)0%,
      rgba(254, 126, 169, 1)100%);

  /* fonts and typography */
  --body-font: "Mulish", sans-serif;
}

/*================ Base =================*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--body-font);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: var(--color-white);
}

ul {
  list-style: none;
}

/*=================== Layouts ================*/
.container {
  width: var(--container-width);
  margin: 0 auto;
}

.navbar {
  box-shadow: rgb(0, 0, 0, 0.1) 0px 4px 5px;

}

/*==================== Reusable Classes & Selectors =============== */
section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.btn {
  display: block;
  padding: 10px 30px;
  margin: 20px 0 20px 0;
  cursor: pointer;
  border-radius: 50px;
  width: fit-content;
}

.btn-primary {
  background: var(--primary-linear-gradient);
  color: var(--color-white);
}

.btn-secondary {
  background: var(--secondary-linear-gradient);
  color: var(--color-white);
}

.tag {
  display: block;
  padding: 3px 15px;
  margin: 20px 0 20px 0;
  cursor: pointer;
  border-radius: 50px;
  width: fit-content;
  color: var(--color-white);
  text-transform: uppercase;
  font-size: 0.8rem;
  font-weight: 600;
}

/*====================== Header ==================== */
header {
  background: var(--primary-linear-gradient)
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
  color: var(--color-white);
}

.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  padding-left: 15% !important;
  padding-right: 15% !important;
  z-index: 999;
  background: var(--color-primary-accent);
  padding: 2rem;
  box-shadow: rgba(0, 0, 0, 0.1)0px 4px 6px -1px, rgb(0, 0, 0, 0.06)0px 2px 4px -1px;
}

.nav__logo {
  color: var(--color-secondary)
}

.nav__logo img {
  height: 100px;
}

.nav__menu {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: flex-end;
}

.nav__link {
  color: var(--color-white);
}

.mb-show {
  display: none;

}

.show {
  right: 0;
}

/*======================== Home ===================*/
.home {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.home__image img {
  height: 100%;
  width: 100%;
}

.home__data,
.home__image {
  flex: 100%;
}

.home__data-title {
  color: var(--color-white);
  font-size: 2.5rem;
}

.home__data-title span {
  font-weight: 200;
}

.home__data-desc {
  margin-top: 2rem;
  color: var(--color-white);
  line-height: 2;
}

.home__image {
  width: 100%;
  border-radius: 10px;
}

/* ====================Slider Section============= */
.slider {
  display: flex;
  background: #8491a5;
}

.slider__container {
  display: flex;
  border-bottom: 1px solid var(--color-grey);

}

.slider__title {
  font-weight: 800;
}

.slider__data {
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}

.slider__desc {
  padding-top: 4rem;
  padding-bottom: 4rem;

}

.slider__container img {
  width: 80%;
  height: 80%;
  /* border-radius: 10px; */
}

/*===================== About ======================*/
.about {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background-image: url(/assets/img/aboutgif.mp4);
  background-repeat: no-repeat;
  background-size: cover;

}

.about__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.5rem;
}

.about__img img {
  max-width: 100%;
  height: 100%;
  border-radius: 10px;
}

.about__tag {
  color: var(--color-primary);
  background-color: rgba(var(--color-primary-rgb), 0.2);
}

.about__data-title {
  font-size: 2.5rem;
  font-weight: 200;
}

.about__data-desc {
  font-size: 0.8rem;
  padding: 10px 0 10px 0;
}

.about__data-quote {
  font-size: 0.8rem;
  color: var(--color-grey);
  padding: 10px 0 10px 0;
}

.about__data-quote i {
  font-size: 2.5rem;
  color: var(--color-secondary);
}

/*====================== Why Choose Us =================== */
.whychooseus {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.whychooseus__tag span {
  color: var(--color-primary);
  background-color: rgba(var(--color-primary), 0.2);
  margin: 0 auto;
}

.whychooseus__title {
  font-size: 2.5rem;
  font-weight: 200;
  text-align: center;
  padding-top: 1rem;
}

.whychooseus__data {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.whychooseus__card {
  box-shadow: rgb(0, 0, 0, 0.1) 0px 4px 12px;
  padding: 30px;
  text-align: center;
}

.whychooseus__card i {
  display: inline-block;
  font-size: 3rem;
  padding: 15px;
  color: var(--color-primary);
}

.whychooseus__card-title {
  font-size: 1.5rem;
  font-weight: 300px;
}

.whychooseus__card-desc {
  font-size: 0.8rem;
  padding: 10px 0 10px 0;
  color: var(--color-grey);
}

/*============================= Services ==================*/
.services {
  background: var(--primary-linear-gradient);
}

.services__tag {
  background-color: rgba(255, 255, 255, 0.2);
}

.services__title {
  font-size: 2.5rem;
  font-weight: 200;
  color: var(--color-white);
}

.services_data {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.services__single {
  display: inline-block;
  gap: 1.5rem;
  padding: 5px;
  flex: 25%;
  align-items: center;
}

.services__single i {
  font-size: 2rem;
  color: var(--color-secondary);
}

.services-desc {
  font-size: 1rem;
  padding: 10px 0 10px 0;
}

.services__buttons {
  display: flex;
  justify-content: flex-start;
  gap: 2rem;
}


/*===================== Testimonials ================*/

.testimonials__tag span {
  color: var(--color-primary);
  background-color: rgba(var(--color-primary-rgb), 0.2);
  margin-left: auto;
}

.testimonials__tittle {
  font-size: 2.5rem;
  font-weight: 200;
  text-align: right;
}

.testimonial__data {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.testimononial__single {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--primary-linear-gradient);
  border-radius: 10px;
  padding: 4rem 8rem;
}

.testimonial__img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  box-shadow: rgb(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.21)0px 3px 6px;

}

.testimonial__text {
  font-size: 1.2rem;
  color: var(--color-white);
  padding: 20 px 0 20px 0;
  text-align: center;
}

.testimonial__name {
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--color-white);
}

/* Swiper slider CSS */
.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  /* background: #fff; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  height: 40px;
  width: 40px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 1.2rem;
}

.swiper-pagination {
  bottom: 85px !important;
}

.swiper-pagination-bullet {
  background-color: var(--color-grey);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: var(--color-white) !important;

}

/*========================= Contact Us ============================*/
.contact {
  background: var(--primary-linear-gradient);
}

.contact__tag {
  color: rgba(255, 255, 255, 0.2);
  color: var(--color-white);
  text-align: center;
}

.contact__title {
  font-size: 2.5rem;
  font-weight: 200;
  color: var(--color-white);
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  padding: 20px 0;
}

.contact__form>input:not(.btn) {
  height: 50px;

}

.contact__form>textarea {
  resize: none;
  padding-top: 10px;
}

.contact__form>input:not(.btn),
.contact__form>textarea {
  width: 40%;
  border: 1px solid --color-secondary;
  border-radius: 25px;
  outline: none;
  text-indent: 10px;
}

.contact__button-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 40%;
}

.contact__btn {
  border: none;
}

/* =======================Funding Methods===================== */
.mini-footer {
  border-bottom: 1px solid var(--color-grey);


}

.mini__footer h2 {
  font-size: 2.5rem;
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}


.card--footer {
  margin-left: 4rem;
  margin-right: 4rem;
  text-align: center;

}

.card--footer img {
  height: 30px;
  width: 75px;
  padding-right: 20px;
  margin-bottom: 1rem;
}

/*======================== Footer ======================== */
.footer__container {
  padding-top: 4rem;
  padding-bottom: 4rem;

}

.footer__container,
.footer__navigation,
.footer__links {
  display: flex;
  justify-content: space-between;
  gap: 2.5rem;
  flex: 25%;
}

.footer__logo span {
  color: var(--color-secondary);
}

.footer__text {
  padding-top: 2rem;

}

.footer__navigation h2,
.footer__contact h2 {
  font-weight: 300;
  padding-bottom: 1rem;

}

.footer__links {
  flex-direction: column;
  gap: 0.5rem;

}

.footer__links>a,
.footer__contact>a,
.footer__social>a {
  color: var(--color-black);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer__contact i {
  color: var(--color-secondary);
}

.footer__social {
  padding-right: 20px;
}

.footer__copyright {
  text-align: center;
  padding: 20px 0;
  margin-top: 10px;
  border-top: 1px solid var(--color-grey);
}

/*====================== Responsive Design ======================*/

/*=============== mobile devices ================*/
@media screen and (max-width: 480px) {
  .nav__menu {
    position: fixed;
    right: -80%;
    width: 40%;
    height: 100%;
    z-index: 1;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--color-primary);
    /* background-color: var(--color-white); */
    top: 5rem;
    padding: 20px;
    transition: .5s;
  }

  .show {
    right: 0;

  }

  .mb-show {
    display: inline-block;
    padding: 5px 10px;
    cursor: pointer;
  }

  .bar1,
  .bar2,
  .bar3 {
    width: 35px;
    height: 5px;
    background-color: var(--color-white);
    margin: 6px 0;
    transition: 0.4s;
  }

  /* Rotate first bar */
  .change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
  }

  /* Fade out the second bar */
  .change .bar2 {
    opacity: 0;
  }

  /* Rotate last bar */
  .change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
  }

  .nav__menu.nav__list a {
    color: var(--color-primary-accent);
  }

  .home {
    flex-direction: column-reverse;
  }

  .home__data-title {
    font-size: 2rem;

  }

  .slider__container {
    flex-direction: column-reverse;
  }

  .slider__title {
    font-size: 1.2rem;
  }

  .about__container {
    flex-direction: column-reverse;
  }

  .about__data-title {
    font-size: 2rem;
  }

  .whychooseus__title {
    font-size: 2rem;
  }

  .whychooseus__data {
    flex-direction: column;
    row-gap: 2rem;
  }

  .services__title {
    font-size: 2rem;
  }

  .services_data {
    flex-direction: column;
  }

  .services__buttons {
    flex-direction: column;
    align-items: center;
  }

  .services__buttons a {
    margin: 0;
  }

  .testimonials__tittle {
    font-size: 2rem;
  }

  .contact__title {
    font-size: 2rem;
  }

  .contact__form input:not(.btn),
  .contact__form textarea {
    width: 100% !important;
  }

  .footer__container,
  .footer__navigation,
  .footer__links {
    flex-direction: column;
  }

  .mini__footer h2 {
    font-size: 2rem;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .card--footer {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
}

/*===================== ipads, tablets ============================*/
@media screen and (max-width: 768px) {
  .nav__menu {
    position: fixed;
    right: -80%;
    width: 40%;
    height: 100%;
    z-index: 1;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--color-primary);
    /* background-color: var(--color-white); */
    top: 5rem;
    padding: 20px;
    transition: .5s;
  }

  .show {
    right: 0;

  }

  .mb-show {
    display: inline-block;
    padding: 5px 10px;
    cursor: pointer;
  }

  .bar1,
  .bar2,
  .bar3 {
    width: 35px;
    height: 5px;
    background-color: var(--color-white);
    margin: 6px 0;
    transition: 0.4s;
  }

  /* Rotate first bar */
  .change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
  }

  /* Fade out the second bar */
  .change .bar2 {
    opacity: 0;
  }

  /* Rotate last bar */
  .change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
  }

  .nav__menu.nav__list a {
    color: var(--color-primary-accent);
  }

  .home {
    flex-direction: column-reverse;
  }

  .home__data-title {
    font-size: 2rem;

  }

  .slider__container {
    flex-direction: column-reverse;
  }

  .slider__title {
    font-size: 1.2rem;
  }

  .about__container {
    flex-direction: column-reverse;
  }

  .about__data-title {
    font-size: 2rem;
  }

  .whychooseus__title {
    font-size: 2rem;
  }

  .whychooseus__data {
    flex-direction: column;
    row-gap: 2rem;
  }

  .services__title {
    font-size: 2rem;
  }

  .services_data {
    flex-direction: column;
  }

  .services__buttons {
    flex-direction: column;
    align-items: center;
  }

  .services__buttons a {
    margin: 0;
  }

  .testimonials__tittle {
    font-size: 2rem;
  }

  .contact__title {
    font-size: 2rem;
  }

  .contact__form input:not(.btn),
  .contact__form textarea {
    width: 100% !important;
  }

  .footer__container,
  .footer__navigation,
  .footer__links {
    flex-direction: column;
  }
}

/*======================= small screen, laptops ==========================*/
@media screen and (max-width: 1024px) {
  .nav__menu {
    position: fixed;
    right: -80%;
    width: 40%;
    height: 100%;
    z-index: 1;
    flex-direction: column;
    justify-content: flex-start;
    background-color: var(--color-primary);
    /* background-color: var(--color-white); */
    top: 5rem;
    padding: 20px;
    transition: .5s;
  }

  .show {
    right: 0;

  }

  .mb-show {
    display: inline-block;
    padding: 5px 10px;
    cursor: pointer;
  }

  .bar1,
  .bar2,
  .bar3 {
    width: 35px;
    height: 5px;
    background-color: var(--color-white);
    margin: 6px 0;
    transition: 0.4s;
  }

  /* Rotate first bar */
  .change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
  }

  /* Fade out the second bar */
  .change .bar2 {
    opacity: 0;
  }

  /* Rotate last bar */
  .change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
  }

  .nav__menu.nav__list a {
    color: var(--color-primary-accent);
  }

  .home {
    flex-direction: column-reverse;
  }

  .home__data-title {
    font-size: 2rem;

  }

  .slider__container {
    flex-direction: column-reverse;
  }

  .slider__title {
    font-size: 2.5rem;
  }

  .about__container {
    flex-direction: column-reverse;
  }

  .about__data-title {
    font-size: 2rem;
  }

  .whychooseus__title {
    font-size: 2rem;
  }

  .whychooseus__data {
    row-gap: 2rem;
    flex-wrap: wrap;
  }

  .services__title {
    font-size: 2rem;
  }

  .services__single {
    flex: 50%;
  }

  .services__buttons {
    justify-content: center;
    align-items: center;
  }

  .services__buttons a {
    margin: 0;
  }

  .testimonials__tittle {
    font-size: 2rem;
  }

  .contact__title {
    font-size: 2rem;
  }

  .contact__form input:not(.btn),
  .contact__form textarea {
    width: 100% !important;
  }

  .footer__container,
  .footer__navigation,
  .footer__links {
    flex-direction: column;
  }

  .mini__footer h2 {
    font-size: 2rem;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}