/* Circle Six — live brand layer (teal / cloud / light) */
.cs-topbar {
  background: #2d2d83;
  color: #fff;
  font-size: 0.8rem;
  padding: 8px 0;
}
.cs-topbar__inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.cs-topbar a { color: #fff; opacity: 0.9; }
.cs-topbar__meta { display: flex; gap: 16px; flex-wrap: wrap; }
.cs-topbar__social { display: flex; gap: 10px; }

.cs-header {
  position: sticky;
  top: 0;
  background: #fff;
  color: var(--color-heading);
  box-shadow: 0 1px 0 var(--color-border);
}
.cs-header.is-scrolled {
  background: #fff;
  backdrop-filter: none;
  box-shadow: 0 8px 24px rgba(22, 58, 122, 0.08);
}
.cs-header .cs-nav a { opacity: 1; color: var(--color-heading); font-weight: 500; }
.cs-header .cs-nav .current-menu-item > a { color: var(--color-primary); }
.cs-header .cs-nav .current-menu-item > a::after { background: var(--color-primary); }
.cs-logo { color: var(--color-heading); }
.cs-logo__mark {
  background: conic-gradient(from 200deg, #1a8fa8, #163a7a);
}

.cs-hero,
.cs-pagehero {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.45), transparent 40%),
    radial-gradient(circle at 80% 0%, rgba(255,255,255,.35), transparent 35%),
    linear-gradient(180deg, #49b7d0 0%, #2a8fb8 55%, #1b6f9a 100%);
  color: #fff;
  min-height: unset;
  padding: 90px 0 70px;
  text-align: center;
}
.cs-hero__grid { grid-template-columns: 1fr; text-align: center; justify-items: center; }
.cs-hero .cs-display,
.cs-pagehero h1 { color: #fff; max-width: 18ch; margin-inline: auto; }
.cs-hero .cs-lead { margin-inline: auto; color: rgba(255,255,255,.9); }
.cs-hero__visual { display: none; }
.cs-hero__statrow { justify-content: center; }
.cs-hero__actions { justify-content: center; }
.cs-breadcrumb { justify-content: center; }

.cs-btn--primary { background: #163a7a; }
.cs-btn--secondary { background: #163a7a; }
.cs-btn,
.cs-btn--primary,
.cs-btn--secondary,
.cs-btn--light,
.cs-form button {
  border-radius: 300px !important;
}

.cs-logo-slide {
  margin-top: 20px;
  --vis: 2;
  --gap: 16px;
  --frame: min(1240px, calc(100vw - 48px));
  overflow: hidden;
}
.cs-logo-slide .cs-marquee { width: 100%; overflow: hidden; }
.cs-logo-slide .cs-clients {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--gap);
  justify-content: flex-start;
  align-items: stretch;
  width: max-content;
  animation: csLogoSlide 32s linear infinite;
}
.cs-logo-slide:hover .cs-clients,
.cs-logo-slide:focus-within .cs-clients {
  animation-play-state: paused;
}
@keyframes csLogoSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}
.cs-client {
  flex: 0 0 calc((var(--frame) - (var(--vis) - 1) * var(--gap)) / var(--vis));
  width: auto;
  max-width: none;
  display: grid;
  place-items: center;
  background: #faf8f8;
  font-weight: 700;
  color: var(--color-heading);
  text-align: center;
  box-sizing: border-box;
}
.cs-client img {
  max-height: 92px !important;
  width: auto;
  max-width: 92%;
  object-fit: contain;
}
@media (min-width: 768px) {
  .cs-logo-slide { --vis: 4; }
}
@media (min-width: 1200px) {
  .cs-logo-slide { --vis: 6; }
}

.cs-who {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
}
.cs-who__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.cs-who__stat {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  text-align: center;
  border: 1px solid var(--color-border);
}
.cs-who__stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-heading);
}

.cs-services { grid-template-columns: repeat(4, 1fr); }
.cs-service {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-height: 220px;
  border-radius: 22px;
  border: 1px solid #cfe4f3;
  box-shadow: none;
  background: linear-gradient(#fff, #f4fbff);
}
.cs-service h3 { color: var(--color-heading); }
.cs-service__icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: #e8f6fb;
}

