*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { width: 100%; background: #fff; }

.slider-wrap {
  position: relative;   /* was fixed — change this too */
  width: 100%;
  height: 100vh;
  overflow: hidden;     /* overflow: hidden stays here, scoped to slider only */
}

  .slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.9s ease;
    z-index: 0;
  }
  .slide.active { opacity: 1; z-index: 1; }

  .slide-bg {
    position: absolute;
    inset: -10%;
    width: 120%;
    height: 120%;
    background-size: cover;
    background-position: center;
    transform: scale(1.15);
    transition: transform 7s ease-out;
  }
  .slide.active .slide-bg { transform: scale(1); }

  .slide-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.52); }

  .slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    z-index: 2;
  }

  .slide-content .tagline {
    color: #ff4e1a;
    font-size: clamp(13px, 1.5vw, 17px);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
  }
  .slide-content h1 {
    color: #fff;
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 18px;
    max-width: 800px;
    letter-spacing: 0.5px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease 0.38s, transform 0.7s ease 0.38s;
  }
  .slide-content p {
    color: rgba(255,255,255,0.82);
    font-size: clamp(16px, 1.8vw, 22px);
    font-weight: 400;
    letter-spacing: 0.5px;
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease 0.52s, transform 0.7s ease 0.52s;
  }
  .slide-content .btn {
    background: #ff4e1a;
    color: #fff;
    border: none;
    padding: 15px 44px;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(14px, 1.4vw, 18px);
    font-weight: 700;
    letter-spacing: 2.5px;
    border-radius: 3px;
    cursor: pointer;
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.7s ease 0.65s, transform 0.7s ease 0.65s, background 0.2s;
    text-transform: uppercase;
  }
  .slide-content .btn:hover { background: #e03a08; }

  .slide.active .slide-content .tagline,
  .slide.active .slide-content h1,
  .slide.active .slide-content p,
  .slide.active .slide-content .btn { opacity: 1; transform: translateY(0); }

  .slide.leaving .slide-content .tagline,
  .slide.leaving .slide-content h1,
  .slide.leaving .slide-content p,
  .slide.leaving .slide-content .btn {
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity 0.4s ease, transform 0.4s ease;
  }

  /* ── NAVBAR ── */
  .navbar {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(12px, 2vh, 22px) clamp(20px, 3vw, 52px);
    background: transparent;
  }
  .logo { display: flex; align-items: center; gap: 6px; }
  .logo-icon { width: 40px; height: 40px; }
  .logo-text {
    color: #fff;
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(20px, 2vw, 26px);
    font-style: italic;
    font-weight: 800;
    letter-spacing: 0.5px;
  }
  .logo-text span { color: #ff4e1a; }
  .logo-sub {
    color: rgba(255,255,255,0.55);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: -3px;
  }
  .nav-links { display: flex; align-items: center; gap: clamp(12px, 2vw, 28px); }
  .nav-links a {
    color: rgba(255,255,255,0.9);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(11px, 1.1vw, 15px);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
  }
  .nav-links a:hover { color: #ff4e1a; }
  .nav-social { display: flex; gap: 10px; }
  .soc {
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.6);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
  }
  .soc:hover { background: #ff4e1a; border-color: #ff4e1a; }
  .soc svg { width: 14px; height: 14px; fill: #fff; }


  /* extra css written for correction of svgs  */

  .mob-social .soc {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mob-social .soc svg {
  display: block;
}


  /* ── HAMBURGER BUTTON ── */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 38px; height: 38px;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 4px;
    cursor: pointer;
    padding: 7px;
    z-index: 30;
    transition: border-color 0.2s;
  }
  .hamburger:hover { border-color: #ff4e1a; }
  .hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform 0.35s ease, opacity 0.35s ease, background 0.2s;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hamburger.open span { background: #ff4e1a; }

  /* ── MOBILE MENU DRAWER ── */
  .mobile-menu {
    display: none;
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    background: rgba(0,0,0,0.96);
    z-index: 19;
    flex-direction: column;
    align-items: center;
    padding: 90px 24px 36px;
    gap: 0;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  }
  .mobile-menu.open {
    transform: translateY(0);
  }
  .mobile-menu a {
    display: block;
    width: 100%;
    text-align: center;
    color: rgba(255,255,255,0.88);
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 0;
    border-bottom: 0.5px solid rgba(255,255,255,0.1);
    transition: color 0.2s;
  }
  .mobile-menu a:last-of-type { border-bottom: none; }
  .mobile-menu a:hover { color: #ff4e1a; }
  .mobile-menu .mob-social {
    display: flex;
    gap: 12px;
    margin-top: 28px;
  }
  .mobile-menu .mob-social .soc { width: 36px; height: 36px; }

  /* ── ARROWS ── */
  .arr {
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 10;
    width: 46px; height: 46px;
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.35);
    border-radius: 50%;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.2s;
  }
  .arr:hover { background: rgba(255,255,255,0.25); }
  .arr-left { left: 24px; }
  .arr-right { right: 24px; }
  .arr svg { width: 18px; height: 18px; stroke: #fff; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

  /* ── DOTS ── */
  .dots {
    position: absolute;
    bottom: 28px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 10px; z-index: 10;
  }
  .dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
  }
  .dot.active { background: #ff4e1a; transform: scale(1.35); }


  /* Navbar scrollable and fixed  */
   
/* ---------- Navbar (hidden until scrolled) ---------- */
.scroll-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0000009c;;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
 
.scroll-navbar.show {
  transform: translateY(0);
}


 
.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
}
 
/* ---------- Logo ---------- */
.nav-logo img {
  display: block;
  height: 50px;
  width: auto;
}
 
/* ---------- Nav Links ---------- */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
 
.nav-links a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
 
.nav-links a:hover {
  color: #ff6a1a;
}
 
/* ---------- Hamburger (hidden on desktop) ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
 
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.3s ease;
}
 
/* Hamburger -> X animation when menu open */
.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
 
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
 
.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
 
/* ===================== RESPONSIVE ===================== */
 
@media (max-width: 860px) {
  .hamburger {
    display: flex;
  }
 
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1a1a3d;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
 
  .nav-links.open {
    max-height: 320px;
  }
 
  .nav-links a {
    width: 100%;
    padding: 16px 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }
}
 
/* ===================== DEMO CONTENT (remove in real project) ===================== */
 
.demo-content {
  width: 100%;
}
 
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: #1a2342;
  color: #ffffff;
  padding: 20px;
}
 
.filler {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  color: #1a2342;
  font-size: 1.5rem;
}
 
.filler.alt {
  background: #f3f4f6;
}
 

/* scrollable navbar end  */


  /* ════════════════════════════════
     About section 
  ════════════════════════════════ */

  .about-section {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  background: #fff;
  position: relative;
}
 
.about-container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
 
/* ── LEFT: Text ── */
.about-text { position: relative; }
 
.about-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: #ff4e1a;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.about-eyebrow.visible { opacity: 1; transform: translateX(0); }
 
.about-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1a1a2e;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease 0.12s, transform 0.7s ease 0.12s;
}
.about-heading.visible { opacity: 1; transform: translateX(0); }
 
.about-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
 
.about-body p {
  font-size: 15px;
  line-height: 1.75;
  color: #4a4a5a;
  font-weight: 400;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.about-body p strong { color: #1a1a2e; font-weight: 600; }
.about-body p.visible { opacity: 1; transform: translateY(0); }
 
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 36px;
  padding: 14px 36px;
  background: #ff4e1a;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s, background 0.2s;
  text-decoration: none;
}
.about-cta:hover { background: #d93d0e; }
.about-cta.visible { opacity: 1; transform: translateY(0); }
.about-cta svg { width: 16px; height: 16px; stroke: #fff; fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s; }
.about-cta:hover svg { transform: translateX(4px); }
 
/* ── RIGHT: Image cluster ── */
.about-visuals {
  position: relative;
  height: 520px;
}
 
/* Decorative globe ring — Volia-inspired */
.deco-globe {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 50%;
  left: 50%;
  transform: translate(-58%, -50%);
  opacity: 0.12;
  pointer-events: none;
  animation: spin-slow 30s linear infinite;
}
@keyframes spin-slow { to { transform: translate(-58%, -50%) rotate(360deg); } }
 
/* Main image — large circle like Volia */
.img-main-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-54%, -52%);
  width: 310px;
  height: 310px;
  border-radius: 50%;
  border: 8px solid #ff4e1a;
  overflow: hidden;
  z-index: 3;
  opacity: 0;
  scale: 0.88;
  transition: opacity 0.8s ease 0.2s, scale 0.8s ease 0.2s;
  box-shadow: 0 24px 60px rgba(255,78,26,0.18);
}
.img-main-wrap.visible { opacity: 1; scale: 1; }
.img-main-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 8s ease;
}
.img-main-wrap:hover img { transform: scale(1.06); }
 
/* Secondary image — like bottom circle in Volia */
.img-sec-wrap {
  position: absolute;
  bottom: 28px;
  right: 0px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 6px solid #ffc107;
  overflow: hidden;
  z-index: 4;
  opacity: 0;
  scale: 0.88;
  transition: opacity 0.8s ease 0.38s, scale 0.8s ease 0.38s;
  box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}
.img-sec-wrap.visible { opacity: 1; scale: 1; }
.img-sec-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.img-sec-wrap:hover img { transform: scale(1.06); }
 
/* Orange rect border behind — like Eventales image 1 */
.img-rect-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-42%, -48%);
  width: 290px;
  height: 290px;
  border: 3px solid #ff4e1a;
  border-radius: 4px;
  z-index: 2;
  opacity: 0;
  transition: opacity 0.7s ease 0.55s;
}
.img-rect-deco.visible { opacity: 0.25; }
 
/* Play button overlay — Volia-inspired */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-10%, 30%);
  width: 62px; height: 62px;
  border-radius: 50%;
  background: #fff;
  border: 3px dashed #1a1a2e;
  display: flex; align-items: center; justify-content: center;
  z-index: 5;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.7s ease 0.6s, background 0.2s, border-color 0.2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.14);
}
.play-btn.visible { opacity: 1; }
.play-btn:hover { background: #ff4e1a; border-color: #ff4e1a; }
.play-btn svg { width: 20px; height: 20px; fill: #1a1a2e; margin-left: 3px; transition: fill 0.2s; }
.play-btn:hover svg { fill: #fff; }
 
/* Stats badge */
.stat-badge {
  position: absolute;
  top: 30px;
  right: 14px;
  background: #1a1a2e;
  color: #fff;
  padding: 14px 20px;
  border-radius: 8px;
  z-index: 6;
  text-align: center;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 0.7s ease 0.7s, transform 0.7s ease 0.7s;
  box-shadow: 0 8px 30px rgba(26,26,46,0.22);
}
.stat-badge.visible { opacity: 1; transform: translateY(0); }
.stat-badge .stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: #ff4e1a;
  line-height: 1;
}
.stat-badge .stat-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-top: 4px;
}
 
/* Floating tag */
.float-tag {
  position: absolute;
  bottom: 60px;
  left: 0px;
  background: #ff4e1a;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 3px;
  z-index: 6;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.7s ease 0.75s, transform 0.7s ease 0.75s;
}
.float-tag.visible { opacity: 1; transform: translateX(0); }
 
/* Fade divider line — section transition */
.section-fade-top,
.section-fade-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 1;
}
.section-fade-top {
  top: 0;
  background: linear-gradient(to bottom, #fff 0%, transparent 100%);
}
.section-fade-bottom {
  bottom: 0;
  background: linear-gradient(to top, #fff 0%, transparent 100%);
}
 
/* ══════════════════════════════════════
   RESPONSIVE — 480px
══════════════════════════════════════ */
@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 28px;
  }
  .about-section { padding: 80px 0; }
  .about-visuals { height: 380px; }
  .img-main-wrap { width: 240px; height: 240px; transform: translate(-50%, -52%); }
  .img-sec-wrap { width: 150px; height: 150px; right: 10px; bottom: 10px; }
  .deco-globe { width: 300px; height: 300px; }
  .stat-badge { top: 10px; right: 10px; }
}
 
