/* Circle Six design system */
:root {
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-sm: 0 8px 24px rgba(17, 17, 17, 0.06);
  --shadow-md: 0 20px 50px rgba(17, 17, 17, 0.1);
  --container: 1240px;
  --gutter: 24px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
}

html.cs-smooth {
  scroll-behavior: auto;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-body);
  line-height: var(--line-height);
  color: var(--color-text);
  background: var(--color-background);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }

.cs-skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 12px;
  z-index: 10000;
}
.cs-skip:focus { left: 12px; top: 12px; }

.cs-container {
  width: min(var(--container), calc(100% - var(--gutter) * 2));
  margin-inline: auto;
}

.cs-section { padding: 96px 0; }
.cs-section--tight { padding: 72px 0; }
.cs-section--dark {
  background: var(--color-dark);
  color: #f4f1ec;
}

h1, h2, h3, h4, .cs-display {
  font-family: var(--font-heading);
  font-weight: var(--font-weight-heading);
  color: var(--color-heading);
  letter-spacing: -0.035em;
  line-height: 1.08;
  margin: 0 0 16px;
}

.cs-section--dark h1,
.cs-section--dark h2,
.cs-section--dark h3,
.cs-section--dark .cs-display { color: #fff; }

.cs-display { font-size: clamp(2.4rem, 6vw, 5.4rem); }
h1 { font-size: clamp(2.2rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 3rem); }
h3 { font-size: 1.25rem; letter-spacing: -0.02em; }

.cs-lead { font-size: 1.125rem; color: var(--color-muted); max-width: 42rem; }
.cs-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.99rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #000;
  font-weight: 900;
  margin-bottom: 14px;
}

/* Buttons */
.cs-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 600;
  font-size: 0.94rem;
  line-height: 1;
  transition: transform 0.45s var(--ease), background 0.45s var(--ease), color 0.45s var(--ease), border-color 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.cs-btn svg { width: 16px; height: 16px; }
.cs-btn:hover { transform: translateY(-2px); }
.cs-btn--primary {
  background: var(--color-button-bg);
  color: var(--color-button-text);
}
.cs-btn--primary:hover { filter: brightness(1.05); }
.cs-btn--secondary {
  background: var(--color-heading);
  color: #fff;
}
.cs-btn--outline {
  background: transparent;
  border-color: currentColor;
}
.cs-btn--ghost {
  background: transparent;
  padding-inline: 8px;
}
.cs-btn--light {
  background: #fff;
  color: #111;
}

/* Header */
.cs-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  color: #fff;
}
.cs-header.is-sticky {
  position: sticky;
  top: 0;
}
.cs-header.is-solid,
.cs-header.is-scrolled {
  position: sticky;
  top: 0;
  background: color-mix(in srgb, var(--color-header-bg) 92%, transparent);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.cs-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  gap: 20px;
}
.cs-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}
.cs-logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.85rem;
}
.cs-nav__list {
  display: flex;
  align-items: center;
}
.cs-nav a {
  font-size: 0.92rem;
  opacity: 0.82;
  position: relative;
}
.cs-nav a:hover,
.cs-nav .current-menu-item > a { opacity: 1; }
.cs-nav .current-menu-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
}
.cs-header__cta { display: flex; align-items: center; gap: 10px; }


/* =========================================
   Premium Sliding Mobile Menu
   ========================================= */
.cs-menu-toggle {
    display: none;
    background: #ffffff;
    color: #000000;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.cs-menu-toggle:hover {
    transform: scale(1.05);
    background: #f0f0f0;
}

.cs-mobile {
    position: fixed;
    top: 0;
    left: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    
    background: rgba(15, 23, 42, 0.75); /* Semi-transparent dark */
    backdrop-filter: blur(20px); /* Background blur */
    -webkit-backdrop-filter: blur(20px); /* Safari/iOS support */
    border-right: 1px solid rgba(255, 255, 255, 0.1); /* Glass edge highlight */
    
    z-index: 10000;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 30px 25px;
    overflow-y: auto;
    box-shadow: 10px 0 30px rgba(0,0,0,0.2);
}

.cs-mobile.is-active {
    transform: translateX(0);
}

