/* ===== Base ===== */
html, body {
  font-family: "Inter Display", Inter, system-ui, -apple-system,
               BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

:root {
  --accent: #76e3dc;
  /* derived gradient stops */
  --accent-20: color-mix(in srgb, var(--accent) 20%, transparent);
  --accent-10: color-mix(in srgb, var(--accent) 10%, transparent);
   --bg: #070a09;
  --border: rgba(255,255,255,0.08);
  --muted: rgba(255,255,255,0.6);
  --gold:  #fec55c;
  --red:   #dd8793;
  --blue:  #74c8fc;
  --teal:  #76e2db;
  --peach: #e3af8f;
  --yellow: #ffc65c;
  --light-bg: #f2f5f5;
  --dark: #111;
  --muted: #aaa;

  --ink:        #1a1a2e;
  --ink-light:  #4a4a6a;
  --ink-faint:  #8888aa;
  --accent:     #c0392b;
  --accent-2:   #e8d5b0;
  --bg:         #faf8f4;
  --bg-card:    #ffffff;
  --border:     #e8e4dc;
  --shadow:     0 2px 12px rgba(26,26,46,.07);
  --shadow-md:  0 6px 24px rgba(26,26,46,.12);
  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Source Serif 4', Georgia, serif;
  --ff-ui:      'DM Sans', sans-serif;
  --radius:     10px;
}

body {
  margin: 0;
  font-family: "Inter Display", system-ui, -apple-system, sans-serif;
  background: #000;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 {
  font-weight: 700;
}

p {
  font-weight: 400;
}

.navbar-links a {
  font-weight: 500;
}




/* ===== Navbar ===== */
/* ===== Navbar ===== */
.navbar {
  position: fixed;
  width: 100%;
  padding: 0 80px;
  background: transparent;
  z-index: 100;
}

.navbar-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,0.85) 20%,
    rgba(0,0,0,0.6) 40%,
    rgba(0,0,0,0.3) 70%,
    rgba(0,0,0,0) 100%
  );
  pointer-events: none;
}

.navbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

/* Logo */
.navbar-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #fff;
  text-decoration: none;
}

/* Nav links */
.navbar-links {
  display: flex;
  gap: 48px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.navbar-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
}

.navbar-links a:hover,
.navbar-links a.active {
  color: #fff;
}

/* CTA */
.navbar-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #fff;
  color: #000;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

.navbar-toggle {
  display: none;
}

/* ===== DESKTOP SUBMENU ===== */
.has-submenu {
  position: relative;
}

.submenu-arrow {
  margin-left: 4px;
  font-size: 12px;
  opacity: 0.8;
}

.navbar-links > .has-submenu:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.has-submenu::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 16px;
}

/* Hidden by default */
.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;

  min-width: 300px;
  padding: 20px 0;
  list-style: none;

  background: rgba(65, 64, 64, 0.95);
  backdrop-filter: blur(4px) saturate(140%);
  -webkit-backdrop-filter: blur(4px) saturate(140%);

  /*border-radius: 14px;*/
  box-shadow:
    0 20px 40px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.15);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease;

  z-index: 200;
}

.submenu a {
  display: block;
  padding: 10px 30px;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
}

/* ===== DESKTOP NESTED SUBMENU ===== */
.submenu .has-submenu {
  position: relative;
}

.submenu .submenu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between; /* pushes arrow to end */
  width: 100%;
}

.submenu .nested-submenu {
  position: absolute;
  top: -20px;
  left: 100%;
  margin-left: 2px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.25s ease;

  max-height: none;      /* important */
  overflow: visible;     /* important */
}

/* Show only when hovering the correct parent */
.submenu .has-submenu:hover > .nested-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* ===== MOBILE NAV ONLY ===== */
@media (max-width: 900px) {

  /* Navbar shell */
  .navbar {
    padding: 12px 24px;
    background: #000;
  }

  .navbar-inner {
    height: 64px;
  }

  /* Toggle */
  .navbar-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 10px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 105;
  }

  .navbar-toggle span {
    height: 2px;
    background: #fff;
    border-radius: 1px;
  }

  /* Hide desktop items */
  .navbar-links,
  .navbar-cta {
    display: none;
  }

  /* Mobile menu container */
  .navbar.open .navbar-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100vw;
    height: calc(100vh - 64px);
    padding: 40px 24px;
    background: #000;
    gap: 16px;
    overflow-y: auto;
    animation: menuFade 0.25s ease;
  }

  @keyframes menuFade {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  .navbar-links > li {
    width: 100%;
  }

  .navbar-links a {
    font-size: 20px;
    color: #fff;
  }

  /* Hamburger animation */
  .navbar.open .navbar-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(2px, 2px);
  }
  .navbar.open .navbar-toggle span:nth-child(2) {
    transform: rotate(-45deg) translate(2px, -2px);
  }

  /* ===== MOBILE SUBMENU (OVERRIDES DESKTOP COMPLETELY) ===== */

  /* Disable hover logic */
  .has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-submenu {
    contain: layout;
  }

  .submenu-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  /* Reset desktop submenu */
  .submenu {
    position: relative;
    top: 0;
    left: 0;

    visibility: visible;
    opacity: 1;
    transform: none;

    max-height: 0;
    overflow: hidden;

    margin-top: 8px;
    padding: 0;

    background: #000;
    box-shadow: none;
    border-radius: 12px;

    transition: max-height 0.35s ease;
    will-change: max-height;
  }

  .has-submenu.open > .submenu {
    max-height: 1000px;
  }

  .submenu a {
    font-size: 16px;
    padding: 14px 20px;
  }

  .nested-submenu {
    position: relative;
    left: 0;
    margin-left: 16px;

    max-height: 0;
    overflow: hidden;

    opacity: 1;
    visibility: visible;
    transform: none;

    transition: max-height 0.35s ease;
  }

  .has-submenu.open > .nested-submenu {
    max-height: 1000px;
  }
}








/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 60px 80px 0;
}

.hero-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  height: 90vh;
  margin-bottom: 180px;
}

/* TEXT */
.hero-text {
  padding: 120px 0px;
}

.hero-tag {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 9px;
  margin-bottom: 30px;
  font-size: 14px;
}

.hero-title {
  font-size: clamp(32px, 4.5vw, 44px);
  line-height: 1.05;
  margin: 0;
}

.hero-description {
  margin-top: 30px; /* tight but readable */
  max-width: 620px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
}

#typed-word,
.cursor {
  color: var(--accent);
}

