/*=============== GOOGLE FONTS - Insert link for typography ===============*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&family=Syne:wght@400..800&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 4rem;
  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  /*
      Palette pulled from Waleed's brand photo:
        Background  = deep navy   -> --body-color / surfaces
        Primary     = warm gold   -> --first-color   (typed word, links, buttons)
        Secondary   = maroon/wine -> --second-color  (gradients, blobs)

      The accent is DECOUPLED from --hue on purpose: the navy surfaces are all
      derived from --hue (change it to re-tint every navy at once), while the
      gold/maroon accents are fixed warm hues that must NOT track --hue.

      One-line palette switch back to a Bianca-style single-hue theme:
        Green : --hue: 110; --first-color: hsl(110, 75%, 60%);
        Blue  : --hue: 220; --first-color: hsl(220, 80%, 60%);
  */
  --hue: 222;

  /* Accent — warm, fixed (do not tie to --hue) */
  --first-color: hsl(43, 90%, 58%);
  --first-color-alt: hsl(43, 88%, 50%);
  --second-color: hsl(348, 55%, 42%);
  --gradient-color: linear-gradient(90deg,
                      hsl(43, 90%, 58%) 0%,
                      hsl(38, 92%, 62%) 45%,
                      hsl(348, 60%, 50%) 100%);

  /* Surfaces & text — cool navy, derived from --hue */
  --white-color: hsl(var(--hue), 20%, 96%);
  --black-color: hsl(var(--hue), 40%, 4%);
  --text-color: hsl(var(--hue), 10%, 72%);
  --body-color: hsl(var(--hue), 32%, 6%);
  --container-color: hsl(var(--hue), 26%, 9%);
  --border-color: hsl(var(--hue), 20%, 18%);

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: "Poppins", sans-serif;
  --second-font: "Syne", sans-serif;
  --biggest-font-size: 2rem;
  --bigger-font-size: 1.75rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-regular: 400;
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/*========== Responsive typography ==========*/
@media (width >= 1150px) {
  :root {
    --biggest-font-size: 5rem;
    --bigger-font-size: 3rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

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

html {
  scroll-behavior: smooth;
}

body,
input,
button,
textarea,
label {
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body {
  background-color: var(--body-color);
  color: var(--text-color);
}

input,
button,
textarea {
  border: none;
  outline: none;
  background: none;
}

h1, h2, h3, h4 {
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  font-family: var(--second-font);
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

/* Keyboard focus ring (a11y) — visible only for keyboard users */
:focus-visible {
  outline: 2px solid var(--first-color);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/*=============== REUSABLE CSS CLASSES ===============*/
.container {
  max-width: 1120px;
  margin-inline: 1rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.section {
  padding-block: 5rem 1rem;
}

.section__title {
  text-align: center;
  font-size: var(--bigger-font-size);
  color: var(--white-color);
  margin-bottom: 2rem;
}

.section__title span {
  color: var(--first-color);
}

.main {
  overflow: hidden;
}

/*=============== BLOB ===============*/
.blob-small, .blob-big {
  background-color: var(--first-color);
  border-radius: 50%;
  position: absolute;
  z-index: -1;
}

.blob-small {
  width: 100px;
  height: 100px;
  filter: blur(50px);
}

.blob-big {
  width: 150px;
  height: 150px;
  filter: blur(100px);
}

/*=============== HEADER & NAV ===============*/
.header{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: var(--z-fixed);
}

.nav{
  position: relative;
  height: var(--header-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo{
  display: inline-flex;
  align-items: center;
  color: var(--white-color);
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
}

.nav__logo-img{
  /* logo-mark.svg is a wide WA monogram (~1.88:1) -> size by height, width auto (no squish) */
  height: 2.75rem;
  width: auto;
  /* solid black -> recolor white; gold glow + lift on hover */
  filter: brightness(0) invert(1);
  transition: filter 0.4s, transform 0.4s;
}

.nav__logo:hover .nav__logo-img{
  filter: brightness(0) invert(1) drop-shadow(0 0 8px hsla(43, 90%, 58%, 0.7));
  transform: scale(1.06);
}

.nav__toggle{
  color: var(--white-color);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Navigation for mobile devices <> */
@media (width <= 1150px){
  .nav__menu{
    position: fixed;
    top: 0;
    right: -120%;
    width: 80%;
    height: 100%;
    background-color: hsla(var(--hue), 8%, 10%, 0.4);
    backdrop-filter: blur(24px);
    padding: 6rem 2rem 2rem 3rem;
    z-index: var(--z-fixed);
    transition: right 0.4s;
  }
}

.nav__list{
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
}

.nav__link{
  position: relative;
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  transition: color 0.4s;
}

.nav__link:hover{
  color: var(--first-color);
}

.nav__link::after{
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: var(--first-color);
  border-radius: 50%;
  top: 0;
  left: -1rem;
  bottom: 0;
  margin-block: auto;
  opacity: 0;
  transition: opacity 0.4s;
}

.nav__contact{
  display: inline-flex;
  background-color: var(--first-color);
  color: var(--black-color);
  padding: 1rem 2rem;
  border-radius: 4rem;
  font-weight: var(--font-semi-bold);
  transition: box-shadow 0.4s;
}

.nav__contact:hover{
  box-shadow: 0 8px 24px hsla(43, 90%, 58%, 0.3);
}

.nav__close{
  position: absolute;
  color: var(--white-color);
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Show menu */
.show-menu{
  right: 0;
}

/* Change header styles */
.shadow-header {
  background-color: hsla(var(--hue), 32%, 6%, 0.7);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
}

/* Active link */
.nav__link.active-link {
  color: var(--first-color);
}

.nav__link.active-link::after {
  opacity: 1;
}


/*=============== HOME SECTION ===============*/
.home {
  position: relative;
}

.home__container {
  row-gap: 3rem;
  padding-block: 1rem 2rem;
}

.home__data {
  text-align: center;
}

.home__subtitle {
  font-size: var(--h2-font-size);
  font-family: var(--second-font);
  color: var(--text-color);
  font-weight: var(--font-medium);
  margin-bottom: .75rem;
}

.home__subtitle span {
  color: var(--first-color);
}

.home__title {
  font-size: var(--biggest-font-size);
  font-weight: var(--font-semi-bold);
  line-height: 1.1;
  margin-bottom: 1.25rem;
}

.home__title span,
.typed-cursor {
  color: var(--first-color);
}

.home__description {
  max-width: 460px;
  margin: 0 auto 2rem;
}

.home__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Hero visual */
.home__blob {
  position: relative;
  isolation: isolate;
  justify-self: center;
  width: 300px;
  max-width: 100%;
  display: grid;
  place-items: center;
}

.home__glow {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 92%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 42%,
              hsla(43, 90%, 58%, .38),
              hsla(348, 60%, 45%, .30) 46%,
              transparent 70%);
  z-index: -1;
}

.home__img {
  position: relative;
  width: 100%;
  filter: drop-shadow(0 24px 40px hsla(222, 60%, 2%, .6));
  z-index: 2;
}

/* Circular rotating text badge */
.home__circle {
  position: absolute;
  right: -.25rem;
  bottom: 1.5rem;
  width: 6.5rem;
  height: 6.5rem;
  display: grid;
  place-items: center;
  background-color: hsla(var(--hue), 26%, 9%, .55);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  z-index: 3;
}

.home__circle-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: rotate-badge 14s linear infinite;
}

.home__circle-svg text {
  fill: var(--white-color);
  font-family: var(--second-font);
  font-size: 10px;
  font-weight: var(--font-semi-bold);
  letter-spacing: .5px;
  text-transform: uppercase;
}

.home__circle-icon {
  font-size: 1.75rem;
  color: var(--first-color);
}

@keyframes rotate-badge {
  to {
    transform: rotate(360deg);
  }
}

/* Decorative blobs (base .blob-* set size/blur/color) */
.home .blob-big {
  top: -1.5rem;
  left: -1rem;
}

.home .blob-small {
  right: -1.5rem;
  bottom: 1rem;
  background-color: var(--second-color);
}

/*=============== BUTTON ===============*/
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  background-color: var(--first-color);
  color: var(--black-color);
  padding: 1rem 1.75rem;
  border-radius: 4rem;
  font-weight: var(--font-semi-bold);
  transition: box-shadow .4s, transform .4s, background-color .4s, color .4s;
}

.button:hover {
  box-shadow: 0 8px 24px hsla(43, 90%, 58%, .3);
  transform: translateY(-2px);
}

.button i {
  font-size: 1.25rem;
}

.button--ghost {
  background-color: transparent;
  color: var(--white-color);
  border: 2px solid var(--border-color);
}

.button--ghost:hover {
  border-color: var(--first-color);
  color: var(--first-color);
  box-shadow: none;
}

/* Home layout — large screens */
@media (width >= 1150px) {
  .home__container {
    grid-template-columns: 1fr 460px;
    align-items: center;
    column-gap: 4rem;
    padding-block: 3rem 4rem;
    min-height: 100svh;
  }

  .home__data {
    text-align: left;
  }

  .home__title {
    font-size: 3.5rem;
  }

  .home__description {
    margin-inline: 0;
  }

  .home__buttons {
    justify-content: flex-start;
  }

  .home__blob {
    width: 460px;
  }

  .home__circle {
    width: 7.5rem;
    height: 7.5rem;
  }
}


/*=============== ABOUT SECTION ===============*/
.about__container {
  row-gap: 3rem;
}

.about__image {
  position: relative;
  justify-self: center;
  width: 300px;
  max-width: 100%;
}

.about__img {
  width: 100%;
  border-radius: 1.5rem;
  border: 2px solid hsla(43, 90%, 58%, .35);
  box-shadow: 0 20px 60px hsla(348, 60%, 35%, .35);
}

.about__data {
  text-align: center;
}

.about__title {
  text-align: inherit;
  margin-bottom: 1.25rem;
}

.about__description {
  margin-bottom: 2.5rem;
}

.about__stats {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.about__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: 1.25rem 1rem;
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  transition: border-color .4s, transform .4s;
}

.about__stat:hover {
  border-color: var(--first-color);
  transform: translateY(-4px);
}

.about__number {
  font-family: var(--second-font);
  font-size: var(--bigger-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--first-color);
  line-height: 1;
}

.about__stat-label {
  font-size: var(--small-font-size);
  color: var(--text-color);
}

@media (width >= 1150px) {
  .about__container {
    grid-template-columns: 440px 1fr;
    align-items: center;
    column-gap: 4.5rem;
  }

  .about__image {
    width: 440px;
  }

  .about__data {
    text-align: left;
  }

  .about__stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*=============== PORTFOLIO SECTION ===============*/
.portfolio__filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 2.5rem;
}

.portfolio__filter {
  padding: .5rem 1.25rem;
  border-radius: 4rem;
  color: var(--text-color);
  font-weight: var(--font-medium);
  font-size: var(--small-font-size);
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  cursor: pointer;
  transition: color .3s, background-color .3s, border-color .3s;
}

.portfolio__filter:hover {
  color: var(--white-color);
  border-color: var(--first-color);
}

.portfolio__filter.active-filter {
  color: var(--black-color);
  background-color: var(--first-color);
  border-color: var(--first-color);
}

.portfolio__grid {
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

.portfolio__item {
  cursor: pointer;
  border-radius: 1rem;
  overflow: hidden;
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  transition: transform .4s, border-color .4s, box-shadow .4s;
}

.portfolio__item:hover {
  transform: translateY(-6px);
  border-color: hsla(43, 90%, 58%, .5);
  box-shadow: 0 16px 40px hsla(222, 60%, 2%, .5);
}

.portfolio__item:focus-visible {
  outline: 2px solid var(--first-color);
  outline-offset: 3px;
}

.portfolio__item.hide {
  display: none;
}

.portfolio__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, hsl(222, 40%, 13%), hsl(348, 45%, 22%));
  overflow: hidden;
}

.portfolio__thumb-icon {
  font-size: 3.5rem;
  color: hsla(0, 0%, 100%, .22);
}

.portfolio__thumb-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
}

.portfolio__item:hover .portfolio__thumb-img {
  transform: scale(1.06);
}

.portfolio__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, hsla(222, 45%, 4%, 0) 40%, hsla(222, 55%, 3%, .55));
  opacity: .55;
  transition: opacity .4s;
}

.portfolio__item:hover .portfolio__thumb::after {
  opacity: .85;
}

.portfolio__badge {
  position: absolute;
  top: .75rem;
  left: .75rem;
  padding: .25rem .75rem;
  border-radius: 4rem;
  font-size: var(--smaller-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--first-color);
  background-color: hsla(222, 40%, 6%, .7);
  backdrop-filter: blur(6px);
  z-index: 2;
}

.portfolio__play {
  position: absolute;
  right: .75rem;
  bottom: .75rem;
  width: 2.75rem;
  height: 2.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--black-color);
  background-color: var(--first-color);
  font-size: 1.25rem;
  z-index: 2;
  transition: transform .4s;
}

.portfolio__item:hover .portfolio__play {
  transform: scale(1.15);
}

.portfolio__info {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: 1rem 1.25rem 1.25rem;
}

.portfolio__title {
  font-size: var(--h3-font-size);
  font-family: var(--body-font);
  font-weight: var(--font-semi-bold);
  color: var(--white-color);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.portfolio__client {
  font-size: var(--smaller-font-size);
  color: var(--text-color);
}

/* "Coming soon" card for categories without samples yet */
.portfolio__item--soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: default;
  border-style: dashed;
}

.portfolio__item--soon:hover {
  transform: none;
  box-shadow: none;
  border-color: hsla(43, 90%, 58%, .45);
}

.portfolio__soon-icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: .9rem;
  font-size: 1.6rem;
  color: var(--first-color);
  background-color: var(--body-color);
  border: 1px solid var(--border-color);
}

.portfolio__soon-title {
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
  color: var(--white-color);
}

.portfolio__soon-note {
  font-size: var(--small-font-size);
  color: var(--text-color);
  margin-top: -.6rem;
}

.portfolio__soon-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--first-color);
  transition: gap .3s;
}