@media (max-width: 480px) {
  .about-section { padding: 60px 0; }
  .about-container { padding: 0 20px; gap: 40px; }
  .about-heading { font-size: 36px; }
  .about-body p { font-size: 14px; }
  .about-visuals { height: 320px; }
  .img-main-wrap { width: 200px; height: 200px; }
  .img-sec-wrap { width: 120px; height: 120px; right: 4px; bottom: 4px; }
  .deco-globe { width: 240px; height: 240px; }
  .play-btn { width: 48px; height: 48px; }
  .float-tag { font-size: 10px; padding: 6px 12px; }
}

  /* ════════════════════════════════
    About section end 
  ════════════════════════════════ */

  /* ════════════════════════════════
     MOBILE — 768px and below for header and slider adjustments
  ════════════════════════════════ */
  @media (max-width: 768px) {

    /* Navbar */
    .navbar {
      padding: 0px 10px;
    
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: clamp(12px, 2vh, 22px) clamp(20px, 3vw, 52px);
    background: rgba(0, 0, 0, 0.738);

    }

    .img-logo-small{width:4rem;}
    .nav-links { display: none; }
    .nav-social { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { display: flex; }

    /* Slider text */
    .slide-content {
      padding: 0 22px;
      justify-content: center;
    }
    .slide-content .tagline {
      font-size: 11px;
      letter-spacing: 2px;
      margin-bottom: 10px;
    }
    .slide-content h1 {
      font-size: 30px;
      line-height: 1.1;
      margin-bottom: 12px;
      max-width: 100%;
    }
    .slide-content p {
      font-size: 14px;
      line-height: 1.55;
      margin-bottom: 22px;
      max-width: 100%;
    }
    .slide-content .btn {
      padding: 12px 32px;
      font-size: 13px;
      letter-spacing: 2px;
    }

    /* Arrows — smaller & tucked in */
    .arr {
      width: 34px; height: 34px;
    }
    .arr svg { width: 14px; height: 14px; }
    .arr-left { left: 10px; }
    .arr-right { right: 10px; }

    /* Dots */
    .dots { bottom: 18px; }
    .dot { width: 7px; height: 7px; }
  }


/* ------------------------------------- */
        /* Service section start */
/* -------------------------------------- */
 :root{
    --bg-deep:#19102f;
    --bg-mid:#2c1b52;
    --bg-edge:#3a1f4d;
    --accent-orange:#f4623a;
    --accent-magenta:#d6336c;
    --text-light:#f7f3fb;
    --text-muted:#bfb2d6;
  }
 
  *{ margin:0; padding:0; box-sizing:border-box; }
 
  /* ===================== SECTION SHELL ===================== */
  .services{
    position:relative;
    isolation:isolate;
    background-color:var(--bg-deep);
    background-image:
      radial-gradient(circle at 14% 18%, rgba(214,51,108,.30), transparent 45%),
      radial-gradient(circle at 88% 78%, rgba(244,98,58,.22), transparent 50%),
      linear-gradient(135deg, var(--bg-deep) 0%, var(--bg-mid) 45%, var(--bg-edge) 100%);
    font-family:"Barlow Condensed", sans-serif;
    color:var(--text-light);
    padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(3rem, 7vw, 5rem);
    overflow:hidden;
  }
 
  /* diagonal hexagon-ish block pattern, echoing the brand backdrop */
  .services .hex-field{
    position:absolute;
    inset:0;
    z-index:0;
    opacity:.5;
    background-image:
      repeating-linear-gradient(135deg, rgba(255,255,255,.035) 0 2px, transparent 2px 90px),
      repeating-linear-gradient(45deg, rgba(255,255,255,.035) 0 2px, transparent 2px 90px);
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,.9) 0%, transparent 75%);
  }
 
  .services .hex-block{
    position:absolute;
    width: clamp(180px, 22vw, 320px);
    height: clamp(180px, 22vw, 320px);
    transform: rotate(45deg);
    z-index:0;
  }
  .services .hex-block.b1{ top:-8%; left:-6%; background:rgba(214,51,108,.18); }
  .services .hex-block.b2{ bottom:-12%; right:6%; background:rgba(244,98,58,.16); }
  .services .hex-block.b3{ top:35%; right:-10%; background:rgba(255,255,255,.04); }
 
  /* signature zigzag accent, taken from the brand mark */
  .services .zigzag{
    position:absolute;
    top: clamp(28px, 5vw, 60px);
    left: clamp(20px, 5vw, 70px);
    width: clamp(70px, 8vw, 110px);
    z-index:1;
    opacity:.9;
  }
  .services .zigzag path{
    stroke: var(--accent-magenta);
    stroke-width: 7;
    fill:none;
    stroke-linecap:round;
    stroke-linejoin:round;
  }
 
  /* ===================== HEADER ===================== */
  .services-inner{
    position:relative;
    z-index:2;
    max-width:1280px;
    margin:0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
  }
 
  .services-header{
    text-align:center;
    max-width:680px;
    margin: 0 auto clamp(2.5rem, 6vw, 4rem);
  }
 
  .services-header .eyebrow{
    display:inline-block;
    font-size: clamp(.8rem, 1.4vw, .95rem);
    font-weight:700;
    letter-spacing:.34em;
    text-transform:uppercase;
    color: var(--accent-orange);
    margin-bottom: .75rem;
  }
 
  .services-header h2{
    font-family:"Barlow Condensed", sans-serif;
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.03em;
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    line-height:1.08;
    margin-bottom: 1rem;
  }
 
  .services-header p{
    font-size: clamp(1rem, 1.6vw, 1.15rem);
    line-height:1.7;
    color: var(--text-muted);
    font-weight:400;
  }
 
  .services-header strong{
    color: var(--text-light);
    font-weight:600;
  }
 
  /* ===================== CARDS GRID ===================== */
  .cards-grid{
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(1.5rem, 3vw, 2.25rem);
  }
 
  /* ===================== SPLIT CARDS ===================== */
  .service-card{
    grid-column: span 2;
    display:flex;
    align-items:stretch;
    min-height: clamp(260px, 24vw, 320px);
    border-radius: 22px;
    overflow:hidden;
    background: var(--card-bg);
    color: var(--card-fg);
    box-shadow: 0 20px 45px -24px rgba(0,0,0,.6);
  }
 
  /* alternate which side the photo sits on */
  .service-card:nth-child(even){
    flex-direction: row-reverse;
  }
 
  /* ---- media half ---- */
  .card-media{
    flex: 0 0 44%;
    position:relative;
    overflow:hidden;
  }
 
  .card-media img{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transform: scale(1.18);
    transition: transform .7s cubic-bezier(.22,1,.36,1), border-radius .6s ease;
    border-radius: 0 90px 90px 0;
  }
 
  /* mirrored scoop curve when the card is reversed */
  .service-card:nth-child(even) .card-media img{
    border-radius: 90px 0 0 90px;
  }
 
  /* zoom-out effect: image eases back to natural scale and the curve relaxes */
  .service-card:hover .card-media img{
    transform: scale(1);
    border-radius: 0 40px 40px 0;
  }
  .service-card:nth-child(even):hover .card-media img{
    border-radius: 40px 0 0 40px;
  }
 
  /* ---- content half ---- */
  .card-content{
    flex:1;
    position:relative;
    padding: clamp(1.75rem, 3vw, 2.75rem);
    display:flex;
    flex-direction:column;
    justify-content:center;
    overflow:hidden;
  }
 
  /* big translucent number watermark */
  .card-content .watermark{
    position:absolute;
    top: -.4em;
    right: .35em;
    font-size: clamp(5rem, 10vw, 8rem);
    font-weight:800;
    line-height:1;
    color: var(--card-fg);
    opacity:.08;
    z-index:0;
    transition: transform .6s ease, opacity .6s ease;
  }
 
  .service-card:hover .card-content .watermark{
    transform: translate(6px, -6px) scale(1.08);
    opacity:.14;
  }
 
  .card-icon{
    position:relative;
    z-index:1;
    width: 52px;
    height: 52px;
    border-radius:50%;
    border: 1.5px solid var(--accent);
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom: 1.1rem;
    transition: background .35s ease, transform .35s ease;
  }
 
  .card-icon svg{
    width: 22px;
    height: 22px;
    stroke: var(--accent);
    transition: stroke .35s ease;
  }
 
  .service-card:hover .card-icon{
    background: var(--accent);
    transform: scale(1.08) rotate(-6deg);
  }
  .service-card:hover .card-icon svg{
    stroke: var(--card-bg);
  }
 
  .card-content h3{
    position:relative;
    z-index:1;
    font-size: clamp(1.5rem, 2.6vw, 2rem);
    font-weight:800;
    text-transform:uppercase;
    letter-spacing:.02em;
    line-height:1.15;
    margin-bottom: .65rem;
  }
 
  .card-content p{
    position:relative;
    z-index:1;
    font-size: clamp(.95rem, 1.3vw, 1.02rem);
    line-height:1.65;
    font-weight:400;
    color: var(--card-sub);
    max-width: 32ch;
    margin-bottom: 1.4rem;
  }
 
  .card-cta{
    position:relative;
    z-index:1;
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    align-self:flex-start;
    color: var(--accent);
    text-decoration:none;
    font-weight:700;
    font-size:.95rem;
    letter-spacing:.06em;
    text-transform:uppercase;
    border-bottom: 2px solid transparent;
    padding-bottom:.2rem;
    transition: border-color .25s ease, gap .25s ease;
  }
 
  .card-cta svg{ width:16px; height:16px; flex:none; transition: transform .25s ease; }
 
  .card-cta:hover{
    border-color: var(--accent);
  }
  .card-cta:hover svg{
    transform: translateX(3px);
  }
 
  /* ===================== RESPONSIVE ===================== */
  @media (max-width: 860px){
    .service-card,
    .service-card:nth-child(even){
      flex-direction: column;
    }
    .card-media{
      flex: 0 0 220px;
    }
    .card-media img,
    .service-card:nth-child(even) .card-media img{
      border-radius: 0 0 60px 0;
    }
    .service-card:hover .card-media img,
    .service-card:nth-child(even):hover .card-media img{
      border-radius: 0 0 28px 0;
    }
    .card-content{
      padding: 1.75rem;
    }
  }
 
  @media (max-width: 480px){
    .services{ padding: 3rem 0 2.5rem; }
    .services-header{ margin-bottom: 2rem; }
    .card-media{ flex-basis: 190px; }
    .card-content p{ max-width:100%; }
  }
 
  @media (prefers-reduced-motion: reduce){
    .service-card,
    .card-media img,
    .card-icon,
    .card-icon svg,
    .card-content .watermark,
    .card-cta,
    .card-cta svg{ transition:none; }
  }

  /* Service sec end  */

  /* Our approach start */

  /* ============================================================
   OUR FEATURES SECTION — STYLES
   Font: Barlow Condensed (load via Google Fonts in the page head)
   <link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&display=swap" rel="stylesheet">
============================================================ */

