/* ============ GLOBAL RESET ============ */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ============ NAVBAR ============ */
.navbar {
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 60;
  transition:
    background-color 0.25s ease,
    box-shadow 0.25s ease,
    color 0.18s ease,
    padding 0.18s ease;
  background: transparent;
  color: #fff;
  pointer-events: none; /* children control pointer events */
}

.nav-left {
  display: flex;
  align-items: center;
  pointer-events: auto;
}

/* .nav-logo {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 500;
  color: #fff;
}

.nav-logo span {
  font-weight: 700;
} */

.nav-logo img {
  height: 65px; 
 
  width: auto;
  display: block; 
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  pointer-events: auto;
}

.nav-links .nav-link {
  text-decoration: none;
  color: #ea5b26;
  font-size: 11px;
  letter-spacing: 0.8px;
  transition: color 0.18s ease;
}

.nav-links .nav-link:hover {
  color: #e8eef8;
}

.hamburger {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  padding: 8px;
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.95);
}

/* simple hamburger icon */
.hamburger-icon .line {
  transition:
    transform 0.28s cubic-bezier(0.2, 0.9, 0.2, 1),
    opacity 0.18s ease;
}

/* mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 55;
  display: none;
  background: radial-gradient(circle at 30% 40%, rgba(60, 30, 120, 0.12), rgba(0, 0, 0, 0.85));
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  opacity: 0;
  visibility: hidden;
}

.mobile-menu.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.mobile-menu-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 26px;
}

.mobile-link {
  color: #e8eef8;
  text-decoration: none;
  font-size: 22px;
  letter-spacing: 1px;
  padding: 12px 20px;
}

.mobile-link:hover {
  color: #fff;
  transform: translateY(-3px);
}

/* SCROLLED NAVBAR STATE */
.navbar.scrolled {
  background: #fff;
  color: #0b1220;
  box-shadow: 0 6px 18px rgba(6, 10, 20, 0.08);
  padding: 12px 40px;
}

.navbar.scrolled .nav-link {
  color: #ea5b26;
}



.navbar.scrolled .hamburger {
  color: #0b1220;
}

/* Responsive navbar */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: inline-flex;
  }
}

/* ============ HERO ============ */
.hero {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 80px;
  text-align: center;
  overflow: hidden;
  z-index: 0;
}

.video-wrap {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-video,
.video-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 5;
}

.hero-video {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  filter:
    saturate(0.9)
    contrast(0.95)
    brightness(0.85);
}

.video-fallback {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1100px;
  margin: 0 auto;
}

.subtitle {
  color: #ea5b26;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 22px;
  font-weight: 600;
}

.hero-title {
  font-size: 64px;
  line-height: 1.05;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}

.gradient-text {
  font-weight: 800;
  background: linear-gradient(90deg, #4dc4ef, #683786);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.description {
  margin-top: 24px;
  max-width: 760px;
  font-size: 20px;
  color: rgba(215, 225, 238, 0.85);
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 22px;
}

.btn {
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 35px;
  text-decoration: none;
  transition: 0.25s ease;
}

.btn.primary {
  background: #ea5b26;
  color: #fff;
}

.btn.primary:hover{
   background: #fadbdb;
  transform: translateY(-1px);
  color: #ea5b26;
}

.btn.secondary {
  border: 1px solid #ea5b26;
  color: #fff;
}

.btn.secondary:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #ea5b26;
}