.cursor {
  animation: blink 1s infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

.btn-primary {
  display: inline-block;
  margin-top: 30px;
  padding: 14px 36px;
  background: var(--accent);
  color: #000;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

/* VIDEO */
.hero-video-wrap {
  padding: 48px 0px;
}

.hero-video-wrap {
  position: relative;
}

.hero-video-wrap::before {
  content: "";
  position: absolute;
  inset: -40px;
  /*background: radial-gradient(
    circle,
    var(--accent) 0%,
    transparent 40%
  );
  filter: blur(60px);
  opacity: 0.6;*/
  pointer-events: none;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 85%;
  object-fit: cover;
  border-radius: 16px;
}

/* CASE STUDY */
/* Wrapper */
.hero-case {
  position: absolute;
  bottom: 48px;
  top: 600px;
  left:80px;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* CASE STUDY BUTTON */
.case-button {
  position: relative;
  width: 96px;
  height: 96px;
  border-radius: 16px;
  background-color: rgb(18, 18, 18);
  display: grid;
  place-items: center;
  text-decoration: none;
  opacity: 1;
  filter: grayscale(0);
}

/* Framer-style border overlay */
.case-button::after {
  content: "";
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  pointer-events: none;

  border-style: solid;
  border-radius: inherit;

  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  border-left-width: 1px;

  border-color: rgba(255, 255, 255, 0.1);
}

/* Icon */
.case-icon {
  font-size: 44px;
  line-height: 1;
}

/* Optional Framer-like hover */
.case-button:hover::after {
  border-color: rgba(255, 255, 255, 0.18);
}

/* TEXT */
.case-content strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

.case-content p {
  margin: 4px 0 0;
  font-size: 13px;
  opacity: 0.7;
}

/* INDICATORS */
.hero-indicators {
  position: absolute;
  right: 88px;
  bottom: 48px;
  top: 600px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.indicator {
  position: relative;
  width: 0px;
  height: 94px;
  background: rgba(255,255,255,0.15);
  overflow: hidden;
  cursor: pointer;
  transition: width 0.4s ease;
  border-radius: 30px;
  padding: 16px 12px;
}

.indicator strong,
.indicator span {
  display: none;
}

.indicator.active {
  width: 300px;
  padding: 16px;
  text-align: center;
  border-radius: 15px;
  background: linear-gradient(
    0deg,
    var(--accent-20) 0%,
    var(--accent-10) 100%
  );
}

.indicator.active strong {
  display: block;
  font-size: 24px;
  color: var(--accent);
}

.indicator.active span {
  display: block;
  font-size: 13px;
  opacity: 0.85;
}

/* Progress ray */
.progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  width: 0%;
  background: var(--accent);
}

.indicator.active .progress {
  animation: progress 6s linear forwards;
}

@keyframes progress {
  from { width: 0%; }
  to { width: 100%; }
}



/* ===== MOBILE HERO ===== */
@media (max-width: 900px) {

  .hero {
    padding: 260px 24px 40px 24px; /* reduced padding for mobile */
    min-height: 100vh;
    width: 100%;
  }

  /* Stack hero content vertically */
  .hero-top {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 24px;
    height: 60vh;
    margin-bottom: 60px;
  }

  /* Video on top, smaller and centered */
  .hero-video-wrap {
    /*width: 40%;           smaller width on mobile 
    max-width: 400px;*/    /* optional max width */
    margin: 0 auto;      /* center horizontally */
    padding: 0;
    position: relative;
  }

  .hero-video {
    width: 100%;
    height: auto;        /* keep aspect ratio */
    border-radius: 16px;
  }

  /* Text content below video */
  .hero-text {
    padding: 0;
    text-align: center;
  }

  .hero-tag {
    margin-bottom: 16px;
    font-size: 12px;
  }

  .hero-title {
    font-size: clamp(24px, 4vw, 30px);
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-description {
    margin-top: 0;
    margin-bottom: 20px;
    max-width: 100%;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
  }

  .btn-primary {
    margin-top: 0;
    padding: 12px 28px;
    font-size: 14px;
  }

  /* Restore indicators as on desktop */
  .hero-indicators {
    position: static;
    display: flex;
    gap: 16px;
    align-items: center;
    width: 90%;
    margin-top:30px;
  }

  .indicator {
    position: relative;
    width: 0px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    overflow: hidden;
    cursor: pointer;
    transition: width 0.4s ease;
    border-radius: 30px;
    padding: 12px 6px;
  }

  .indicator strong,
  .indicator span {
    display: none;
  }

  .indicator.active {
    width: 260px;
    padding: 12px;
    text-align: center;
    border-radius: 15px;
    background: linear-gradient(
      0deg,
      var(--accent-20) 0%,
      var(--accent-10) 100%
    );
  }

  .indicator.active strong {
    display: block;
    font-size: 24px;
    color: var(--accent);
  }

  .indicator.active span {
    display: block;
    font-size: 13px;
    opacity: 0.85;
  }

  /* Progress ray */
  .progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 0%;
    background: var(--accent);
  }

  .indicator.active .progress {
    animation: progress 6s linear forwards;
  }


  @keyframes progress {
    from { width: 0%; }
    to { width: 100%; }
  }

  /* Hide case study on mobile */
  .hero-case {
    display: none;
  }

}




/* INTRO SECTION */
.prom-intro {
  background: #000;
  padding: 0px 80px;
  display: flex;
  justify-content: center;
}

.prom-subpage-intro{
  padding-top:0px;
}

.intro-card {
  background: #000;
  border-radius: 24px 24px 16px 16px;
  max-width: 1600px;
  width: 100%;
  opacity: 0;
  transition: all 0.8s ease;
}

/* Reveal */
.reveal.visible .intro-card {
  transform: translateY(0);
  opacity: 1;
}

/* CONTENT */
.intro-content {
  padding: 120px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  background:#fff;
  border-radius:24px 24px 5px 5px;
  margin-bottom: 4px;
}

.intro-content h2 {
  font-size: 42px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #111317;
  margin: 0px;
}

.intro-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  margin: 60px 0px;
}

.prom-subpage-intro p{
  margin: 30px 0px;
}

.intro-top {
  display: flex;
  width: 100%;
  align-items: flex-start; /* REQUIRED for sticky */
}

.intro-left{
  width: 60%;
}

.intro-left.subintro{
  width: 100%;
}

.intro-right{
  width: 40%;
  font-size: 14px;
  color: #9e9e9e;
  margin: 20px 0px;
  text-align: center;
  min-height: 60vh;
}

.intro-right span{
    display: inline-block;
    position: sticky;
    top: 80px;
    border: 1px solid #6d6d6d;
    border-radius: 5px;
    padding: 2px 5px 3px 2px;
}
    

.intro-reveal span {
  display: inline-block;
  opacity: 0.1;
  transition: opacity 0.2s linear;
}

.intro-left span {
  display: inline-block;
  opacity: 0.1;
  will-change: opacity;
  transition: opacity 0.1s ease; /* ✅ smooths out jumpy scroll reveals */
}

/* FOUNDER */
.founder {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid #eee;
}

.founder-info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.founder-info img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.founder-info strong {
  display: block;
  font-size: 14px;
  color: #1e1e1e;
}

.founder-info span {
  font-size: 13px;
  color: #667185;
}

.signature {
  height: 32px;
  opacity: 0.8;
}


/* CLIENTS */


.ambient-bar {
  opacity: 0.5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 50px;
  border-radius: 12px;
  overflow: hidden;
}

/* each segment */
.ambient-bar span {
  height: 50px;
  width: 125px;
  background: #828282;
  border-radius: 10px;
  flex-shrink: 0;
}

.ambient-bar.logos span {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.ambient-bar.logos img {
  max-width: 100%;
  max-height: 100%;
  opacity: 0.6;
  filter: grayscale(1);
}

.ambient-bar.logos img:hover {
  opacity: 1;
  filter: none;
}


/* VALUES */
.values {
  display: flex;
  align-items: stretch;
  background:#000;
}

.value-card {
  flex: 1;
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
  background:#fff;
  border-radius:5px;
}

.value-card h5 {
  font-size: 18px;
  font-weight: 600;
  color:#000;
  margin:0px;
}

.icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 42px;
}

.icon.yellow { background: #f7c059; }
.icon.pink { background: #f4a6b7; }
.icon.teals { background: #5ad4c7; }

.connector {
  width: 4px;
  background: #000;
  position: relative;
}

.value-connector {
  position: relative;
  width: 4px;
  flex: none;
  align-self: stretch;
}

/* Black circular dot */
.connector-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 32px;
  background: var(--token-aa303802-e5d1-4856-bfe5-30475052d91c, #000);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  z-index: 2;
}

/* Icon inside */
.connector-dot svg {
  width: 14px;
  height: 14px;
  fill: #fff;
  display: block;
}

.connector::after {
  content: "";
  width: 32px;
  height: 32px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: -14px;
  transform: translateY(-50%);
}


/* ===== MOBILE ===== */
@media (max-width: 900px) {

 .prom-intro {
    padding: 0 20px;
  }

  .intro-card {
    transform: translateY(60px);
    border-radius: 16px 16px 8px 8px;
  }

  .intro-content {
    padding: 40px 20px;
    gap: 30px;
    display: flex;
    flex-direction: column;
    border-radius: 36px 36px 12px 12px;
  }

  /* Stack intro-top vertically with intro-right first */
  .intro-top {
    flex-direction: column;
    gap: 20px;
  }

  .intro-left,
  .intro-right {
    width: 100%;
  }

  /* Move intro-right above intro-left */
  .intro-left {
    order: 2;
    line-height: 1.4; /* reduced line-height */
  }

  .intro-right {
    order: 1;
    text-align: left;
    min-height: 1vh;
  }

  /* Remove sticky */
  .intro-right span {
    position: relative;
    top: auto;
    display: inline-block;
    margin-top: 10px;
    border: 1px solid #6d6d6d;
    border-radius: 5px;
    padding: 4px 8px;
  }

  .intro-content h2 {
    font-size: 28px;
  }

  /* Founder section */
  .founder {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding-top: 20px;
  }

  .founder-info {
    gap: 12px;
  }

  .founder-info img {
    width: 40px;
    height: 40px;
  }

  .signature {
    height: 24px;
  }

  /* Clients / logos */
  .ambient-bar.logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 logos per row */
    gap: 16px;                              /* spacing between logos */
    justify-items: center;                  /* center logos in their grid cell */
    margin-top: 20px;
    opacity: 1;                             /* container fully visible */
    min-height: 15vh;
  }

  .ambient-bar.logos span {
    width: 100%;        /* full width of grid cell */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .ambient-bar.logos img {
    max-width: 120px;   /* scale logo reasonably */
    max-height: 40px;
    object-fit: contain; 
    opacity: 0.75;      /* subtle opacity */
    filter: grayscale(1); /* optional: keep the subtle grayscale effect */
    transition: opacity 0.2s ease, filter 0.2s ease;
  }

  .ambient-bar.logos img:hover {
    opacity: 1;         /* fully visible on hover */
    filter: none;       /* remove grayscale on hover */
  }

  /* VALUES section */
  .values {
    flex-direction: column; /* cards stacked vertically */
    gap:4px; /* spacing between cards */
    padding: 0;
  }

  .value-card {
    width: 100%;
    padding: 30px 20px;
    border-radius: 12px;
    display: flex !important;          /* force row layout */
    flex-direction: row !important;    /* icon + heading side by side */
    align-items: center;               /* vertically center them */
    gap: 16px;                         /* spacing between icon and heading */
  }

  .value-card h5 {
    margin: 0;
    font-size: 18px;
  }

  .icon {
    width: 60px;
    height: 60px;
    font-size: 32px;
    display: grid;
    place-items: center;
  }

  .value-connector {
    display: none; /* hide connectors on mobile */
  }
}


/* TEAM section starts HERE */

.team-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 5px solid #eeeeee;
}

.team-card a{
  text-decoration: none;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.team-card img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 16px;
}

.designation {
  display: block;
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 6px;
}

.team-card h3 {
  font-size: 1.1rem;
  margin: 0 0 14px;
  color:#1e1e1e;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.team-right .social-links {
  display: flex;
  justify-content: left;
  gap: 14px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0a66c2;
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.social-links a:hover {
  background: #0a66c2;
  color: #fff;
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Responsive */
@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}
/* TEAM SECTION ENDS HERE */





/* CLIENTS SECTION STARTS HERE */

.client-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 16px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.client-card {
  background: #fff;
  border-radius: 12px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eeeeee;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.client-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.client-card img {
  width: 178px;
  height: 92px;
  object-fit: contain; /* 👈 logos should NOT be cropped */
}

/* Tablets */
@media (max-width: 1024px) {
  .client-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large phones */
@media (max-width: 768px) {
  .client-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .client-card {
    padding: 20px;
  }

  .client-card img {
    width: 160px;
    height: 82px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .client-grid {
    grid-template-columns: 1fr;
  }

  .client-card img {
    width: 150px;
    height: auto;
  }
}
/* CLIENTS SECTION ENDS HERE */




/*
/* SERVICES SECTION STARTS HERE */
/* SECTION HEIGHT = SCROLL SPACE */
.services-section {
  margin: 40px 0; /* top & bottom spacing */
}

/* TITLE */
.services-title {
  font-size: clamp(34px, 4.8vw, 48px);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-left: 6vw;
  margin-bottom: clamp(24px, 5vh, 64px);
  color: white;
}

#services {
  height: 300vh;
  position: relative;
}

/* STICKY VIEWPORT */
.services-sticky {
  position: sticky;
  top: 0px;
  min-height: 100svh;
  padding-top: clamp(40px, 8vh, 96px);
  overflow: hidden;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* HORIZONTAL TRACK */
.services-track {
  display: flex;
  gap: 6px;
  padding-left: 6vw;
  padding-right: 6vw;
  will-change: transform;
}

/* CARD (SAME SIZE AS YOUR 3-CARD VERSION) */
.service-card {
  width: 360px;
  max-height: 460px;
  border-radius: 10px;
  padding: 32px;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 60%);
  box-shadow: inset 0 0 0 1px var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* HEADER */
.service-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}

.service-icon {
  width: 66px;
  height: 66px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.12);
  font-size: 36px;
}

/* TITLE */
.service-header h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
}

/* LIST */
.service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-list li {
  padding: 14px 0;
  font-size: 14.5px;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* make the anchor behave like the old li content */
.service-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: inherit;          /* same text color as before */
  text-decoration: none;   /* remove underline */
  width: 100%;
  font-weight: 600;
}

/* optional: subtle hover without changing layout */
.service-list li a:hover {
  color: #fff; /* or keep inherit if you want zero change */
}

.service-list li:last-child {
  border-bottom: none;
}

.plus {
  opacity: 0.5;
}

/* COLORS */
.gold { color:#f7c059; background:linear-gradient(180deg,rgba(247,192,89,.08),rgba(247,192,89,.18)); }
.red  { color:#fc6a80; background:linear-gradient(180deg,rgba(252,106,128,.08),rgba(252,106,128,.18)); }
.teal { color:#2fc2b8; background:linear-gradient(180deg,rgba(47,194,184,.08),rgba(47,194,184,.18)); }
.blue { color:#74c8fc; background:linear-gradient(180deg,rgba(116,200,252,.08),rgba(116,200,252,.18)); }
.peach{ color:#e3af8f; background:linear-gradient(180deg,rgba(227,175,143,.08),rgba(227,175,143,.18)); }





@media (max-width: 900px) {
  .services-title {
    font-size: 36px;
    margin: 0 0 40px 6vw;
  }

  .services-section {
    margin: 80px 0;
  }

  #services {
    height: auto;
  }

  .services-sticky {
    position: relative;
    height: auto;
    padding-top: 0;
  }

  .services-track {
    transform: none !important;
    flex-direction: column;
    padding: 0 20px;
    gap: 24px;
    width: 100%;
  }

  .service-card {
    width: 100%;
    height: auto;
  }
}



/* SERVICES SECTION ENDS HERE */


/* CAREERS STYLES START HERE */

.careers {
  max-width: 1200px;
  margin: 0px auto 60px;
  padding: 0 0px;
  color: #222;
}

.careers h2 {
  font-size: 32px;
  color: #FFFFFF;
  text-align: center;
  margin: 0px auto 60px;
}

.careers-intro {
  color: #FFFFFF;
  margin-bottom: 40px;
  text-align: center;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.job-card {
  background: #f4f4f4;
  border-radius: 14px;
  padding: 80px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.job-card h3 {
  font-size: 22px;
  margin-bottom: 25px;
}

.job-meta {
  list-style: none;
  padding: 0!important;
  margin: 0 0 25px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 8px 20px;
  font-size: 16px;
  color: #000;
}

.job-description {
  margin-bottom: 25px;
  color: #000;
}

.job-card h4 {
  margin-top: 30px;
  margin-bottom: 8px;
  font-size: 18px;
}

.job-card ul {
  padding-left: 18px;
  color: #000;
}

.apply-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 24px;
  background: #333;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 16px;
}

.apply-btn:hover {
  background: #000;
}

.no-openings .empty-state {
  background: #f4f4f4;
  border-radius: 10px;
  padding: 80px;
  text-align: center;
  color: #000000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
}


.career-state {
  background: #ffffff;
  border-radius: 10px;
  padding: 80px;
  text-align: left;
  color: #000000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
}

.career-state h2{
  color: #000000;
}

.cv-form-section {
  margin: 50px auto;
  padding: 40px;
  background: #f4f4f4;
  border-radius: 16px;
  font-family: system-ui, sans-serif;
  color: #000;
}

.cv-form-section h2 {
  font-size: 28px;
  margin-bottom: 10px;
  text-align: left;
}

.cv-form-section p {
  color: #000;
  margin-bottom: 30px;
}

.cv-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cv-form input[type="text"],
.cv-form input[type="email"],
.cv-form input[type="tel"],
.cv-form textarea {
  flex: 1;
  padding: 12px 15px;
  border-radius: 12px;
  border: 1px solid #aaa9a9;
  font-size: 15px;
  transition: all 0.2s ease;
  outline: none;
}

.cv-form input:focus,
.cv-form textarea:focus {
  border-color: #333;
  box-shadow: 0 0 8px rgba(0,0,0,0.08);
}

.cv-form textarea {
  resize: vertical;
}

.file-label {
  display: block;
  position: relative;
  border: 1px dashed #bbb;
  padding: 15px;
  text-align: center;
  border-radius: 12px;
  cursor: pointer;
  color: #1e1e1e;
  font-size: 16px;
  transition: all 0.2s ease;
}

.file-label input[type="file"] {
  display: none;
}

.file-label:hover {
  background: #f7f7f7;
  border-color: #999;
  color: #333;
}

.submit-btn {
  padding: 14px 30px;
  background: #333;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
  align-self: flex-start;
}

.submit-btn:hover {
  background: #000;
}

.file-upload {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.file-btn {
  position: relative;
  padding: 12px 22px;
  border-radius: 0px;
  background: #b8b7b7;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.25s ease;
}

.file-btn:hover {
  background: #000;
}

.file-btn input[type="file"] {
  display: none;
}

.file-name {
  font-size: 14px;
  color: #666;
  max-width: 350px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}


@media (max-width: 900px) {

   .careers {
      padding: 0 20px; 
      margin: 0px auto 20px;
   }

   .no-openings .empty-state, .job-card, .career-state {
      padding: 30px;
   }

   .careers h2 {
      margin: 0px 0px 40px;
    }

  }

/* CAREER STYLES END HERE */



/* PROCESS STYLES STARTS HERE */


.process {
  background: #000;
  padding: 0px 80px;
  display: flex;
  justify-content: center;
}


.process-card {
  padding: 120px 80px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  background:#fff;
  border-radius: 24px 24px 16px 16px;
  margin-bottom: 4px;
}

.process-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}


/* LEFT */
.process-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.process-head{
    font-size: 14px;
    color:#000000;
}

.process-head span{
    border: 1px solid #6d6d6d;
    border-radius: 5px;
    padding: 2px 5px 3px 2px;
}

.process-head p{
    margin: 0px;
    font-size: 16px;
    color:#000000;
    line-height:24px;
}

.process-head h2{
    font-size: 42px;
    font-weight: 600;
    line-height: 1.75;
    letter-spacing: -0.03em;
    color: #111317;
    margin: 0px;
}

.step {
  max-width: 480px;
}

.step h3 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #111317;
}

.step p {
  color: #111317;
  font-weight: 600;
  font-size: 18px;
}

.step hr {
  border: none;
  height: 1px;
  background: linear-gradient(
    to right,
    rgba(17,19,23,0.15),
    rgba(17,19,23,0.05)
  );
  margin: 24px 0;
}

/* LIST */
.step ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 14px;
}

/* LIST ITEM */
.step li {
  position: relative;
  padding-left: 28px; /* space for the circle + check */
  color: #000000;
}

/* circle */
.step li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 18px;
  height: 18px;
  background: rgba(17, 19, 23, 0.06);
  border-radius: 50%;
}

/* checkmark */
.step li::after {
  content: "✓";
  position: absolute;
  left: 5px;
  top: 5px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(17, 19, 23, 0.7);
}

.process-btn {
  --btn-bg: rgb(17, 19, 23);
  --btn-bg-hover: rgb(34, 36, 40);

  display: inline-flex;
  align-items: center;
  gap: 10px;

  padding: 10px 20px 10px 20px;
  border-radius: 999px;

  background-color: var(--btn-bg);
  color: white;
  text-decoration: none;

  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.01em;

  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
}

/* TEXT */
.process-btn span {
  white-space: nowrap;
}

/* ICON */
.process-btn svg {
  width: 16px;
  height: 16px;
  stroke: white;
  stroke-width: 1.5;
  fill: none;
  transition: transform 0.25s ease;
}

/* HOVER */
.process-btn:hover {
  background-color: var(--btn-bg-hover);
  transform: translateY(-1px);
}

.process-btn:hover svg {
  transform: translateX(3px);
}

/* ACTIVE */
.process-btn:active {
  transform: translateY(0);
}


.cta-block {
  background: #f0f4f4;
  border-radius: 24px;
  padding: 50px 76px;
}

/* WRAPPER */
.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

/* TEXT COLUMN */
.cta-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 720px;
}

/* HEADING */
.cta-text h3 {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #111317;
  margin: 0;
}

/* DIVIDER */
.cta-divider {
  width: 100%;
  height: 1px;
  background: #111317;
  opacity: 0.1;
}

/* PARAGRAPH */
.cta-text p {
  font-size: 15px;
  line-height: 1.6;
  color: #111317;
  max-width: 560px;
  margin: 0;
}

/* BUTTON */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  height: 32px;
  padding: 10px 36px;

  border-radius: 999px;
  background: #000;
  color: #fff;

  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  white-space: nowrap;

  transition:
    background-color 0.25s ease,
    transform 0.2s ease;
}

/* ICON */
.cta-button svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
  stroke-width: 1.5;
  fill: none;
  transition: transform 0.25s ease;
}

/* HOVER */
.cta-button:hover {
  background: #1a1c20;
  transform: translateY(-1px);
}

.cta-button:hover svg {
  transform: translateX(3px);
}

/* ACTIVE */
.cta-button:active {
  transform: translateY(0);
}

/* RIGHT */
.process-visual {
  position: sticky;
  top: 60px;
  height: 520px;
}

.image-frame {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
}

/* IMAGES */
.image-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;

  background: #f2f2f2;

  opacity: 0;
  transform: translate(0, 80px) rotate(0deg);
  transform-origin: center;

  transition:
    transform 0.9s cubic-bezier(.22,.61,.36,1),
    opacity 0.35s ease;

  will-change: transform, opacity;
}

/* ACTIVE IMAGE */
.image-frame img.active {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
  z-index: 2;
}

.image-frame img.exit {
  transform: translate(-60px, 120px) rotate(-10deg);
  opacity: 0.6;
  z-index: 1;
}

.image-frame img.enter {
  transform: translate(60px, 120px) rotate(10deg);
  opacity: 0.6;
  z-index: 1;
}

.image-frame img.enter-down {
  transform: translate(60px, 120px) rotate(-12deg);
  opacity: 1;
}

.image-frame img.enter-up {
  transform: translate(-60px, 120px) rotate(12deg);
  opacity: 1;
}

.step-image{
  display:none;
}


@media (max-width: 900px) {

   .process{
    padding: 0 20px; 
   }

  /* Card padding */
  .process-card {
    padding: 40px 20px;
    border-radius: 16px;
    gap: 40px;
  }

  .process-visual{
    display: none;
  }

   /* Step image on top */
  .step-image {
    display: block;
    width: 100%;       /* full width of the container */
    max-width: 480px;  /* optional: cap width */
    margin: 0 auto 16px; /* center and spacing */
  }

  .step-image img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: cover;
  }

  /* Inner layout stacked */
  .process-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  /* Left column */
  .process-content {
    gap: 40px;
  }

  .process-head h2 {
    font-size: 32px;
    line-height: 1.4;
    margin: 30px 0px;
  }

  .process-head p {
    font-size: 16px;
  }

  .step {
    max-width: 100%;
  }

  .step h3 {
    font-size: 28px;
    margin-bottom: 8px;
  }

  .step p {
    font-size: 16px;
  }

  .step ul {
    gap: 10px;
  }

  .step li {
    font-size: 16px;
  }

  /* Buttons */
  .process-btn {
    padding: 10px 16px;
    font-size: 16px;
  }

  /* CTA Block */
  .cta-block {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .cta-text h3 {
    font-size: 26px;
  }

  .cta-text p {
    font-size: 16px;
  }

  .cta-button {
    padding: 8px 20px;
    font-size: 16px;
  }

}

/* PROCESS STYLES END HERE */





/* TRUST STYLES START HERE */

/* =========================
   SECTION
========================= */
.trust-section {
  padding: 0px 80px;
  color: #fff;
  font-family: Inter, system-ui, sans-serif;
}

/* =========================
   GRIDS
========================= */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 2fr;
}

.trust-grid-2 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
}

/* =========================
   CARD BASE
========================= */
.trust-card {
  margin: 2px;
  padding: 32px;
  border-radius: 10px;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* =========================
   CARD INTERNAL LAYOUT
========================= */
.trust-part {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-part {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.trust-grid-2 .trust-card header.trust-part {
  margin-bottom: 60px;
}

.trust-grid-2 .trust-card footer.trust-part {
  margin-top: auto;
}

/* =========================
   TYPOGRAPHY
========================= */
.trust-card h2 {
  margin: 0;
  font-weight: 700;
}

.trust-card p,
.trust-card small {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

.trust-metric {
  font-size: 128px;
  line-height: 1;
  display: inline-flex;
  align-items: flex-start;   /* key */
  gap: 6px;
}

.trust-metric span {
  font-size: 58px;
  line-height: 1;
  position: relative;
  top: 10px; /* fine-tune vertical alignment */
}

.trust-metric.big {
  font-size: 96px;
}

.trust-metric.vbig {
  font-size: 156px;
  text-align: center;
}

.trust-metric-sm {
  font-size: 60px;
  line-height: 1;
}

/* =========================
   Header
========================= */
.trust-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Only rows that need split */
.trust-header-row,
.trust-split-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
   Footer
========================= */
.trust-footer {
  gap: 12px;
}

.trust-footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* =========================
   DIVIDERS
========================= */
.trust-divider {
  width: 100%;
  border-radius: 2px;
}

.trust-divider.thick {
  height: 8px;
}

.trust-divider.thin {
  height: 4px;
}

/* =========================
   ICON (PURE CSS)
========================= */
.trust-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}


/* =========================
   IMAGE CARD
========================= */
.trust-image {
  padding: 0;
}

.trust-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-image blockquote {
  position: absolute;
  bottom: 32px;
  left: 32px;
  max-width: 70%;
  font-size: 22px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: center;
}

.trust-image .trust-divider {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 2px;
}

.trust-image span {
  display: block;
  margin-top: 8px;
  font-size: 18px;
  opacity: 0.6;
}

/* =========================
   CTA
========================= */
.trust-btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  background: var(--peach);
  color: #000;
  font-weight: 600;
  text-decoration: none;
}

/* =========================
   THEMES
========================= */
.theme-gold {
  --accent: var(--gold);
  background: linear-gradient(180deg, #f7c0591a, #f7c05926);
}

.theme-red {
  --accent: var(--red);
  background: linear-gradient(180deg, #fc6a801a, #fc6a8033);
}

.theme-blue {
  --accent: var(--blue);
  background: linear-gradient(180deg, #74c8fc1a, #74c8fc33);
}

.theme-teal {
  --accent: var(--teal);
  background: linear-gradient(180deg, #2fc2b81a, #2fc2b833);
}

.theme-peach {
  --accent: var(--peach);
  background: linear-gradient(180deg, #e3af8f1a, #e3af8f33);
}

/* =========================
   THEME APPLICATION
========================= */
.theme-gold,
.theme-red,
.theme-blue,
.theme-teal,
.theme-peach {
  color: var(--accent);
}

.theme-gold .trust-divider,
.theme-red  .trust-divider,
.theme-blue .trust-divider,
.theme-teal .trust-divider,
.theme-peach .trust-divider {
  background: var(--accent);
}

.theme-red .trust-part footer,
.theme-red footer.trust-part {
  gap: 6px;
}



@media (max-width: 900px) {

  /* SECTION PADDING */
  .trust-section {
    padding: 40px 20px;
  }

  /* ===== GRID 1 ===== */
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  /* Third card goes full width on second row */
  .trust-grid > .trust-card:nth-child(3) {
    grid-column: 1 / -1;
  }

  /* ===== GRID 2 ===== */
  .trust-grid-2 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  /* First card full width */
  .trust-grid-2 > .trust-card:nth-child(1) {
    grid-column: 1 / -1;
  }

  /* Spacing polish */
  .trust-card {
    padding: 24px;
  }

  /* Image card height control */
  .trust-image {
    min-height: 320px;
    padding: 0px;
  }

  /* Typography scaling */
  .trust-metric {
    font-size: clamp(48px, 12vw, 88px);
    line-height: 1;
  }

  .trust-metric span{
    font-size: 16px;
  }
  .trust-metric.vbig {
    font-size: 48px;
    text-align: center;
  }

  .trust-card header{
    margin-bottom:50px;
  }

  .trust-card p, .trust-card small {
    font-size: 12px;
    font-weight: 600;
    margin: 0;
  }

  .trust-metric.trust-metric-sm{
    font-size: 36px;
    font-weight: 600;
  }

  .trust-image blockquote {
    font-size: 18px;
  }

  .trust-image span{
    font-size: 16px;
  }

  .trust-btn {
    padding: 4px 16px;
    font-size: 14px;
  }

}


/* TRUST STYLES END HERE */



/* CASE STUDIES STYLES START HERE */


/* Section height gives scroll room */
.stack-section {
  height: 320vh;
  padding: 0 80px;
  margin: 0 auto;
}

/* Sticky container */
.sticky-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  padding-top: 80px; /* heading top margin */
}

/* Heading */
.section-heading {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px; /* reduced gap */
}

/* Stack wrapper */
.card-stack {
  position: relative;
  height: 100%;
}

/* Cards */
.stack-card {
  position: absolute;
  left: 50%;
  top: calc(80vh - 360px); /* sits just above viewport bottom */
  width: 100%;
  height: 280px;
  background: #fff;
  color: #000;
  border-radius: 12px;
  display: flex;
  transform: translate(-50%, 1200px); /* hidden by default */
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  padding: 5px;
}

.reverse {
  flex-direction: row-reverse;
}

/* Card content */
.card-image {
  width: 50%;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  max-height: 300px;
  border-radius: 12px;
}

.card-image img{
  border-radius: 20px;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-position: center center;
  object-fit: cover;
}

.tags {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.tags span {
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid #bbb;
}


.card-content {
  width: 50%;
  padding: 32px;
}

.card-content h3{
  font-size: 30px;
  line-height: 1.25;
  margin: 0px;
}

/* Z-index order */
.card-1 {
  z-index: 1;
  transform: translate(-50%, 0); /* visible initially */
}
.card-2 { z-index: 2; }
.card-3 { z-index: 3; }

/* Overlay only on cards */
.cards-overlay {
  position: absolute;
  left: 50%;
  top: calc(80vh - 360px);
  width: 100%;
  height: 280px;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  opacity: 0;
  z-index: 4;
  pointer-events: none;
}

/* CTA */
.cta-card {
  position: absolute;
  left: 50%;
  top: calc(80vh - 200px); /* SAME as cards */
  width: 100%;
  height: 120px;
  background: #fff;
  color: #000;
  border-radius: 14px;
  display: flex;
  align-items: center;
  transform: translate(-50%, 800px); /* starts BELOW cards */
  z-index: 5;
  padding:5px;
}

/*.cta-icon,
.cta-arrow {
  width: 20%;
  text-align: center;
  font-size: 32px;
}*/
.cta-icon{
  width: 115px;
  height: 115px;
  border-radius: 12px;
  background: #0f2a26;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;  
}

.cta-card-arrow {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0f2a26;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
}

.cta-card-content {
  width: 70%;
  text-align: left;
  padding: 0px 40px;
}


.card-1, .card-2 {
  transition: width 0.3s ease, transform 0.3s ease;
}

@media (max-width: 900px) {
  a{
    text-decoration: none;
  }
}

@media (max-width: 900px) {

  .stack-section {
    height: auto;
    padding: 0 20px;
  }

  .sticky-wrapper {
    position: relative;
    top: auto;
    height: auto;
    padding-top: 0px;
  }

  .card-stack {
    position: relative;
    height: auto;
  }

  .stack-card {
    position: relative;       /* reset absolute positioning */
    left: auto !important;    /* override desktop left:50% */
    top: auto !important;     /* override desktop top */
    transform: translate(0, 0) !important; /* reset transform */
    width: 100%;
    max-width: 480px;
    height: auto;
    flex-direction: column !important; /* stack image and content */
    display: flex;
    margin: 0 auto 24px; /* spacing between cards */
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    padding: 10px 10px 60px;
  }

  /* Remove reverse effect */
  .stack-card.reverse {
    flex-direction: column-reverse !important;
  }

  .card-image {
    width: 100%;
    height: auto;
    margin-bottom: 16px;
    max-height: 360px;
  }

  .card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
  }

  .card-content {
    width: 100%;
    padding: 0;
  }


  .card-content h3 {
    margin-top: 20px;
    font-size: 22px;
    line-height: 1.4;
  }

  .tags {
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
  }

  .tags span {
    font-size: 12px;
    padding: 4px 10px;
  }

  .cards-overlay {
    display: none;
  }

/* CTA card reposition */
  .cta-card {
    position: relative; /* remove absolute */
    left: auto;
    top: auto;
    transform: none;
    margin: 24px auto 0 auto; /* center below cards */
    width: 100%;
    max-width: 500px;
    flex-direction: column;
    padding: 16px;
    height: auto;
    align-items: center;
    gap: 16px;
  }

  .cta-icon {
    display: none;
  }

  .cta-card-content {
    width: 100%;
    text-align: center;
    padding: 0;
  }

  .cta-card-content h3 {
    font-size: 20px;
  }

  .cta-card-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .cta-card-arrow {
    width: 48px;
    height: 48px;
    font-size: 24px;
    margin: 0;
  }
}

 /* CASE STUDIES STYLES END HERE */



 
 
 /* COMPARISION STYLES START HERE */


 .comparison-section {
    background: #000;
    margin: 200px auto 5px;
    padding: 0px 0px;
    color: #000;
  }

.comparision-container {
  width: 100%;
  padding: 80px;
  background: #fff;
  border-radius: 10px;
}

/* HEADER */
.comparision-head{
    font-size: 14px;
    color:#9e9e9e;
}

.comparision-head span{
    border: 1px solid #6d6d6d;
    border-radius: 5px;
    padding: 2px 5px 3px 2px;
}

.comparision-headline {
  font-size: 48px;
  color: #000;
  line-height: 1.15;
  margin-bottom: 60px;
  width: 60%;
}

.comparision-divider{
  display:none;
}

/* TABLE */
.comparison-table {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4px;
  margin-bottom: 60px;
}

.comparision-table-header {
  text-align: center;
  font-weight: 600;
  padding: 40px;
}

.comparision-table-header.highlight {
  background: var(--yellow);
  border-radius: 20px 20px 8px 8px;
}

.comparision-table-cell {
  background: var(--light-bg);
  padding: 40px;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}

.comparision-table-cell.label {
  text-align: left;
}

.comparision-table-cell.highlight {
  background: var(--yellow);
}

.comparision-table-cell.muted {
  color: #777;
}

.comparision-table-cta {
  grid-column: 2;
  background: #000;
  border-radius:  5px 5px 30px 30px;
  text-align: center;
}

.comparision-table-cta a {
  display: block;
  padding: 24px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.comparision-table-cta a:hover{
    color: var(--yellow);
}

/* FEATURES */
.comparision-feature-row {
  display: flex;
  gap: 32px;
}

.comparision-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex: 1;
}

/* Icon container ONLY has light bg */
.comparision-feature-icon {
  width: 56px;
  height: 56px;
  background: var(--light-bg);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.comparision-feature-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.comparision-feature-text span {
  color: #555;
  font-size: 14px;
}

.comparision-feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ABOUT CTA */

.comparision-container.comparision-about-grid {
  width: 100%;
  margin: auto;
  padding: 0;
}

.comparision-about-cta {
  background: #000000;
  margin: 0 auto;
  border-radius: 24px;
  padding: 0px 0px;
}

.comparision-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  align-items: center;
}

.comparision-about-content{
    padding: 80px 80px;
    color: #000;
    text-align: left;
}
.comparision-about-content h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

.comparision-about-content p {
  color: #555;
  margin-bottom: 24px;
}

.comparision-about-btn {
  display: inline-block;
  padding: 14px 24px;
  background: #e3af8f;
  border-radius: 999px;
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.comparision-about-btn:hover {
  background: #000000;
  color: #ffffff;
}

.comparision-about-image img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}


@media (max-width: 900px) {

  .comparison-section{
    margin: 60px auto 5px;
    padding: 0px 20px;
  }

  .comparision-container {
    padding: 40px 20px; /* smaller padding */
  }

  /* Headings */
  .comparision-headline {
    font-size: 28px;
    width: 100%;
    margin-bottom: 40px;
  }

  /* Comparison table */
  /* TABLE GRID */
  .comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  /* Hide empty header */
  .emptyheader {
    display: none;
  }

  /* Column headers */
  .comparision-table-header {
    padding: 16px;
    text-align: center;
    font-weight: 600;
    border-radius: 14px;
  }

  /* Divider ABOVE headers */
  .comparision-divider {
    grid-column: 1 / -1;
    height: 1px;
    background: var(--yellow);
    margin-bottom: 8px;
  }

  /* LABEL ROW */
  .comparision-table-cell.label {
    grid-column: 1 / -1;     /* full width */
    background: transparent;
    padding: 8px 4px;
    font-weight: 600;
    text-align: center;
    border-radius: 0;
    margin-top:20px;
  }

  /* VALUE CELLS (Quorum / Other Agencies) */
  .comparision-table-cell {
    padding: 16px;
    text-align: center;
    font-weight: 600;
    border-radius: 14px;     /* full radius on all corners */
    background: var(--light-bg);
  }

  .comparision-table-cell.highlight {
    background: var(--yellow);
  }

  .comparision-table-cell.muted {
    color: #777;
  }

  /* CTA */
  .comparision-table-cta {
    grid-column: 1 / -1;
    border-radius: 16px;
  }

  .comparision-table-cta a {
    padding: 16px;
    font-size: 15px;
  }

  /* Feature row */
  .comparision-feature-row {
    flex-direction: column;
    gap: 16px;
  }

  .comparision-feature {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    margin-bottom: 10px;
  }

  .comparision-feature-icon {
    width: 64px;
    height: 64px;
    font-size: 18px;
  }

  .comparision-feature-icon svg {
    width: 32px;
    height: 32px;
  }

  .comparision-feature-text strong {
    font-size: 18px;
  }

  .comparision-feature-text span {
    font-size: 16px;
  }

  /* About CTA grid */
  .comparision-about-grid {
    grid-template-columns: 1fr; /* stack image and text */
    padding: 0 20px;
  }

  .comparision-container.comparision-about-grid{
    padding: 0 0px;
  }

  .comparision-about-content {
    padding: 20px;
  }

  .comparision-about-content h3 {
    font-size: 32px;
    text-align: left;
  }

  .comparision-about-content p {
    font-size: 16px;
    text-align: left;
    margin: 30px 0px;
  }

  .comparision-about-btn {
    font-size: 16px;
    padding: 12px 20px;
    text-align: left;
    margin: 10px 0px;
  }

  .comparision-about-image img {
    width: 100%;
    max-width: 100%;
    border-radius: 16px;
  }

  .comparision-about-cta {
    padding: 0px 0px;
  }
}


/* COMPARISION STYLES END HERE */


/* PRICING STYLES START HERE */

.pricing {
  background: radial-gradient(circle at center, #0d1f2b 0%, #000 70%);
  padding: 120px 80px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

#pricing-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.pricing-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.pricing-tag{
    font-size: 14px;
    color:#ffffff;
}

.pricing-tag span{
    border: 1px solid #ffffff;
    border-radius: 5px;
    padding: 2px 10px 3px 10px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}

.plan {
  background: #fff;
  color: #000;
  border-radius: 12px;
  padding: 32px;
  text-align: left;
  position: relative;
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #ffc65c;
  color: #000;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 999px;
}

.plan h4 {
  font-size: 20px;
  margin-bottom: 4px;
}

.subtitle {
  color: #777;
  font-size: 14px;
  margin-bottom: 32px;
}

.price {
  font-size: 36px;
  margin-bottom: 8px;
}

.price span {
  font-size: 16px;
  color: #888;
}

.price-note {
  font-size: 14px;
  color: #666;
  margin-bottom: 24px;
}

.features {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.features li {
  padding-left: 28px;
  margin-bottom: 12px;
  position: relative;
  font-size: 14px;
}

.features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: bold;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid;
}

.btn.light {
  background: #fff;
  color: #000;
  font-size:16px;
  font-weight:600;
}

.btn.light:hover{
  background: rgb(106, 238, 229);
}

.btn.dark {
  background: #000;
  color: #fff;
  border-color: #000;
}

.pricing-cta {
  margin-top: 5px;
  padding: 56px;
  border-radius: 10px 10px 30px 30px;
  background: linear-gradient(
    180deg,
    rgba(5, 21, 20, 0.3),
    rgba(28, 99, 94, 0.6)
  );
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}



.cta-pricing-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.custom-pricing-icon {
  color: rgb(106, 238, 229);
  flex-shrink: 0;
  margin-top:15px;
}

.custom-pricing-icon svg {
  width: 75px;
  height: 75px;
}

.cta-pricing-text p {
  font-size:20px;
  margin:0px;
}

.cta-pricing-text h2 {
  font-size: 40px;
  margin: 0px 0px 2px;
}

@media (max-width: 900px) {


  .pricing {
    padding: 80px 24px;
  }

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

  .pricing-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 24px;
  }

   /* Stack icon + text */
  .cta-pricing-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  /* Icon size + spacing */
  .custom-pricing-icon {
    margin-top: 0;
    align-self: center;
  }

  .custom-pricing-icon svg {
    width: 56px;
    height: 56px;
  }

  /* Text sizing */
  .cta-pricing-text h2 {
    font-size: 24px;
    line-height: 1.2;
  }

  .cta-pricing-text p {
    font-size: 16px;
  }

  /* Button full width */
  .pricing-cta .btn {
    width: 100%;
    text-align: center;
    padding: 14px 20px;
  }
}
/*PRICING STYLES END HERE */


/* TESTIMONIALS STYLES START HERE */


.testimonials {
  background: #fff;
  border-radius: 12px;
  margin: 0px 80px 0px;
  padding: 120px 0 30px;
}

.testimonials-container {
  width: calc(100% - 240px);
  margin: auto;
}

.testimonials-head{
    font-size: 14px;
    color:#9e9e9e;
}

.testimonials-head span{
    border: 1px solid #6d6d6d;
    border-radius: 5px;
    padding: 3px 8px;
    color: #000;
}

.testimonials-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 40px 0px;
  gap: 40px;
}

.testimonials-headline {
  font-size: 48px;
  line-height: 1.15;
  margin: 0px;
  width: 60%;
  color: #000000;
}

.casestudies-btn {
  display: inline-block;
  padding: 14px 24px;
  background: #000000;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.casestudies-btn:hover {
  background: #1e1e1e;
  color: #ffffff;
}

/* Divider line */
.testimonials-divider {
  margin-top: 40px;
  height: 2px;
  width: 100%;
  background: rgba(0, 0, 0, 1);
}

.testimonial-section {
  width: calc(100% - 240px);
  margin: 50px auto;
}

/* CARD */
.testimonial-card {
  /*display: grid;*/
  display:flex;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: stretch;
}

/* IMAGE */
.testimonial-image{
  display:none;
}

.testimonial-image img {
  width: 300px;
  height: 450px;
  border-radius: 16px;
  object-fit: cover;
}

/* RIGHT */
.testimonial-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* TEXT */
.testimonial-text {
  font-size: 26px;
  line-height: 1.4;
  color: rgba(0,0,0,0.9);
  min-height: 160px;
  transition: color 0.3s ease;
  font-weight: 600;
}

/* FOOTER */
.testimonial-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

/* CLIENT META */
.client-meta {
  overflow: hidden;
}

.client-meta h4,
.client-meta span {
  display: block;
  transform: translateY(100%);
  opacity: 0;
}

.client-meta.animate h4,
.client-meta.animate span {
  animation: slideUp 0.5s ease forwards;
}

.client-meta.animate span {
  animation-delay: 0.1s;
}

.client-meta h4 {
  margin: 0;
  font-size: 18px;
  color: #000;
}

.client-meta span {
  font-size: 14px;
  color: #666;
}

/* NAV */
.testimonial-nav {
  display: flex;
  gap: 12px;
}

.testimonial-nav button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #113246;
  background: #f1f9ff;
  color: #113246;
  font-size: 18px;
  cursor: pointer;
}

/* ANIMATIONS */
@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.three-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: auto 80px;
}

/* Base card */
.logocard {
  background: #0e181e;
  border-radius: 8px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Logo */
.logocard svg {
  width: 64px;
  height: auto;
  opacity: 0.9;
}

.tlogo {
  stroke: #ffffff;
  fill: none;
  stroke-width: 2;
  transition: stroke 0.3s ease, fill 0.3s ease;
  cursor: pointer;
}

.logo-grid rect,
.logo-star path {
  fill: #ffffff;
  transition: fill 0.3s ease;
}

.logocard svg:hover{
  stroke: #3aa9ff;
}

.logo-grid:hover rect,
.logo-star:hover path {
  fill: #3aa9ff;
}

/* LEFT CARD — no left/right gap */
.logocard.left {
  margin: 5px 0;
}

/* RIGHT CARD — no left/right gap */
.logocard.right {
  margin: 5px 0;
}

/* MIDDLE CARD — gap on all sides */
.logocard.middle {
  margin: 5px;
}

/* Optional hover polish */
.logocard:hover {
  border-color: rgba(116, 200, 252, 0.35);
}


/* SECTION */
.faq-section {
  background: #e4e8e8;
  border-radius: 12px;
  margin: 0px 80px 0;
  padding: 120px 0 120px;
}

/* GRID */
.faq-wrapper {
  width: calc(100% - 240px);
  margin: auto;
  display: grid;
  grid-template-columns: 35% 65%;
  gap: 40px;
  align-items: stretch;
}

/* LEFT */
.faq-left {
  display: flex;
  flex-direction: column;
  height: 100%;
  
}

.faq-sticky {
  position: sticky;
  top: 0;
}

.faq-sticky::after {
  content: "";
  display: block;
  height: 100px;
  margin-bottom: 100px;
}

.faq-head span {
  border: 1px solid #6d6d6d;
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 13px;
  color: #000000;
}

.faq-headline {
  font-size: 44px;
  line-height: 1.15;
  margin: 24px 0 60px;
  color: #000000;
}

/* CTA BOX */
.faq-cta {
  background: #062639;
  color: #fff;
  border-radius: 14px;
  padding: 28px;
  margin-top: auto;
  align-self: stretch;
}

.faq-cta h4 {
  margin: 0 0 8px;
  font-size: 20px;
}

.faq-cta p {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 20px;
}

.faq-btn {
  display: inline-block;
  padding: 12px 22px;
  background: #fff;
  color: #000;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
}

/* RIGHT */
.faq-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* FAQ ITEM */
.faq-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  transition: background 0.2s ease;
}

.faq-item.first {
  border-radius: 16px 16px 8px 8px;
}

.faq-item.last {
  border-radius: 8px 8px 16px 16px;
}

.faq-item:hover {
  background: #f5f5f5;
}

/* QUESTION */
.faq-question {
  width: 100%;
  padding: 22px 24px;
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: #000;
}

.faq-question .faq-icon {
  font-size: 22px;
  transition: transform 0.2s ease;
}

/* ANSWER */
.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  font-size: 15px;
  color: #444;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  padding: 0 24px 22px;
  max-height: 200px;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

@media (max-width: 900px) {

  /* ===== GLOBAL CONTAINERS ===== */
  .testimonials {
    padding: 80px 0 40px;
    margin: 0 20px;
  }

 .faq-section {
    padding: 80px 0;
    margin: 0 20px;
  }


  .testimonials-container,
  .testimonial-section,
  .faq-wrapper {
    width: calc(100% - 48px);
  }

  /* ===== TESTIMONIAL HEADER ===== */
  .testimonials-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .testimonials-headline {
    width: 100%;
    font-size: 32px;
  }

  .casestudies-btn, .testimonials-divider {
    display: none;
    align-self: flex-start;
  }

  /* ===== TESTIMONIAL CARD ===== */
  .testimonial-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .testimonial-image img {
    width: 100%;
    height: 320px;
  }

  .testimonial-text {
    font-size: 20px;
    min-height: 20vh;
  }

  .testimonial-footer {
    align-items: flex-start;
    gap: 20px;
  }

  .testimonial-nav {
    align-self: flex-end;
  }

  /* ===== THREE LOGO CARDS ===== */
  .three-cards {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 5px;
    margin: 5px 0px 5px;
    padding: 0 20px;
  }

  .logocard {
    height: 90px;
  }

  .logocard svg{
    width: 32px;
    height: 32px;
  }

  .logocard.middle,
  .logocard.left,
  .logocard.right {
    margin: 0;
  }

  /* ===== FAQ SECTION ===== */
  .faq-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-sticky {
    position: static;
  }
  
  .faq-sticky::after{
    height: 0px;
  }

  .faq-headline {
    font-size: 30px;
    margin-bottom: 32px;
  }

  .faq-cta {
    margin-top: 0px;
  }

  .faq-question {
    font-size: 16px;
    padding: 18px 20px;
  }

  .faq-answer {
    font-size: 16px;
  }
}


/* TESTIMONIALS STYLES END HERE */


.page-content {
  padding-top: 140px; /* navbar height */
}


/* TEAM INDIVIDUAL STYLES START HERE */


.team {
  background: #fff;
  border-radius: 12px;
  margin: 0px auto 0; /* 👈 pushes it down */
  padding: 120px 0 60px;
  max-width: 1200px;
}

.team-container {
  width: calc(100% - 240px);
  margin: auto;
}

.team-head{
    font-size: 14px;
    color:#9e9e9e;
}

.team-head span{
    border: 1px solid #6d6d6d;
    border-radius: 5px;
    padding: 3px 8px;
    color: #000;
}

.team-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 10px 0px;
  gap: 40px;
}

.team-headline {
  font-size: 48px;
  line-height: 1.15;
  margin: 0px;
  width: 60%;
  color: #000000;
}

/* Divider line */
.team-divider {
  margin-top: 20px;
  height: 2px;
  width: 100%;
  background: rgba(0, 0, 0, 1);
}

.team-section {
  width: calc(100% - 240px);
  margin: 50px auto;
}

/* CARD */
.team-individual-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 60px;
  align-items: stretch;
}

/* IMAGE */
.team-image img {
  width: 100px;
  height: 150px;
  border-radius: 16px;
  object-fit: cover;
  margin-top: 20px;
}

/* RIGHT */
.team-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-size: 16px;
  color: #000000;
}


@media (max-width: 900px) {

  /* ===== GLOBAL CONTAINERS ===== */
  .team {
    padding: 80px 0 40px;
    margin: 0 20px;
  }

  .team-container,
  .team-section{
    width: calc(100% - 48px);
  }

  /* ===== TESTIMONIAL HEADER ===== */
  .team-title-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .team-headline {
    width: 100%;
    font-size: 32px;
  }

  .team-divider {
    display: none;
    align-self: flex-start;
  }

  /* ===== TESTIMONIAL CARD ===== */
  .team-individual-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .team-image img {
    width: 100%;
    height: 320px;
  }


}

/* Team Individual Styles End Here */




/* BLOG STYLES START HERE */

.blog-section {
  margin: 0px 80px 0;
  padding: 120px 0 120px;
}

.blog-container {
  margin: auto;
}

/* Header */
.blog-tag {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 6px 14px;
  border-radius: 12px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 5px;
}

.blog-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.blog-header-row h2 {
  font-size: 48px;
  color: #fff;
  margin: 12px 0px;
}

.blog-btn {
  background: #f2f5f5;
  color: #000;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-btn:hover{
    background: #1e1e1e;
    color:#fff;
}

/* Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* Card */
.blog-card {
  background: #fff;
  border-radius: 8px;
  padding: 5px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

/* Special radii */
.radius-left, .radius-left img {
  border-radius: 24px 8px 8px 8px;
}

.radius-right, .radius-right img {
  border-radius: 8px 24px 8px 8px;
}

/* Image */
.blog-image {
  height: 300px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.blog-content {
  padding: 32px;
}

.blog-content h3 {
  font-size: 20px;
  color: #000;
  margin-top:12px;
  margin-bottom:24px;
  min-height: 12vh;
}

.blog-date {
  font-size: 14px;
  color: #828282;
}

@media (max-width: 900px) {

  /* SECTION PADDING */
  .blog-section {
    padding: 20px 0;
    margin: 0px 0px 0;
  }

  .blog-container {
    width: calc(100% - 48px);
    margin: auto;
  }

  /* HEADER */
  .blog-header-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .blog-header-row h2 {
    font-size: 32px;
    line-height: 1.2;
    margin: 0px;
  }

  .blog-btn {
    width: 100%;
    text-align: center;
    justify-content: center; /* centers text inside flex */
    padding: 14px 0;
    font-size: 15px;
  }

  /* GRID → STACK */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  /* CARD */
  .blog-card {
    padding: 3px;
    border-radius: 20px;
  }

  /* REMOVE SPECIAL CORNER LOGIC ON MOBILE */
  .radius-left,
  .radius-right,
  .radius-left img,
  .radius-right img,
  .blog-image img {
    border-radius: 20px;
  }

  /* IMAGE */
  .blog-image {
    height: 220px;
  }

  /* CONTENT */
  .blog-content {
    padding: 20px;
  }

  .blog-content h3 {
    font-size: 18px;
    margin-bottom: 16px;
    min-height: unset;
  }

  .blog-date {
    font-size: 13px;
  }
}

/* BLOG STYLES END HERE */


/* PATENT SERVICES PAGES STYLES START HERE */
/* Section Styling */
.patent-section {
  background: #000;
  padding: 0 80px;
  padding-top: 0;
  display: flex;
  justify-content: center;
}

/* Container Styling */
.patent-container {
  background: #ffffff;
  color: #000;
  padding: 80px;
  border-radius: 20px;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Headings */
.patent-container h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.patent-container h3 {
  font-size: 30px;
  font-weight: 700;
  margin-top: 60px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.patent-container h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #000, #555);
  border-radius: 2px;
}

.patent-container h4 {
  font-size: 22px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 20px;
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  letter-spacing: 0.5px;
}

/* Paragraph */
.patent-container p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #000000;
}

/* Service List */
.patent-service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px 30px;
}

.patent-service-list li {
  background: #f9cf8e;
  border: 1px solid #eee;
  border-radius: 12px;
  transition: all 0.3s ease;
}


.patent-service-list li:hover {
  background: #000;
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  color:#ffffff;
}

/* Links */
.patent-service-list a {
  display: block;
  padding: 18px 22px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  position: relative;
  transition: all 0.3s ease;
}

.patent-service-list a::after {
  content: "→";
  position: absolute;
  right: 20px;
  transition: transform 0.3s ease;
}

/* Hover Effects */
.patent-service-list li:hover a {
  color: #f9cf8e;
}

.patent-service-list li:hover a::after {
  transform: translateX(5px);
}

/* SUBSECTION TITLE */
.subsection-title {
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  margin: 70px 0 40px;
  position: relative;
  padding-bottom: 15px;
}

.subsection-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #1a4f8b, #4c84c3);
  border-radius: 2px;
}

/* GRID LAYOUT */
.subsection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 30px;
}

