.announcement__wrapper {
  width: 100%;
  background-color: var(--color-accent-3);
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}

.announcement__availability {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-white);
}

.announcement__btn {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background-color: var(--color-white);
  color: var(--color-accent-3);
  padding: 0.5rem 1.2rem;
  border-radius: 2rem;
  font-size: 1.4rem;
  font-weight: 400;
  text-decoration: none;
  transition: 0.3s;
}

.announcement__btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.announcement__icon {
  width: 1.8rem;
  height: 1.8rem;
}

/* Humberger navigation */
/* Base CSS */

.navigation {
  display: none;
}
.navigation__checkbox {
  display: none;
}

.navigation__button {
  background-color: #fff;
  height: 7rem;
  width: 7rem;
  position: fixed;
  top: 4rem;
  right: 4rem;
  border-radius: 50%;
  z-index: 2000;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  text-align: center;
  cursor: pointer;
}

.navigation__background {
  height: 6rem;
  width: 6rem;
  border-radius: 50%;
  position: fixed;
  top: 4.5rem;
  right: 4.5rem;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 169, 164, 1),
    rgba(51, 186, 182, 1),
    rgba(102, 203, 200, 1),
    rgba(153, 221, 219, 1)
  );
  z-index: 1000;
  transition: transform 0.8s cubic-bezier(0.86, 0, 0.07, 1);
}

.navigation__nav {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1500;
  opacity: 0;
  width: 0;
  pointer-events: none;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.navigation__list {
  display: inline-block;
  list-style: none;
  text-align: center;
  width: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.navigation__item {
  margin-bottom: 1.6rem;
}

.navigation__link:link,
.navigation__link:visited {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 300;
  padding: 1rem 2rem;
  color: var(--color-white);
  text-transform: uppercase;
  text-decoration: none;
  /* background-image: linear-gradient(
    120deg,
    transparent 0%,
    transparent 50%,
    #fff 50%
  ); */
  background-size: 220%;
  transition: all 0.4s;
}

.navigation__link span {
  margin-right: 1.5rem;
  display: inline-block;
}

.navigation__link:hover,
.navigation__link:active {
  background-position: 100%;
  font-weight: 500;
  transform: translateX(1rem);
}

/* Functionality */
.navigation__checkbox:checked ~ .navigation__background {
  transform: scale(80);
}

.navigation__checkbox:checked ~ .navigation__nav {
  opacity: 1;
  width: 100%;
  pointer-events: auto;
}

/* Icon */
.navigation__icon {
  position: relative;
  margin-top: 3.5rem;
}

.navigation__icon,
.navigation__icon::before,
.navigation__icon::after {
  width: 3rem;
  height: 2px;
  background-color: #333;
  display: inline-block;
}

.navigation__icon::before,
.navigation__icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.2s;
}

.navigation__icon::before {
  top: -0.8rem;
}

.navigation__icon::after {
  top: 0.8rem;
}

.navigation__button:hover .navigation__icon::before {
  top: -1rem;
}

.navigation__button:hover .navigation__icon::after {
  top: 1rem;
}

.navigation__checkbox:checked + .navigation__button .navigation__icon {
  background-color: transparent;
}

.navigation__checkbox:checked + .navigation__button .navigation__icon::before {
  top: 0;
  transform: rotate(135deg);
}

.navigation__checkbox:checked + .navigation__button .navigation__icon::after {
  top: 0;
  transform: rotate(-135deg);
}

/* Media queries */

@media only screen and (max-width: 900px) {
  .navigation {
    display: block;
  }

  .main-nav-projects {
    display: none;
  }

  .main-nav {
    display: none;
  }
}

.hero-wrapper {
  background-image: linear-gradient(
    to bottom,
    rgba(0, 169, 164, 1),
    rgba(51, 186, 182, 1),
    rgba(102, 203, 200, 1),
    rgba(153, 221, 219, 1)
  );
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  /* Because we want it to be sticky later */
  height: 9.6rem;
  padding: 0rem 12.8rem;
  padding-top: 4.4rem;

  position: relative;
}

.logo {
  height: 6.2rem !important;
}

.social__icons-wrapper {
  display: flex;
  gap: 1rem;
}

.header__icon-wrapper {
  list-style: none;
  background-color: var(--color-primary);
  padding: 0.8rem;
  /* border-radius: 1.5rem; */
}

.header__social-icon {
  font-size: 3.2rem;
  color: var(--color-white);
}

/*=============================*/
/*===========Nav bar===========*/
/*=============================*/

.main-nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3.9rem;
}