.cs-mobile__close {
    align-self: flex-end;
    background: rgba(255,255,255,0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.cs-mobile__close:hover {
    background: #ff4444;
    transform: rotate(90deg);
}

.cs-mobile nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cs-mobile nav ul li {
    margin: 10px 0;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.3s ease;
}

.cs-mobile.is-active nav ul li {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered animation */
.cs-mobile.is-active nav ul li:nth-child(1) { transition-delay: 0.1s; }
.cs-mobile.is-active nav ul li:nth-child(2) { transition-delay: 0.15s; }
.cs-mobile.is-active nav ul li:nth-child(3) { transition-delay: 0.2s; }
.cs-mobile.is-active nav ul li:nth-child(4) { transition-delay: 0.25s; }
.cs-mobile.is-active nav ul li:nth-child(5) { transition-delay: 0.3s; }
.cs-mobile.is-active nav ul li:nth-child(6) { transition-delay: 0.35s; }

.cs-mobile nav ul li a {
    text-decoration: none;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    display: block;
    padding: 2px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.cs-mobile nav ul li a:hover {
    background: rgba(255,255,255,0.1);
    color: #fafafa;
    padding-left: 25px;
}

.cs-mobile-overlay {
    display: none !important;
}

@media (max-width: 992px) {
    .cs-menu-toggle {
        display: flex;
    }
    .cs-nav {
        display: none;
    }
}

@media (max-width: 480px) {
    .cs-mobile {
        width: 100%;
        max-width: 100%;
        padding: 25px 20px;
    }
    .cs-mobile nav ul li a {
        font-size: 1.3rem;
    }
}





/* Mobile menu */
.cs-mobile {
  position: fixed;
  inset: 0;
  background: #0b0b0b;
  color: #fff;
  z-index: 80;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
}
.cs-mobile.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.cs-mobile nav a {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 6vw, 3rem);
  padding: 8px 0;
}
.cs-mobile__close {
  position: absolute;
  top: 22px;
  right: 22px;
  background: #fff;
  color: #111;
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

/* Hero */
.cs-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  color: #fff;
  background:
    radial-gradient(80% 60% at 80% 10%, rgba(255,90,31,0.35), transparent 50%),
    linear-gradient(180deg, #1a0d0a 0%, #0b0b0b 55%, #0b0b0b 100%);
  overflow: hidden;
  padding: 140px 0 80px;
}
.cs-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
}
.cs-hero__visual {
  position: relative;
  min-height: 340px;
  border-radius: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255,90,31,0.35), transparent 40%),
    #1a1210;
}
.cs-hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  background: var(--color-primary);
  opacity: 0.45;
}
.cs-hero__orb--1 { width: 220px; height: 220px; right: -40px; top: -30px; }
.cs-hero__orb--2 { width: 120px; height: 120px; left: 30px; bottom: 40px; background: #fff; opacity: 0.12; }
.cs-hero__statrow {
  display: flex;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.cs-hero__stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #fff;
}
.cs-hero__stat span { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.cs-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.cs-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    180deg,
    transparent 0 18px,
    rgba(255,255,255,0.035) 18px 19px
  );
  pointer-events: none;
  mix-blend-mode: overlay;
}

/* Page hero */
.cs-pagehero {
  position: relative;
  color: #fff;
  padding: 150px 0 70px;
  background:
    radial-gradient(70% 80% at 90% 20%, rgba(255,90,31,0.4), transparent 50%),
    linear-gradient(180deg, #1c0e0b, #0c0c0c);
  overflow: hidden;
}
.cs-breadcrumb { display: flex; gap: 8px; color: rgba(255,255,255,0.65); font-size: 0.9rem; }
.cs-breadcrumb a { color: #fff; }
.cs-breadcrumb .is-current { color: #000000 }

/* Cards */
.cs-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.cs-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.cs-service {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.cs-service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cs-service__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: color-mix(in srgb, var(--color-primary) 14%, white);
  color: var(--color-primary);
  font-weight: 700;
}
.cs-service__num { color: var(--color-muted); font-size: 0.85rem; }

.cs-work {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.cs-work__item {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
  background: #1a1a1a;
  color: #fff;
}
.cs-work__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
  transition: transform 0.8s var(--ease);
}
.cs-work__item:hover img { transform: scale(1.06); }
.cs-work__meta {
  position: absolute;
  inset: auto 0 0;
  padding: 22px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
}
.cs-work__cat { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--color-accent); }

.cs-pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cs-plan {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: transform 0.4s var(--ease);
}
.cs-plan:hover { transform: translateY(-6px); }
.cs-plan.is-featured {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-primary);
  transform: translateY(-8px);
}
.cs-plan.is-featured h3,
.cs-plan.is-featured .cs-plan__price { color: #fff; }
.cs-plan__price {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--color-heading);
  margin: 12px 0;
}
.cs-plan__price small { font-size: 0.95rem; color: var(--color-muted); }
.cs-plan ul { margin: 16px 0 24px; }
.cs-plan li {
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
}
.cs-plan.is-featured li { border-color: rgba(255,255,255,0.1); }
.cs-plan .cs-btn { margin-top: auto; justify-content: center; }

.cs-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cs-stat {
  background: var(--color-surface);
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--color-border);
}
.cs-stat strong {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--color-heading);
  display: block;
}

.cs-team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cs-team__card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 12px;
}

.cs-quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cs-quote {
  background: var(--color-surface);
  border-radius: 22px;
  padding: 28px;
  border: 1px solid var(--color-border);
}
.cs-quote__stars { color: var(--color-primary); display: flex; gap: 3px; margin-bottom: 12px; }
.cs-quote__stars svg { width: 14px; height: 14px; }
.cs-quote__who { display: flex; align-items: center; gap: 12px; margin-top: 20px; }
.cs-quote__who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; background: #ddd; }