/* Hero media queries */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 48px;
  }

  .description {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding-top: 120px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .btn {
    width: 220px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 34px;
  }

  .description {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* AUDIO / MUTE BUTTON (added) */
.audio-toggle {
  --size: 30px;
  position: fixed;
  z-index: 6000; /* above hero content */
  right: 22px;
  bottom: 22px;
  width: var(--size);
  height: var(--size);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
  transition: transform 0.12s ease, background 0.12s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

/* .audio-toggle:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.10);
} */

/* icons inside button */
.audio-toggle .audio-icon {
  width: 20px;
  height: 20px;
  display: block;
}

/* default show audio-on, hide audio-off (JS manages visibility too) */
.audio-toggle .audio-off {
  display: none;
}

/* small focus styles */
.audio-toggle:focus {
  outline: 2px solid rgba(90,140,255,0.6);
  outline-offset: 3px;
}

/* ensure button is reachable on small screens */
@media (max-width: 640px) {
  .audio-toggle {
    --size: 30px;
    right: 16px;
    bottom: 16px;
  }
  .audio-toggle .audio-icon {
    width: 18px;
    height: 18px;
  }
}

/* make sure button doesn't overlap hero buttons on very small screens */
@media (max-width: 420px) {
  .audio-toggle {
    right: 12px;
    bottom: 12px;
  }
}

/* ============ MAIN CONTENT (BELOW HERO) ============ */
.page-content {
  position: relative;
  z-index: 5;
  margin-top: 100vh;
  background:
    radial-gradient(circle at 10% 5%, rgba(0, 14, 34, 0.55), transparent 10%),
    radial-gradient(circle at 85% 25%, rgba(116, 61, 162, 0.45), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(106, 166, 255, 0.35), transparent 30%),
    #000;
  background-attachment: fixed;
  color: #fff;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  box-shadow: inset 0px 3px 0px 0px rgba(79, 205, 247, 0.3);
}

/* ============ ABOUT US STRIP ============ */
.aboutus-strip {
  position: relative;
  padding: 80px 40px 90px;
  background: transparent;
  z-index: 1;
}

.aboutus-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.aboutus-label span {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ea5b26;
}

.aboutus-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 16px;
}

.aboutus-content p:last-of-type {
  margin-bottom: 32px;
}

.aboutus-btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #ea5b26;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.aboutus-btn:hover {
  background: #fadbdb;
  transform: translateY(-1px);
  color: #ea5b26;
}

.aboutus-btn:hover .btn-icon{
  background:#ea5b26 ;
  /* transform: translateX(5px); */
}

.btn-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-arrow {
  display: block;
  font-size: 20px;
  line-height: 1;
  color: #ea5b26;
}

.aboutus-btn:hover .btn-arrow{
  color:#fadbdb;
}

/* ============ WHY / WHY-Y STRIPS ============ */

.whyy-section {
  position: relative;
  padding: 10px 40px 10px;
  background: transparent;
  z-index: 1;
}

.why-section {
  position: relative;
  padding: 70px 40px 90px;
  background: transparent;
  z-index: 1;
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* ---- Heading row ---- */
.why-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 40px;
}

.why-heading-left {
  max-width: 680px;
}

.why-kicker {
  display: inline-block;
  font-size: 18px;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: #ea5b26;
  margin-bottom: 16px;
}

.why-title {
  font-size: 40px;
  line-height: 1.1;
  font-weight: 400;
  color: #ffffff;
}

.why-title span {
  font-weight: 600;
  color: #ffffff;
}

/* thin gradient line on right */
.why-heading-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.why-heading-leftt {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.why-accent-line {
  display: block;
  width: 150px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4ea2ff, #b778ff);
  opacity: 0.9;
}

/* ---- Card grid ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

/* card base */
.why-card {
  position: relative;
  padding: 32px 32px 30px;
  border-radius: 24px;
  background: radial-gradient(circle at 0 0, rgb(28 59 178 / 20%), transparent 100%), #1b1c20;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.65);
  border: 1px solid rgba(222, 116, 248, 0.3);
  display: flex;
  flex-direction: column;
  min-height: 280px;
}

/* icon pill */
.why-icon-wrap {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}

/* background variants */
.why-icon-blue {
  background: rgba(10, 56, 93, 0.5);
  border: 1px solid rgba(10, 56, 93, 1);
}

.why-icon-purple {
  background: rgba(59, 21, 79, 0.5);
  border: 1px solid rgba(59, 21, 79, 1);
}

.why-icon-teal {
  background: rgba(0, 72, 85, 0.5);
  border: 1px solid rgba(0, 72, 85, 1);
}

.why-icon-symbol {
  font-size: 28px;
}

/* titles + text */
.why-card-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ffffff;
}

.why-card-text {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(235, 245, 255, 0.9);
}

/* bottom-right tiny arrow (optional) */
.why-card-corner-icon {
  position: absolute;
  right: 26px;
  bottom: 20px;
  font-size: 14px;
  color: rgba(235, 245, 255, 0.6);
}

/* WHY section media queries */
@media (max-width: 1100px) {
  .why-title {
    font-size: 40px;
  }
  .why-card-title {
  font-size: 24px;
}

.why-card-text {
  font-size: 20px;
}
}

@media (max-width: 900px) {
  .why-section {
    padding: 60px 24px 70px;
  }

  .why-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .why-heading-right {
    width: 100%;
    justify-content: flex-start;
  }

  .why-accent-line {
    width: 120px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-card {
    min-height: 0;
  }
}

@media (max-width: 540px) {
  .why-section {
    padding: 48px 18px 60px;
  }

  .why-title {
    font-size: 28px;
  }

  .why-card {
    padding: 26px 22px 26px;
    border-radius: 20px;
  }

  .why-icon-wrap {
    width: 64px;
    height: 64px;
    border-radius: 20px;
  }

  .why-card-title {
    font-size: 20px;
  }

  .why-card-text {
    font-size: 16px;
  }
}

/* ============ OUR WORK SECTION ============ */
.work-section {
  position: relative;
  padding: 64px 24px 90px;
  background: transparent;
  color: #fff;
  z-index: 1;
}

.workhead-inner {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

.workhead-label span {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ea5b26;
}

.workhead-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #ffffff;
}

.work-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.work-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 28px 0;
}

.work-row.reverse {
  direction: ltr;
}

.work-row.reverse .video-card {
  justify-self: end;
}

.video-card {
  width: 100%;
  max-width: 720px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  box-shadow: 0 18px 50px rgba(2, 6, 23, 0.6);
  position: relative;
}

.sample-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
  vertical-align: middle;
}

