:root {
  --ink: #14110f;
  --muted: #6f6860;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: rgba(20, 17, 15, 0.12);
  --gold: #c8974c;
  --terracotta: #9f4f35;
  --sage: #5f7765;
  --charcoal: #242323;
  --blue: #395f74;
  --shadow: 0 24px 70px rgba(20, 17, 15, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: var(--paper);
  color: var(--ink);
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.cursor-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 140px at var(--spotlight-x, 50%) var(--spotlight-y, 50%),
      rgba(255, 255, 255, 0.34) 0%,
      rgba(200, 151, 76, 0.16) 32%,
      transparent 64%);
  opacity: 0;
  z-index: 50;
  mix-blend-mode: screen;
  transition: opacity 150ms ease;
}

.cursor-glow.active {
  opacity: 1;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 40;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #fff;
  backdrop-filter: none;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(251, 250, 246, 0.88);
  border-color: var(--line);
  box-shadow: 0 14px 40px rgba(20, 17, 15, 0.12);
  padding: 12px 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: auto;
}

.brand-logo {
  flex: 0 0 auto;
  width: 104px;
  height: 104px;
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.34);
  transition: width 220ms ease, height 220ms ease;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  letter-spacing: 0.05em;
}

.brand strong {
  font-size: 3.6rem;
  white-space: nowrap;
  transition: font-size 220ms ease;
}

.brand small {
  margin-top: 6px;
  color: currentColor;
  font-size: 1.35rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: font-size 220ms ease;
}

.site-header.scrolled .brand {
  min-width: auto;
}

.site-header.scrolled .brand-logo {
  width: 60px;
  height: 60px;
}

.site-header.scrolled .brand strong {
  font-size: 1.65rem;
}

.site-header.scrolled .brand small {
  font-size: 0.88rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a,
.nav-dropdown-toggle {
  padding: 11px 15px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: currentColor;
  opacity: 0.82;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  width: 15px;
  height: 15px;
  transition: transform 180ms ease;
}

.nav-dropdown.open .nav-dropdown-toggle svg,
.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  min-width: 210px;
  display: grid;
  gap: 4px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(251, 250, 246, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -6px);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-dropdown.open .nav-dropdown-menu,
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.nav-dropdown-menu a {
  border-radius: 10px;
  color: var(--ink);
  opacity: 0.82;
}

.site-nav a:hover,
.nav-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.18);
  opacity: 1;
}

.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .nav-dropdown-toggle:hover {
  background: rgba(20, 17, 15, 0.07);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: currentColor;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: end;
  padding: 150px max(24px, calc((100vw - 1180px) / 2)) 64px;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  isolation: isolate;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 11, 10, 0.48), rgba(12, 11, 10, 0.12) 64%),
    linear-gradient(0deg, rgba(12, 11, 10, 0.32), transparent 38%);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 920px;
}

.hero-eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: clamp(0.95rem, 1.6vw, 1.35rem);
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-content h1.hero-main-title {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: clamp(3.5rem, 8.5vw, 7.2rem);
  line-height: 0.95;
  margin: 0 0 16px;
  color: #ffffff;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.7));
}

.hero-subtext {
  max-width: 680px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.6vw, 1.28rem);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-description span {
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #17120c;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  gap: 15px;
  background-color: #181717;
  outline: 3px #181717 solid;
  outline-offset: -3px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: 400ms;
  text-decoration: none;
}

.button .text {
  color: white;
  font-weight: 700;
  font-size: 1em;
  transition: 400ms;
}

.button svg path {
  transition: 400ms;
}

.button:hover {
  background-color: transparent;
}

.button:hover .text {
  color: #181717;
}

.button:hover svg path {
  fill: #181717;
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.1);
  color: currentColor;
  backdrop-filter: blur(12px);
}

.hero-panel {
  display: grid;
  gap: 12px;
  align-self: end;
}

.hero-panel div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.metric {
  display: block;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.hero-panel p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.peb-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: end;
  padding: 160px max(24px, calc((100vw - 1180px) / 2)) 74px;
  color: #fff;
  overflow: hidden;
}

.peb-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 11, 10, 0.82), rgba(12, 11, 10, 0.28) 62%),
    linear-gradient(0deg, rgba(12, 11, 10, 0.62), transparent 42%),
    url("https://images.unsplash.com/photo-1504917595217-d4dc5ebe6122?auto=format&fit=crop&w=1800&q=85") center/cover;
  transform: scale(1.03);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.peb-hero-content {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.peb-hero-content p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.65;
}