.main-nav-link-home:link,
.main-nav-link-home:visited {
  display: inline-block;
  text-decoration: none;
  font-weight: 400;
  font-size: 1.6rem;
  transition: all 0.3s;
  color: var(--color-primary);
}

.main-nav-link-home:hover,
.main-nav-link-home:active {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.9rem;
  font-weight: 600;
}

/* for other pages */

.main-nav-link:link,
.main-nav-link:visited {
  display: inline-block;
  text-decoration: none;
  color: var(--color-white);
  font-weight: 400;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link:hover,
.main-nav-link:active {
  color: var(--color-white);
  border-bottom: 2px solid var(--color-white);
  padding-bottom: 0.9rem;
  font-weight: 600;
}

/*=============================*/
/*=========Hero section========*/
/*=============================*/

/* reusable section hero elements */
.section-hero {
  /* height: 100%; */
  height: calc(72vh - 9.6rem);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero {
  max-width: 102rem;
  /* min-height: 72vh; */
  height: 100%;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 5.6rem;
  align-items: center;
}

.hero__text-box {
  /* margin-left: 4rem; */
  /* padding: 2rem 0rem 4rem 0rem; */
}

/* end */

/*=============================*/
/*Home page*/
/*=============================*/

.home-section-hero {
  padding: 4.8rem 4.8rem 9.6rem 4.8rem;
  max-height: 100vh;
}

.hero-wrapper-home {
  background-image: linear-gradient(to bottom, #ebecf4, #fff);
  height: 72vh;
  position: relative;
}

.separator {
  width: 100%;
  height: 0.6rem;
  background-color: var(--color-accent-3);
  position: absolute;
  bottom: 0%;
  left: 0;
  margin: 0;
  padding: 0;
}

.hero__heading {
  font-size: 4.8rem;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.9px;
  width: 17ch;
  margin-bottom: 5.4rem;
  color: var(--color-primary);
}

/* .home-hero__description {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: 300;
  letter-spacing: -0.9px;
  width: 27ch;
  margin-bottom: 3.4rem;
} */

.hero__image-box-home {
  width: 100%;
  max-width: 68.2rem;
  height: 100%;
  position: relative;
}

.home-hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  /* bottom: -9.6%; */
  bottom: 0%;
  right: 0;
  overflow: unset;
}

/*=============================*/
/*What I offer*/
/*=============================*/

.offer {
  position: relative; /* parent for absolute child */
  isolation: isolate; /* keeps blending separate */
  overflow: hidden; /* clips the blur inside */
  padding-bottom: 14.2rem;
}

.offer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 4rem;
  border-radius: 50%;
  background: rgba(28, 164, 164, 0.7);
  filter: blur(100px);
  z-index: -1;
}

.offer__heading {
  font-size: 4.2rem;
  color: var(--color-primary);
  text-align: center;
  line-height: 1.4;
  font-weight: 400;
  padding-top: 0.8rem;
  margin-bottom: 8.2rem;
}

.offer__subheading {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  color: #6c6c6c;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 8.2rem 8rem 0 8rem;
}

.offer__item {
  width: 100%;
  max-width: 36.7rem;
  height: auto;
  box-shadow: 0 3.2rem 6.4rem 0 rgba(0, 0, 0, 0.02);
  border: 1px solid var(--color-primary);
  border-radius: 2.2rem;
  padding: 4.2rem 3.2rem;
  position: relative;
  transition: all 0.25s;
}

.offer__item:hover {
  transform: scale(1.05);
  /* border: 1px solid var(--color-accent-1); */
  border: 3.2px solid var(--color-accent-1);
  box-shadow: 0 4.2rem 6.4rem 0 rgba(0, 0, 0, 0.08);
}

.offer__item::before {
  content: "";
  display: inline-block;
  width: 0.8rem;
  height: 6.8rem;
  background-color: var(--color-primary);

  position: absolute;
  top: 20%;
  left: -2%;
}

.offer__item:hover::before {
  background-color: var(--color-accent-1);
}

.offer__item:hover .offer__icon-box::before {
  opacity: 1;
}

.offer__icon-box {
  position: relative;
  margin-top: 1.6rem;
}

.offer__icon-box::before {
  content: "";
  display: inline-block;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background-color: var(--color-accent-1);
  cursor: pointer;
  transition: all 0.3s;

  position: absolute;
  top: -21%;
  left: -6%;
  z-index: -1;
  opacity: 0;
}

.offer__icon {
  height: 4rem;
  width: 4rem;

  margin-bottom: 4.2rem;
  z-index: 1;
}

.offer__title {
  font-size: 2.4rem;
  color: var(--color-black);
  font-weight: 300;
  margin-bottom: 1.2rem;
}

.offer__text {
  font-size: 1.4rem;
  line-height: 1.8;
  font-weight: 400;
}

.offer__cta-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

/*=============================*/
/*Testimonial section*/
/*=============================*/

.testimonials {
  padding: 1.2rem 4.2rem 9.2rem 7.2rem;
  position: relative;
  max-width: 110rem;
}

.testimonials__wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 3.2rem; */
  position: relative;
}