/* CARD DESIGN */
.sub-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 6px;
  border: 1px solid #000000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
  position: relative;

  display: flex;
  flex-direction: column;
}

.sub-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

/* CARD TITLE */
.sub-card h4 {
  font-size: 21px;
  font-weight: 600;
  margin: 0px;
  color: #000000;
  padding: 8px 0px;
}

/* CARD TEXT */
.sub-card p {
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
  flex-grow: 1;   /* This pushes the button down */
}

/* MORE LINK */
.sub-card a {
  align-self: flex-start;   /* Right align */
  margin-top: 20px;
  padding: 8px 18px;
  background: #000000;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.sub-card a::after {
  content: " →";
  transition: 0.3s;
}

.sub-card a:hover {
  background: #000000;
  transform: translateY(-2px);
}

.sub-card a:hover::after {
  margin-left: 5px;
  color:#ffffff;
}

.patent-page-container {
  margin: auto auto 60px;
}

.patent-head {
  font-size: 14px;
  color: #9e9e9e;
}

.patent-head span {
  border: 1px solid #6d6d6d;
  border-radius: 5px;
  padding: 3px 8px;
  color: #000;
}

.patent-title-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 10px 0px;
  gap: 40px;
}

.patent-headline {
  font-size: 48px;
  line-height: 1.15;
  margin: 0px!important;    
  width: 60%;
  color: #000000;
}