.peb-trust {
  width: min(1180px, calc(100% - 48px));
  margin: -42px auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.peb-trust-copy {
  padding: 30px;
  background: var(--charcoal);
  color: #fff;
}

.peb-trust-copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 3.4rem);
}

.peb-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.trust-pill {
  display: grid;
  align-content: center;
  gap: 12px;
  min-height: 128px;
  padding: 20px;
  background: #fff;
  font-weight: 900;
}

.trust-pill svg,
.peb-mini-card svg {
  color: var(--terracotta);
}

.peb-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.peb-intro-image {
  height: 520px;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: var(--shadow);
}

.peb-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.peb-mini-card {
  min-height: 220px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(20, 17, 15, 0.06);
}

.peb-mini-card svg {
  width: 30px;
  height: 30px;
  margin-bottom: 30px;
}

.peb-mini-card p {
  color: var(--muted);
  line-height: 1.62;
}

.peb-benefits {
  padding: 100px max(24px, calc((100vw - 1180px) / 2));
  background: var(--charcoal);
  color: #fff;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.benefit {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  text-align: center;
}

.peb-system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.peb-system-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(20, 17, 15, 0.06);
}

.peb-system-card img {
  height: 300px;
  object-fit: cover;
}

.peb-system-card div {
  padding: 26px;
}

.peb-system-card p,
.peb-system-card li {
  color: var(--muted);
  line-height: 1.62;
}

.peb-system-card ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding-left: 18px;
}

.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sector-card {
  position: relative;
  min-height: 230px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #000;
}

.sector-card img {
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  opacity: 0.72;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.sector-card:hover img {
  opacity: 0.92;
  transform: scale(1.04);
}

.sector-card span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  color: #fff;
  font-size: 1.06rem;
  font-weight: 900;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1180px;
  margin: -42px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 3;
}

.services-showcase {
  position: relative;
  max-width: none;
  margin: 0;
  padding: 110px max(24px, calc((100vw - 1180px) / 2)) 88px;
  background:
    linear-gradient(135deg, rgba(15, 76, 129, 0.78) 0%, rgba(15, 76, 129, 0.22) 48%, rgba(15, 76, 129, 0.7) 100%),
    url("company assets/our services bg.jpg") center/cover;
  color: #1a1a1a;
  isolation: isolate;
}

.services-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(15, 76, 129, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 76, 129, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.services-showcase .section-heading {
  position: relative;
  z-index: 1;
  max-width: 840px;
}

.services-showcase .eyebrow {
  color: transparent;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 800;
  letter-spacing: 0.16em;
  filter: drop-shadow(0 0 8px rgba(220, 38, 38, 0.6)) drop-shadow(0 0 20px rgba(220, 38, 38, 0.3));
  animation: eyebrowGlow 2.5s ease-in-out infinite alternate;
}

.service-card-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  perspective: 500px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 520px;
  overflow: hidden;
  border: 2px solid rgba(220, 38, 38, 0.6);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #ffffff 0%, #f7fbff 100%);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 38px rgba(15, 76, 129, 0.08);
  position: relative;
  will-change: transform, box-shadow;
  transition: 
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), 
    border-color 0.3s ease, 
    box-shadow 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover {
  transform: translateY(-16px) scale(1.04);
  border-color: rgba(220, 38, 38, 0.9);
  box-shadow: 0 30px 70px rgba(15, 76, 129, 0.22);
}

.service-card img {
  height: 245px;
  object-fit: cover;
  border-bottom: 1px solid rgba(15, 76, 129, 0.12);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.service-card:hover img {
  transform: scale(1.03);
}

.service-card div {
  padding: 22px;
}

.service-card span {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 11px;
  border: 1px solid rgba(15, 76, 129, 0.16);
  border-radius: 999px;
  background: rgba(15, 76, 129, 0.08);
  color: #0f4c81;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.service-card h3 {
  font-size: 1.18rem;
  color: #1a1a1a;
}

.service-card p {
  margin: 12px 0 0;
  color: #6b7280;
  line-height: 1.62;
}

.action-card,
.feature,
.expert-card,
.project-card,
.step,
.plan-shell,
.faq-list,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: 0 14px 34px rgba(20, 17, 15, 0.06);
}

