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

:root {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --text: #f4f0e8;
  --muted: #a8a59e;
  --line: rgba(255,255,255,.12);
--accent: #2563eb;
--accent-soft: #60a5fa;
  --card: #141414;
  --max: 1240px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: .025;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.site-header {
  height: 82px;
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 30;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--text);
  color: #111;
  font: 800 18px "Manrope";
}
.brand-mark img {
  width: 180%;
  height: 180%;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: .85;
  margin-left: 15px;
  transform: translateY(5px);
}

.brand-text span {
  font: 800 15px "Manrope";
  letter-spacing: .15em;
}

.brand-text small {
  margin-top: 5px;
  font-size: 8px;
  letter-spacing: .32em;
  color: var(--muted);
}

.desktop-nav {
  display: flex;
  gap: 36px;
}

.desktop-nav a {
  font-size: 14px;
  color: #d4d0c8;
  transition: .25s ease;
}

.desktop-nav a:hover { color: white; }

.header-cta {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 13px;
  transition: .25s ease;
}

.header-cta:hover {
  background: white;
  color: #111;
}

.menu-btn,
.mobile-menu { display: none; }

.hero {
  min-height: calc(100vh - 82px);
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 90px 0 74px;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 48px;
  position: relative;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: .16;
  pointer-events: none;
}

.orb-one {
  width: 380px; height: 380px;
  background: #ff5a1f;
  right: 15%;
  top: 15%;
}

.orb-two {
  width: 260px; height: 260px;
  background: #9333ea;
  right: 0;
  bottom: 10%;
}

.eyebrow {
  color: var(--accent-soft);
  font: 700 11px "Manrope";
  letter-spacing: .22em;
  margin-bottom: 22px;
}

.hero h1,
.section h2,
.contact h2 {
  font-family: "Manrope";
  letter-spacing: -.045em;
}

.hero h1 {
  font-size: clamp(62px, 7.4vw, 112px);
  line-height: .93;
  max-width: 850px;
  font-weight: 700;
}

.hero h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
  color: var(--accent);
}

.hero-sub {
  max-width: 620px;
  color: #b9b5ad;
  font-size: 18px;
  line-height: 1.65;
  margin-top: 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 38px;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: .25s ease;
}

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

.btn-primary:hover { transform: translateY(-2px); }

.btn-ghost {
  border: 1px solid var(--line);
}

.btn-ghost:hover {
  background: rgba(255,255,255,.06);
}

.hero-card {
  display: flex;
  justify-content: center;
}

.hero-card-inner {
  width: min(430px, 100%);
  aspect-ratio: .8;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.01)),
    radial-gradient(circle at 15% 20%, rgba(255,90,31,.28), transparent 35%),
    #0f0f0f;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: rotate(3deg);
  box-shadow: 0 40px 120px rgba(0,0,0,.45);
}

.hero-card-kicker {
  font: 700 11px "Manrope";
  letter-spacing: .2em;
  color: #b8b4ad;
}

.hero-card-title {
  font: 800 clamp(34px, 4vw, 54px)/.96 "Manrope";
  letter-spacing: -.045em;
}

.hero-card-footer {
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  letter-spacing: .13em;
  color: #a6a29a;
}

.scroll-hint {
  position: absolute;
  left: 0;
  bottom: 26px;
  font-size: 9px;
  letter-spacing: .18em;
  color: #76736d;
  display: flex;
  gap: 12px;
}

.stats-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4,1fr);
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

.stats-strip div {
  padding: 26px 18px;
  border-right: 1px solid var(--line);
}

.stats-strip div:last-child { border-right: 0; }

.stats-strip strong {
  display: block;
  font: 700 25px "Manrope";
}

.stats-strip span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 5px;
  display: block;
}

.section {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  padding: 130px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr .65fr;
  gap: 50px;
  align-items: end;
  margin-bottom: 58px;
}

.section-heading h2,
.about h2 {
  font-size: clamp(50px, 6vw, 84px);
  line-height: .98;
  font-weight: 650;
}

.section-heading > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 460px;
  justify-self: end;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 320px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.25);
}

.service-card.featured {
  background:
    radial-gradient(circle at 90% 10%, rgba(255,90,31,.26), transparent 34%),
    #151515;
}

