@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
  --sky-blue: #6FD3F5;
  --purple: #7c5ce9;
  --teal: #3ecfcf;
  --gray: #8888a0;
  --bg: #ffffff;
  --card-bg: #f9f9fc;
  --salmon:  #e87a73;
  --dark:    #1c1c2e;
  --icon-bg: #12122a; /* dark navy behind icons */
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: 'Fredoka', sans-serif;
  background: var(--bg);
  overflow-x: hidden;
}

/* ════════════════════════════════
    HERO SECTION
════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (max-width:700px) {
  .hero{
    min-height: 70vh;
  }
}

/* ── Blob SVG image – centered background shape ── */
.hero-blob {
  position: absolute;
  top: 46%;
  /* ← was: top: 0 */
  left: 50%;
  transform: translate(-50%, -50%);
  /* ← was: translateX(-50%) */
  width: min(90%, 1000px);
  z-index: 0;
  pointer-events: none;
  animation: blobPulse 8s ease-in-out infinite;
}

.hero-blob img {
  width: 100%;
  height: auto;
}


/* At large viewports, size blob by HEIGHT so it always fills the hero */
@media (min-width: 1400px) {
  .hero-blob {
    width: auto;
    height: 92vh;
  }

  .hero-blob img {
    width: auto;
    height: 100%;
  }
}

/* Mobile overrides stay the same */
@media (max-width: 768px) {
  .hero-blob {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -48%);
    width: 130%;
    height: auto;
    min-width: 480px;
  }

  .hero-blob img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .hero-blob {
    min-width: 420px;
    width: 150%;
  }
}