.cs-pricing { grid-template-columns: repeat(3, 1fr); }
.cs-plan { border-radius: 18px; }
.cs-plan.is-featured {
  background: #163a7a;
  transform: none;
}

.cs-footer {
  background: #fff;
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
}
.cs-footer h4 { color: var(--color-heading); }
.cs-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.cs-footer__contact .cs-ico {
  flex: 0 0 20px;
  color: #163a7a;
  margin-top: 2px;
}
.cs-footer__contact .cs-ico svg { width: 18px; height: 18px; display: block; }
.cs-footer a {
  color: var(--color-text);
  text-decoration: none;
  transition: color .25s ease;
}
.cs-footer a:hover {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cs-footer__brand { color: var(--color-heading); font-size: clamp(2rem, 6vw, 4rem); }
.cs-footer__bottom { color: var(--color-muted); }
.cs-mailchip { background: #163a7a; }
.cs-contact-icons { display: grid; gap: 18px; }
.cs-contact-icons svg { width: 36px; height: 36px; color: #163a7a; }

.cs-cloud-hero { text-align: center; }

/* Service layouts */
.cs-svc-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
  align-items: center;
}
.cs-svc-intro__media {
  background: #2a7fa0;
  border-radius: 8px;
  min-height: 280px;
  overflow: hidden;
}
.cs-svc-intro__media img { width: 100%; height: 100%; object-fit: cover; }
.cs-band {
  background: #2a7fa0;
  color: #fff;
  padding: 56px 0;
}
.cs-band h2, .cs-band h3 { color: #fff; }
.cs-band .cs-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}
.cs-band img { border-radius: 12px; width: 100%; }
.cs-factor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cs-factor {
  border: 2px solid #7ec8d8;
  border-radius: 16px;
  padding: 22px 18px;
  min-height: 160px;
  background: #fff;
}
.cs-faq { max-width: 860px; margin: 0 auto; }
.cs-faq details {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 10px;
  border: 1px solid var(--color-border);
  overflow: hidden;
}
.cs-faq summary {
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-heading);
  list-style: none;
}
.cs-faq details[open] summary { background: #2a7fa0; color: #fff; }
.cs-faq .cs-faq__a { padding: 14px 18px; background: #2a7fa0; color: #fff; }

/* Case studies zigzag */
.cs-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 280px;
}
.cs-case__copy {
  padding: 40px 36px;
  color: #fff;
}
.cs-case:nth-child(odd) .cs-case__copy { background: #163a7a; }
.cs-case:nth-child(even) .cs-case__copy { background: #1f8aa8; }
.cs-case:nth-child(even) { direction: rtl; }
.cs-case:nth-child(even) > * { direction: ltr; }
.cs-case__copy h2, .cs-case__copy h3 { color: #fff; }
.cs-case__media { background: #111; min-height: 280px; }
.cs-case__media img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }

/* Gallery */
.cs-filters { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.cs-filters button.is-active { background: #163a7a; color: #fff; }
.cs-masonry {
  columns: 3;
  column-gap: 16px;
}
.cs-masonry a, .cs-masonry article {
  break-inside: avoid;
  margin-bottom: 16px;
  display: block;
  border-radius: 18px;
  overflow: hidden;
}
.cs-masonry img { width: 100%; display: block; }

/* Software */
.cs-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cs-benefit { color: #fff; border-radius: 18px; padding: 28px 22px; min-height: 260px; }
.cs-benefit:nth-child(1) { background: #e45b6b; }
.cs-benefit:nth-child(2) { background: #8b5cf6; }
.cs-benefit:nth-child(3) { background: #2dd4bf; }
.cs-feat-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.cs-feat {
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 22px 12px;
  text-align: center;
  background: #fff;
}
.cs-soft-why {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
}
.cs-phone {
  width: 220px;
  height: 440px;
  border-radius: 36px;
  background: linear-gradient(#e8f7fb, #fff);
  border: 8px solid #111;
  margin: 0 auto;
}

.cs-about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 16px;
}
.cs-about-box {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 22px;
}
.cs-about-box.is-teal { background: #2a7fa0; color: #fff; }
.cs-about-box.is-teal h3 { color: #fff; }
.cs-philo { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cs-philo article {
  background: #2a7fa0;
  color: #fff;
  border-radius: 22px 22px 22px 8px;
  padding: 28px 22px 40px;
  position: relative;
}
.cs-philo article h3 { color: #fff; }
.cs-philo article .n {
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2a7fa0;
  border: 3px solid #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
}

/* Buttons */
.cs-btn {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .35s cubic-bezier(.22,1,.36,1), box-shadow .35s ease, background .35s ease, color .35s ease, border-color .35s ease;
}
.cs-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,.22) 50%, transparent 80%);
  transform: translateX(-120%);
  transition: transform .55s ease;
  z-index: -1;
}
.cs-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(22,58,122,.22);
}
.cs-btn:hover::after { transform: translateX(120%); }
.cs-btn--primary:hover,
.cs-btn--secondary:hover { background: #1a8fa8; }
.cs-btn--outline:hover { background: #163a7a; color: #fff; border-color: #163a7a; }
.cs-btn--light:hover { background: #163a7a; color: #fff; }
.cs-btn--on-dark { color: #fff; border-color: rgba(255,255,255,.45); }

/* Nav hover like buttons */
.cs-header .cs-nav a {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  transition: background .45s cubic-bezier(.22,1,.36,1), color .45s cubic-bezier(.22,1,.36,1), transform .45s cubic-bezier(.22,1,.36,1);
}
.cs-header .cs-nav a::after { display: none; }
.cs-header .cs-nav a:hover {
  background: rgba(26, 143, 168, 0.14);
  color: #1a8fa8;
  transform: translateY(-1px);
}
.cs-header .cs-nav .current-menu-item > a,
.cs-header .cs-nav .current_page_item > a {
  background: rgba(26, 143, 168, 0.16);
  color: #1a8fa8;
}

/* Mobile menu — full-width professional list */
.cs-mobile {
  background: #06101c;
  padding: 96px 0 48px;
  align-content: stretch;
  justify-items: stretch;
}
.cs-mobile nav { width: 100%; max-width: none; }
.cs-mobile .cs-nav__list,
.cs-mobile .menu,
.cs-mobile ul {
  flex-direction: column;
  gap: 0;
  width: 100%;
}
.cs-mobile nav a {
  display: block;
  width: 100%;
  padding: 18px 28px;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: 1.35rem;
  font-family: var(--font-heading);
  letter-spacing: -0.03em;
  transition: background .4s ease, padding-left .4s ease, color .4s ease;
}
.cs-mobile nav a:hover,
.cs-mobile .current-menu-item > a {
  background: rgba(26, 143, 168, 0.16);
  color: #7ad4e4;
  padding-left: 36px;
  transform: none;
}

/* Hero watermark + paper/grain texture */
.cs-hero,
.cs-pagehero { position: relative; overflow: hidden; }
.cs-hero-watermark,
.cs-hero-texture,
.cs-hero__copy { will-change: transform; }
.cs-hero-watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: max-content;
  max-width: none;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3.2rem, 7vw, 9.5rem);
  letter-spacing: -0.05em;
  color: rgb(22 58 122 / 24%);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  white-space: nowrap;
}
.cs-hero-texture {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,.18), transparent 32%),
    radial-gradient(circle at 85% 80%, rgba(10,40,70,.25), transparent 40%),
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 2px, transparent 2px 7px),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: .55;
}
.cs-hero__copy,
.cs-pagehero .cs-container { position: relative; z-index: 1; }

/* Footer lists */
.cs-footer__grid { grid-template-columns: 1.3fr 1fr 1fr 1fr; }
.cs-footer .cs-nav__list,
.cs-footer .menu,
.cs-footer__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-footer .widget,
.cs-footer .widget_archive,
.cs-footer .widget_categories { display: none !important; }
.cs-footer__brandcol .cs-logo { margin-bottom: 12px; font-size: 1.35rem; }
.cs-footer__brand { display: none; }

/* Contact */
.cs-connect {
  background: #1a8fa8;
  color: #fff;
  border-radius: 24px;
  padding: 40px 32px;
}
.cs-connect h2 { color: #fff; }
.cs-connect__list { margin-top: 28px; display: grid; gap: 14px; }
.cs-connect a { color: #fff; }
.cs-form select,
.cs-form input,
.cs-form textarea {
  background: transparent;
  color: #fff;
}
.cs-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #fff 50%), linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position: calc(100% - 16px) 50%, calc(100% - 11px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 28px;
}
.cs-form select option {
  background: #fff;
  color: #163a7a;
}
.cs-form select:focus,
.cs-form input:focus,
.cs-form textarea:focus { border-bottom-color: #fff; }

/* 404 dark */
.cs-404 {
  position: relative;
  min-height: 78vh;
  background: #05070d;
  color: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 120px 0 80px;
  text-align: center;
}
.cs-404 h1,
.cs-404 .cs-lead { color: #fff; }
.cs-404__glow {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,143,168,.45), transparent 65%);
  animation: csPulse 6s ease-in-out infinite;
  filter: blur(8px);
}
.cs-404__mark {
  color: rgba(255,255,255,.06);
  font-size: clamp(8rem, 28vw, 18rem);
}
.cs-404__inner { position: relative; z-index: 1; }
.cs-404__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 24px; }
.cs-404__search { max-width: 420px; margin: 28px auto 0; }
@keyframes csPulse {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.25); opacity: 1; }
}

@media (max-width: 1100px) {
  .cs-services { grid-template-columns: repeat(2, 1fr); }
  .cs-factor-grid, .cs-feat-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-benefits, .cs-philo, .cs-about-grid, .cs-who, .cs-svc-intro, .cs-band .cs-container, .cs-case, .cs-soft-why {
    grid-template-columns: 1fr;
  }
  .cs-case:nth-child(even) { direction: ltr; }
  .cs-masonry { columns: 2; }
}
@media (max-width: 640px) {
  .cs-services, .cs-pricing, .cs-factor-grid, .cs-feat-grid { grid-template-columns: 1fr; }
  .cs-masonry { columns: 1; }
  .cs-topbar { display: none; }
  .cs-hero, .cs-pagehero { padding: 72px 0 48px; }
  .cs-hero .cs-display { font-size: clamp(1.7rem, 8.5vw, 2.3rem); max-width: 16ch; }
  .cs-hero-watermark { font-size: 9.2vw; opacity: .50; }
  .cs-hero .cs-lead { font-size: .95rem; padding-inline: 8px; }
  .cs-header__inner { min-height: 64px; }
  .cs-section { padding: 56px 0; }
  .cs-who, .cs-who__stats { grid-template-columns: 1fr; }
}

.cs-client img { max-height: 56px; width: auto; margin: 0 auto; object-fit: contain; }
.cs-quote__stars { color: #d4a017; }
.cs-quote__stars svg { fill: #d4a017; color: #d4a017; }

.cs-smoke-track {
  position: relative;
  overflow: hidden;
}
.cs-marquee { overflow: hidden; }
.cs-marquee__track {
  display: flex;
  gap: 18px;
  width: max-content;
  will-change: transform;
}
.cs-reel {
  flex: 0 0 220px;
  height: 380px;
  border-radius: 22px;
  overflow: hidden;
  background: #111;
  position: relative;
  color: #fff;
}
.cs-reel video,
.cs-reel iframe,
.cs-reel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}
.cs-reel span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  font-size: 0.85rem;
}
.cs-quotes-track .cs-quote { flex: 0 0 min(340px, 80vw); }
.cs-smoke {
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(140px, 18vw);
  z-index: 2;
  pointer-events: none;
}
.cs-smoke--left {
  left: 0;
  background: linear-gradient(90deg, #fff 10%, rgba(255,255,255,0));
}
.cs-smoke--right {
  right: 0;
  background: linear-gradient(270deg, #fff 10%, rgba(255,255,255,0));
}

.cs-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: #1a8fa8;
  pointer-events: none;
  z-index: 200;
  mix-blend-mode: multiply;
  opacity: 0;
}
.has-cursor .cs-cursor { opacity: 1; }
.has-cursor .cs-cursor.is-grow {
  transform: scale(2.4);
  background: #163a7a;
}
.has-cursor, .has-cursor * { cursor: none; }
.has-cursor a, .has-cursor button { cursor: none; }

@media (pointer: coarse) {
  .cs-cursor { display: none !important; }
  html.has-cursor, html.has-cursor * { cursor: auto; }
}


.cs-client img { max-height: 200px!important; width: auto; margin: 0 auto; object-fit: contain; }
.cs-quote__stars, .cs-quote__stars svg { color: #d4a017; fill: #d4a017; }
.cs-smoke-track { position: relative; overflow: hidden; }
.cs-marquee { overflow: hidden; }
.cs-marquee__track { display: flex; gap: 18px; width: max-content; will-change: transform; }
.cs-reel { flex: 0 0 220px; height: 380px; border-radius: 22px; overflow: hidden; background: #111; position: relative; color: #fff; }
.cs-reel video, .cs-reel iframe, .cs-reel img { width: 100%; height: 100%; object-fit: cover; border: 0; }
.cs-reel span { position: absolute; left: 12px; bottom: 12px; font-size: .85rem; }
.cs-quotes-track .cs-quote { flex: 0 0 min(340px, 80vw); }
.cs-smoke { position: absolute; top: 0; bottom: 0; width: min(140px, 18vw); z-index: 2; pointer-events: none; }
.cs-smoke--left { left: 0; background: linear-gradient(90deg, #fff 10%, rgba(255,255,255,0)); }
.cs-smoke--right { right: 0; background: linear-gradient(270deg, #fff 10%, rgba(255,255,255,0)); }
.cs-cursor { position: fixed; top: 0; left: 0; width: 12px; height: 12px; margin: -6px 0 0 -6px; border-radius: 50%; background: #1a8fa8; pointer-events: none; z-index: 200; mix-blend-mode: multiply; opacity: 0; }
.has-cursor .cs-cursor { opacity: 1; }
.has-cursor .cs-cursor.is-grow { width: 28px; height: 28px; margin: -14px 0 0 -14px; background: #163a7a; }
@media (pointer: coarse) { .cs-cursor { display: none !important; } }

/* -------------------------------------------------------------------- */

.cs-nav__list > li {
    margin-right: 10px; 
}
.cs-nav__list > li:last-child {
    margin-right: 0;
}

.cs-topbar__meta a, 
.cs-topbar__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px; 
    margin-right: 20px; 
}
.cs-topbar__meta .cs-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    flex-shrink: 0;
}

/* Topbar Social Icons */
.cs-topbar__social {
    display: flex;
    gap: 14px; /* Social icons ke beech ka gap */
    align-items: center;
}
.cs-topbar__social a {
    display: inline-flex;
    transition: opacity 0.2s ease;
}
.cs-topbar__social a:hover {
    opacity: 0.7;
}
.cs-topbar__social svg {
    width: 18px;
    height: 18px;
    fill: currentColor; /* Ya apne theme ka color use karein */
}



/* ----------------------- Social Hover -------------------------------- */

/* =========================================
   TOPBAR - CONTACT & SOCIAL ICONS
   ========================================= */

/* --- Topbar Container --- */
.cs-topbar {
    background: #1e3a8a; /* Dark Blue - apne color se change karein */
    color: #ffffff;
    padding: 10px 0;
    font-size: 14px;
}

.cs-topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   CONTACT INFO (Phone, Email, Location)
   ========================================= */

.cs-topbar__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
}

/* Phone, Email, Location Items */
.cs-topbar__meta a,
.cs-topbar__meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 20px;
    padding: 5px 0;
    color: #ffffff;
    font-size: 14px;
    transition: all 0.3s ease;
}

/* Hover Effect on Contact Links */
.cs-topbar__meta a:hover {
    color: #93c5fd; /* Light Blue on hover */
    transform: translateY(-2px);
}

/* Icons Styling */
.cs-topbar__meta i {
    font-size: 14px;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Specific Icon Colors (Optional) */
.cs-topbar__meta a[href^="tel:"] i {
    color: #4ade80; /* Green for phone */
}

.cs-topbar__meta a[href^="mailto:"] i {
    color: #60a5fa; /* Blue for email */
}

.cs-topbar__meta span i {
    color: #f87171; /* Red for location */
}

/* =========================================
   SOCIAL MEDIA ICONS
   ========================================= */

.cs-topbar__social {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Individual Social Link */
.cs-topbar__social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Social Icon Hover Effects */
.cs-topbar__social a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Social Icons Size */
.cs-topbar__social i {
    font-size: 16px;
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Individual Social Media Brand Colors on Hover */
.cs-topbar__social a[href*="facebook.com"]:hover {
    background: #1877f2;
    color: #ffffff;
}

.cs-topbar__social a[href*="instagram.com"]:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #ffffff;
}

.cs-topbar__social a[href*="twitter.com"]:hover,
.cs-topbar__social a[href*="x.com"]:hover {
    background: #000000;
    color: #ffffff;
}

.cs-topbar__social a[href*="linkedin.com"]:hover {
    background: #0a66c2;
    color: #ffffff;
}

.cs-topbar__social a[href*="youtube.com"]:hover {
    background: #ff0000;
    color: #ffffff;
}

.cs-topbar__social a[href*="whatsapp.com"]:hover,
.cs-topbar__social a[href*="wa.me"]:hover {
    background: #25d366;
    color: #ffffff;
}

.cs-topbar__social a[href*="tiktok.com"]:hover {
    background: #000000;
    color: #ffffff;
}

/* =========================================
   RESPONSIVE STYLES
   ========================================= */

/* Tablet View */
@media (max-width: 768px) {
    .cs-topbar__inner {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cs-topbar__meta {
        justify-content: center;
        gap: 10px;
    }
    
    .cs-topbar__meta a,
    .cs-topbar__meta span {
        margin-right: 0;
        padding: 8px 12px;
    }
    
    .cs-topbar__social {
        gap: 10px;
    }
    
    .cs-topbar__social a {
        width: 32px;
        height: 32px;
    }
    
    .cs-topbar__social i {
        font-size: 14px;
    }
}

/* Mobile View - Hide Text, Show Only Icons */
@media (max-width: 480px) {
    .cs-topbar__meta a span,
    .cs-topbar__meta span span {
        display: none;
    }
    
    .cs-topbar__meta a,
    .cs-topbar__meta span {
        width: 40px;
        height: 40px;
        margin-right: 5px;
        justify-content: center;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
    }
    
    .cs-topbar__meta i {
        font-size: 18px;
        width: 20px;
        height: 20px;
    }
    
    .cs-topbar__social a {
        width: 36px;
        height: 36px;
    }
}

/* =========================================
   ACCESSIBILITY
   ========================================= */

.cs-topbar__meta a:focus,
.cs-topbar__social a:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}

.cs-topbar__social a {
    animation: bounceIn 0.6s ease-out;
}

.cs-topbar__social a:nth-child(1) { animation-delay: 0.1s; }
.cs-topbar__social a:nth-child(2) { animation-delay: 0.2s; }
.cs-topbar__social a:nth-child(3) { animation-delay: 0.3s; }
.cs-topbar__social a:nth-child(4) { animation-delay: 0.4s; }


/* ----------------------------------------------------------- */

.cs-who__stat strong {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #1e3a5f;
    line-height: 1;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.cs-who__stat span {
    display: block;
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

.cs-who__stats.counting .cs-who__stat {
    animation: slideUpFade 0.6s ease-out forwards;
}

.cs-who__stats.counting .cs-who__stat:nth-child(1) { animation-delay: 0s; }
.cs-who__stats.counting .cs-who__stat:nth-child(2) { animation-delay: 0.1s; }
.cs-who__stats.counting .cs-who__stat:nth-child(3) { animation-delay: 0.2s; }
.cs-who__stats.counting .cs-who__stat:nth-child(4) { animation-delay: 0.3s; }

@keyframes slideUpFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cs-who__stats.counting strong {
    animation: pulseNumber 0.3s ease-in-out;
}

@keyframes pulseNumber {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ------------------------- Testimonial Slide [Start] ------------------------ */




/* ------------------------- Testimonial Slide [End] ------------------------ */