.service-num {
  font: 700 11px "Manrope";
  color: #79756f;
  letter-spacing: .12em;
}

.service-card h3 {
  font: 650 30px "Manrope";
  letter-spacing: -.03em;
  margin-bottom: 12px;
}

.service-card p {
  max-width: 500px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.service-arrow {
  position: absolute;
  right: 25px;
  top: 25px;
  font-size: 20px;
  color: #706d67;
}

.projects {
  padding-top: 70px;
}

.project-grid {
  display: grid;
grid-template-columns: 1fr 1fr;  gap: 18px;
}

.project {
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line);
  isolation: isolate;
}

.project {
    min-height: 0;
    aspect-ratio: 16 / 9;
}
.project-overlay {
  z-index: 2;
}

.project-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.35);
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.project-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.35);
  color: white;
  font-size: 30px;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-play-button.playing {
  opacity: 0;
}



.project-a:hover .video-play-button.playing {
  opacity: 1;
}
.project::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  transition: transform .5s ease;
}

.project:hover::before { transform: scale(1.035); }

.project::after {
  content:"";
  position:absolute;
  inset:0;
  z-index:-1;
  background: linear-gradient(to top, rgba(0,0,0,.88), rgba(0,0,0,.06) 70%);
}

.project-a::before {
   background-image: url("images/image 1.jpg");
  background-size: cover;
  background-position: center;
}

.project-b::before {
  background-image: url("Images/Image 2.PNG");
  background-size: cover;
  background-position: center;
}
.project-c::before {
  background-image: url("Images/Image 3.jpg");
  background-size: cover;
  background-position: center;
}


.project-d::before {
    background-image: url("Images/Image 4.jpg");
  background-size: cover;
  background-position: center;
}


.project-overlay {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 2;
}

.project-overlay span {
  font: 700 10px "Manrope";
  letter-spacing: .18em;
  color: #c7c2ba;
}

.project-overlay h3 {
  font: 650 33px "Manrope";
  letter-spacing: -.035em;
  margin: 9px 0 8px;
}

.project-overlay p {
  color: #bdb9b1;
  line-height: 1.55;
  max-width: 600px;
  font-size: 14px;
}
.project-overlay span {
  min-height: 16px;
}

.project-overlay h3 {
  min-height: 48px;
  display: flex;
  align-items: flex-end;
}

.project-overlay p {
  min-height: 44px;
  margin-bottom: 0;
}
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 22px;
  align-items: center;
  animation: marquee 20s linear infinite;
  font: 700 34px "Manrope";
  letter-spacing: -.03em;
}

.marquee-track span { color: #d9d5ce; }
.marquee-track i { color: var(--accent); font-style: normal; }

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.about-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
}

.about-copy .lead {
  font: 500 28px/1.45 "Manrope";
  letter-spacing: -.02em;
  color: #e2ded6;
}

.about-copy > p:not(.lead) {
  color: var(--muted);
  line-height: 1.75;
  max-width: 670px;
  margin-top: 24px;
}

.pill-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.pill-row span {
  border: 1px solid var(--line);
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 12px;
  color: #c1bdb5;
}

.process {
  padding-top: 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}

.process-grid article {
  padding: 30px 18px 14px 0;
  border-top: 1px solid var(--line);
}

.process-grid span {
  color: var(--accent-soft);
  font-size: 11px;
  letter-spacing: .14em;
}

.process-grid h3 {
  font: 650 23px "Manrope";
  margin: 18px 0 10px;
}

.process-grid p {
  color: var(--muted);
  line-height: 1.65;
  font-size: 13px;
}

.contact {
  margin: 60px auto 0;
  width: min(calc(100% - 48px), var(--max));
  min-height: 610px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 78% 24%, rgba(255,90,31,.36), transparent 31%),
    radial-gradient(circle at 12% 90%, rgba(147,51,234,.18), transparent 28%),
    #f15a24;
  color: white;
  padding: 90px 8%;
display: grid;
grid-template-columns: 1.8fr 0.2fr;
align-items: center;
justify-items: stretch;
gap: 20px;
  position: relative;
  overflow: hidden;
}

.contact .eyebrow { color: rgba(255,255,255,.75); }

.contact h2 {
  font-size: clamp(60px, 8vw, 110px);
  line-height: .92;
  max-width: 900px;
}