/* ── Left illustration ── */
.hero-illus {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.hero-illus.left {
 left: -20px;
  width: 450px;
  top: 0px;
  animation: slideInLeft 0.9s cubic-bezier(.22, 1, .36, 1) both;
}

.hero-illus.right {
  top: 20px;
  right: -30px;
  width: 450px;
  animation: slideInRight 0.9s cubic-bezier(.22, 1, .36, 1) both;
}

@media (max-width:1500px) {

  .hero-illus.left {
    left: -60px;
  }

  .hero-illus.right {
    right: -60px;
  }

}

@media (max-width:1300px) {

  .hero-illus.left {
    left: -20px;
  }

  .hero-illus.right {
    top: 50px;
    right: -20px;
  }

}
/* 
@media (max-width:1200px) {

  .hero-illus.left {
    left: -60px;
    width: 420px;
  }

  .hero-illus.right {
    right: -60px;
    width: 420px;
  }

} */
@media (max-width:950px) {
  .hero-illus {
    display: none;
  }
}

.hero-illus img {
  width: 100%;
  height: auto;
}

@media (min-width:1700px) {

  .hero-illus.left {
    left: -200px;
    width: 550px;
    top: 0px;
  }

  .hero-illus.right {
    right: -180px;
    width: 550px;
    top: 20px;
  }

}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(60px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ════════════════════════════════
    NAVBAR
════════════════════════════════ */
nav {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px clamp(40px, 6vw, 120px);
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo img {
  width: 150px;
  height: 50px;
  object-fit: contain;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.7;
}

/* Active: underline + dot below */
.nav-links .active-link {
  color: #fff;
  border-bottom: 2px solid #fff;
  padding-bottom: 2px;
}

.btn-wrapper {
  position: relative;
  display: inline-block;
}

/* blue background layer */
.btn-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--sky-blue);
  border-radius: 40px;
  top: 6px;
  left: 6px;
  transition: 0.3s;
}

/* main button */
.btn {
  position: relative;
  padding: 10px 30px;
  border-radius: 40px;
  border: 1px solid black;
  background: transparent;
  font-size: 16px;
  cursor: pointer;
  z-index: 1;
  transition: 0.3s;
}

/* hover animation */
.btn-wrapper:hover .btn {
  transform: translate(6px, 6px);
}

.hero-center {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 1280px;
  width: 100%;
  margin-bottom: 100px;
  padding: 0 24px;
  /* fade-up on load */
  animation: fadeUp 0.8s 0.2s cubic-bezier(.22, 1, .36, 1) both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(32px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-title {
  font-size: clamp(24px, 4vw, 52px);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.1);
}

.hero-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 38px;
  max-width: 580px;
  font-weight: 700;
  margin-left: auto;
  margin-right: auto;
}

.hero-btn {
  display: inline-block;
  background: var(--sky-blue);
  color: #fff;
  padding: 15px 46px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 28px rgba(56, 189, 248, 0.45);
  transition: transform 0.22s, box-shadow 0.22s;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(56, 189, 248, 0.55);
}

@media (max-width:360px) {
  .hero-eyebrow{
    font-size: 8px;
  }
  .hero-title{
    font-size: 25px;
  }
  .hero-sub{
    margin: 10px;
    font-size: 12px;
  }
  
}
@media (max-width: 1024px) {
  .hero-illus {
    width: 28%;
  }

  nav {
    padding: 16px 32px;
  }
}

@media (max-width: 768px) {
  .hero-illus {
    display: none;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  nav {
    padding: 16px 20px;
  }
}

.burger {
  display: none;               /* hidden on desktop */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 200;
  padding: 4px;
}
 
.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: black;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
 
/* Animated X when open */
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
 
/* ════════════════════════════
   MOBILE DRAWER
════════════════════════════ */
.mobile-nav {
  display: none;               /* hidden on desktop */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(30, 20, 70, 0.97);
  backdrop-filter: blur(12px);
  padding: 90px 32px 40px;    /* top pad clears the navbar height */
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
 
  /* Slide down animation */
  transform: translateY(-110%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}
 
.mobile-nav.open {
  transform: translateY(0);
}
 
.mobile-links {
  list-style: none;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 28px;
}
 
.mobile-links li {
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
 
.mobile-links a {
  display: block;
  padding: 14px 4px;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
 
.mobile-links a:hover,
.mobile-links .active-link {
  color: #fff;
  padding-left: 10px;
}
 
.mobile-links .active-link {
  color: #76E9F1;              /* teal accent for active */
  border-bottom-color: rgba(118,233,241,0.2);
}
 
.mobile-btn {
  margin-top: 4px;
}
@media (max-width: 1048px) and (min-width: 1000px) {
  .hero-blob{
    top: 44%;
  }
}
 @media (max-width: 1000px) and (min-width: 950px) {
  .hero-blob{
    top: 42%;
  }
}
@media (max-width:950px) and (min-width: 900px) {
  .hero-blob{
    top: 40%;
  }
}
 @media (max-width: 900px) and (min-width: 850px) {
  .hero-blob{
    top: 38%;
  }
}
 @media (max-width: 850px) and (min-width: 800px) {
  .hero-blob{
    top: 36%;
  }
}
 @media (max-width: 800px) and (min-width: 750px) {
  .hero-blob{
    top: 34%;
  }
}
 @media (max-width: 750px)  {
  .hero-blob{
    top: 45%;
  } 
}

/* Show burger on mobile, hide desktop links */
@media (max-width: 768px) {
  .nav-links,
  .nav-cta { display: none; }
 
  .burger   { display: flex; }
 
  /* Show drawer only on mobile */
  .mobile-nav { display: flex; }
 
  nav { padding: 16px 20px; }
 
  /* Prevent hero content shift when drawer opens */
  .hero { overflow: hidden; }
}
 
/* Tablet — shrink desktop nav a bit */
@media (max-width: 1024px) and (min-width: 769px) {
  nav { padding: 16px 32px; }
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 13px; }
}
 
/* Overlay when menu is open — darkens hero content behind */
.mobile-nav-overlay {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 98;
  background: rgba(0,0,0,0.4);
}
.mobile-nav-overlay.visible { display: block; }


/* ===============================
yasksha section
===============================
  */

.yaksha-section {
  padding: 40px 20px;
}

.yaksha-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr); /* 2 columns */
  gap: 30px 40px;
}
/* ITEM */
.yaksha-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* IMAGE */
.yaksha-item img {
  width: 75px;
  flex-shrink: 0;
}

/* TEXT */
.yaksha-text h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: #111;
}

.yaksha-text p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}
/* Tablet */
/* Tablet */
@media (max-width: 1140px) {
  .yaksha-container {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* Mobile */
@media (max-width: 600px) {
  .yaksha-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .yaksha-item img {
    width: 60px;
  }
}
@media (max-width: 400px) {
  .yaksha-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ════════════════════════════════
       LOGO STRIP SECTION
    ════════════════════════════════ */
.logo-strip {
  width: 100%;
  padding: 28px clamp(20px, 6vw, 100px);
  background: #fff;
}

.logo-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 5vw, 72px);
  flex-wrap: wrap;
}

/* Each logo item */
.logo-item {
  display: flex;
  align-items: center;
  gap: 9px;
  opacity: 0.38;
  filter: grayscale(1);
  transition: opacity 0.25s, filter 0.25s;
  cursor: default;
  flex-shrink: 0;
}

.logo-item:hover {
  opacity: 0.65;
  filter: grayscale(0.5);
}

/* SVG icon wrapper */
.logo-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;

}

.logo-icon img {
  object-fit: contain;
}

/* ════════════
       RESPONSIVE
    ════════════ */
@media (max-width: 900px) {
  .logo-divider {
    display: none;
  }

  .logo-strip-inner {
    gap: clamp(20px, 4vw, 44px);
  }
}