:root{
  --ink:#1b1b4d;
  --muted:#7c7c93;
  --pink:#e6299c;
  --orange:#ff5e1a;
  --bg:#fdfdff;
  --line:#ebe9f3;
}

.features{
  position:relative;
  isolation:isolate;
  background:var(--bg);
  font-family:"Barlow Condensed", sans-serif;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  overflow:hidden;
}

/* ===================== DECORATIVE SWIRL ===================== */
.features__swirl{
  position:absolute;
  top:-12%;
  right:-10%;
  width: clamp(260px, 32vw, 460px);
  height: clamp(260px, 32vw, 460px);
  border-radius:50%;
  z-index:0;
  pointer-events:none;
  background: conic-gradient(from 90deg,
    rgba(168,85,247,.05),
    rgba(168,85,247,.55),
    rgba(236,72,153,.35),
    rgba(168,85,247,.05) 80%);
  filter: blur(18px);
  opacity:.85;
  animation: spin-swirl 40s linear infinite;
}

.features__swirl::after{
  content:"";
  position:absolute;
  inset: 18%;
  border-radius:50%;
  background: var(--bg);
  filter: blur(20px);
}

@keyframes spin-swirl{
  to{ transform: rotate(360deg); }
}

/* ===================== INNER WRAP ===================== */
.features__inner{
  position:relative;
  z-index:1;
  max-width:1320px;
  margin:0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ===================== HEADER ===================== */
.features__header{
  text-align:center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.features__eyebrow{
  display:inline-block;
  font-size: clamp(.85rem, 1.4vw, 1rem);
  font-weight:700;
  letter-spacing:.18em;
  text-transform:capitalize;
  color: var(--pink);
  margin-bottom:.5rem;
}

.features__title{
  font-weight:800;
  text-transform:capitalize;
  color: var(--ink);
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height:1.18;
  letter-spacing:.01em;
  margin-bottom: 1.5rem;
}

/* dotted / dashed divider */
.features__divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:.35rem;
}

.features__divider .dot{
  width:6px;
  height:6px;
  border-radius:50%;
}

.features__divider .dot--pink{ background: var(--pink); }
.features__divider .dot--navy{ background: var(--ink); }

.features__divider .dash{
  width:48px;
  height:6px;
  border-radius:4px;
  background: linear-gradient(90deg, #ffb703, var(--orange));
}

/* ===================== TRACK / CARDS ===================== */
.features__track{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.feature-card{
  position:relative;
  padding: 0 clamp(1rem, 2.4vw, 2.25rem);
  text-align:center;
  opacity:0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.feature-card.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* vertical divider between cards on desktop */
.feature-card:not(:first-child){
  border-left: 1px solid var(--line);
}

/* ===================== ICON BLOBS ===================== */
.feature-card__icon{
  position:relative;
  width: 92px;
  height: 92px;
  margin: 0 auto 1.5rem;
  display:flex;
  align-items:center;
  justify-content:center;
}

.feature-card__icon::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  opacity:.18;
  transition: transform .45s ease, opacity .45s ease;
}

.feature-card__icon::after{
  content:"";
  position:absolute;
  inset: 14px;
  background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
  transition: transform .45s ease;
}

.feature-card__icon svg{
  position:relative;
  z-index:2;
  width: 30px;
  height: 30px;
}

/* each card gets its own organic blob silhouette */
.feature-card__icon--blob1::before{ border-radius: 42% 58% 65% 35% / 45% 45% 55% 55%; }
.feature-card__icon--blob1::after { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }

.feature-card__icon--blob2::before{ border-radius: 60% 40% 35% 65% / 55% 65% 35% 45%; }
.feature-card__icon--blob2::after { border-radius: 65% 35% 30% 70% / 60% 40% 60% 40%; }

.feature-card__icon--blob3::before{ border-radius: 35% 65% 55% 45% / 65% 35% 65% 35%; }
.feature-card__icon--blob3::after { border-radius: 50%; }

.feature-card__icon--blob4::before{ border-radius: 55% 45% 40% 60% / 40% 55% 45% 60%; }
.feature-card__icon--blob4::after { border-radius: 38% 62% 63% 37% / 55% 42% 58% 45%; }

.feature-card:hover .feature-card__icon::before{
  transform: rotate(12deg) scale(1.08);
  opacity:.28;
}
.feature-card:hover .feature-card__icon::after{
  transform: rotate(-8deg) scale(1.05);
}

/* ===================== TEXT ===================== */
.feature-card__title{
  font-weight:700;
  text-transform:capitalize;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  margin-bottom: .75rem;
}

.feature-card__text{
  color: var(--muted);
  font-weight:400;
  font-size: clamp(.92rem, 1.3vw, 1rem);
  line-height:1.7;
  max-width: 280px;
  margin: 0 auto 1.25rem;
}

.feature-card__link{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  color: var(--orange);
  font-weight:700;
  font-size: .95rem;
  letter-spacing:.02em;
  text-decoration:none;
  border-bottom: 2px solid transparent;
  transition: border-color .25s ease, gap .25s ease, color .25s ease;
}

.feature-card__link svg{
  width:15px;
  height:15px;
  transition: transform .25s ease;
}

.feature-card__link:hover{
  border-color: var(--orange);
}

.feature-card__link:hover svg{
  transform: translateX(3px);
}

/* ===================== SCROLL HINT (mobile only) ===================== */
.features__scroll-hint{
  display:none;
  text-align:center;
  margin-top: 1.5rem;
  font-size:.8rem;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
  color: var(--muted);
}

.features__scroll-hint span{
  color: var(--orange);
  display:inline-block;
  animation: nudge-right 1.6s ease-in-out infinite;
}

@keyframes nudge-right{
  0%, 100%{ transform: translateX(0); }
  50%{ transform: translateX(6px); }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px){
  .features__track{
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(2.5rem, 5vw, 3.5rem) 0;
  }
  .feature-card:nth-child(odd){ border-left:none; }
  .feature-card:nth-child(-n+2){ border-top:none; }
  .feature-card:nth-child(n+3){
    border-top: 1px solid var(--line);
    padding-top: clamp(2rem, 4vw, 2.5rem);
  }
}

@media (max-width: 640px){
  .features__track{
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 110%;
    gap: 0;
    overflow-x:auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    padding-bottom: .5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .features__track::-webkit-scrollbar{ display:none; }

  .feature-card{
    scroll-snap-align: start;
    border-left: none !important;
    border-top: none !important;
    padding: 0 1rem;
  }

  .feature-card:not(:last-child){
    border-right: 1px solid var(--line);
    margin-right: 1.25rem;
    padding-right: 1.5rem;
  }

  .features__scroll-hint{
    display:block;
  }
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce){
  .features__swirl{ animation:none; }
  .feature-card,
  .feature-card__icon::before,
  .feature-card__icon::after,
  .feature-card__link,
  .feature-card__link svg,
  .features__scroll-hint span{
    transition:none;
    animation:none;
  }
}

/* Our approach end  */

/* why choose us start */
/* ============================================================
   WHY CHOOSE US SECTION — STYLES
   Font: Barlow Condensed (load via Google Fonts in the page head)
   <link href="https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;500;600;700;800&display=swap" rel="stylesheet">
============================================================ */

:root{
  --ink:#211d4e;
  --muted:#6f6c8c;
  --bg:#f4f3fa;
  --line:#dedbee;
}

.why-us{
  position:relative;
  background: var(--bg);
  font-family:"Barlow Condensed", sans-serif;
  padding: clamp(3.5rem, 8vw, 6rem) 0;
  overflow:hidden;
}

.why-us__inner{
  max-width:1320px;
  margin:0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ===================== HEADER ===================== */
.why-us__header{
  text-align:center;
  margin-bottom: clamp(2.75rem, 6vw, 4.5rem);
}

.why-us__eyebrow{
  display:inline-block;
  font-size: clamp(.85rem, 1.4vw, 1rem);
  font-weight:700;
  letter-spacing:.22em;
  text-transform:uppercase;
  color: #ff5e1a;
  margin-bottom:.5rem;
}

.why-us__title{
  font-weight:800;
  text-transform:uppercase;
  color: var(--ink);
  font-size: clamp(1.7rem, 4.6vw, 2.9rem);
  line-height:1.2;
  letter-spacing:.01em;
  max-width: 880px;
  margin: 0 auto;
}

/* ===================== TRACK / GRID ===================== */
.why-us__track{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.75rem, 3vw, 2.5rem);
}

/* ===================== CARDS ===================== */
.reason-card{
  position:relative;
  background: var(--card-bg);
  color: var(--card-fg);
  border-radius: 110px 110px 18px 18px;
  padding: clamp(2.25rem, 4vw, 2.75rem) clamp(1.5rem, 2.5vw, 1.85rem) clamp(2.75rem, 4vw, 3.25rem);
  min-height: clamp(360px, 42vw, 460px);
  display:flex;
  align-items:center;
  box-shadow: 0 20px 40px -24px rgba(33, 29, 78, .25);
  opacity:0;
  transform: translateY(28px);
  transition: opacity .6s ease, transform .6s ease;
}

.reason-card.is-visible{
  opacity:1;
  transform: translateY(0);
}

/* faint duplicate outline sitting behind, offset toward top-right */
.reason-card__ghost{
  position:absolute;
  inset:0;
  top: -14px;
  right: -14px;
  left: 14px;
  bottom: 14px;
  border-radius: 110px 110px 18px 18px;
  border: 1.5px solid var(--line);
  z-index:-1;
}

/* ===================== BODY TEXT ===================== */
.reason-card__body{
  text-align:center;
  width:100%;
}

.reason-card__title{
  font-weight:700;
  text-transform:capitalize;
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  line-height:1.2;
  margin-bottom: .9rem;
}

.reason-card__text{
  font-size: clamp(.92rem, 1.3vw, 1rem);
  line-height:1.7;
  color: var(--card-sub);
  font-weight:400;
}

.reason-card__more{
  max-height:0;
  overflow:hidden;
  transition: max-height .45s ease, opacity .35s ease, margin-top .45s ease;
  opacity:0;
}

.reason-card__more p{
  font-size: clamp(.92rem, 1.3vw, 1rem);
  line-height:1.7;
  color: var(--card-sub);
  font-weight:400;
}

.reason-card.is-expanded .reason-card__more{
  max-height: 320px;
  opacity:1;
  margin-top: .9rem;
}

/* ===================== TOGGLE BUTTON ===================== */
.reason-card__toggle{
  position:absolute;
  right: clamp(1.25rem, 2.5vw, 1.75rem);
  bottom: clamp(1.25rem, 2.5vw, 1.75rem);
  width: 46px;
  height: 46px;
  border-radius:50%;
  border:none;
  background: var(--accent);
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 8px 18px -8px rgba(0,0,0,.35);
  transition: transform .35s ease, background .25s ease;
}

.reason-card__toggle:hover{
  transform: scale(1.08);
}

.reason-card__toggle-icon{
  position:relative;
  width: 16px;
  height: 16px;
}

.reason-card__toggle-icon::before,
.reason-card__toggle-icon::after{
  content:"";
  position:absolute;
  background: var(--ink);
  border-radius:2px;
  top:50%;
  left:50%;
  transform: translate(-50%, -50%);
}

.reason-card__toggle-icon::before{ width:16px; height:3px; }
.reason-card__toggle-icon::after { width:3px; height:16px; }

.reason-card[style*="--accent:#211d4e"] .reason-card__toggle-icon::before,
.reason-card[style*="--accent:#211d4e"] .reason-card__toggle-icon::after{
  background:#ffffff;
}

.reason-card.is-expanded .reason-card__toggle-icon{
  transform: rotate(45deg);
}

.reason-card__toggle:focus-visible{
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

/* ===================== ACCENT CORNER (last card) ===================== */
.reason-card--accent{
  overflow: visible;
}

.reason-card__corner{
  position:absolute;
  top: -22px;
  right: -22px;
  width: 70px;
  height: 70px;
  border-top: 3px solid var(--accent);
  border-right: 3px solid var(--accent);
  border-radius: 0 24px 0 0;
  pointer-events:none;
}

/* ===================== SCROLL HINT (mobile only) ===================== */
.why-us__scroll-hint{
  display:none;
  text-align:center;
  margin-top: 1.75rem;
  font-size:.8rem;
  font-weight:600;
  letter-spacing:.22em;
  text-transform:uppercase;
  color: var(--muted);
}

.why-us__scroll-hint span{
  color:#ff5e1a;
  display:inline-block;
  animation: nudge-right 1.6s ease-in-out infinite;
}

@keyframes nudge-right{
  0%, 100%{ transform: translateX(0); }
  50%{ transform: translateX(6px); }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px){
  .why-us__track{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .why-us__track{
    grid-template-columns:none;
    grid-auto-flow: column;
    grid-auto-columns: 82%;
    overflow-x:auto;
    overflow-y:visible;
    scroll-snap-type: x mandatory;
    padding: .5rem .25rem 1rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width:none;
  }

  .why-us__track::-webkit-scrollbar{ display:none; }

  .reason-card{
    scroll-snap-align: start;
    min-height: 380px;
    border-radius: 80px 80px 16px 16px;
  }

  .reason-card__ghost{
    border-radius: 80px 80px 16px 16px;
    top:-10px; right:-10px; left:10px; bottom:10px;
  }

  .why-us__scroll-hint{
    display:block;
  }
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce){
  .reason-card,
  .reason-card__more,
  .reason-card__toggle,
  .reason-card__toggle-icon,
  .why-us__scroll-hint span{
    transition:none;
    animation:none;
  }
}
/* why choose us end  */

/* clients section */

/* ===================== CLIENTS SECTION CSS ===================== */

.clients-section {
  background-color: var(--bg);
  padding: 80px 20px;
  width: 100%;
  box-sizing: border-box;
}

.clients-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.clients-header {
  margin-bottom: 50px;
}

.clients-title {
     display: inline-block;
    font-size: clamp(.85rem, 1.4vw, 1.3rem);
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: capitalize;
    color: var(--pink);
    margin-bottom: .5rem;
 font-family: "Barlow Condensed", sans-serif;
}

.clients-subtitle {
 font-weight: 800;
    text-transform: uppercase;
    color: var(--ink);
    font-size: clamp(1.7rem, 4.6vw, 2.9rem);
    line-height: 1.2;
    letter-spacing: .01em;
    max-width: 880px;
    margin: 0 auto;
    font-family: "Barlow Condensed", sans-serif;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px;
}

/* Circular glowing bubble */
.client-bubble {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e6e6e6;
  box-shadow:
    0 0 15px rgba(0, 123, 255, 0.25),
    0 0 30px rgba(0, 123, 255, 0.15),
    0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  cursor: pointer;
  animation: glowPulse 3s ease-in-out infinite;
}

.client-bubble img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  border-radius: 50%;
}

/* Hover effect - bigger glow */
.client-bubble:hover {
  transform: translateY(-8px) scale(1.05);
  border-color: rgba(0, 123, 255, 0.5);
  box-shadow:
    0 0 25px rgba(0, 123, 255, 0.45),
    0 0 50px rgba(0, 123, 255, 0.3),
    0 8px 20px rgba(0, 0, 0, 0.08);
}

/* Subtle continuous glow animation */
@keyframes glowPulse {
  0%, 100% {
    box-shadow:
      0 0 15px rgba(0, 123, 255, 0.2),
      0 0 30px rgba(0, 123, 255, 0.1),
      0 4px 15px rgba(0, 0, 0, 0.05);
  }
  50% {
    box-shadow:
      0 0 25px rgba(0, 123, 255, 0.35),
      0 0 45px rgba(0, 123, 255, 0.2),
      0 4px 15px rgba(0, 0, 0, 0.05);
  }
}

/* ===================== RESPONSIVE ===================== */

@media (max-width: 1024px) {
  .client-bubble {
    width: 140px;
    height: 140px;
  }

  .clients-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: 60px 15px;
  }

  .clients-grid {
    gap: 30px;
  }

  .client-bubble {
    width: 120px;
    height: 120px;
  }

  .clients-title {
    font-size: 1.9rem;
  }

  .clients-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .clients-grid {
    gap: 22px;
  }

  .client-bubble {
    width: 100px;
    height: 100px;
    border-width: 1.5px;
  }

  .clients-title {
    font-size: 1.6rem;
  }

  .clients-subtitle {
    font-size: 0.9rem;
  }
}


/* Blog section css */

.blog-section {
  background: var(--bg);
  padding: 90px 20px 110px;
  width: 100%;
}
 
.blog-container {
  max-width: 1240px;
  margin: 0 auto;
}
 
/* ---------- Header ---------- */
.blog-header {
  text-align: center;
  margin-bottom: 70px;
}
 
.blog-tag {
  display: inline-block;
  background: rgba(255, 122, 0, 0.12);
  color: #ff7a00;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 15px;
}
 
.blog-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #14224b;
}
 
/* ---------- Grid ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 70px 40px;
}
 
/* ---------- Card ---------- */
.blog-card {
  position: relative;
  background: #ffffff;
  border-radius: 35px;
  padding: 45px 28px 35px;
  margin-top: 55px;
  box-shadow: 0 20px 50px rgba(20, 34, 75, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
 
.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(20, 34, 75, 0.14);
}
 
/* ---------- 3D Outward Image ---------- */
.blog-image-wrap {
  position: relative;
  width: calc(100% + 56px);
  margin: -100px -28px 25px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 25px 45px -10px rgba(20, 34, 75, 0.35),
    0 0 0 8px #ffffff;
  transform: perspective(800px) rotateX(0deg) translateZ(0);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
 
.blog-card:hover .blog-image-wrap {
  transform: perspective(800px) rotateX(2deg) translateY(-6px) translateZ(20px);
  box-shadow:
    0 35px 55px -10px rgba(20, 34, 75, 0.4),
    0 0 0 8px #ffffff;
}
 
.blog-image-wrap img {
  display: block;
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
 
.blog-card:hover .blog-image-wrap img {
  transform: scale(1.08);
}
 
/* ---------- Badge ---------- */
.blog-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 18px rgba(255, 122, 0, 0.35);
}
 
.badge-orange {
  background: linear-gradient(135deg, #ffb347, #ff7a00);
}
 
/* ---------- Content ---------- */
.blog-meta {
  display: flex;
  gap: 22px;
  margin-bottom: 16px;
}
 
.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: #8a93ab;
  font-weight: 500;
}
 
.meta-item i {
  color: #ff7a00;
}
 
.blog-card-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #14224b;
  line-height: 1.4;
  margin-bottom: 14px;
  transition: color 0.3s ease;
}
 
.blog-card:hover .blog-card-title {
  color: #ff7a00;
}
 
.blog-text {
  font-size: 0.95rem;
  color: #8a93ab;
  line-height: 1.7;
  margin-bottom: 28px;
}
 
/* ---------- View More Button (unique pill + arrow) ---------- */
.view-more-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  color: #14224b;
  padding: 14px 8px 14px 26px;
  border-radius: 50px;
  background: #f4f6fb;
  border: 2px solid transparent;
  overflow: hidden;
  transition: color 0.4s ease, padding 0.4s ease, background 0.4s ease;
}
 
.view-more-btn i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffb347, #ff7a00);
  color: #ffffff;
  font-size: 0.85rem;
  transition: transform 0.4s ease;
}
 
.view-more-btn:hover {
  background: #fff3e9;
  padding-right: 26px;
  color: #ff7a00;
}
 
.view-more-btn:hover i {
  transform: translateX(6px) rotate(45deg);
}
 
/* ===================== RESPONSIVE ===================== */
 
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 30px;
  }
}
 