.cs-cta {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 64px 48px;
  background:
    radial-gradient(60% 80% at 90% 20%, rgba(255,90,31,0.45), transparent 50%),
    var(--color-dark);
  color: #fff;
}
.cs-cta h2 { color: #fff; max-width: 14ch; }

.cs-contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
}
.cs-form {
  background: var(--color-dark);
  color: #fff;
  border-radius: 24px;
  padding: 32px;
}
.cs-form label { display: block; font-size: 0.82rem; margin: 14px 0 6px; color: rgba(255,255,255,0.7); }
.cs-form input,
.cs-form select,
.cs-form textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  padding: 10px 0;
  outline: none;
}
.cs-form textarea { min-height: 110px; resize: vertical; }
.cs-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cs-form .cs-btn { margin-top: 22px; }
.cs-form__note { font-size: 0.82rem; color: rgba(255,255,255,0.55); }

.cs-blog {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 32px;
}
.cs-posts { display: grid; gap: 22px; }
.cs-post-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 20px;
  background: var(--color-surface);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}
.cs-post-card img { width: 100%; height: 100%; object-fit: cover; min-height: 180px; }

/* Footer */
.cs-footer {
  background: var(--color-footer-bg);
  color: #d7d2cb;
  padding: 72px 0 24px;
  position: relative;
  overflow: hidden;
}
.cs-footer a:hover { color: #000; text-decoration: underline; text-underline-offset: 3px; }
.cs-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
}
.cs-footer h4 { color: #fff; font-size: 0.95rem; margin-bottom: 16px; }
.cs-footer li { margin: 8px 0; }
.cs-nl {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}
.cs-nl input {
  flex: 1;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: #fff;
  padding: 12px 16px;
}
.cs-footer__brand {
  margin-top: 48px;
  font-family: var(--font-heading);
  font-size: clamp(3.2rem, 10vw, 8rem);
  color: #fff;
  letter-spacing: -0.06em;
  line-height: 0.9;
  display: flex;
  align-items: center;
  gap: 18px;
}
.cs-footer__brand .cs-logo__mark { width: 72px; height: 72px; font-size: 1.6rem; }
.cs-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
}
.cs-mailchip {
  display: inline-flex;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-weight: 600;
  margin-top: 20px;
}

/* Floaters */
.cs-floaters {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cs-backtop,
.cs-wa {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 0;
  box-shadow: var(--shadow-md);
}
.cs-backtop {
  background: var(--color-backtotop-bg);
  color: var(--color-backtotop-icon);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.cs-backtop.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
}
.cs-backtop svg,
.cs-wa svg { width: 20px; height: 20px; }
.cs-wa {
  background: var(--color-whatsapp);
  color: #fff;
}
.cs-wa[hidden] { display: none; }

/* Values / process */
.cs-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.cs-value {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 18px 20px;
  margin-bottom: 12px;
}

.cs-page { padding-bottom: 40px; }
.entry-content { max-width: 760px; }
.entry-content p { margin: 0 0 1.1em; }

.cs-404 { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 140px 0 80px; }

@media (max-width: 1100px) {
  .cs-pricing { grid-template-columns: repeat(2, 1fr); }
  .cs-work, .cs-team, .cs-stats, .cs-quotes { grid-template-columns: repeat(2, 1fr); }
  .cs-footer__grid { grid-template-columns: 1fr 1fr; }
  .cs-hero__grid, .cs-contact-grid, .cs-blog, .cs-split { grid-template-columns: 1fr; }
  .cs-post-card { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .cs-nav, .cs-header__cta .cs-btn { display: none; }
  .cs-menu-toggle { display: grid; }
  .cs-services { grid-template-columns: 1fr; }
  .cs-section { padding: 72px 0; }
  .cs-cta { padding: 40px 24px; }
}

@media (max-width: 640px) {
  .cs-pricing, .cs-work, .cs-team, .cs-stats, .cs-quotes, .cs-footer__grid {
    grid-template-columns: 1fr;
  }
  .cs-form__row { grid-template-columns: 1fr; }
  .cs-hero { min-height: auto; padding-top: 120px; }
}

/* @media (prefers-reduced-motion: reduce) {
  html.cs-smooth { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
} */

.screen-reader-text{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
.custom-logo{max-height:100px;width:auto;padding:10px 0px;}


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

/* Footer Bottom Layout */
.cs-footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    margin-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 0.9rem;
    color: #666;
}

/* Socials Container */
.cs-footer__socials {
    display: flex;
    gap: 12px;
}

/* Social Links Styling */
.cs-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f4f4f4;
    color: #1e3a5f;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Agar SVG icon use ho raha hai to uska size */
.cs-social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Hover Effect */
.cs-social-link:hover {
    background: #1e3a5f;
    color: #ffffff;
    transform: translateY(-3px);
}

/* Responsive: Mobile pe bottom bar stack ho jaye */
@media (max-width: 600px) {
    .cs-footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}