.contact > p:not(.eyebrow) {
  font-size: 18px;
  margin-top: 22px;
  color: rgba(255,255,255,.84);
}

.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.btn-light {
  background: white;
  color: #151515;
}

.btn-outline-light {
  border: 1px solid rgba(255,255,255,.5);
}

.contact-note {
  margin-top: 28px;
  font-size: 11px;
  color: rgba(255,255,255,.62);
}

footer {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
  min-height: 180px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 24px;
}

.footer-copy {
  text-align: center;
  color: #77736c;
  font-size: 11px;
}

.footer-links { text-align: right; }
.footer-links a { color: #aaa59d; font-size: 12px; }

@media (max-width: 900px) {
  .desktop-nav, .header-cta { display:none; }

  .menu-btn {
    display: flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: transparent;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    align-items: center;
  }

  .menu-btn span {
    width: 16px; height: 1px; background:white;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    inset: 82px 24px auto;
    background: #111;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    z-index: 50;
    flex-direction: column;
    gap: 18px;
  }

  .mobile-menu.open { display:flex; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 50px;
  }

  .hero-card { justify-content: flex-start; }
  .hero-card-inner { width: 72%; }

  .stats-strip {
    grid-template-columns: repeat(2,1fr);
  }

  .stats-strip div:nth-child(2) { border-right:0; }
  .stats-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .section-heading,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .section-heading > p { justify-self:start; }

  .process-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .stats-strip,
  .section,
  .contact,
  footer {
    width: min(calc(100% - 30px), var(--max));
  }

  .site-header { height: 72px; }

  .brand-text span { font-size: 13px; }

  .hero {
    min-height:auto;
    padding: 48px 0 76px;
  }

  .hero h1 { font-size: clamp(52px, 15vw, 78px); }
  .hero-sub { font-size: 16px; }

  .hero-card-inner {
    width: 92%;
    margin-top: 18px;
  }

  .scroll-hint { display:none; }

  .service-grid,
  .project-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section { padding: 88px 0; }

  .section-heading h2,
  .about h2 {
    font-size: 48px;
  }

  .service-card { min-height: 270px; }

.project {
  min-height: 0;
  aspect-ratio: 16 / 9;
}
  .about-copy .lead { font-size: 23px; }

  .contact {
    min-height: 520px;
    padding: 64px 28px;
  }

  footer {
    grid-template-columns:1fr;
    padding: 55px 0;
    min-height:auto;
  }

  .footer-copy, .footer-links { text-align:left; }
}
.service-visual {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
  border-radius: 16px;
  margin-top: 22px;
  display: block;
}
.creative-visual {
  height: 300px;
}
.project-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.project-a .project-overlay {
  pointer-events: none;
}
.video-progress {
  position: absolute;
  left: 5%;
  bottom: 18px;
  width: 90%;
  height: 4px;
  z-index: 10;
  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 10px;
  outline: none;
}
.video-progress::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: white;
  cursor: pointer;
}
.video-time {
  position: absolute;
  right: 5%;
  bottom: 30px;
  z-index: 11;

  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
}
.contact {
  position: relative;
  display: grid;
  grid-template-columns: 2.15fr 0.00fr;
  gap: 20px;
  align-items: center;
  justify-items: center;

  min-height: 680px;
  padding: 70px;

  background:
    radial-gradient(
      circle at 0% 50%,
      rgba(96, 165, 250, 0.30),
      rgba(37, 99, 235, 0.12) 34%,
      transparent 62%
    ),
    #0b0b0b;

  border: 1px solid var(--line);
  border-radius: 36px;
  overflow: hidden;
}

.contact-clients {
  position: relative;
  z-index: 2;
    width: 100%;
  justify-self: center;
}



.clients-grid span {
  min-height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 12px 14px;

  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;

  background: rgba(255,255,255,0.025);

  color: rgba(255,255,255,0.62);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;

  transition: 0.3s ease;
}

.clients-grid span:hover {
  color: white;
  border-color: var(--accent-soft);
  background: rgba(96,165,250,0.08);
  transform: translateY(-2px);
}

.contact-content {
  position: relative;
  z-index: 2;
  padding-top: 45px;
}

.contact-content h2 {
  font-size: clamp(58px, 6vw, 96px);
  line-height: 0.94;
  margin: 18px 0 24px;
}