.portfolio__soon-cta:hover {
  gap: .7rem;
}

/* Video lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1rem;
  background-color: hsla(222, 50%, 2%, .85);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s;
}

.lightbox.show {
  opacity: 1;
  visibility: visible;
}

.lightbox__content {
  position: relative;
  width: min(960px, 100%);
}

.lightbox__video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: .75rem;
  overflow: hidden;
  box-shadow: 0 24px 80px hsla(0, 0%, 0%, .6);
}

.lightbox__iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.lightbox__close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white-color);
  background-color: hsla(0, 0%, 100%, .1);
  border: 1px solid var(--border-color);
  cursor: pointer;
  font-size: 1.25rem;
  transition: background-color .3s, color .3s;
}

.lightbox__close:hover {
  background-color: var(--first-color);
  color: var(--black-color);
}

/* Vertical (9:16) frame for YouTube Shorts */
.lightbox--vertical .lightbox__content {
  width: min(360px, 82vw);
}

.lightbox--vertical .lightbox__video {
  aspect-ratio: 9 / 16;
}

/* Image mode — full-size testimonial screenshots */
.lightbox__image {
  display: none;
}

.lightbox--image .lightbox__video {
  display: none;
}

.lightbox--image .lightbox__image {
  display: block;
}

.lightbox--image .lightbox__content {
  width: min(1040px, 100%);
}