@media (max-width: 600px) {
  .logo-strip {
    padding: 22px 16px;
  }

  .logo-strip-inner {
    gap: 20px 28px;
    justify-content: center;
  }

  .logo-name {
    font-size: 13px;
  }

  .logo-tagline {
    font-size: 8px;
  }
}

@media (max-width: 400px) {
  .logo-item {
    flex-basis: calc(50% - 14px);
    justify-content: center;
  }
}

/* ════════════════════════════════
       WHO ARE WE SECTION
    ════════════════════════════════ */
.about-section {
  position: relative;
  width: 100%;
  padding: clamp(60px, 8vw, 110px) clamp(20px, 7vw, 120px);
  background: #fff;
}

.about-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: clamp(40px, 6vw, 100px);
}

/* ── Left: image ── */
.about-image {
  flex: 0 0 auto;
  width: clamp(280px, 42%, 620px);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Right: content ── */
.about-content {
  flex: 1;
  min-width: 0;
}
.about-blob {
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}



/* Pill badge */
.about-badge {
  display: inline-flex;
  align-items: center;
  background: #7c6ef5;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 22px;
}

/* Heading */
.about-title {
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 800;
  color: #111;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

/* Body text */
.about-desc {
  font-size: clamp(14px, 1.1vw, 16px);
  color: #5a6a7a;
  line-height: 1.82;
  font-weight: 400;
  max-width: 540px;
  margin-bottom: 34px;
}

/* Learn More link */
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #111;
  transition: gap 0.22s;
}

.about-link:hover {
  gap: 14px;
}

/* ════════════════════════════════
       RESPONSIVE
    ════════════════════════════════ */

/* Stack at tablet */
@media (max-width: 860px) {
  .about-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }

  .about-image {
    width: min(100%, 480px);
    margin: 0 auto;
  }

  .about-content {
    width: 100%;
  }

  .about-desc {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 48px 20px;
  }

  .about-title {
    font-size: clamp(24px, 7.5vw, 34px);
  }

  .about-desc {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .about-inner {
    flex-direction: column;
    text-align: left;
  }

  .about-blob {
    display: none;
  }

  .about-image img {
    max-width: 300px;
  }
}

/* Button container */
.btn-box {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* background square */
.btn-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f28573;
  border-radius: 2px;
  top: 5px;
  left: 5px;
  transition: 0.4s ease;
}

/* border square */
.btn-border {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid black;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 2;
}

/* arrow */
.arrow {
  font-size: 12px;
  font-weight: bold;
}

/* hover animation */
.about-link:hover .btn-bg {
  transform: translate(-5px, -5px);
}

/* ════════════════════════════════
    SERVICES PROVIDE
════════════════════════════════ */
/* ══════════════════════════════════
   SERVICES SECTION — RESPONSIVE
══════════════════════════════════ */
.services-section {
  background: #fbfbfa;
  padding: 120px 40px;
}

.services-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* ════════════════════════════
   LEFT
════════════════════════════ */
.services-left {
  max-width: 520px;
  flex: 1;
}

.services-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem); /* fluid — was fixed 42px */
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 25px;
}

.tab-icons {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.tab-icons .tab-icon {
  width: 100px;
  height: 100px;
  cursor: pointer;
  transition: 0.25s;
}

.tab-icons img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-subtitle {
  color: #ff7a6e;
  font-weight: 600;
  margin-bottom: 10px;
}

.services-desc {
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 25px;
}

.learn-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  font-weight: 500;
}