.action-card {
  min-height: 210px;
  padding: 26px;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.action-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 151, 76, 0.6);
  box-shadow: var(--shadow);
}

.action-card svg,
.feature svg {
  width: 28px;
  height: 28px;
  color: var(--terracotta);
}

.action-card span {
  display: block;
  margin-top: 26px;
  font-size: 1.35rem;
  font-weight: 900;
}

.action-card p,
.feature p,
.section-copy p,
.expert-card p,
.step p,
.project-card p,
.faq p,
.footer p {
  color: var(--muted);
  line-height: 1.65;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 24px;
}

.split {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 58px;
  align-items: start;
}

#about-us {
  position: relative;
  max-width: none;
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.92)),
    url("company assets/why namratha bg.jpg") center/cover;
  color: #1a1a1a;
}

#about-us::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(15, 76, 129, 0.14), transparent 28%);
  opacity: 0.55;
  pointer-events: none;
}

#about-us::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 76, 129, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 76, 129, 0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.26;
  pointer-events: none;
}

#about-us .section-copy {
  position: relative;
  z-index: 1;
}

#about-us .eyebrow {
  color: transparent;
  background: linear-gradient(90deg, #0f4c81 0%, #1e88e5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 800;
  letter-spacing: 0.18em;
}

#about-us .section-copy h2 {
  margin: 14px 0 20px;
  max-width: 560px;
  color: #0f4c81;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.02;
}

#about-us .section-copy p:not(.eyebrow) {
  color: #4f5c70;
  max-width: 560px;
  font-size: 1.05rem;
  line-height: 1.75;
}

#about-us .feature {
  position: relative;
  z-index: 1;
  min-height: 240px;
  padding: 26px;
  border: 1px solid rgba(220, 38, 38, 0.28);
  border-radius: calc(var(--radius) * 1.1);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  box-shadow: 0 28px 48px rgba(15, 76, 129, 0.12);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease,
    background 240ms ease;
  overflow: hidden;
}

#about-us .feature::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(15, 76, 129, 0.96), rgba(30, 136, 229, 0.8));
}

#about-us .feature svg {
  width: 32px;
  height: 32px;
  color: #0f4c81;
}

#about-us .feature h3 {
  margin-top: 24px;
  color: #1a1a1a;
}

#about-us .feature p {
  margin-top: 12px;
  color: #6b7280;
  line-height: 1.7;
}

#about-us .feature:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(220, 38, 38, 0.72);
  box-shadow: 0 32px 58px rgba(15, 76, 129, 0.18);
  background: rgba(255, 255, 255, 1);
}

.section-copy p:not(.eyebrow) {
  max-width: 560px;
  font-size: 1.06rem;
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 20px;
}

.feature {
  min-height: 260px;
  padding: 26px;
}

.feature h3 {
  margin-top: 24px;
}

.section-heading {
  max-width: 840px;
  margin-bottom: 38px;
}

.services-showcase h2,
.faq h2 {
  color: #ffffff;
}

.expert-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.expert-card {
  overflow: hidden;
}

.expert-card img {
  height: 330px;
  object-fit: cover;
}

.expert-card h3,
.expert-card p,
.expert-card span {
  margin-left: 22px;
  margin-right: 22px;
}

.expert-card h3 {
  margin-top: 22px;
}

.expert-card span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(95, 119, 101, 0.12);
  color: var(--sage);
  font-size: 0.85rem;
  font-weight: 900;
}

.plans {
  max-width: none;
  background:
    linear-gradient(180deg, rgba(36, 35, 35, 0.97), rgba(36, 35, 35, 0.94)),
    url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80") center/cover;
  color: #fff;
}

.plans>* {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.plans .section-heading {
  padding: 0 24px;
}

.plan-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0 24px;
}

.plan-tab,
.filter {
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  cursor: pointer;
  font-weight: 800;
}

.plan-tab {
  border-color: rgba(255, 255, 255, 0.18);
}

.plan-tab.active,
.filter.active {
  background: var(--gold);
  color: #17120c;
  border-color: var(--gold);
}

.plan-shell {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  color: var(--ink);
}

.plan-summary,
.plan-details {
  background: #fff;
  padding: 30px;
}

.plan-summary p {
  color: var(--muted);
}