@media (max-width: 700px) {
  .blog-section {
    padding: 70px 16px 90px;
  }
 
  .blog-title {
    font-size: 2rem;
  }
 
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 75px;
  }
 
  .blog-card {
    margin-top: 60px;
    padding: 40px 22px 30px;
  }
 
  .blog-image-wrap {
    width: calc(100% + 44px);
    margin: -90px -22px 22px;
  }
 
  .blog-image-wrap img {
    height: 200px;
  }
 
  .blog-card-title {
    font-size: 1.15rem;
  }
}
 
@media (max-width: 380px) {
  .blog-image-wrap img {
    height: 180px;
  }
 
  .blog-badge {
    font-size: 0.72rem;
    padding: 6px 14px;
  }
 
  .view-more-btn {
    font-size: 0.88rem;
    padding: 12px 6px 12px 20px;
  }
 
  .view-more-btn i {
    width: 34px;
    height: 34px;
  }
}

/* stylish button */

/* gallery section */


.gallery-section {
     background:var(--bg);
  padding: 80px 20px;
}
 
.gallery-container {
  max-width: 1400px;
  margin: 0 auto;
}
 
/* ---------- Header ---------- */
.gallery-header {
  text-align: center;
  margin-bottom: 50px;
}
 
.gallery-tag {
  display: block;
  color: #ff6a1a;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 8px;
}
 