.lightbox__img {
  width: 100%;
  height: auto;
  max-height: 85vh;
  object-fit: contain;
  border-radius: .75rem;
  box-shadow: 0 24px 80px hsla(0, 0%, 0%, .6);
}

@media (width >= 768px) {
  .portfolio__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width >= 1150px) {
  .portfolio__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*=============== YOUTUBE SECTION ===============*/
.youtube__grid {
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.youtube__video {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border-color);
  background-color: var(--container-color);
  transition: border-color .4s, transform .4s, box-shadow .4s;
}

.youtube__video:hover {
  transform: translateY(-6px);
  border-color: hsla(43, 90%, 58%, .5);
  box-shadow: 0 16px 40px hsla(222, 60%, 2%, .5);
}

.youtube__video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}

.youtube__cta {
  display: flex;
  justify-content: center;
}

@media (width >= 768px) {
  .youtube__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width >= 1150px) {
  .youtube__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*=============== SERVICES SECTION ===============*/
.services__grid {
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
}

.services__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem 1.75rem;
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: 1.25rem;
  transition: transform .4s, border-color .4s, box-shadow .4s;
}

.services__card:hover {
  transform: translateY(-6px);
  border-color: hsla(43, 90%, 58%, .5);
  box-shadow: 0 16px 40px hsla(222, 60%, 2%, .5);
}