.testimonial__img--box {
  width: 55%;
  height: auto;
  object-fit: cover;
  /* position: relative; */
  z-index: 0;
  margin-right: -7.8rem;
}

.testimonial__img--box::before {
  content: "";
  display: inline-block;
  width: 40%;
  height: 85%;
  /* padding: 0rem 1rem; */
  background-image: linear-gradient(to bottom, #6941cd, #352167);
  border-radius: 5rem;
  position: absolute;
  top: 15%;
  left: 0;
  z-index: -1;
}

.testimonial__img {
  width: 100%;
  height: 100%;
}

.emoji {
  width: 7.2rem;
  object-fit: cover;
}

.like--emoji {
  width: 9.2rem;
  position: absolute;
  top: 5%;
  left: 37%;
  animation: thumb 12s linear infinite;
}

.heart--emoji {
  width: 5.2rem;
  position: absolute;
  bottom: -15%;
  left: 5%;
  animation: heart 15s linear infinite;
}

.laugh--emoji {
  position: absolute;
  top: -4%;
  right: 20%;
  animation: laugh 15s linear infinite;
}

.hushed--emoji {
  position: absolute;
  top: 87%;
  left: 90%;
  animation: heart 15s linear infinite;
}

/* testimonial cards */

.testimonials__cards--box {
  width: 100%;
  margin-left: -1.2rem;
}

.testimonial__cards {
  display: flex;
  justify-content: flex-end;
  column-gap: 2.4rem;
  position: absolute;
  top: 30%;
}

.testimonial__card {
  width: 43.5%;
  height: auto;
  border-radius: 2rem;
  padding: 4.2rem 2.4rem;
  padding-bottom: 2.4rem;
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  text-align: center;
}

.testimonial__client--img {
  width: 12rem;
  height: 12rem;
  border-radius: 10rem;
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translate(-50%, 50%);
}

.testimonial__client--name {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  margin-top: 3.2rem;
}

.testimonial__client-text {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0;
}

.testimonial__rating--wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.2rem;

  /* position: absolute;
  top: 10%;
  right: 10%; */
}
.testimonial__rating--icon {
  font-size: 3.2rem;
  color: #e88500;
}

/* CTA */

.testimonials__cta {
  color: var(--color-white);
  background-color: var(--color-accent-3);
  padding: 2.8rem 4.8rem !important;
  /* margin-top: -4.2rem; */
  position: absolute;
  top: 80%;
  left: 45%;
}

.testimonials__cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
}

/* Slider Buttons */

.slider__prev-btns {
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider__btn {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-accent-3);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 3rem;
  height: 3rem;
  font-size: 2rem;
  cursor: pointer;
  z-index: 10;
}

.slider__btn.prev {
  left: 1rem;
}
.slider__btn.next {
  right: 1rem;
}

/*=============================*/
/*Project compare section*/
/*=============================*/

.project__compare {
  position: relative;
  margin-top: 7.2rem;
}

.project__compare-heading {
  font-size: 4.8rem;
  line-height: 1.3;
  font-weight: 500;
  text-align: center;
  color: var(--color-primary);
}

.project__compare-subheading {
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 700;
  color: #6c6c6c;
  text-align: center;
  letter-spacing: 1.5px;

  margin-bottom: 1rem;
}

.project__compare-container {
  padding: 1rem;
  display: grid;
  place-content: center;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  --position: 50%;
  margin-top: 5.2rem;
}

.project__compare-image-container {
  /* max-width: 900px; */
  max-height: 80vh;
  aspect-ratio: 1/1;
  position: relative;
}

.slider__image {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  /* object-position: left; */
}

.before__image-wrapper {
  width: 22rem;
  height: 40rem;
  padding: 1rem;
  border-radius: 2rem;
  background-color: #e4f7f6;
  position: absolute;
  top: 15%;
  left: -5%;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1), 0 0 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  z-index: 5;
}