.gallery-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #1a2342;
  letter-spacing: 1px;
}
 
/* ---------- Grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
 
/* ---------- Glassic 3D Item ---------- */
.gallery-item {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow:
    0 10px 25px rgba(20, 30, 70, 0.12),
    0 2px 6px rgba(20, 30, 70, 0.08),
    inset 0 1px 2px rgba(255, 255, 255, 0.6);
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateZ(0);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
 
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(255, 255, 255, 0) 40%,
    rgba(255, 255, 255, 0) 70%,
    rgba(255, 255, 255, 0.15) 100%
  );
  pointer-events: none;
  z-index: 2;
}
 
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 24px;
  transition: transform 0.6s ease, filter 0.6s ease;
}
 
/* Hover: lift + tilt + glass shine intensify */
.gallery-item:hover {
  transform: perspective(900px) rotateX(4deg) rotateY(-4deg) translateY(-10px) translateZ(20px);
  box-shadow:
    0 25px 45px rgba(20, 30, 70, 0.25),
    0 8px 18px rgba(20, 30, 70, 0.15),
    inset 0 1px 2px rgba(255, 255, 255, 0.7);
}
 
.gallery-item:hover img {
  transform: scale(1.08);
}
 
/* ===================== RESPONSIVE ===================== */
 