.backto-btn {
  display: inline-block;
  padding: 14px 24px;
  background: #000000;
  border-radius: 999px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}


.patent-divider {
  margin-top: 20px;
  height: 2px;
  width: 100%;
  background: rgba(0, 0, 0, 1);
}

.patent-page-subheader{
  margin:15px 0px!important;
  padding: 0px!important;
}

.patent-page-subheader{
  margin:15px 0px!important;
  padding: 0px!important;
}

.patent-page-list{
  padding: 10px 20px;
  margin: 0px;
}

.patent-page-list li{
  padding: 5px;
  font-size:18px;
}

/* Responsive */
@media (max-width: 1024px) {
  .patent-section {
    padding: 0 40px;
  }

  .patent-container {
    padding: 50px;
  }
}

@media (max-width: 768px) {
  .patent-section {
    padding: 0 20px;
  }

  .patent-container {
    padding: 30px;
  }

  .patent-container h2 {
    font-size: 28px;
  }

  .patent-container h3 {
    font-size: 22px;
  }

  .subsection-title {
    font-size: 22px;
  }

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

  .sub-card {
    padding: 10px;
  }

  .patent-title-row {
    display: inline-block;
  }

  .patent-headline{
    width:100%;
  }

  .backto-btn {
    display: block;
  }

  .sub-card p{
    margin: 10px 0px;
    font-size:16px;
  }

}