.before__image-wrapper.hover-stop img {
  animation-play-state: paused !important;
}

.project__compare-image-before {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 2rem;
  position: absolute;
  top: 0;
  left: 0;
  transition: top 0.1s linear;
}

.after__image-wrapper {
  max-width: 80vw;
  min-height: 30rem;
  padding: 1rem;
  border-radius: 2rem;
  /* background-color: #e4f7f6; */
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.project__compare-image-after {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2rem;
}

.before__image-wrapper,
.project__compare-image-before {
  pointer-events: none;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.slider:focus-visible ~ .slider__button {
  outline: 5px solid black;
  outline-offset: 3px;
}

.slider__line {
  position: absolute;
  width: 0.5rem;
  height: 100%;
  background-color: var(--color-accent-1);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 15;
  pointer-events: none;
  transition: left 0.2s ease;
  opacity: 0;
}

.slider__button {
  position: absolute;
  top: 50%;
  left: var(--position);
  transform: translate(-50%, -50%);
  background-color: var(--color-accent-3);
  color: var(--color-primary);
  padding: 0.5rem;
  border-radius: 10vw;
  place-items: center;
  pointer-events: none;
  z-index: 20;
  box-shadow: 1px 1px 1px hsl(0, 50%, 2%, 0.5);
  transition: left 0.2s ease;
  opacity: 0;
}

.next__slider-btn-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border: none;
  cursor: pointer;

  background-color: var(--color-accent-3);
  color: var(--color-white);
  border-radius: 10rem;
  padding: 1.8rem;
  width: auto;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.next__slider-icon {
  font-size: 2rem;
}

/*=============================*/
/* Blog section on home page Section */
/*=============================*/

.blogs-home {
  margin-top: 10.2rem;
  padding: 5.2rem;
  background-color: var(--color-accent-3);
}

.blogs-home-heading {
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  color: var(--color-white);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.blogs-home-subheading {
  font-size: 5.4rem;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  color: var(--color-white);
}

.blogs-home-wrapper {
  margin-top: 4.2rem;
  display: flex;
  justify-content: center;
  /* align-items: center; */
  column-gap: 5.2rem;
}

.blog-home__box-wrapper {
  width: 33%;
  display: inline-block;
}

.blog-home__img-wrapper {
  position: relative;
  width: 100%;
  max-width: 45rem;
  height: 40rem; /* Fixed height instead of min-height */
  overflow: hidden;
  z-index: 0;
  border-radius: 0.9rem;
}

.blog-home__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 0.9rem;
}

.blog-home__img-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 0.9rem;
}

.blog-home__box:hover {
  cursor: pointer;
}

/* Overlay Content */
.blog-home__overlay-content {
  position: absolute;
  bottom: 1.8rem;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-white);
  width: 90%;
  z-index: 1;
}

.blog-home__title {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 1rem;
}

.blog-home__meta {
  font-size: 1.4rem;
  line-height: 1;
  font-weight: 500;
}

.blog-home-tags {
  width: 92%;
  margin-top: 3.4rem;
}

.blog-home-tag {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  padding: 1rem;
  margin-right: 0.5rem;
  border-radius: 1.4rem;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  background-color: var(--color-white);
  color: var(--color-black);
  margin-bottom: 1rem;
}
/*=============================*/
/* FAQ Section */
/*=============================*/

.faq__section {
  margin-top: 8.2rem;
  padding: 5.2rem;
  max-width: 110rem;
}

.faq__wrapper {
  display: flex;
  gap: 3.2rem;
}

.faq__content {
  width: 20%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.faq__heading {
  font-size: 8.8rem;
  font-weight: 500;
  color: #3d3b3d;
  position: relative;
  z-index: 1;
  /* box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  background-color: transparent; */
}

.faq__heading::before {
  content: "?";
  font-size: 50rem;
  line-height: 1;
  font-weight: 500;
  color: rgba(28, 164, 164, 0.2);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(1px);
}

/* FAQ List */
.faq__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 70%;
}

.faq__item {
  padding: 3.2rem;
  border-bottom: 2px solid rgba(28, 164, 164, 0.2);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  cursor: pointer;
}

.faq__question-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.8rem;
}

.faq__question {
  font-size: 1.6rem;
  line-height: 1.4;
  font-weight: 500;
}

.faq__icon-wrapper {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background-color: var(--color-accent-3);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s;
  transform-origin: center;
}

.faq__icon {
  font-size: 1.6rem;
  color: var(--color-white);
  transition: transform 0.3s;
  transition: transform 0.3s ease;
}
.faq__icon.rotate {
  transform: rotate(180deg);
}