.icon-wrap {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: 1px solid #ff7a6e;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT GRID */
.services-right {
  display: grid;
  grid-template-columns: repeat(2, 220px);
  gap: 30px;
  position: relative;
  flex-shrink: 0;
}

/* CARDS */
.service-card {
  width: 220px;
  height: 220px;
  border-radius: 14px;
  border: 1px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  background: #fff;
}

.service-card img { width: 120px; }

.service-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Stagger — only on desktop */
.service-card:nth-child(2),
.service-card:nth-child(4) { transform: translateY(40px); }

.service-card:nth-child(2):hover,
.service-card:nth-child(4):hover { transform: translateY(34px); }

.service-card:nth-child(1):hover,
.service-card:nth-child(3):hover { transform: translateY(-6px); }

/* ════════════════════════════
   RESPONSIVE BREAKPOINTS
════════════════════════════ */

/* Large tablet — shrink cards & gap */
@media (max-width: 1100px) {
  .services-container { gap: 48px; }

  .services-right {
    grid-template-columns: repeat(2, 180px);
  }
  .service-card { width: 180px; height: 180px; }
  .service-card img { width: 95px; }

  .tab-icons .tab-icon { width: 80px; height: 80px; }
}

/* Tablet — stack vertically, right grid centered */
@media (max-width: 860px) {
  .services-section { padding: 72px 32px; }

  .services-container {
    flex-direction: column;
    align-items: center;
    gap: 56px;
  }

  .services-left {
    max-width: 100%;
    text-align: center;
  }

  /* Center the tab icons */
  .tab-icons { justify-content: center; }

  /* Center the Learn More link */
  .about-link { justify-content: center; }

  /* Remove stagger on tablet stacked layout */
  .service-card:nth-child(2),
  .service-card:nth-child(4) { transform: translateY(0); }
  .service-card:nth-child(2):hover,
  .service-card:nth-child(4):hover { transform: translateY(-6px); }

  .services-right {
    grid-template-columns: repeat(2, 200px);
  }
  .service-card { width: 200px; height: 200px; }
}

/* Mobile — smaller cards, tighter layout */
@media (max-width: 520px) {
  .services-section { padding: 56px 20px; }

  .services-right {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    gap: 16px;
  }

  .service-card {
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* square via padding trick */
    position: relative;
  }

  /* Re-center image inside padding-bottom square */
  .service-card img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 55%;
  }

  .tab-icons .tab-icon { width: 64px; height: 64px; }

  .services-left h2 { font-size: 1.6rem; }
}
/* ===================
provider
=================== */
/* new section */
/* SECTION */
/* ══════════════════════════════════
   PROVIDE SECTION — FIXED
══════════════════════════════════ */
.provide-section {
  background: white; /* light bg like design */
  padding: 80px 40px;
  display: flex;
  justify-content: center;
}
/* MAIN CONTAINER */
.provide-inner {
  max-width: 1300px;
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.provide-illustration {
  flex: 0 0 45%;
  position: relative;
  z-index: 2;
}

.provide-inner .right {
  position: absolute;
  top: -40px;
  left: -120px; /* FIXED (added px) */
  z-index: 0;
}
.provide-inner .right img {
  width: clamp(200px, 25vw, 320px); /* responsive size */
  opacity: 0.9;
}


.provide-illustration img {
  width: 100%;
  max-width: 520px;
}
/* ════════════════════════════
   RIGHT — DARK CARD
════════════════════════════ */
.content-wrapper {
  flex: 1;
  position: relative;
  z-index: 1;
}

.provide-content {
  background: #0f1221;
  padding: 60px 60px 60px 80px;
  border-radius: 16px;
  min-height: 520px;

  /* slight overlap effect */
  margin-left: -60px;
}


/* ════════════════════════════
   BADGE — small pill fix
════════════════════════════ */
.provide-badge {
  background: #6c63ff;
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 16px;
}

/* TITLE */
.provide-content h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 16px;
}

/* DESCRIPTION */
.provide-desc {
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  max-width: 520px;
}

/* ════════════════════════════
   SERVICE GRID
════════════════════════════ */
.provide-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 36px;
}
.provide-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.provide-item-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.provide-arrow {
  width: 26px;
  height: 26px;
  border: 1px solid #ff7a6e;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff7a6e;
}

.provide-item h4 {
  color: #fff;
}

.provide-item p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
}

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 1024px) {
  .provide-section {
    padding: 60px 24px;
  }

  .provide-inner {
    gap: 20px;
  }

  .provide-illustration {
    flex: 0 0 40%;
  }

  .provide-content {
    margin-left: -40px; /* reduce overlap */
    padding: 50px 40px 50px 60px;
  }

  .provide-grid {
    gap: 20px;
  }
}


/* Small tablet — stack vertically */
@media (max-width: 768px) {

  .provide-inner {
    flex-direction: column;
    align-items: center;
  }

  /* REMOVE background shape */
  .provide-inner .right {
    display: none;
  }

  /* IMAGE */
  .provide-illustration {
    width: 100%;
    margin-bottom: -40px; /* controlled overlap */
    display: flex;
    justify-content: center;
  }

  .provide-illustration img {
    max-width: 360px;
    width: 85%;
  }

  /* CONTENT */
  .provide-content {
    margin-left: 0; /* FIX: remove overlap */
    width: 100%;
    padding: 60px 28px 40px;
    text-align: left;
  }

  /* GRID */
  .provide-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Mobile — single column grid */
@media (max-width: 500px) {

  .provide-section {
    padding: 40px 16px;
  }

  .provide-illustration img {
    max-width: 260px;
  }

  .provide-content {
    padding: 50px 20px 30px;
  }

  .provide-grid {
    grid-template-columns: 1fr; /* single column */
    gap: 18px;
  }

  .provide-content h2 {
    font-size: 1.6rem;
  }
}


/* =================
our team
================ */
/* ══════════════════════════════
   SECTION
══════════════════════════════ */
.team-section {
  margin: auto;
  width: 100%;
  padding: 72px 40px 60px;
  overflow: hidden;
  background-color: #fafbff;
}
 
/* ── Header ── */
.team-header {
  text-align: center;
  margin-bottom: 56px;
}
 
/* .badge is shared — keep as-is in your existing styles */
 
.team-header h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 16px;
}
 