.video-toggle {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  cursor: pointer;
  z-index: 3;
  transition:
    background 0.18s ease,
    transform 0.12s ease;
}

.video-toggle:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.12);
}

.video-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 16px;
  border-color: transparent transparent transparent rgba(255, 255, 255, 0.95);
}

.work-copy {
  color: #eaf3ff;
  max-width: 520px;
}

.work-copy h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.work-copy p {
  color: rgba(235, 245, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 18px;
  font-size: 16px;
}

.explore-btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  text-decoration: none;
  border: 1px solid #ea5b26;
  font-size: 14px;
}

.explore-btn:hover{
    background: rgba(255, 255, 255, 0.06);
  color: #ea5b26;
}

.work-divider {
  border: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(167, 101, 241, 0.5), transparent);
  margin: 8px 0 28px;
}

/* ABOUT & WORK media queries */
@media (max-width: 1024px) {
  .aboutus-strip {
    padding: 70px 24px 80px;
  }

  .aboutus-content p {
    font-size: 20px;
  }

  .workhead-content p {
    font-size: 20px;
  }

  .work-copy p {
  font-size: 20px;
}

.work-copy h3 {
  font-size: 24px;
}
}

@media (max-width: 820px) {
  .aboutus-inner,
  .workhead-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 540px) {
  .aboutus-strip {
    padding: 56px 18px 64px;
  }

  .aboutus-label span,
  .workhead-label span {
    font-size: 18px;
  }

  .aboutus-content p,
  .workhead-content p {
    font-size: 16px;
  }

  .aboutus-btn {
    width: 100%;
    justify-content: center;
  }
    .work-copy p {
  font-size: 16px;
}
.work-copy h3 {
  font-size: 20px;
}
}

@media (max-width: 900px) {
  .work-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .video-card {
    max-width: 100%;
    border-radius: 12px;
  }

  .video-toggle {
    right: 12px;
    bottom: 12px;
    width: 44px;
    height: 44px;
  }
}