.faq__answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 400;
}

/*=============================*/
/*About page*/
/*=============================*/

.about-section__hero {
  padding-top: 4.2rem;
}

.hero-wrapper-about {
  background-image: linear-gradient(
      to bottom,
      rgba(0, 169, 164, 1),
      rgba(51, 186, 182, 1),
      rgba(102, 203, 200, 1),
      rgba(153, 221, 219, 1)
    ),
    url(../Images/hero-pattern-min.png);
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
}

/* .header-about {
  display: flex;
  justify-content: space-between;
  align-items: center;

  height: 9.6rem;
  padding: 0rem 4.8rem;
  padding-top: 4.4rem;

  position: relative;
} */

/* .about-hero {
  max-width: 130rem;

  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9.6rem;
  align-items: center;
} */

.about-hero-pattern {
  height: 100vh;
  max-width: 100%;
  margin-top: 0;
  background-size: cover;
}

.about-hero__description {
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 400;
  color: var(--color-white);
  margin-bottom: 4.2rem;
}

/* tagline in hero section */

/* .about-tagline {
  font-size: 4rem;
  font-weight: 500;
  color:  var(--color-white);
  padding-bottom: 7.2rem;
} */

.about-hero-image {
  max-width: 85%;
}

/* about tagline with description section */

.about-tagline-section {
  padding-top: 10.3rem;
  padding-bottom: 10.3rem;
  font-size: 3.2rem;
  font-weight: 300;
  text-align: center;
  color: var(--color-primary);
  justify-self: center !important;
}

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

.about-details__heading {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 2.4rem;
}

.about-details__description {
  font-size: 1.4rem;
  line-height: 1.6;
  margin-bottom: 8rem;
}

.about-details__description-link {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--color-primary);
  cursor: pointer;
  text-decoration: none;
}

.about-details__description-link:hover {
  font-weight: 600;
}

.about-details__line {
  margin-top: -3rem;
  width: 0.1rem;
  height: 15.3rem;
  background-color: var(--color-primary);
  justify-content: center;
}

/* .line-text {
  display: flex;
  justify-items: center;
} */

/*=============================*/
/*=========case studies========*/
/*=============================*/

/* starts from case studies not hero section */

.case-studies {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  padding-bottom: 10.3rem;
}

.case-studies-hero__description {
  font-size: 2.4rem;
  line-height: 1.6;
  margin-bottom: 4.8rem;
  color: var(--color-white);
}

.case-studies__right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.case-studies__image {
  width: 100%;
  margin-bottom: 3.6rem;
  overflow: hidden;
}

.case-studies__title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 2.4rem;
}