.team-header p {
  font-size: 15px;
  color: #888;
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto;
}
 
/* ══════════════════════════════
   CAROUSEL
══════════════════════════════ */
.team-section .carousel-outer {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.team-section .carousel-outer:active { cursor: grabbing; }
 
.team-section .carousel-track {
  display: flex;
  gap: 24px;
  padding-right: 20px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  align-items: flex-start;   /* keeps stagger effect */
  padding-bottom: 16px;
}
 
/* ══════════════════════════════
   RESPONSIVE CARD WIDTH
   Driven by CSS variable so JS
   can read the breakpoint too
══════════════════════════════ */
.team-section { --team-visible: 4; }
 
@media (max-width: 1100px) { .team-section { --team-visible: 4; } }
@media (max-width: 860px)  { .team-section { --team-visible: 3; } }
@media (max-width: 600px)  { .team-section { --team-visible: 2; } }
@media (max-width: 380px)  { .team-section { --team-visible: 1; } }
 
.team-section .card {
  /* Fluid width that fills the carousel perfectly */
  flex: 0 0 calc(
    (100% - (var(--team-visible) - 1) * 24px) / var(--team-visible)
  );
  text-align: center;
  user-select: none;
}
 
/* ── Stagger ── */
.team-section .card:nth-child(even) { margin-top: 40px; }
.team-section .card:nth-child(odd)  { margin-top: 0; }
 
/* On mobile stagger looks odd, flatten it */
@media (max-width: 600px) {
  .team-section .card:nth-child(even),
  .team-section .card:nth-child(odd)  { margin-top: 0; }
}
 
/* ══════════════════════════════
   CARD IMAGE — equal size, covers
══════════════════════════════ */
.team-section .card-img {
  width: 100%;
  aspect-ratio: 1 / 1;          /* always square */
  background: #d9d9d9;
  border-radius: 18px;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
 
/* ▸ THE KEY FIX: make every <img> fill the square equally ◂ */
.team-section .card-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;        /* crop to fill — no distortion */
  object-position: center top;  /* favour face over feet */
  display: block;
  border-radius: inherit;
}
 
.team-section .card:hover .card-img {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.10);
}
 
/* shimmer overlay on hover */
.team-section .card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}
.team-section .card:hover .card-img::after { opacity: 1; }
 
/* SVG placeholder (card 5) */
.team-section .card-img svg {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 55%;
  opacity: 0.25;
}
 