.services__icon {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: .9rem;
  font-size: 1.75rem;
  color: var(--black-color);
  background-image: var(--gradient-color);
}

.services__title {
  font-size: var(--h3-font-size);
  color: var(--white-color);
}

.services__description {
  font-size: var(--small-font-size);
  flex-grow: 1;
}

.services__cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .5rem;
  padding: .6rem 1.25rem;
  border-radius: 4rem;
  font-weight: var(--font-semi-bold);
  font-size: var(--small-font-size);
  color: var(--first-color);
  border: 1.5px solid var(--first-color);
  transition: color .3s, background-color .3s, box-shadow .3s;
}

.services__cta:hover {
  color: var(--black-color);
  background-color: var(--first-color);
  box-shadow: 0 8px 24px hsla(43, 90%, 58%, .3);
}

.services__cta i {
  font-size: 1.15rem;
}

@media (width >= 576px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (width >= 1150px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/*=============== SKILLS SECTION ===============*/
.skills__description {
  text-align: center;
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.skills__grid {
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 1rem;
}

.skills__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  padding: 1.25rem .75rem;
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  transition: transform .4s, border-color .4s;
}

.skills__item:hover {
  transform: translateY(-5px);
  border-color: var(--first-color);
}

.skills__logo {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: .9rem;
  object-fit: contain;
  font-family: var(--second-font);
  font-weight: var(--font-semi-bold);
  font-size: 1.25rem;
  color: var(--first-color);
  background-color: var(--body-color);
  border: 1px solid var(--border-color);
}

.skills__name {
  font-size: var(--small-font-size);
  color: var(--text-color);
  text-align: center;
}

/*=============== CLIENTS / TRUSTED BY ===============*/
.clients__eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: var(--small-font-size);
  color: var(--text-color);
  margin-bottom: 2.5rem;
}

.clients__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem 2rem;
}