.case-studies__link-box {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.case-studies__link-icon {
  height: 2.4rem;
  color: var(--color-primary);
}

.case-studies__hero-image {
  max-width: 100%;
}

/*=============================*/
/*case study page*/
/*=============================*/

.header-projects {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color:  var(--color-white); */

  /* Because we want it to be sticky later */
  height: 9.6rem;
  padding: 0rem 4.8rem;
  padding-top: 4.4rem;

  position: relative;
}

.logo-project {
  height: 6.2rem;
}

/*=============================*/
/*Nav bar for case study projects*/
/*=============================*/
.main-nav-list-projects {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 3.9rem;
}

.main-nav-link-project:link,
.main-nav-link-project:visited {
  display: inline-block;
  text-decoration: none;
  color: var(--color-primary);
  font-weight: 400;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.main-nav-link-project:hover,
.main-nav-link-project:active {
  color: var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.9rem;
  font-weight: 600;
}

/*=============================*/
/*case study page details*/
/*=============================*/

.case-study__project {
  padding: 10.3rem 0;

  padding-left: 10.4rem;
  justify-content: center;
}

.case-study__header {
  display: flex;
  gap: 4.2rem;
  /* padding-bottom: 0.8rem; */
  align-items: center;
}

.case-study__title {
  font-size: 3.2rem;
  line-height: 1.05;
  font-weight: 500;
  margin-bottom: 2.4rem;
  color: var(--color-black);
}
.case-study__metadata-link:link,
.case-study__metadata-link:visited {
  text-decoration: none;
  display: inline-block;
  color: var(--color-primary);
  /* background-color: rgba(248, 249, 250, 0.8); */

  font-size: 2rem;
  font-weight: 400;
  padding: 2.4rem 3.2rem;
  border-radius: 100px;

  border: none;
  cursor: pointer;
  font-family: inherit;

  transition: all 0.3s;
  align-self: center;
}

.case-study__metadata-link:hover,
.case-study__metadata-link:active {
  font-weight: 500;
  background-color: var(--color-accent-1);
  color: var(--color-white);

  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem 0 rgba(0, 0, 0, 0.04);
}

.case-study__info {
  display: flex;
  gap: 2.1rem;
  align-items: center;
  margin-bottom: 4.2rem;
}
.case-study__date {
  font-size: 1.6rem;
}
.case-study__separator {
  background-color: var(--color-primary);
  width: 0.2rem;
  height: 2.6rem;
}
.case-study__type {
  font-size: 1.6rem;
}

/*=============================*/
/*project gallery*/
/*=============================*/

.case-study__gallery {
  margin-top: 20rem;
  padding-bottom: 10.3rem !important;

  justify-content: center;
}

.grid--2-cols {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 4.7rem;
}

.case-study__gallery-box--1 {
  height: 41.6rem;
  width: 67rem;
  grid-column: 1 / 2;
  grid-row: 1 / 2;

  margin-bottom: 3.3rem;
}

.case-study__gallery-img-1 {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  /* box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.2); */
}
.case-study__gallery-box--2 {
  height: 25rem;
  width: 41.5rem;
  grid-column: 1 / 2;
  grid-row: 2 / 3;
  background: #d9d9d9;
  justify-self: right;
}
.case-study__gallery-box--3 {
  height: 25rem;
  width: 41.5rem;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
  background: #d9d9d9;
}

.case-study__gallery-heading {
  padding-top: 2rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: 2.5rem;
}

.gallery-text {
  display: block;
  margin-bottom: 1rem;
}

/*=============================*/
/*Metadata page*/
/*=============================*/

.metadata-slide__close-btn {
  height: 5rem;
  color: var(--color-primary);
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

/* .metadata-slide-container {
  padding-top: 4.2rem !important;
  max-width: 120rem;
  position: relative;
  align-items: left;
  overflow: hidden;
  height: 100vh;
  } */

/* 
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between; */

.carousel-wrapper {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  position: relative;
}
.metadata-slide-container {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  padding-top: 4.2rem !important;
  max-width: 120rem;
  position: relative;
  align-items: left;
  overflow: hidden;
  height: 100vh;
}

.metadata-slide-container:target {
  display: block;
  position: relative;
}

.metadata-slide-container:first-of-type {
  display: block;
  position: relative;
}

.metadata-slide__date {
  font-size: 1rem;
  font-weight: 400;
  color: #495057;
  margin-bottom: 0.8rem;
}

.metadata-slide__title {
  font-size: 2.8rem;
  font-weight: 500;
  margin-bottom: 2.4rem;
  line-height: 1.4;
}

.metadata-slide__tagline {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

.metadata-slide__separator {
  display: inline-block;
  max-width: 102rem;
  width: 100%;
  height: 0.1rem;
  background-color: var(--color-primary);
  margin-bottom: 3.2rem;
}

.metadata-slide__detail {
  margin-bottom: 3.2rem;
}

.metadata-slide__heading {
  font-size: 1.6rem;
  font-weight: 500;
  color: #495057;
  margin-bottom: 1.4rem;
}

.metadata-slide__description {
  font-size: 1.4rem;
  line-height: 1.6;
  max-width: 75ch;
  width: 100%;
}

.metadata-slide__nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 10.3rem;
}

.metadata-slide__nav-dot {
  width: 1.2rem;
  height: 1.2rem;

  border-radius: 50%;
  background-color: #e9ecef;
}
.metadata-slide__nav-dot--active {
  background-color: var(--color-primary);
  border: none;
}

#slide1:target
  ~ .metadata-slide__nav-wrapper
  a[href="#slide1"]
  .metadata-slide__nav-dot,
#slide2:target
  ~ .metadata-slide__nav-wrapper
  a[href="#slide2"]
  .metadata-slide__nav-dot,
#slide3:target
  ~ .metadata-slide__nav-wrapper
  a[href="#slide3"]
  .metadata-slide__nav-dot {
  background-color: var(--color-primary);
  border: none;
}

.metadata-slide__nav-icon {
  height: 2.4rem;
  cursor: pointer;
}

.metadata-slide__arrow-links {
  text-decoration: none;
  color: #ced4da;
}

.metadata-slide__arrow-links:hover {
  color: var(--color-black);
}

/***********************/
/* Footer */
/***********************/

.footer {
  padding-top: 9.8rem;
  padding-bottom: 3rem;
}

.grid--footer {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.footer__logo-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer__logo-link {
  display: block;
  margin-bottom: 3.2rem;
}
.footer__logo {
  /* height: 12rem; */
  height: 7.8rem;
  /* width: 20.6rem; */
}

.footer__nav-col {
  list-style: none;
  display: flex;
  flex-direction: column;
  /* gap: 2.4rem; */
}

.footer__link:link,
.footer__link:visited {
  text-decoration: none;
  font-size: 1.4rem;
  color: var(--color-black);
  transition: all 0.3s;
}

.footer__link:hover,
.footer__link:active {
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 0.9rem;
  font-weight: 500;
}

/* Nav 1 */

.footer__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer__heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 4.2rem;
}

/* Nav 2 */

.footer__nav-contact {
  list-style: none;
  display: flex;

  flex-direction: column;
  gap: 4.6rem;
  margin-top: 0;
}

.footer__contact-nav-box {
  margin-left: -5rem;
}

/* it's not in html  */

/* .contacts {
  font-style: normal;
  font-size: 1.6rem;
  line-height: 1.6;
} */

.contact__nav-box {
  display: flex;
  align-items: center;
  gap: 3.6rem;
  margin-left: 2rem;
}

.contact__nav-icon {
  height: 1.4rem;
  width: 1.4rem;
  margin-right: 1.4rem;
}

.contact__address {
  font-size: 1.4rem;
  line-height: 1.6rem;
  margin-left: -3.8rem;
}

/* Nav 3 */

.footer__social-list {
  display: flex;
  gap: 1.8rem;

  list-style: none;
}

.footer__social-icon {
  font-size: 3.2rem; /* icon ka size */
  color: var(--color-primary);
  vertical-align: middle; /* alignment */
}

/*=============================*/
/*=======FOOTER BOTTOM=========*/
/*=============================*/

.footer__bottom {
  margin-top: 9.6rem;
}
.footer__line {
  height: 0.4rem;
  width: 161.8 rem;
  background-color: var(--color-primary);
  margin-bottom: 3.9rem;
}

.footer__copyright {
  font-size: 1.4rem;
  line-height: 1.6;
  color: #495057;
  /* color: #767676; */

  text-align: center;
}

/* Projects page */

.projects {
  padding-top: 3.2rem;
  padding-bottom: 8.2rem;
  /* display: flex;
  justify-content: center;
  align-items: center; */
}

.projects__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  /* margin-top: 12.2rem; */
  position: relative;
}

.projects__heading {
  font-size: 4.8rem;
  font-weight: 500;
  text-align: center;
}
/* 
.projects__image-box {
  width: 100%;
  aspect-ratio: 382 / 604;
  max-width: 30.2rem;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
  transition: all 0.4s;
  object-fit: cover;
} */

.projects__image-box:hover {
  transform: scale(1.05);
}

.projects__image-box:hover .projects__info-container {
  display: block;
}

.projects__image-box--pull-up {
  margin-top: -25rem;
  z-index: 1;
  position: relative;
}

.projects__image-box,
.projects__item {
  flex: 0 0 calc(25% - 1.05rem);
  aspect-ratio: 382 / 604;
  border-radius: 2.3rem;
  overflow: hidden;
  background-size: cover;
}

.projects__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* transition: transform 0.3s ease, border 0.3s ease, box-shadow 0.3s ease; */
}

.projects__item {
  width: 32.2rem;
  height: 23.1rem;

  padding: 5rem;
  background-color: rgba(0, 169, 164, 0.7);
  border-radius: 2.3rem;
}

.projects__item:hover {
  background-color: var(--color-accent-1);
}

.project__title {
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 1.6rem;
  color: var(--color-white);
}

.project__services {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
  color: var(--color-white);
}

.projects__link-icon {
  height: 2.4rem;
  color: var(--color-white);
}

.project-link-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

/* =============================== */
/* Projects info Contaienr */
/* =============================== */

.projects__info-container {
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to bottom,
    rgba(0, 169, 164, 0.9),
    rgba(51, 186, 182, 0.9),
    rgba(102, 203, 200, 0.9),
    rgba(153, 221, 219, 0.9)
  );
  /* 
  background-image: linear-gradient(
    to bottom,
    rgba(145, 167, 255, 0.9),
    rgba(51, 186, 182, 0.9)
  ); */

  background-image: linear-gradient(
    to bottom,
    var(--color-accent-1),
    rgba(51, 186, 182, 0.9)
  );

  z-index: 1000;
  position: absolute;
  bottom: 0;
  padding: 6rem 3rem;
  padding-top: 8rem;

  display: none;
}