/* ── Name & role ── */
.team-section .card-name {
  font-weight: 700;
  font-size: 15px;
  color: #1a1a1a;
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
.team-section .card-role {
  font-size: 12px;
  color: #999;
  margin-bottom: 14px;
  letter-spacing: 0.1px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
 
/* ── Social buttons ── */
.team-section .card-socials {
  display: flex;
  justify-content: center;
  gap: 8px;
}
 
.team-section .social-btn {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #000;
  background: transparent;
  cursor: pointer;
  display: grid;
  place-items: center;
  overflow: visible;
  transition: transform 0.3s ease;
}
 
.team-section .social-btn::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  transform: translate(5px, 5px);
  transition: transform 0.3s ease;
}
 
.team-section .social-btn.linkedin::before { background: #a9abf1; }
.team-section .social-btn.other::before    { background: #fd9080; }
 
.team-section .social-btn:hover::before { transform: translate(0, 0); }
.team-section .social-btn:hover         { transform: translate(-3px, -3px); }
 
.team-section .social-btn svg {
  width: 15px;
  height: 15px;
  fill: #000;
}
 
/* ══════════════════════════════
   DOTS
══════════════════════════════ */
.team-section .carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 36px;
}
 
.team-section .dot {
  width: 28px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background: #d0d0d0;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}
.team-section .dot.active {
  background: #e87a73;
  width: 36px;
}
 
/* ══════════════════════════════
   TABLET / MOBILE TWEAKS
══════════════════════════════ */
@media (max-width: 860px) {
  .team-section { padding: 56px 24px 48px; }
  .team-header  { margin-bottom: 40px; }
  .team-section .card-name { font-size: 13px; }
  .team-section .card-role { font-size: 11px; }
}
 
@media (max-width: 600px) {
  .team-section { padding: 48px 16px 40px; }
  .team-section .social-btn { width: 32px; height: 32px; }
  .team-section .social-btn svg { width: 13px; height: 13px; }
}
 
/* ================
process
================ */

/* ════════════════ SECTION ════════════════ */
/* ── Root vars ── */

/* ════════════════════════════
   SECTION
════════════════════════════ */
.cycle-section {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 40px 100px;
}
 
/* ── Header ── */
.cycle-header {
  text-align: center;
  margin-bottom: 72px;
}
.badge {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 20px;
  border-radius: 999px;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
.cycle-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
}
.cycle-header p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 480px;
  margin: 0 auto;
}
 
.timeline-wrap {
  position: relative;
}
 
/* Horizontal axis line */
.timeline-wrap::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: calc(50% - 1px);
  height: 1.5px;
  background: black;
  z-index: 0;
}
/* Arrow tip */
.timeline-wrap::after {
  content: '';
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid black;
  z-index: 1;
}
/* Start circle */
.timeline-start {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 2px solid #bbb;
  background: #fff;
  z-index: 2;
}
 
.steps {
  display: flex;
  align-items: stretch;
  position: relative;
  z-index: 2;
}
 
/* ── Step column ── */
.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
 
.step-top {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 24px;
  min-height: 210px;
}
.step-bottom {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 24px;
  min-height: 210px;
}
 
/* Step number */
.step-num {
  width: 28px; height: 28px;
  border-radius: 6px;
  background: #e87a73;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(124,92,233,0.35);
  transition: transform 0.25s ease;
}
.step:hover .step-num { transform: scale(1.15); }
 
/* Connector */
.step-connector { width: 1.5px;  flex-shrink: 0; }
.step-connector.top    { height: 24px; }
.step-connector.bottom { height: 24px; }
 
/* ── Icon container — dark bg so mix-blend-mode:screen removes black ── */
.step-icon {
  width: 140px;
  height: 140px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
 
/* The actual image — mix-blend-mode:screen makes pure black transparent */
.step-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  display: block;
  border-radius: inherit;
}
 
/* Step text */
.step-text { text-align: center; max-width: 155px; }
.step-text h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.step-text p  { font-size: 12.5px; color: var(--dark); line-height: 1.65; }
 
@media (max-width: 860px) {
  .cycle-section { padding: 60px 24px 80px; }
  .cycle-header  { margin-bottom: 48px; }
  .step-icon     { width: 90px; height: 90px; border-radius: 14px; }
  .step-text     { max-width: 120px; }
  .step-text h3  { font-size: 13px; }
  .step-text p   { font-size: 11.5px; }
  .step-top, .step-bottom { min-height: 160px; }
}
 
@media (max-width: 600px) {
  /* Hide the horizontal line decorations */
  .timeline-wrap::before,
  .timeline-wrap::after,
  .timeline-start { display: none; }
 
  .steps {
    flex-direction: column;
    gap: 0;
  }
 
  /* Each step becomes a horizontal row */
  .step {
    flex-direction: row;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #eee;
  }
  .step:last-child { border-bottom: none; }
 
  /* Hide top/bottom halves — use simpler layout */
  .step-top, .step-bottom { display: none; }
  .step-connector { display: none; }
 
  /* Number badge left column */
  .step-num {
    flex-shrink: 0;
    width: 32px; height: 32px;
    border-radius: 8px;
    font-size: 13px;
    margin-top: 6px;
  }
 
  /* Icon middle */
  .step-icon {
    flex-shrink: 0;
    width: 72px; height: 72px;
    border-radius: 12px;
    transform: none !important;
  }
 
  /* Text right */
  .step-text {
    text-align: left;
    max-width: none;
    padding-top: 4px;
  }
  .step-text h3 { font-size: 14px; }
  .step-text p  { font-size: 12.5px; }
 
  /* Mobile: inject inline-flex wrapper for the row content */
  .step::before { display: none; }
 
  /* Re-arrange step children for mobile row via order */
  .step-num    { order: 1; }
  .step-mobile-icon { order: 2; }
  .step-mobile-text { order: 3; }
 
  /* Show mobile-only elements */
  .step-mobile { display: flex; align-items: center; gap: 14px; width: 100%; }
 
  .cycle-section { padding: 48px 20px 60px; }
}
/* ==================================== */




/* ══════════════════════════════════
   SECTION
══════════════════════════════════ */

.portfolio-section {
  margin: auto;
  width: 100%;
  max-width: 1600px;
  padding: 72px 40px 80px;
  overflow: hidden;
}

/* ── Header ── */
.portfolio-header {
  text-align: center;
  margin-bottom: 48px;
}

.badge {
  display: inline-block;
  background: var(--purple);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.portfolio-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -0.5px;
}

.carousel-outer {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
/* DEVICE FRAME (Laptop style) */
.device-frame {
  position: absolute;
  inset: 0;
  border-radius: 12px;
  overflow: hidden;         /* ← clip inside here instead */
  background: #111;
  padding: 12px 12px 18px;
  display: flex;
  flex-direction: column;
}


/* Top bar (like mac window) */
.device-frame::before {
  content: '';
  height: 10px;
  margin-bottom: 8px;
  border-radius: 6px;
  background: linear-gradient(
    to right,
    #ff5f56 0 12px,
    #ffbd2e 12px 24px,
    #27c93f 24px 36px,
    transparent 36px
  );
}
.portfolio-section .card-link {
  flex: 0 0 calc(
    (100% - (var(--cards-visible) - 1) * 20px) / var(--cards-visible)
  );
  text-decoration: none;
  color: inherit;
  display: flex;        /* ← make it a flex container */
  flex-direction: column;
}


/* Image inside frame */
.device-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  flex: 1;
}

.carousel-outer:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  gap: 20px;
  align-items: stretch;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}