.clients__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  width: 150px;
}

.clients__tile {
  display: grid;
  place-items: center;
  width: 100%;
  height: 92px;
  padding: 1rem 1.25rem;
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  transition: transform .3s, box-shadow .3s;
}

.clients__item:hover .clients__tile {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px hsla(222, 50%, 2%, .45);
}

.clients__logo {
  width: auto;
  max-width: 100%;
  max-height: 56px;
  object-fit: contain;
}

.clients__name {
  font-size: var(--small-font-size);
  color: var(--text-color);
  text-align: center;
}

/*=============== TESTIMONIALS SECTION ===============*/
.testimonials__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem 1rem;
  margin-bottom: 3rem;
}

.testimonials__stars {
  display: inline-flex;
  gap: .15rem;
  color: var(--first-color);
  font-size: 1.25rem;
}

.testimonials__score {
  font-family: var(--second-font);
  font-size: var(--h2-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--white-color);
}

.testimonials__count {
  font-size: var(--small-font-size);
  color: var(--text-color);
}

.testimonials__swiper {
  padding-bottom: 3.5rem;
}

.testimonials__swiper .swiper-slide {
  height: auto;
}

.testimonials__shot {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  cursor: zoom-in;
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  border-radius: 1rem;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}

.testimonials__shot img {
  width: 100%;
  height: auto;
}