.projects__info-title {
  font-size: 3.8rem;
  line-height: 1.1;
  font-weight: 500;
  letter-spacing: -1.6px;
  color: var(--color-white);
  margin-top: 3.2rem;
}

.projects__info-tags-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.4rem;
  /* 
  position: absolute;
  top: 52%; */
}

.projects__info-tag {
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 1.2rem;

  color: var(--color-white);
  border: 1.5px solid var(--color-white);
  border-radius: 50rem;
  text-align: center;
}

/* ======================================== */
/* BLOG CONTENT */
/* ======================================== */

/* BLOG HERO */
/* ======================================== */
/* ============================
   BLOG HERO
============================ */

.blog-hero {
  width: 100vw;
  height: 60vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-top: 3rem;
  background-blend-mode: multiply;
}

.blog-hero-1 {
  background: rgba(0, 0, 0, 0.6)
    url("../blogs-images/ux-404-error-cat-illustration.webp") center center /
    cover no-repeat;
}

.blog-hero-2 {
  background: rgba(0, 0, 0, 0.6)
    url("../blogs-images/ux-mobile-checkout-success.webp") center center / cover
    no-repeat;
}

.blog-hero-3 {
  background: rgba(0, 0, 0, 0.6)
    url("../blogs-images/ux-research-team-collaboration.webp") center center /
    cover no-repeat;
}