@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
}
 
@media (max-width: 780px) {
  .gallery-title {
    font-size: 2.2rem;
  }
 
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
 
  .gallery-item,
  .gallery-item::after,
  .gallery-item img {
    border-radius: 18px;
  }
}
 
@media (max-width: 480px) {
  .gallery-section {
    padding: 60px 14px;
  }
 
  .gallery-title {
    font-size: 1.7rem;
  }
 
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
 
  .gallery-item:hover {
    transform: translateY(-6px) translateZ(0);
  }
}


/* Faqs section start */

 
.faq-section {
  padding: 80px 20px;
  background:var(--bg);
}
 
.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}
 
.faq-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: #1a2342;
  letter-spacing: 1px;
  margin-bottom: 50px;
  text-transform: uppercase;
}
 
/* ---------- FAQ List ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
 
/* ---------- FAQ Item ---------- */
.faq-item {
  border-radius: 18px;
  overflow: hidden;
  border: 3px solid transparent;
  background: var(--bg);
  box-shadow: 0 6px 16px rgba(20, 30, 70, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
 
.faq-item:hover {
  transform: translateY(-3px) scale(1.005);
  box-shadow: 0 12px 28px rgba(20, 30, 70, 0.12);
}
 
/* ---------- Question Row ---------- */
.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 18px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 30px;
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a2342;
    font-family: inherit;
}
 
.faq-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.4rem;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.7);
  transition: transform 0.4s ease;
}
 