.plan-summary strong {
  display: block;
  margin: 18px 0 26px;
  color: var(--terracotta);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
}

.plan-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.spec {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.spec svg {
  flex: 0 0 auto;
  color: var(--sage);
}

.workflow {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 56px;
}

.timeline {
  display: grid;
  gap: 12px;
}

.step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 16px;
  padding: 22px;
}

.step span {
  grid-row: span 2;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.step p {
  margin: 8px 0 0;
}

.assist-band {
  width: min(1180px, calc(100% - 48px));
  margin: 48px auto 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px;
  border-radius: var(--radius);
  background:
    linear-gradient(120deg, rgba(159, 79, 53, 0.92), rgba(57, 95, 116, 0.92)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1400&q=80") center/cover;
  color: #fff;
}

.assist-band .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.assist-band h2 {
  max-width: 760px;
  font-size: clamp(1.8rem, 3.4vw, 3.6rem);
}

/* ── Who We Are ── */

.who-we-are {
  position: relative;
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  background: url("company assets/why namratha bg.jpg") center/cover no-repeat;
  background-size: cover;
  color: #1a1a1a;
  overflow: hidden;
}

.who-we-are::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 76, 129, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 76, 129, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.2;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.who-we-are .eyebrow {
  color: transparent;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 800;
  letter-spacing: 0.18em;
  filter: drop-shadow(0 0 8px rgba(220, 38, 38, 0.6)) drop-shadow(0 0 20px rgba(220, 38, 38, 0.3));
  animation: eyebrowGlow 2.5s ease-in-out infinite alternate;
}

.who-we-are .section-heading h2 {
  color: #0f4c81;
  font-size: clamp(2rem, 3vw, 3rem);
}

.who-intro {
  max-width: 900px;
  margin-bottom: 60px;
}

.who-intro p {
  color: #4f5c70;
  font-size: 1.06rem;
  line-height: 1.75;
  margin-bottom: 18px;
}

.who-why {
  margin-bottom: 60px;
}

.who-why>h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: #fff;
  margin-bottom: 28px;
}

.who-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.who-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(15, 76, 129, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 16px 38px rgba(15, 76, 129, 0.07);
  overflow: hidden;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.who-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 5px;
  background: linear-gradient(90deg, rgba(220, 38, 38, 0.95), rgba(220, 38, 38, 0.3));
}

.who-card:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 76, 129, 0.32);
  box-shadow: 0 24px 52px rgba(15, 76, 129, 0.14);
}

.who-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(15, 76, 129, 0.08);
  margin-bottom: 20px;
}

.who-card-icon svg {
  width: 24px;
  height: 24px;
  color: #0f4c81;
}