/* ========== FOOTER ========== */
.site-footer {
  background: #05060a;
  color: #e5ecff;
  padding: 48px 24px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

/* TOP AREA */
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

/* BRAND BLOCK */
.footer-brand {
  max-width: 520px;
}

/* .footer-logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
} */

.footer-logo-row {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.footer-logo-img {
  height: 45px;   /* Adjust this value to match your layout */
  width: auto;
  display: block;
}


/* circular pill with HD */
.footer-logo-pill {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: radial-gradient(circle at 30% 20%, #6aa6ff, #3044c8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.footer-logo-text {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.footer-logo-text span {
  font-weight: 700;
}

/* tagline */
.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(227, 235, 255, 0.9);
  margin: 0 0 18px;
}

/* social icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(240, 245, 255, 0.96);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.02);
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    border-color 0.18s ease;
}

.footer-social-btn:hover {
  background: rgba(90, 140, 255, 0.25);
  border-color: rgba(120, 185, 255, 0.8);
  transform: translateY(-2px);
}

/* NAV COLUMN */
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-heading {
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(210, 220, 255, 0.95);
  margin: 0 0 12px;
}

.footer-nav a {
  font-size: 14px;
  color: rgba(230, 238, 255, 0.9);
  text-decoration: none;
  padding: 2px 0;
  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.footer-nav a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

/* CONTACT COLUMN */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.footer-contact-icon {
  font-size: 16px;
  line-height: 1;
  margin-top: 2px;
}

.footer-contact p {
  margin: 0;
  font-size: 14px;
  color: rgba(230, 238, 255, 0.9);
}

.footer-contact-sub {
  color: rgba(180, 190, 210, 0.9);
}

/* DIVIDER */
.footer-divider {
  margin: 32px 0 18px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.02)
  );
}

/* BOTTOM BAR */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: rgba(160, 172, 198, 0.9);
}

.footer-copy {
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

.footer-bottom-links a {
  color: rgba(200, 210, 235, 0.95);
  text-decoration: none;
  transition: color 0.16s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

/* FOOTER media queries */
@media (max-width: 1000px) {
  .footer-main {
    grid-template-columns: 1.6fr 1fr;
    row-gap: 32px;
  }

  .footer-contact {
    grid-column: 1 / -1;
    max-width: 420px;
  }


}

@media (max-width: 1024px) {
  .footer-tagline {
  font-size: 18px;
}

.footer-contact p {
  font-size: 18px; 
}
.footer-nav a {
  font-size: 18px;
}}

@media (max-width: 700px) {
  .site-footer {
    padding: 40px 18px 26px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-bottom-links {
    font-size: 12px;
  }
}
@media (max-width: 540px){
    .footer-tagline {
  font-size: 16px;
}

.footer-contact p {
  font-size: 16px; 
}
.footer-nav a {
  font-size: 16px;
}

.footer-heading {
  font-size: 18px;
}}

/* ... CLIENTS SECTION AND REST ... */

/* ===== OUR CLIENTS BAND ===== */
.clients-section {
  background: transparent;
  padding: 20px 32px 80px 32px;
}

.clients-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 320px) minmax(0, 1fr);
  gap: 48px;
  align-items: center;
}

/* Left text block */
.clients-copy {
  max-width: 340px;
}

.clients-accent {
  display: block;
  width: 150px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, #4ea2ff, #b778ff);
  opacity: 0.9;
  margin-bottom: 20px;
}

.clients-title {
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ea5b26;
  font-weight: normal;
  margin-bottom: 15px;
}

.clients-text {
  font-size: 16px;
  line-height: 1.7;
  color: #cfdef3;
}

/* Right logo grid */
.clients-logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px 48px;
  justify-items: center;
}

.client-logo img {
  max-width: 120px;
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.9;
  transition:
    opacity 0.18s ease,
    filter 0.18s ease,
    transform 0.18s ease;
}

.client-logo img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

@media (max-width: 1080px) {
  .clients-text {
  font-size: 20px;
}

}

/* CLIENTS media queries */
@media (max-width: 960px) {
  .clients-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: left;
  }

  .clients-copy {
    max-width: none;
  }

  .clients-logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-items: flex-start;
  }
}

@media (max-width: 640px) {
  .clients-section {
    padding: 52px 20px;
  }

  .clients-title {
    font-size: 18px;
  }

  .clients-logos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 26px;
  }

  .client-logo img {
    max-width: 110px;
  }
}


@media (max-width: 580px){
    .clients-text {
  font-size: 16px;
}
}