/* Image area */
.card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: visible;        /* ← change from hidden to visible */
  background: #d9d9d9;
  flex-shrink: 0;
}
/* Placeholder gradient shimmer */
.card-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d0d0d0 0%, #e8e8e8 50%, #d0d0d0 100%);
  background-size: 200% 200%;
  animation: shimmer 2.4s ease infinite;
}

@keyframes shimmer {
  0% {
    background-position: 200% 200%;
  }

  100% {
    background-position: -200% -200%;
  }
}

/* Real image (replace src when available) */
.card-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
  border-radius: inherit;
}

/* ── Hover Overlay ── */
.card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease;
  pointer-events: none;
}

.card-media:hover .card-overlay {
  opacity: 1;
  transform: translateY(0);
}

.overlay-tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 6px;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.35s ease 0.05s, opacity 0.35s ease 0.05s;
}

.overlay-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.25;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.35s ease 0.1s, opacity 0.35s ease 0.1s;
}

.overlay-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  transform: translateY(8px) scale(0.85);
  opacity: 0;
  transition: transform 0.35s ease 0.15s, opacity 0.35s ease 0.15s;
}

.overlay-arrow svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
}

.card-media:hover .overlay-tag,
.card-media:hover .overlay-title,
.card-media:hover .overlay-arrow {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* ── Label box (first card style, shown below image) ── */
.card-label {
  margin-top: 14px;
  border: 1.5px solid #1a1a2e;
  border-radius: 10px;
  padding: 16px 20px;
  width: 100%;
  text-align: center;
  background-color: white;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.card-label h3 {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 2px;
}

.card-label span {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--purple);
}

/* Cards without label get extra bottom space to align */
.card.no-label {
  margin-bottom: 0;
}

.portfolio-section .carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.portfolio-section .dot {
  width: 32px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background: #d8d8d8;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}

.portfolio-section .dot.active {
  background: var(--salmon);
  width: 40px;
}

.portfolio-section .card {
  transition: transform 0.3s ease;
}

.portfolio-section .card:hover {
  transform: translateY(-4px);
}
/* Responsive visible cards */
.portfolio-section {
  --cards-visible: 3;
}
@media (max-width: 1024px) { .portfolio-section { --cards-visible: 3; } }
@media (max-width: 768px)  { .portfolio-section { --cards-visible: 2; } }
@media (max-width: 480px)  { .portfolio-section { --cards-visible: 1; } }
 
/* Card flex basis driven by CSS variable */
/* .portfolio-section .card {
  flex: 0 0 calc(
    (100% - (var(--cards-visible) - 1) * 16px) / var(--cards-visible)
  );
} */
 .portfolio-section .card-link {
  flex: 0 0 calc(
    (100% - (var(--cards-visible) - 1) * 20px) / var(--cards-visible)
  );
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.portfolio-section .card {
  display: flex;
  flex-direction: column;
  flex: 1;              /* ← stretch to full height of card-link */
  height: 100%;
}
.card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  border: 1.5px solid #1a1a2e;
  border-radius: 10px;
  padding: 14px 18px;
  text-align: center;
  background: #fff;
  min-height: 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  /* hidden state — sits at bottom of image */
  opacity: 0;
  transform: translateY(30%);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
.card-link:hover .card-label {
  opacity: 1;
  transform: translateY(0%);   /* pops up, half outside image bottom */
  pointer-events: auto;
}

/* carousel track align-items: stretch so all cards match tallest */
.carousel-track {
  display: flex;
  gap: 20px;
  align-items: stretch;   /* ← was missing or wrong */
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}
.portfolio-section .card:hover { transform: translateY(-4px); }
 
/* Dots */
.portfolio-section .carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}
.portfolio-section .dot {
  width: 32px;
  height: 6px;
  border-radius: 999px;
  border: none;
  background: #d8d8d8;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}
.portfolio-section .dot.active {
  background: var(--salmon, #e87a73);
  width: 40px;
}
 
/* Header responsive */
@media (max-width: 480px) {
  .portfolio-section { padding: 48px 20px 60px; }
  .portfolio-header h2 { font-size: 1.8rem; }
}
/* ------------------------------------------------------------------------------------------------------ */
/* ══════════════════════════════════
   SECTION WRAPPER testimonial
══════════════════════════════════ */
.testimonial-section {
  position: relative;
  width: 100%;
  max-width: 1920px;
  min-height: 870px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
   padding: 100px 20px;
}
/* Button container */
.testimonial-section .btn-box {
  position: relative;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* background square */
.testimonial-section .btn-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f28573;
  border-radius: 2px;
  top: 5px;
  left: 5px;
  transition: 0.4s ease;
}

/* border square */
.testimonial-section .btn-border {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid white;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  z-index: 2;
}

/* arrow */
.testimonial-section .arrow {
  font-size: 12px;
  font-weight: bold;
  color: white;
}

/* hover animation */
.testimonial-section .about-link:hover .btn-bg {
  transform: translate(-5px, -5px);
}
 
/* ── SVG Background fills the full section ── */
/* FIX: keep SVG always large */
.bg-svg {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 1400px;   /* FIXED SIZE (important) */
  height: auto;

  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
}
 
.content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  width: 100%;
  max-width: 480px;
  padding: 40px 32px;
  text-align: center;
  margin: 0 auto;
}
 
/* ── Title ── */
.content h2 {
 font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 36px;
  letter-spacing: -0.2px;
}
 
/* ── Testimonial slider ── */
.slider {
  position: relative;
  overflow: hidden;
  min-height: 160px;
}
 
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
 
.slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}
 
.slide.exit-left {
  opacity: 0;
  transform: translateX(-40px);
}
 
/* ── Quote text ── */
.quote {
 font-size: clamp(14px, 1.2vw, 16px);
  font-weight: 400;
  color: rgba(255,255,255,0.92);
  line-height: 1.8;
  margin-bottom: 28px;
  font-style: italic;
}
 
/* ── Author ── */
.author-name {
 font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}
 
.author-role {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 24px;
  letter-spacing: 0.2px;
}
 
/* ── Arrow buttons ── */
.arrows {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}
 
.arrow-btn {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  border: none;
  background: #e87a73;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.15s ease;
}
 
.arrow-btn:hover {
  background: #d4635c;
  transform: scale(1.08);
}
 
.arrow-btn svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* TABLET */
@media (max-width: 992px) {
  .testimonial-section {
    padding: 80px 20px;
  }

  .content {
    max-width: 500px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .testimonial-section {
    padding: 60px 16px;
  }

  .content {
    max-width: 100%;
    padding: 10px;
  }

  .quote {
    font-size: 14px;
    line-height: 1.7;
  }

  .author-name {
    font-size: 15px;
  }

  .author-role {
    font-size: 11px;
  }

  .slider {
    min-height: 140px;
  }
}
/* ════════════════════════════════
    FOOTER
════════════════════════════════ */
footer {
  background: #1d1d25;
  padding: 60px 80px 40px;
  color: #c8ccd8;
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}

.footer-logo .logo-box {
  width: 80px;
  height: 80px;
}
.footer-logo .logo-box img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.footer-contact {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  color: #fff;
}

.icon-location {
  background: linear-gradient(135deg, #a78bfa, #7c6fe0);
}

.icon-email {
  background: linear-gradient(135deg, #f87171, #e0574a);
}

.icon-phone {
  background: linear-gradient(135deg, #38bdf8, #2ea0d8);
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-text span {
  font-size: 14px;
  color: white;
  line-height: 1.6;
}

.footer-divider {
  border: none;
  border-top: 1px solid #2e3144;
  margin: 0 0 32px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 16px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-nav a {
  text-decoration: none;
  color: white;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-copy {
  text-align: center;
  font-size: 13px;
  color: white;
  margin-bottom: 28px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #2e3144;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 13px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-btn:hover {
  background: #2e3144;
  color: #fff;
  border-color: #4a506a;
}

/* ════════════════════════════════
    RESPONSIVE
════════════════════════════════ */
@media (max-width: 1024px) {

  nav {
    padding: 18px 28px;
  }
}

@media (max-width: 900px) {
  .services-section {
    flex-direction: column;
    padding: 60px 24px;
  }

  .services-left {
    max-width: 100%;
  }

  .provide-section {
    padding: 0 16px 60px;
  }

  .provide-inner {
    flex-direction: column;
  }

  .provide-illustration {
    min-height: 260px;
    flex: none;
  }

  .provide-content {
    padding: 36px 24px;
  }

  footer {
    padding: 48px 24px 32px;
  }

  .footer-contact {
    gap: 32px;
  }

  .footer .nav-links,
  .footer .nav-cta {
    display: none;
  }
}

@media (max-width: 560px) {
  .services-right {
    grid-template-columns: 1fr;
  }

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

  .hero-title {
    font-size: 32px;
  }
}