.contact-description {
  max-width: 520px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

.contact-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .contact {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 55px 40px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .contact {
    padding: 45px 22px;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }

  .clients-grid span {
    min-height: 52px;
    font-size: 10px;
    padding: 10px;
  }

  .contact-content h2 {
    font-size: 48px;
  }
}
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

/* CLIENT LOGOS */

.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 110px;

  width: 100%;

  column-gap: 60px;
  row-gap: 14px;

  margin-top: 24px;
}

.client-logo {
  width: 100%;
  height: 110px;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 0;
  overflow: visible;
}

.client-logo img {
  display: block;
  width: 180px;
  height: 70px;

  object-fit: contain;
  object-position: center;

  transform-origin: center center;

  transition:
    filter 0.3s ease,
    opacity 0.3s ease;
}

.client-logo img {
  opacity: 0.88;
  transition:
  scale 0.25s ease,
  filter 0.3s ease,
  opacity 0.3s ease;
}


/* Aspire */
.logo-aspire img {
  transform: scale(4.35);
}

/* Brightskies */
.logo-brightskies img {
  transform: scale(2.00);
}

/* Carpediem */
.logo-carpediem img {
  transform: scale(2.15);
}

/* Etisalat */
.logo-etisalat img {
  transform: scale(3.00);
}

/* Heidelberg */
.logo-heidelberg img {
  transform: scale(3.35);
}

/* Kirovest */
.logo-kirovest img {
  transform: scale(2.35);
}

/* Lafarge */
.logo-lafarge img {
  transform: scale(0.85);
}

/* Life Sports Club */
.logo-life img {
  transform: scale(1.35);
}

/* Option Travel */
.logo-option img {
  transform: scale(1.35);
 filter: grayscale(1) brightness(0) invert(1);
}

/* Orange */
.logo-orange img {
  transform: scale(1.35);
}

/* Saint Gobain */
.logo-saintgobain img {
  transform: scale(2.35);
}

/* Vodafone */
.logo-vodafone img {
  transform: scale(2.00);
}
.clients-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.clients-title-line {
  display: block;
  width: 42px;
  height: 2px;
  background: #60a5fa;
  border-radius: 10px;
  box-shadow: 0 0 14px rgba(96, 165, 250, 0.55);
}

.clients-title p {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.95);
}

.clients-subtitle {
  display: block;
  margin-top: 7px;

  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.20em;

  color: rgba(255, 255, 255, 0.38);
}

.clients-title-line {
  transition: width 0.35s ease,
              box-shadow 0.35s ease;
}

.contact-clients:hover .clients-title-line {
  width: 68px;
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.75);
}
.contact-title {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
}

.contact-title-line {
  display: block;
  width: 42px;
  height: 2px;
  background: #60a5fa;
  border-radius: 10px;
  box-shadow: 0 0 14px rgba(96, 165, 250, 0.55);
}

.contact-title p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.20em;
  color: rgba(255, 255, 255, 0.95);
}

.contact-subtitle {
  display: block;
  margin-top: 7px;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.38);
}
.contact-title-line {
  transition: width 0.35s ease,
              box-shadow 0.35s ease;
}

.contact-content:hover .contact-title-line {
  width: 68px;
  box-shadow: 0 0 20px rgba(96, 165, 250, 0.75);
}
@media (max-width: 620px) {

  .contact {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 42px 24px;
  }

  .contact-clients,
  .contact-content {
    width: 100%;
  }

  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 18px;
    row-gap: 18px;
    width: 100%;
  }

  .client-logo {
    height: 92px;
    overflow: visible;
  }

  .contact-title,
  .clients-title {
    width: 100%;
  }

  .contact-content h2 {
    font-size: 48px;
    line-height: 0.95;
  }

.contact-description {
  width: 100%;
  max-width: none;
  font-size: 16px;
  line-height: 1.5;
  padding-right: 0;
  margin-right: 0;
  margin-left: -8px;
  }

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;

  width: calc(100% - 24px);
  margin-left: 0;
  margin-right: auto;
}
.contact-actions .btn {
  width: 100%;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.project-overlay {
  bottom: 54px;
}

.video-time {
  bottom: 30px;
  right: 20px;
  font-size: 12px;
}

.video-progress {
  bottom: 14px;
  left: 6%;
  width: 88%;
}
}