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

:root {
  --purple: #92278f;
  --orange: #f9921e;
}

body {
  margin: 0;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
  overflow-x: hidden;
}

p {
  margin-block-end: 1em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
}

h1 {
  font-size: 72px;
  font-weight: 700;
  font-style: normal;
}

h2 {
  font-size: 42px;
  font-weight: 600;
  font-style: normal;
}

.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

/* BUTTONS */
a {
  padding: 15px 35px;
  font-size: 14px;
  text-transform: uppercase;
  color: #f8f8f8 !important;
  background: var(--purple);
  text-decoration: none;
  font-weight: bold;
  border-radius: 3px;
  -webkit-transition: 240ms linear;
  -khtml-transition: all 240ms linear 0ms;
  -moz-transition: 240ms linear;
  -ms-transition: 240ms linear;
  -o-transition: 240ms linear;
  transition: all 240ms linear 0s;
}

a:hover {
  background: var(--orange);
}

.buttons .orange {
  -webkit-transition: 240ms linear;
  -khtml-transition: all 240ms linear 0ms;
  -moz-transition: 240ms linear;
  -ms-transition: 240ms linear;
  -o-transition: 240ms linear;
  transition: all 240ms linear 0s;
  background: var(--orange);
}
.buttons .orange:hover {
  background: var(--purple) !important;
}