.testimonials__shot:hover,
.testimonials__shot:focus-visible {
  border-color: var(--first-color);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px hsla(222, 50%, 2%, .5);
}

.testimonials__swiper .swiper-pagination-bullet {
  background-color: var(--text-color);
}

.testimonials__swiper .swiper-pagination-bullet-active {
  background-color: var(--first-color);
}

/*=============== CONTACT SECTION ===============*/
.contact__container {
  text-align: center;
}

.contact__description {
  max-width: 420px;
  margin: 0 auto 2.5rem;
}

.contact__socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact__social {
  display: grid;
  place-items: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  font-size: 1.4rem;
  color: var(--white-color);
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  transition: transform .3s, color .3s, background-color .3s, border-color .3s;
}

.contact__social:hover {
  transform: translateY(-4px);
  color: var(--black-color);
  background-color: var(--first-color);
  border-color: var(--first-color);
}

.contact__button i {
  font-size: 1.35rem;
}

/*=============== FOOTER ===============*/
.footer {
  padding-block: 3rem 2.5rem;
  border-top: 1px solid var(--border-color);
  background-color: var(--body-color);
}

.footer__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer__logo {
  display: inline-flex;
}

.footer__logo-img {
  width: 4.5rem;
  height: 4.5rem;
  filter: brightness(0) invert(1);
  transition: filter .4s, transform .4s;
}

.footer__logo:hover .footer__logo-img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px hsla(43, 90%, 58%, .7));
  transform: scale(1.04);
}

.footer__tagline {
  font-family: var(--second-font);
  color: var(--white-color);
  font-weight: var(--font-medium);
}

.footer__socials {
  display: flex;
  gap: 1rem;
}

.footer__social {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--white-color);
  background-color: var(--container-color);
  border: 1px solid var(--border-color);
  transition: transform .3s, color .3s, background-color .3s, border-color .3s;
}

.footer__social:hover {
  transform: translateY(-4px);
  color: var(--black-color);
  background-color: var(--first-color);
  border-color: var(--first-color);
}

.footer__copy {
  font-size: var(--small-font-size);
  color: var(--text-color);
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
  width: .6rem;
  background-color: hsl(var(--hue), 20%, 12%);
}

::-webkit-scrollbar-thumb {
  border-radius: 4rem;
  background-color: hsl(var(--hue), 16%, 24%);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--first-color);
}

/*=============== SCROLL UP ===============*/
.scrollup {
  position: fixed;
  right: 1rem;
  bottom: -30%;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: .75rem;
  font-size: 1.25rem;
  color: var(--black-color);
  background-color: var(--first-color);
  box-shadow: 0 8px 24px hsla(43, 90%, 58%, .3);
  z-index: var(--z-tooltip);
  transition: bottom .4s, transform .4s;
}

.scrollup:hover {
  transform: translateY(-.25rem);
}

/* Show Scroll Up */
.show-scroll {
  bottom: 3rem;
}


/*=============== BREAKPOINTS ===============*/
/* For medium devices <> */
@media (width >= 540px){
  .nav__menu{
    width: 50%;
  }
}

/* For large devices <> */
@media (width >= 1150px){
  .container{
    margin-inline: auto;
  }

  .section{
    padding-block: 7rem 2rem;
  }
  .section__title{
    margin-bottom: 3rem;
  }

  .nav{
    height: calc(var(--header-height) + 2rem);
    align-items: center;
  }
  .nav__logo-img{
    height: 3.5rem;
    width: auto;
  }
  .nav__toggle,
  .nav__close{
    display: none;
  }
  .nav__menu{
    width: initial;
  }
  .nav__list{
    flex-direction: row;
    align-items: center;
    column-gap: 2rem;
  }

  
}

/* For 2K resolutions <> */