.faq-item:hover .faq-icon {
  transform: rotate(-10deg) scale(1.12);
}
 
.faq-text {
  flex: 1;
  line-height: 1.5;
}
 
.faq-toggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1a2342;
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 900;
  transition: transform 0.4s ease, background 0.4s ease;
}
 
.faq-item.active .faq-toggle {
  transform: rotate(135deg);
  background: #ff6a1a;
}
 
/* ---------- Answer ---------- */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
 
.faq-answer p {
  padding: 0 26px 0 90px;
  font-size: 0.98rem;
  color: #4a5170;
  line-height: 1.8;
}
 
.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 22px;
}
 
/* ---------- Cartoonistic Color Themes ---------- */
.color-1 { background: #ffe7d6; }
.color-1 .faq-icon { background: #ffb38a; }
 
.color-2 { background: #e4f3ff; }
.color-2 .faq-icon { background: #9ed4ff; }
 
.color-3 { background: #fff3cf; }
.color-3 .faq-icon { background: #ffd95e; }
 
.color-4 { background: #e6f7e9; }
.color-4 .faq-icon { background: #9fe6ae; }
 
.color-5 { background: #f3e8ff; }
.color-5 .faq-icon { background: #d2acff; }
 
.color-6 { background: #ffe1ec; }
.color-6 .faq-icon { background: #ffaecb; }
 
.color-7 { background: #e0fbff; }
.color-7 .faq-icon { background: #9deef7; }
 
.color-8 { background: #fdeccf; }
.color-8 .faq-icon { background: #ffcb7a; }
 
.faq-item.active {
  border-color: #1a2342;
}
 
/* ===================== RESPONSIVE ===================== */
 
@media (max-width: 768px) {
  .faq-title {
    font-size: 1.7rem;
  }
 
  .faq-question {
    padding: 18px 18px;
    gap: 12px;
    font-size: 0.95rem;
  }
 
  .faq-icon {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }
 
  .faq-toggle {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
  }
 
  .faq-answer p {
    padding: 0 18px 0 18px;
    font-size: 0.92rem;
  }
}
 
@media (max-width: 480px) {
  .faq-section {
    padding: 60px 14px;
  }
 
  .faq-title {
    font-size: 1.4rem;
    margin-bottom: 35px;
  }
 
  .faq-question {
    flex-wrap: wrap;
  }
 
  .faq-text {
    order: 1;
    width: calc(100% - 64px);
  }
 
  .faq-toggle {
    order: 2;
  }
 
  .faq-icon {
    order: 0;
  }
}

/* ---------------------------------------- */

/* contact section in index page */

/* ----------------------------------------- */

.contact-section {
  background: var(--bg);
  padding: 80px 20px;
}
 
.contact-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}
 
/* ---------- LEFT: FORM ---------- */
.contact-form-wrap {
  display: flex;
  flex-direction: column;
}
 
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}
 
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #f7f7f9;
  border: 1px solid #ececf1;
  border-radius: 10px;
  padding: 18px 20px;
  font-size: 1rem;
  font-family: inherit;
  color: #2b2f3a;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
 
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #9aa0ad;
}
 
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ff6a1a;
  box-shadow: 0 0 0 3px rgba(255, 106, 26, 0.12);
}
 
.contact-form textarea {
  flex: 1;
  min-height: 180px;
  resize: vertical;
}
 
.submit-btn {
  border: none;
  cursor: pointer;
  padding: 20px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ffffff;
  border-radius: 10px;
  background: linear-gradient(90deg, #e91e5e, #ff5722);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
 
.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(255, 87, 34, 0.35);
  filter: brightness(1.05);
}
 
.submit-btn:active {
  transform: translateY(0);
}
 
/* ---------- RIGHT: INFO + MAP ---------- */
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
 
.contact-tag {
  display: inline-block;
  color: #ff6a1a;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
 
.contact-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #1a2342;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
 
.contact-desc {
  color: #7a8095;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 520px;
}
 
/* ---------- Info Items ---------- */
.info-item {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  margin-bottom: 22px;
}
 
.info-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid #ff6a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #ff6a1a;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
 
.info-item:hover .info-icon {
  background: #ff6a1a;
  color: #ffffff;
  transform: scale(1.08);
}
 
.info-text h4 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a2342;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}
 
.info-text p {
  color: #7a8095;
  font-size: 0.96rem;
  line-height: 1.6;
}
 
/* ---------- Map ---------- */
.map-wrap {
  width: 100%;
  min-height: 260px;
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(20, 30, 70, 0.1);
}
 
.map-wrap iframe {
  display: block;
}
 
/* ===================== RESPONSIVE ===================== */
 
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }
 
  .contact-title {
    font-size: 2.1rem;
  }
 
  .map-wrap {
    min-height: 320px;
  }
}
 
@media (max-width: 600px) {
  .contact-section {
    padding: 60px 16px;
  }
 
  .contact-title {
    font-size: 1.7rem;
  }
 
  .contact-form input,
  .contact-form textarea {
    padding: 15px 16px;
    font-size: 0.95rem;
  }
 
  .info-item {
    gap: 16px;
  }
 
  .info-icon {
    width: 52px;
    height: 52px;
    font-size: 1.15rem;
  }
 
  .info-text h4 {
    font-size: 1rem;
  }
 
  .info-text p {
    font-size: 0.9rem;
  }
 
  .map-wrap {
    min-height: 260px;
  }
}


/* Footer design  */


.slim-footer {
  background: #1a1a3d;
  padding: 20px 30px;
}
 
.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
 
/* ---------- LEFT: Social Icons ---------- */
.footer-social {
  display: flex;
  gap: 14px;
}
 
.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #ffffff;
  color: #ff6a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
 
.social-icon:hover {
  background: #ff6a1a;
  color: #ffffff;
  transform: translateY(-3px);
}
 
/* ---------- MIDDLE: Contact + Address ---------- */
.footer-contact {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  flex: 1;
}
 
.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d6d8e8;
  font-size: 0.92rem;
  white-space: nowrap;
}
 
.contact-item i {
  color: #ff6a1a;
}
 
.footer-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.15);
}
 
/* ---------- RIGHT: Copyright ---------- */
.footer-copy {
  color: #a9adc4;
  font-size: 0.9rem;
  white-space: nowrap;
}
 
/* ===================== RESPONSIVE ===================== */
 
@media (max-width: 1024px) {
  .footer-container {
    justify-content: center;
    text-align: center;
  }
 
  .footer-contact {
    order: 3;
    flex-basis: 100%;
  }
 
  .footer-divider {
    display: none;
  }
 
  .footer-social {
    order: 1;
  }
 
  .footer-copy {
    order: 2;
  }
}
 
@media (max-width: 600px) {
  .slim-footer {
    padding: 22px 18px;
  }
 
  .footer-container {
    flex-direction: column;
    gap: 16px;
  }
 
  .footer-contact {
    flex-direction: column;
    gap: 10px;
  }
 
  .contact-item {
    font-size: 0.88rem;
  }
 
  .social-icon {
    width: 36px;
    height: 36px;
    font-size: 0.92rem;
  }
}
 