.buttons a {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* HERO IMAGE */
.hero-banner {
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: url(../images/hero-banner.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 10%;
  position: relative;
  z-index: 1;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.hero-details .details {
  color: #fff;
  width: 60%;
}

.hero-details .details h1 {
  font-size: 72px;
}

.hero-details .details .orange {
  color: var(--orange);
}

.hero-details .details p {
  margin-top: 20px;
  font-size: 18px;
}

.hero-details .buttons {
  display: flex;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

.hero-details .buttons img {
  width: 200px;
}

.hero-details .buttons a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-details .buttons svg {
  font-size: 16px;
  font-weight: bold;
}

/* REVIEW CONTAINER */
.review-container {
  min-height: 10vh;
  display: flex;
  align-items: center;
  position: relative;
}

.review-container .container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  position: absolute;
  right: 0;
  left: 0;
  top: -60px;
  z-index: 99;
}

.review-container .review-details {
  display: flex;
  width: 380px;
  background: #fff;
  padding: 30px;
  border: 1px solid #eaebf0;
  align-items: center;
  gap: 20px;
  border-radius: 3px;
  transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
}

.review-container .review-details:hover {
  -webkit-transform: translateY(-17px);
  -khtml-transform: translateY(-17px);
  -moz-transform: translateY(-17px);
  -ms-transform: translateY(-17px);
  -o-transform: translateY(-17px);
  transform: translateY(-17px);
  -webkit-box-shadow: 0 0 36px rgba(12, 12, 12, 0.12);
  -khtml-box-shadow: 0 0 36px rgba(12, 12, 12, 0.12);
  -moz-box-shadow: 0 0 36px rgba(12, 12, 12, 0.12);
  -ms-box-shadow: 0 0 36px rgba(12, 12, 12, 0.12);
  -o-box-shadow: 0 0 36px rgba(12, 12, 12, 0.12);
  box-shadow: 0 0 36px rgba(12, 12, 12, 0.12);
}

.review-container .review-details:hover:before {
  width: 100%;
  opacity: 1;
}

.review-container .review-details:before {
  content: "";
  -webkit-border-radius: 2px;
  -khtml-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  height: 4px;
  width: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  background-color: var(--purple);
  position: absolute;
  bottom: 0;
}

.review-container .review-details h3 {
  color: var(--orange);
  margin-bottom: 5px;
}

.review-container .review-details p {
  font-size: 15px;
}

.review-details .icon {
  background-color: #f0f1f3;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: content-box;
}

.review-details .icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* .review-details .icon svg {
  font-size: 60px;
  color: var(--purple);
} */

/* ABOUT CONTAINER */
.about-container {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 75px 0;
}

.about-container .about-details {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-container .about-details .lists {
  display: flex;
  flex-direction: column;
  gap: 5px;
  list-style-type: none;
  margin-bottom: 1em;
}

.about-container .about-details .lists li i {
  margin-right: 10px;
  color: var(--purple);
  font-size: 18px;
}

.about-container .about-details h2 {
  color: var(--purple);
  margin-bottom: 20px;
}

.about-container .about-details .buttons {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.about-details .buttons a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.about-details .buttons .orange {
  background: var(--orange);
}

.about-container .about-details .details,
.about-container .about-details .image {
  flex: 1;
}

.about-container .about-details .image img {
  width: 550px;
  border-radius: 20px 20px 20px 20px;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

/* QUOTE CONTAINER */
.quote-container {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  background: #f8f8f8;
  padding: 75px 0;
}

.quote-container .row-details {
  display: flex;
  gap: 50px;
  justify-content: center;
  flex-wrap: wrap;
}

.quote-container .quote-row h2,
.quote-container .quote-row h3 {
  text-align: center;
  color: var(--purple);
  position: relative;
}

.quote-container .quote-row h3 {
  padding-bottom: 15px;
}

.quote-container .quote-row h3:before {
  content: "";
  width: 28px;
  height: 3px;
  background-color: var(--primary-color);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: var(--orange);
}

.quote-container .quote-row p {
  margin-top: 15px;
  font-size: 15px;
  color: #666666;
}

.quote-container .quote-details {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  width: 300px;
}

.quote-container .icon {
  position: relative;
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.quote-container .icon::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff; /* Background color of the circle */
  border-radius: 50%;
  box-shadow: 0 13px 25px rgba(46, 105, 255, 0.2);
  z-index: -1;
}

.quote-container .icon svg {
  font-size: 45px; /* Adjust icon size */
  color: var(--orange);
}

.quote-container .buttons {
  display: flex;
  gap: 20px;
  padding-top: 50px;
  justify-content: center;
  flex-wrap: wrap;
}

/* SERVICES CONTAINER */

.services-container {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 75px 0;
}

.services-container .details h2 {
  color: var(--purple);
  position: relative;
  margin-bottom: 15px;
}

.services-details .services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.services-details .services li {
  list-style-type: none;
  flex-basis: 45%;
}

.services-details .services li i {
  margin-right: 10px;
  color: var(--orange);
  font-weight: bold;
  font-size: 18px;
}

.services-details .buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* CLIENTS CONTAINER */
.clients-container {
  min-height: 50vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 75px 0;
  background: #f8f8f8;
}

.clients-container .counter-details {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  background: url(../images/map-gray.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 80%;
  height: 400px;
  margin-top: 20px;
}

.clients-container .details h2 {
  color: var(--purple);
}

.clients-container .details {
  text-align: center;
}

.counter-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  margin: 30px 50px;
}

.counter {
  font-size: 80px;
  font-family: "Poppins", sans-serif;
  margin-top: 10px;
  font-weight: bold;
  color: var(--purple);
  line-height: 1.1;
}

.counter-details .counter-container span {
  font-weight: normal;
  font-size: 20px;
  text-align: left;
  color: #000;
}

/* LOGO CONTAINER */
.testimonal-container {
  display: flex;
  align-items: center;
  position: relative;
  padding: 50px 0;
  background: #f1f1f1;
}

.testimonal-container .details h2 {
  color: var(--purple);
  text-align: center;
}

.testimonal-container .details img {
  width: 200px;
}

.testimonial {
  width: 100%;
  padding-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #14213d;
}

.testimonial .slick-track {
  padding: 30px 0;
}

.testimonial .details {
  text-align: center;
}

.testimonial .details h2 {
  margin-bottom: 20px;
}

/* Equal height for all slides */
.testimonial-slider .slick-track {
  display: flex !important;
}

.testimonial-slider .slick-slide {
  height: auto !important;
  display: flex !important;
  align-items: stretch;
}

/* Ensure .reviews fills the slide */
.testimonial-slider .reviews {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
}

/* Slick Slider Container */
.testimonial-slider {
  margin-top: 40px;
  padding-top: 20px; /* Space to allow upward hover */
}

/* Make sure slides can overflow for hover effect */
.slick-slide {
  overflow: visible !important;
}

/* Testimonial Review Box */
.testimonial-slider .reviews {
  background: #fff;
  border-radius: 4px;
  border: 1px solid #eaebf0;
  padding: 30px 32px 38px;
  transition: 0.3s cubic-bezier(0.24, 0.74, 0.58, 1);
  margin: 0 10px;
  position: relative; /* Ensure proper shadow rendering */
}

.testimonial-slider .reviews:hover {
  transform: translateY(-15px);
  /* box-shadow: 0 27px 32px rgba(12, 12, 12, 0.16); */
  z-index: 2;
}

/* Review Text */
.testimonial-slider .body {
  font-size: 14px;
  line-height: 26px;
  margin-bottom: 24px;
  color: #3a4268;
}

/* Review Author Info */
.testimonial-slider .details h5 {
  font-size: 17px;
  margin-bottom: 1px;
  color: var(--purple);
}

.testimonial-slider .details span {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
}

.testimonial-slider .details {
  text-align: left;
}

.testimonial-slider .details .stars {
  font-size: 14px;
  color: #ffc601;
  margin-top: 5px;
}

/* Slick Navigation Arrows */
.slick-prev:before,
.slick-next:before {
  color: var(--purple);
}

.slick-dots li {
  margin: 0 !important;
}

/* Slick Pagination Dots */
.slick-dots li button:before {
  color: #ccc;
  opacity: 1;
  font-size: 12px !important;
}

.slick-dots li.slick-active button:before {
  color: var(--purple) !important;
}

/* CTA CONTAINER */

.cta-container {
  min-height: 40vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 75px 0;
  background: url(../images/hero.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 1;
  background-attachment: fixed;
}

.cta-container .details {
  color: #fff;
}

.cta-container .cta-details {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  gap: 50px;
}

.cta-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: -1;
}

.cta-container:after {
  content: "";
  clip-path: polygon(44% 0, 100% 0, 100% 100%, 37% 100%);

  position: absolute;
  width: 90%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.cta-container .buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* FAQ section */
.faq-section {
  padding: 80px 0;
}

.faq-details h2 {
  text-align: center;
  margin-bottom: 30px;
  color: var(--purple);
}

.faq-item {
  padding: 23px 0;
  border-bottom: 1px solid #ddd;
}

.faq-item:first-child {
  border-top: 1px solid #ddd;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  color: var(--dark);
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
  font-size: 16px;
  margin-top: 0;
  font-family: "Poppins", sans-serif;
  color: #202020;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  opacity: 1;
  margin-top: 20px;
}

/* Icon styles */
.arrow .icon {
  width: 18px;
  height: 18px;
  fill: var(--dark);
  transition: transform 0.3s ease;
}

.icon-plus {
  display: inline-block;
}

.icon-minus {
  display: none;
}

.faq-item.open .icon-plus {
  display: none;
}

.faq-item.open .icon-minus {
  display: inline-block;
}

/* RESPONSIVENESS */
@media (max-width: 1200px) {
  .container {
    padding: 15px;
  }

  .review-container {
    min-height: 40vh;
  }
}

@media (max-width: 992px) {
  .review-container {
    height: 60vh !important;
  }

  .about-container .about-details {
    flex-direction: column-reverse;
  }
}

@media (max-width: 768px) {
  .about-container .about-details .image img {
    width: 450px;
  }

  .services-details .services li {
    flex-basis: 100%;
  }

  .counter {
    font-size: 40px;
  }

  .clients-container {
    min-height: 100vh;
  }
}

@media (max-width: 480px) {
  .about-container .about-details .image img {
    width: 350px;
  }

  h1 {
    font-size: 50px !important;
  }

  h2 {
    font-size: 30px !important;
  }
}