.who-card h4 {
  font-size: 1.12rem;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.who-card p {
  color: #6b7280;
  line-height: 1.65;
  font-size: 0.96rem;
}

.who-narrative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.who-narrative-block {
  padding: 32px;
  border: 1px solid rgba(15, 76, 129, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(15, 76, 129, 0.06);
}

.who-narrative-block h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  color: #0f4c81;
  margin-bottom: 16px;
}

.who-narrative-block p {
  color: #4f5c70;
  line-height: 1.72;
  font-size: 1rem;
  margin-bottom: 14px;
}

.who-narrative-block p:last-child {
  margin-bottom: 0;
}

.who-tagline {
  font-weight: 800;
  font-size: 1.1rem !important;
  color: #0f4c81 !important;
  padding-top: 8px;
  border-top: 2px solid rgba(15, 76, 129, 0.16);
  margin-top: 18px !important;
}

/* ── Circular Gallery ── */

.gallery-section .eyebrow {
  color: transparent;
  background: linear-gradient(90deg, #dc2626 0%, #ef4444 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 800;
  letter-spacing: 0.16em;
  filter: drop-shadow(0 0 8px rgba(220, 38, 38, 0.6)) drop-shadow(0 0 20px rgba(220, 38, 38, 0.3));
  animation: eyebrowGlow 2.5s ease-in-out infinite alternate;
}

@keyframes eyebrowGlow {
  0% {
    filter: drop-shadow(0 0 6px rgba(220, 38, 38, 0.4)) drop-shadow(0 0 14px rgba(220, 38, 38, 0.2));
  }

  100% {
    filter: drop-shadow(0 0 12px rgba(220, 38, 38, 0.8)) drop-shadow(0 0 28px rgba(220, 38, 38, 0.45));
  }
}

.gallery-section {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  background: #fff;
}

.gallery-section .section-heading {
  position: relative;
  z-index: 2;
}

.circular-gallery {
  position: relative;
  width: 100%;
  height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1800px;
  perspective-origin: 50% 44%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.circular-gallery::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 54%;
  width: min(74vw, 820px);
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(20, 17, 15, 0.18), transparent 68%);
  transform: translate(-50%, -50%) rotateX(72deg);
  filter: blur(10px);
  pointer-events: none;
}

.circular-gallery-stage {
  position: relative;
  width: 1px;
  height: 1px;
  transform-style: preserve-3d;
  will-change: transform;
}

.circular-gallery-card {
  --gallery-angle: 0deg;
  --gallery-radius: min(42vw, 560px);
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(210px, 24vw, 300px);
  height: clamp(290px, 32vw, 400px);
  margin-left: calc(clamp(210px, 24vw, 300px) / -2);
  margin-top: calc(clamp(290px, 32vw, 400px) / -2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 26px 60px rgba(20, 17, 15, 0.22);
  transform: rotateY(var(--gallery-angle)) translateZ(var(--gallery-radius));
  transition:
    opacity 220ms linear,
    box-shadow 240ms ease;
  backface-visibility: hidden;
}

.circular-gallery-card:hover {
  box-shadow: 0 34px 80px rgba(20, 17, 15, 0.3);
}

.circular-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
}

.faq {
  max-width: none;
  min-height: 100vh;
  margin: 0;
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  background: url("gallary components/faq bg.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

details {
  padding: 22px 26px;
}

details+details {
  border-top: 1px solid var(--line);
}

summary {
  cursor: pointer;
  font-weight: 900;
}

/* ── Enquiry Section ── */

.enquiry-section {
  position: relative;
  padding: 110px max(24px, calc((100vw - 1180px) / 2));
  background:
    linear-gradient(135deg, rgba(15, 76, 129, 0.92) 0%, rgba(10, 50, 90, 0.96) 100%);
  color: #fff;
  overflow: hidden;
}

.enquiry-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.enquiry-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}

.enquiry-copy .eyebrow {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
  letter-spacing: 0.18em;
}

.enquiry-copy h2 {
  margin: 14px 0 20px;
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.05;
  color: #fff;
}

.enquiry-copy>p:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.06rem;
  line-height: 1.72;
  max-width: 480px;
}

.enquiry-form {
  display: grid;
  gap: 20px;
  padding: 36px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.enquiry-field {
  display: grid;
  gap: 6px;
}

.enquiry-field label {
  font-size: 0.88rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.enquiry-field input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  outline: none;
  transition: border-color 200ms ease, background 200ms ease;
}

.enquiry-field input::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.enquiry-field input:focus {
  border-color: rgba(220, 38, 38, 0.7);
  background: rgba(255, 255, 255, 0.12);
}

.enquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 52px;
  padding: 0 24px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  color: #fff;
  font-size: 1.06rem;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.enquiry-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(220, 38, 38, 0.35);
}

.enquiry-btn svg {
  width: 20px;
  height: 20px;
}

.enquiry-note {
  text-align: center;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
  min-height: 1.4em;
}

.footer {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 38px;
  padding: 70px max(24px, calc((100vw - 1180px) / 2));
  background: #151515;
  color: #fff;
}

.footer .brand {
  color: #fff;
}

.footer-brand-big {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-logo-big {
  width: 120px;
  height: 120px;
  border-radius: 16px;
  object-fit: cover;
}

.footer-brand-big strong {
  font-size: 1.6rem;
}

.footer-brand-big small {
  font-size: 1rem;
}

.footer-brand p {
  max-width: 500px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 12px;
}

.footer-links h3 {
  margin-bottom: 8px;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:last-child {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}

@media (max-width: 680px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.footer-links a,
.footer-links p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 200ms ease;
}

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

.footer-contact-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: rgba(220, 38, 38, 0.85);
}

.instagram-icon {
  width: 24px !important;
  height: 24px !important;
  color: #E1306C;
  filter: drop-shadow(0 0 4px rgba(225, 48, 108, 0.5));
  transition: filter 200ms ease, transform 200ms ease;
}

.footer-instagram:hover .instagram-icon {
  filter: drop-shadow(0 0 8px rgba(225, 48, 108, 0.8));
  transform: scale(1.15);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slowZoom {
  from {
    transform: scale(1.03);
  }

  to {
    transform: scale(1.09);
  }
}

@media (max-width: 980px) {

  .hero,
  .split,
  .workflow,
  .plan-shell,
  .footer,
  .peb-trust,
  .peb-intro {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 140px;
  }

  .hero-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .quick-actions,
  .expert-row,
  .service-card-grid {
    grid-template-columns: 1fr;
  }

  .who-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .who-narrative {
    grid-template-columns: 1fr;
  }

  .peb-trust-grid,
  .peb-mini-grid,
  .benefit-grid,
  .sector-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .peb-system-grid {
    grid-template-columns: 1fr;
  }

  .services-showcase {
    padding-top: 82px;
  }



  .footer {
    padding-bottom: 42px;
  }
}

@media (max-width: 760px) {
  .cursor-glow {
    display: none;
  }

  .who-cards {
    grid-template-columns: 1fr;
  }

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
    border-radius: 24px;
    padding: 14px 12px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 68px;
    height: 68px;
  }

  .brand strong {
    max-width: 220px;
    font-size: 1.65rem;
    white-space: normal;
  }

  .brand small {
    font-size: 0.9rem;
  }

  .site-header.scrolled .brand-logo {
    width: 52px;
    height: 52px;
  }

  .site-header.scrolled .brand strong {
    font-size: 1.25rem;
  }

  .site-header.scrolled .brand small {
    font-size: 0.78rem;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 76px;
    left: 12px;
    right: 12px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(251, 250, 246, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .site-nav a {
    padding: 14px 16px;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    padding: 14px 16px;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin: 0 8px 8px;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: grid;
    transform: none;
  }

  .hero {
    display: block;
    padding: 132px 18px 36px;
  }

  .peb-hero {
    min-height: auto;
    padding: 132px 18px 54px;
  }

  h1 {
    font-size: clamp(2.72rem, 16vw, 4.6rem);
  }

  .hero-actions .btn,
  .assist-band .btn {
    width: 100%;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    margin-top: 34px;
  }

  .quick-actions {
    margin-top: 0;
    padding: 18px;
  }

  .peb-trust {
    width: calc(100% - 36px);
    margin-top: 18px;
  }

  .peb-trust-grid,
  .peb-mini-grid,
  .benefit-grid,
  .sector-grid {
    grid-template-columns: 1fr;
  }

  .peb-benefits {
    padding: 74px 18px;
  }

  .section {
    padding: 74px 18px;
  }

  .feature-grid,
  .plan-details {
    grid-template-columns: 1fr;
  }

  .expert-card img,
  .service-card img,
  .peb-intro-image,
  .peb-system-card img {
    height: 240px;
  }

  .gallery-section {
    min-height: 620px;
  }

  .circular-gallery {
    height: 430px;
    perspective: 1200px;
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }

  .circular-gallery-card {
    --gallery-radius: 310px;
    width: 190px;
    height: 260px;
    margin-left: -95px;
    margin-top: -130px;
  }

  .plans .section-heading,
  .plan-controls {
    padding-left: 18px;
    padding-right: 18px;
  }

  .workflow {
    gap: 30px;
  }

  .step {
    grid-template-columns: 54px 1fr;
    padding: 18px;
  }

  .assist-band {
    width: calc(100% - 36px);
    display: grid;
    padding: 28px;
  }

  .footer {
    padding: 56px 18px;
  }

  .enquiry-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .enquiry-form {
    padding: 24px;
  }
}

/* ── Industry Carousel Styles ── */
.industry-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  padding: 30px 0;
}

.industry-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: industryScroll 40s linear infinite;
}

.industry-track:hover {
  animation-play-state: paused;
}

.industry-card {
  width: 320px;
  height: 420px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(14, 14, 14, 0.85) 90%);
  z-index: 1;
  transition: opacity 0.3s;
}

.industry-card:hover {
  transform: scale(1.03) translateY(-10px);
  border-color: rgba(220, 38, 38, 0.6);
}

.industry-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 24px;
  z-index: 2;
}

.industry-card-overlay h4 {
  font-family: "Bebas Neue", "Arial Narrow", sans-serif;
  font-size: 1.9rem;
  color: #ffffff;
  margin: 0;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@keyframes industryScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