/* PATENT SERVICES PAGES STYLES START HERE */


/* PATENT ILLUSTRATIONS IMAGE SLIDER STARTS HERE */

.illustrations-slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    aspect-ratio: 4 / 3;   /* Perfect for 1280x958 */
    overflow: hidden;
}

.illustration-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.illustration-slide.active {
    opacity: 1;
    z-index: 1;
}

.illustration-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* shows full image */
}

.illustrations-prev,
.illustrations-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    font-size: 18px;
    border-radius: 50%;
    z-index: 2;
}

.illustrations-prev { left: 0; }
.illustrations-next { right: 0; }

.illustrations-prev:hover,
.illustrations-next:hover {
    background: rgba(0,0,0,0.8);
}

/* PATENT ILLUSTRATIONS IMAGE SLIDER ENDS HERE */


.logocontainer {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 40px auto;
    align-items: flex-start;
}

.logocontainer img {
    width: 20%;
    max-width: 300px; /* optional, prevents huge image on big screens */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
}

.logocontainer p {
    width: 75%;
    margin: 0;
    font-size: 18px;
}

/* Responsive: stack on small screens */
@media (max-width: 768px) {
    .logocontainer {
        flex-direction: column;
    }
    .logocontainer img, .logocontainer p {
        width: 100%;
        margin: 0 0 20px 0;
    }
}