/* ============================
   TYPOGRAPHY
============================ */
.blog-title-h1 {
  font-size: 3.6rem;
  color: var(--color-white);
  text-align: center;
  font-weight: 400;
  width: 45ch;
  line-height: 1.4;
}

.blog-title-h2 {
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 1.4rem;
}

.blog-text {
  font-size: 1.6rem;
  line-height: 1.6;
}

/* ============================
   LIST
============================ */
.checklist {
  list-style: none;
  margin: 3rem 0;
  /* padding-left: 4rem; */
}

.checklist li {
  position: relative;
}

.checklist li:not(:last-child) {
  margin-bottom: 1.4rem;
}

/* .checklist li i.checklist-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -4%;
} */

.checklist li p {
  font-size: 1.4rem;
  line-height: 1.6;
}

.checklist li p strong {
  font-size: inherit;
  color: var(--color-black);
}

/* ============================
   WRAPPERS
============================ */
.blog-body {
  max-width: 101rem;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  row-gap: 4.2rem;
}

.blog-highlight {
  border: 1px solid var(--color-accent-3);
  background-color: rgba(228, 247, 246, 0.6);
  color: var(--color-black);
  padding: 2rem 4rem;
  border-radius: 0.8rem;
  font-size: 1.5rem;
  margin: 2rem 0;
  line-height: 1.6;
}

/* ============================
   IMAGE + TEXT SECTION
============================ */
.blog-body__image-text {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 101rem;
  margin: 2rem auto 0;
  gap: 3rem;
}

.blog-image-wrapper,
.blog-text-wrapper {
  width: 50%;
}
.blog-section {
  display: flex;
  align-items: stretch;
  gap: 2rem;
}

.blog-body__image-text {
  align-items: stretch;
  gap: 2rem;
}

.blog-image-wrapper {
  border-radius: 0.8rem;
  overflow: hidden;
  display: flex;
}

.blog-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}

/* Blog summary text */
.blog-summary {
  color: var(--color-black);
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 300;
}

.checklist-icon {
  font-size: 1.4rem;
  color: var(--color-accent-3);
}

.checklist-items {
  display: flex;
  gap: 1rem;
}

.checklist p,
.checklist span {
  margin: 0;
}

hr {
  border: none;
  border-bottom: 1px solid var(--color-accent-3);
  margin: 2rem 0;
}

/* ======================================== */
/* Promotional Banner */
/* ======================================== */

.promo-banner-wrapper {
  max-width: 101rem;
  max-height: 30rem;
  height: 26rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  border-radius: 1.4rem;
  margin-top: 20.2rem !important;
  position: relative;

  display: flex;
  justify-content: start;
  align-items: stretch;
}

.promo-image {
  position: absolute;
  bottom: 0;
  width: 30rem;
}

.promo-text-wrapper {
  align-self: flex-end;

  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  column-gap: 2.8rem;
  align-items: center;

  margin-left: 27%;
  padding-left: 4rem;
  height: 100%;
}
.promo-text-wrapper h2 {
  font-size: 2.4rem;
  color: var(--color-primary);
  font-weight: 500;
  text-transform: capitalize;
}