accordion {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 10px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.accordion-title {
    padding: 15px 20px;
    font-weight: bold;
    cursor: pointer;
    background: #eee;
    transition: background 0.3s ease;
}

.accordion-title:hover {
    background: #ddd;
}

.accordion-content {
    display: none;
    padding: 15px 20px;
    animation: fadeIn 0.3s ease;
}

.accordion-content p {
    margin: 10px 0;
}

.accordion-content ul {
    padding-left: 20px;
    margin: 10px 0;
}

.accordion-content ul li {
    margin-bottom: 5px;
}

/* Simple fade-in animation */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}


/* SUCCESS STORIES STYLES START HERE */

.patent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.patent-item {
  overflow: hidden;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.patent-item img {
  width: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.patent-item:hover {
  transform: translateY(5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 992px) {
  .patent-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .patent-grid {
    grid-template-columns: 1fr;
  }
}

/* SUCCESS STORIES STYLES END HERE */


.faq-search {
  margin-bottom: 20px;
}

.faq-search input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
}

.patent-faq-header-container{
  margin-bottom:50px;
}



/* BLOG STYLES START HERE */

.blogs{
  max-width: 1200px;
  margin: 0px auto 60px;
  padding: 0 0px;
  color: #222;
}
.blog-state {
  background: #ffffff;
  border-radius: 10px;
  padding: 80px;
  text-align: left;
  color: #000000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  font-size: 18px;
  line-height: 1.6;
  color: #000000;
}
/* ── Page wrapper ────────────────────────────────────────────────── */
        .page-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 0;
        }

        /* ── Blog header ─────────────────────────────────────────────────── */
        .blog-header {
            border-bottom: 2px solid var(--ink);
            padding: 2.5rem 0 1.5rem;
            margin-bottom: 2.5rem;
            display: flex;
            align-items: baseline;
            gap: 1rem;
        }
        .blog-header h1 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            letter-spacing: -.02em;
            line-height: 1;
        }

        /* ── Two-column layout ───────────────────────────────────────────── */
        .blog-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 3rem;
            align-items: start;
        }

        @media (max-width: 860px) {
            .blog-layout { grid-template-columns: 1fr; gap: 2rem; }
        }

        /* ════════════════════════════════════════════════════════════════════
           LEFT COLUMN — POST LIST
        ═══════════════════════════════════════════════════════════════════ */
        .posts-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        /* ── Single post row ─────────────────────────────────────────────── */
        .post-row {
            display: grid;
            grid-template-columns: 240px 1fr;
            gap: 1.5rem;
            padding: 1.75rem 0;
            border-bottom: 1px solid var(--border);
            transition: background .2s;
        }
        .post-row:first-child { padding-top: 0; }

        @media (max-width: 600px) {
            .post-row { grid-template-columns: 1fr; }
        }

        /* Image side */
        .post-thumb {
            position: relative;
            overflow: hidden;
            border-radius: var(--radius);
            aspect-ratio: 4/3;
            background: var(--border);
            flex-shrink: 0;
        }
        .post-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .4s ease;
        }
        .post-row:hover .post-thumb img { transform: scale(1.04); }

        .post-thumb-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #e8e4dc 0%, #d4cfc4 100%);
            color: var(--ink-faint);
            font-size: 2.5rem;
        }

        /* Content side */
        .post-content {
            display: flex;
            flex-direction: column;
            gap: .55rem;
            padding-top: .25rem;
        }

        /* Tags row */
        .post-tags {
            display: flex;
            flex-wrap: wrap;
            gap: .35rem;
        }
        .tag {
            font-size: 1rem;
            padding: .1rem .45rem;
            line-height: 1.6;
            color: #000;
            text-decoration: none;
        }

        /* Title */
        .post-title{
          margin: 0px 0px 10px;
          font-size: 1.25rem;
          font-weight: 600;
          line-height: 1;
        }
        
        .post-title a{
            font-size: 1.25rem;
            font-weight: 600;
            line-height: 1.3;
            letter-spacing: -.01em;
            color:#000000;
            text-decoration: none;
        }

        /* Meta */
        .post-meta {
            display: flex;
            gap: .75rem;
            flex-wrap: wrap;
        }
        .post-meta span { display: flex; align-items: center; gap: .25rem; }

        /* Author meta */
        .post-meta { margin: .1rem 0; }
        .post-meta-author {
            display: inline-flex;
            align-items: center;
            gap: .35rem;
        }
        .author-icon {
            flex-shrink: 0;
        }
        .author-name {
            font-weight: 500;
        }
        .meta-sep {
            font-size: .9rem;
        }

        /* Summary */
        .post-summary {
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        /* Continue reading */
        .read-more {
            display: inline-flex;
            align-items: center;
            gap: .35rem;
            margin-top: .25rem;
            transition: gap .2s;
            color: #000;
            text-decoration: none;
            font-weight: 600;
        }
        .read-more svg { transition: transform .2s; }
        .read-more:hover { gap: .55rem; }
        .read-more:hover svg { transform: translateX(3px); }

        /* ── Older Posts button ──────────────────────────────────────────── */
        .pagination-row {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 1rem;
            margin-top: 2rem;
            padding-top: 1.5rem;
        }
        .btn-older, .btn-newer {
            font-weight: 500;
            padding: .6rem 1.4rem;
            border-radius: var(--radius);
            border: 1.5px solid var(--ink);
            background: transparent;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: .4rem;
            transition: background .15s, color .15s;
            text-decoration: none;
        }

        /* ════════════════════════════════════════════════════════════════════
           RIGHT COLUMN — SIDEBAR
        ═══════════════════════════════════════════════════════════════════ */
        .sidebar {
            position: sticky;
            top: 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .sidebar-section {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .sidebar-heading {
            letter-spacing: .12em;
            text-transform: uppercase;
            color: var(--bg);
            background: var(--ink);
            padding: .7rem 1.1rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .sidebar-heading .count-badge {
            background: var(--accent);
            color: #fff;
            font-size: .65rem;
            font-weight: 600;
            padding: .15rem .45rem;
            border-radius: 99px;
        }

        /* ── Featured articles list ──────────────────────────────────────── */
        .featured-list { padding: .5rem 0; }

        .featured-item {
            display: grid;
            grid-template-columns: 64px 1fr;
            gap: .75rem;
            align-items: center;
            padding: .7rem 1.1rem;
            border-bottom: 1px solid var(--border);
            transition: background .15s;
            text-decoration:none;
        }
        .featured-item:last-child { border-bottom: none; }
        .featured-item:hover { background: #f5f3ee; }

        .featured-thumb {
            width: 64px;
            height: 48px;
            border-radius: 5px;
            overflow: hidden;
            background: var(--border);
            flex-shrink: 0;
        }
        .featured-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .3s;
        }
        .featured-item:hover .featured-thumb img { transform: scale(1.08); }

        .featured-thumb-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #e8e4dc, #d4cfc4);
            font-size: 1.2rem;
        }

        .featured-info { overflow: hidden; }
        .featured-title {
            font-size: .88rem;
            font-weight: 600;
            line-height: 1.3;
            color: var(--ink);
            display: -webkit-box;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-decoration:none;
        }
        .featured-date {
            font-size: .9rem;
            margin-top: .2rem;
            color: #000000;
        }

        /* ── Categories list ─────────────────────────────────────────────── */
        .categories-list { padding: .4rem 0; }

        .category-item {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: .6rem 1.1rem;
            border-bottom: 1px solid var(--border);
            font-size: .88rem;
            color: var(--ink-light);
            transition: background .15s, color .15s;
            cursor: pointer;
            text-decoration:none;
        }
        .category-item:last-child { border-bottom: none; }
        .category-item:hover { background: #f5f3ee; color: var(--accent); }
        .category-item a {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: space-between;
            color: inherit;
        }
        .cat-name { display: flex; align-items: center; gap: .5rem; }
        .cat-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent);
            opacity: .5;
            flex-shrink: 0;
            transition: opacity .15s;
        }
        .category-item:hover .cat-dot { opacity: 1; }
        .cat-count {
            font-size: .80rem;
            background: #f0ede8;
            color: var(--ink-faint);
            padding: .1rem .5rem;
            border-radius: 99px;
            font-weight: 600;
        }
        .category-item:hover .cat-count { background: #fde8e6; color: var(--accent); }

        
        .post-content img{
          max-width: 100%;
        }

        .article-content p:empty,
        .article-content p:blank {
            display: none;
        }

        .blog-state ol, .blog-state ul{
          padding: 0px 20px;
          margin: 0px
        }

        .blog-state ol br, .blog-state ul br{
          display: none;
        }

        /* ── Responsive tweaks ───────────────────────────────────────────── */
        @media (max-width: 860px) {
            .sidebar { position: static; }
            .post-row { gap: 1rem; }
        }
        @media (max-width: 480px) {
            .post-thumb { aspect-ratio: 16/9; }
        }

       .post-content p{
        margin: 5px 0px 0px;
      }

      @media (max-width: 768px) {
        .blogs {
          padding: 0 20px;
        }
        .blog-state{
          padding: 20px;
        }
        .page-wrapper {
          padding: 0 10px;
        }
        .sidebar {
          display: none;
        }
      }


/* BLOG STYLES END HERE */
/* FOOTER STYLES START HERE */


.site-footer {
  background: #000;
  border-top-left-radius: 24px;
  padding: 80px 0;
  color: #fff;
}

.footer-container {
  margin: 0 80px;
  padding: 0 0px;
}

.footer-layout {
  display: flex;
  gap: 80px;
}

/* LEFT COLUMN */
.footer-left {
  width: 30%;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

/* Sticky top */
.footer-left-sticky {
  position: sticky;
  top: 120px;
  margin-bottom: 200px;
}

.footer-menus {
  display: flex;
  gap: 100px;
}

/* FIXED GAP */
.footer-left-bottom {
  margin-top: auto;
  padding-top: 0px;
}


/* LEFT TEXT */
.footer-title {
  font-size: 18px;
  margin-bottom: 5px;
  color: #e8e1d6;
}

.footer-left-bottom p{
    font-size: 16px;
    color: #535353;
    margin: 0px;
}

.footer-nav,
.footer-company {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.footer-nav a,
.footer-company a {
  color: #afaeae;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

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

.footer-divider{
  margin: 20px 0px;
  height: 1px;
  width: 100%;
  background: rgb(145, 143, 143);
}

/* LEGAL */
.footer-legal {
  display: flex;
  gap: 12px;
  font-size: 14px;
  margin-top: 12px;
}

.footer-legal a {
  color: #fff;
  text-decoration: none;
}

/* RIGHT COLUMN */
.footer-right {
  position: relative;
  width: 70%;
  overflow: hidden; /* prevents bleed */
}

#footer-canvas {
  position: absolute;
  inset: 0; /* top:0 right:0 bottom:0 left:0 */
  width: 100%;
  height: 100%;
  z-index: 0;
}

/* Content stays above canvas */
.footer-right-content {
  position: relative;
  z-index: 2;
}

/* CONTACT CARD */
.footer-contact-card {
  background: linear-gradient(
    180deg,
    rgba(247, 192, 89, 0.15),
    rgba(252, 202, 109, 0.20)
  );
  border-radius: 24px 24px 8px 8px;
  padding: 48px 120px;
  text-align: center;
  border: 1px solid rgba(255, 198, 92, 0.15);
}

.footer-video {
  width: 200px;
  aspect-ratio: 9 / 16;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
}

.footer-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  display: block;
  mix-blend-mode: lighten;
}

.footer-contact-card h2 {
  font-size: 48px;
  margin-bottom: 16px;
}

.footer-contact-card p {
  opacity: 0.7;
  margin-bottom: 32px;
  justify-content: justify;
}

/* CTA */
.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin: 40px 0px;
}

.btn-primary {
  background: #ffca68;
  color: #000;
  padding: 15px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  align-items: center;
}

.btn-primary:hover{
    background: #ffffff;
}

.btn-secondary {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.btn-secondary:hover{
    font-weight: 600;
}

/* SOCIALS */
.footer-socials {
  display: flex;
  gap: 3px;
  margin-top: 3px;
}

.footer-socials a {
  flex: 1;
  background: rgba(247, 192, 89, 0.15);
  padding: 40px 20px;
  text-decoration: none;
  color: #ffc65c;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid rgba(255, 198, 92, 0.15);
}

.first-social{
     border-radius: 8px 8px 8px 24px;   
}

.middle-social{
    border-radius: 8px 8px 8px 8px;   
}

.last-social{
     border-radius:  8px 8px 24px 8px;      
}


@media (max-width: 900px) {

  .site-footer {
    padding: 20px 20px;
  }

  /* STACK LAYOUT */
  .footer-layout {
    flex-direction: column;
    gap: 40px;
  }

  /* RIGHT FIRST */
  .footer-right {
    width: 100%;
    order: -1; /* move to top */
  }

  .footer-video {
    width: 100px;          /* half of 200px */
    aspect-ratio: 9 / 16;  /* keep portrait ratio */
    margin: 0 auto 24px;   /* centered + spacing */
  }

  .footer-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);  /* prevent over-zoom on mobile */
  }

  /* LEFT BELOW */
  .footer-left {
    width: 100%;
  }

  /* Disable sticky on mobile */
  .footer-left-sticky {
    position: static;
    margin-bottom: 40px;
  }

  /* Menus stack */
  .footer-menus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  
   .footer-nav,
  .footer-company {
    margin-bottom: 0;
  }
  /* CONTACT CARD PADDING FIX */
  .footer-contact-card {
    padding: 32px 20px;
    border-radius: 20px 20px 6px 6px;
  }

  .footer-contact-card h2 {
    font-size: 32px;
  }

  .footer-contact-card p {
    font-size: 15px;
  }

  /* CTA buttons full width */
  .footer-cta {
    width: 100%;
    margin: 20px 0px;
  }

  .footer-cta a {
    width: 100%;
    text-align: center;
  }

  /* SOCIALS — ONE PER LINE */
  .footer-socials {
    flex-direction: column;
    gap: 4px;
    margin-top: 4px;
  }

  .footer-socials a {
    width: 100%;
    border-radius: 6px;
    padding: 30px;
  }

  .last-social{
    border-radius:  6px 6px 20px 20px !important;
  }

  .footer-container {
    margin: 0 0px;
    padding: 0 0px;
  }

 

}


#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

#whatsapp-button img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

#whatsapp-button img:hover {
    transform: scale(1.1);
}

/* FOOTER STYLES END HERE */