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

:root {
  --purple: #4A2878;
  --purple-deep: #321B56;
  --purple-mid: #5E3490;
  --purple-light: #7B4DB5;
  --purple-pale: #F0EAF9;
  --gold: #F5B800;
  --gold-light: #FFD84D;
  --gold-dark: #C99200;
  --gold-pale: #FFF8E0;
  --white: #FFFFFF;
  --cream: #FAF7FF;
  --gray: #6B7280;
  --gray-light: #F5F3FA;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Plus Jakarta Sans', sans-serif;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--sans);
  color: #1A0E2E;
  background: var(--white);
  overflow-x: hidden
}

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

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

/* ─── CUSTOM CURSOR ─── */
.cursor {
  position: fixed;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width .25s, height .25s, opacity .25s;
  mix-blend-mode: multiply
}

.cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--purple-light);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: all .12s var(--ease)
}

/* ─── LOADER ─── */
.hide-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity .6s ease,
    visibility .6s ease;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg,
      #2f184b,
      #4a2878,
      #1d1033);

  transition:
    opacity .6s ease,
    visibility .6s ease;
}

.loader-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Logo + Icon Row */
.loader-brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Rotating Icon */
.loader-icon {
  width: 82px;
  height: 82px;
  object-fit: contain;

  animation: loaderSpin 4s linear infinite;

  filter:
    drop-shadow(0 0 10px rgba(245, 184, 0, .45)) drop-shadow(0 0 20px rgba(245, 184, 0, .22));
}

/* Main Logo */
.loader-main-logo {
  width: 220px;
  height: auto;
  object-fit: contain;
}

/* Loader Bar */
.loader-bar {
  width: 180px;
  height: 4px;

  margin-top: 26px;

  border-radius: 999px;
  overflow: hidden;

  background: rgba(255, 255, 255, .12);
}

.loader-fill {
  width: 0%;
  height: 100%;

  border-radius: 999px;

  background: linear-gradient(90deg,
      #f5b800,
      #ffd95a);

  animation: loaderFill 2.2s ease forwards;
}

/* Animations */
@keyframes loaderSpin {
  from {
    transform: rotate(100deg);
  }

  to {
    transform: rotate(300deg);
  }
}

@keyframes loaderFill {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

/* Responsive */
@media (max-width:768px) {

  .loader-brand {
    gap: 10px;
  }

  .loader-icon {
    width: 60px;
    height: 60px;
  }

  .loader-main-logo {
    width: 170px;
  }

  .loader-bar {
    width: 140px;
    margin-top: 22px;
  }
}

/* ─── PARTICLES CANVAS ─── */
#particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .35
}

/* ─── NAVBAR ─── */
nav {
  position: fixed;
  top: 12px;
  left: 12px;
  right: 12px;

  height: 74px;
  padding: 0 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  z-index: 1000;

  border-radius: 18px;

  background: rgba(50, 27, 86, .18);
  backdrop-filter: blur(14px);

  transition: .35s ease;
}

nav.scrolled {
  background: rgba(50, 27, 86, .96);
  box-shadow: 0 10px 40px rgba(0, 0, 0, .22);
}

/* LOGO */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 1002;
}

.nav-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  animation: navIconSpin 8s linear infinite;
}

.logo-image {
  height: 58px;
  width: auto;
  object-fit: contain;
}

@keyframes navIconSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  position: relative;

  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, .78);

  transition: .3s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;

  width: 0;
  height: 1.5px;

  background: var(--gold);

  transition: .3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* CTA */
.nav-cta {
  position: relative;

  height: 42px;
  padding: 0 48px 0 22px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;

  background: linear-gradient(135deg,
      var(--gold),
      var(--gold-light));

  color: var(--purple-deep);

  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;

  overflow: hidden;

  transition: .35s ease;
}

.nav-cta::after {
  content: "➜";

  position: absolute;
  right: 4px;
  top: 4px;

  width: 34px;
  height: 34px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, .28);

  font-size: 11px;
}

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

/* HAMBURGER */
.hamburger {
  display: none;

  flex-direction: column;
  justify-content: center;
  gap: 5px;

  cursor: pointer;

  z-index: 1002;
}

.hamburger span {
  width: 24px;
  height: 2px;

  background: #fff;

  border-radius: 10px;

  transition: .3s ease;
}

/* ACTIVE ANIMATION */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


.nav-icon:hover {
  transform: scale(1.08);
}

/* Main Logo */
.logo-image {
  width: 170px;
  height: auto;
  object-fit: contain;

  filter:
    drop-shadow(0 0 8px rgba(245, 184, 0, .12));
}

/* Rotation */
@keyframes navIconSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Responsive */
@media (max-width:768px) {

  .nav-logo {
    gap: 8px;
  }

  .nav-icon {
    width: 42px;
    height: 42px;
  }

  .logo-image {
    width: 135px;
  }
}

@media (max-width:520px) {

  .nav-icon {
    width: 36px;
    height: 36px;
  }

  .logo-image {
    width: 115px;
  }
}

.logo-image {
  height: 65px;
  width: auto;
  object-fit: cover;
  padding: 3px;
  margin-top: 6px;

  animation: logoFloat 4s ease-in-out infinite;
  transition: transform .35s ease, box-shadow .35s ease;
}

@keyframes logoFloat {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-4px);
  }
}

.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 44px;
  padding: 0 50px 0 50px;

  background: linear-gradient(135deg,
      var(--gold),
      var(--gold-light));

  color: var(--purple-deep);
  text-decoration: none;
  text-transform: uppercase;

  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;

  border-radius: 999px;
  overflow: hidden;

  transition:
    transform .45s cubic-bezier(.22, 1, .36, 1),
    box-shadow .45s cubic-bezier(.22, 1, .36, 1);

  box-shadow:
    0 5px 14px rgba(245, 184, 0, .16),
    0 0 14px rgba(245, 184, 0, .1);
}

.nav-cta span {
  position: relative;
  z-index: 2;

  transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}

.nav-cta::after {
  content: "➜";

  position: absolute;
  top: 3px;
  right: 3px;

  width: 38px;
  height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(255, 255, 255, .3);

  font-size: 13px;
  font-weight: 700;

  transition:
    right .55s cubic-bezier(.22, 1, .36, 1),
    transform .55s cubic-bezier(.22, 1, .36, 1),
    background .35s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);

  box-shadow:
    0 10px 22px rgba(245, 184, 0, .22),
    0 0 18px rgba(245, 184, 0, .14);
}

.nav-cta:hover::after {
  right: calc(100% - 41px);

  transform: rotate(-45deg);

  background: rgba(255, 255, 255, .42);
}

.nav-cta:hover span {
  transform: translateX(8px);
}

nav {
  top: 15px;
  left: 16px;
  right: 16px;

  border-radius: 18px;
}

.nav-links-mobile {
  display: none;
}

/* Responsive */

@media (max-width: 992px) {

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    z-index: 9999;
  }

  .nav-links {
    position: fixed;
    top: 86px;
    left: 12px;
    right: 12px;

    display: flex;
    /* keep flex */
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;

    background: rgba(50, 27, 86, 0.98);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    z-index: 9998;

    /* Hidden state */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.35s ease;
  }

  .nav-links.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    width: 100%;
    font-size: 13px;
    padding-bottom: 8px;
  }

  .nav-cta {
    display: none;
  }

  .nav-links-desktop {
    display: none;
  }

  /* Mobile dropdown — hidden by default */
  .nav-links-mobile {
    position: fixed;
    top: 86px;
    left: 12px;
    right: 12px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;

    background: rgba(50, 27, 86, 0.98);
    backdrop-filter: blur(14px);
    border-radius: 18px;
    z-index: 9998;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all 0.35s ease;
  }

  .nav-links-mobile.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

/* SMALL DEVICES */

@media (max-width: 600px) {

  nav {
    height: 64px;
    padding: 0 14px;
  }

  .nav-links {
    top: 76px;
    left: 8px;
    right: 8px;
    padding: 20px 18px;
  }

  .nav-icon {
    width: 34px;
    height: 34px;
  }

  .logo-image {
    height: 38px;
    width: auto;
  }

  .hamburger span {
    width: 20px;
  }
}

/* EXTRA SMALL */

@media (max-width: 380px) {

  .logo-image {
    height: 32px;
  }

  .nav-icon {
    width: 28px;
    height: 28px;
  }

  .hamburger span {
    width: 18px;
  }
}

/* ─── HERO ─── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;

  padding: 110px 0 70px;

  background: linear-gradient(135deg,
      var(--purple-deep) 0%,
      var(--purple) 50%,
      var(--purple-mid) 100%);
       /* min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
    padding:110px 0 70px; */
}
/* Background slider layer */
/* 
.hero-slider{

    position:absolute;
    inset:0;
    z-index:-2;

    background-size:cover;
    background-position:center;

    animation:fadeSlider 18s infinite;
     /* Make image lighter */
    /*filter:brightness(1.25);
} */
/* Dark overlay for text readability */

.hero::after{
    content:"";

    position:absolute;
    inset:0;

    background:
    linear-gradient(
    rgba(21,16,45,.85),
    rgba(38,26,75,.72)
    );

    z-index:-1;
}


/* Image changing animation */

/* @keyframes fadeSlider{

    0%,25%{
        background-image:url("./pharma-lab.jpg");
    }

    26%,50%{
        background-image:url("./quality-team.jpg");
    }

    51%,75%{
        background-image:url("./health-tech.jpg");
    }

    76%,100%{
        background-image:url("./global-health.jpg");
    }

} */

.hero-container {
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 50px;
  align-items: center;

  padding: 0 6%;

  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 700px;

  padding-top: 0;
  /* remove extra top spacing */
}

.hero-bg-orb1 {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 184, 0, .18) 0%, transparent 70%);
  animation: orbFloat 7s ease-in-out infinite;
}

.hero-bg-orb2 {
  position: absolute;
  bottom: -30%;
  left: -15%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 77, 181, .4) 0%, transparent 70%);
  animation: orbFloat 9s ease-in-out infinite reverse;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  /* background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px); */
  background-size: 60px 60px;
  animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
  to {
    background-position: 60px 60px
  }
}

@keyframes orbFloat {

  0%,
  100% {
    transform: translateY(0) scale(1)
  }

  50% {
    transform: translateY(-40px) scale(1.08)
  }
}


.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 30px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .7s .3s ease forwards;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease-in-out infinite
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(245, 184, 0, .6)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(245, 184, 0, 0)
  }
}

.hero h1 {
  /* font-family: var(--serif); */
  font-family:var(--sans);
  font-size: clamp(34px, 4.8vw, 64px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.04;
  margin-bottom: 28px;
  letter-spacing: -.01em;
  opacity: 0;
  animation: fadeUp .8s .5s ease forwards;
}

.hero h1 em {
  color: var(--gold);
  font-style: italic
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, .65);
  line-height: 1.85;
  max-width: 500px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fadeUp .8s .7s ease forwards;
   text-align: justify;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .9s ease forwards;
}

.btn-gold {
  padding: 17px 38px;
  background: var(--gold);
  color: var(--purple-deep);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .3) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .5s ease;
}

.btn-gold:hover::before {
  transform: translateX(100%)
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(245, 184, 0, .45)
}

.btn-ghost {
  padding: 16px 38px;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, .3);
  cursor: pointer;
  border-radius: 2px;
  display: inline-block;
  transition: all .3s var(--ease);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px)
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(32px)
  }

  100% {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }

  100% {
    opacity: 1
  }
}


.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card-main {
  width: 100%;
  max-width: 480px;

  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .1);

  backdrop-filter: blur(18px);

  padding: 38px;
  border-radius: 30px;

  box-shadow:
    0 20px 60px rgba(0, 0, 0, .25),
    0 0 60px rgba(245, 184, 0, .08);
}

.hero-card-tag {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;

  background: rgba(245, 184, 0, .12);
  color: var(--gold-light);

  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;

  margin-bottom: 24px;
}

.hero-card-main ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-card-main li {
  position: relative;
  padding-left: 28px;

  color: rgba(255, 255, 255, .88);
  line-height: 1.6;
  font-size: 15px;
}

.hero-card-main li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;

  color: var(--gold-light);
  font-weight: 700;
}

.hero-floating-card {
  position: absolute;
  bottom: -50px;
  right: -20px;

  background: white;
  color: var(--purple-deep);

  padding: 18px 22px;
  border-radius: 18px;

  font-size: 14px;
  font-weight: 600;

  display: flex;
  align-items: center;
  gap: 12px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, .18);

  animation: floatCard 4s ease-in-out infinite;
}

.float-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;

  background: var(--gold);

  display: flex;
  align-items: center;
  justify-content: center;

  font-weight: 700;
}

@keyframes floatCard {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* ───────────────── RESPONSIVE HERO ───────────────── */

@media (max-width: 1200px) {
  .hero {
    padding: 100px 0 70px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero h1 {
    font-size: clamp(34px, 4.5vw, 58px);
  }

  .hero-sub {
    max-width: 100%;
  }

  .hero-card-main {
    max-width: 440px;
  }
}

@media (max-width: 992px) {
  .hero {
    min-height: auto;
    padding-top: 70px;
    /* extra bottom for floating card */
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-content {
    text-align: center;
    margin: auto;
  }

  .hero-badge {
    margin-top: 16px;
    margin-bottom: 20px;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    width: 100%;
    padding-bottom: 70px;
    /* space for floating card */
  }

  .hero-card-main {
    max-width: 620px;
    margin: 0 auto;
  }

  .hero-floating-card {
    position: absolute;
    bottom: 0;
    right: 20px;
    left: auto;
  }

  .hero-badge {
    display: inline-flex;
    margin-inline: auto;
    font-size: 10px;
    letter-spacing: .1em;
    padding: 10px 14px;
    max-width: 90%;
    text-align: center;
  }
}


@media (max-width: 768px) {
  .hero {
    padding: 80px 0 110px;
  }

  .hero-container {
    gap: 35px;
    padding: 0 5%;
  }

  .hero-badge {
    margin-top: 20px;
    margin-bottom: 16px;
  }

  .hero-card-main {
    max-width: 100%;
    padding: 26px 20px;
  }

  .hero-card-tag {
    font-size: 10px;
    padding: 7px 12px;
  }

  .hero-visual {
    padding-bottom: 70px;
  }

  /* Floating card centered on tablet */
  .hero-floating-card {
    bottom: 0;
    right: 0;
    left: 0;
    width: fit-content;
    margin: 0 auto;
    font-size: 13px;
    padding: 14px 20px;
  }

  .float-icon {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 70px;
    /* reduce top padding */
  }

  .hero-badge {
    margin-top: 18px;
    margin-bottom: 14px;
  }

  .hero-container {
    gap: 28px;
    padding: 0 4%;
  }

  .hero-card-main {
    border-radius: 20px;
    padding: 20px 16px;
  }

  .hero-card-main li {
    font-size: 13px;
    line-height: 1.7;
  }

  .hero-visual {
    padding-bottom: 75px;
  }

  /* Floating card fully centered, no overflow */
  .hero-floating-card {
    bottom: 0;
    right: 0;
    left: 0;
    width: 90%;
    margin: 0 auto;
    justify-content: center;
    text-align: center;
    border-radius: 16px;
    font-size: 12px;
    padding: 13px 16px;
    animation: floatCard 4s ease-in-out infinite;
  }
}

@media (max-width: 380px) {
  .hero-container {
    padding: 0 3.5%;
  }

  .hero-badge {
    font-size: 8px;
    padding: 8px 10px;
    margin-top: 14px;
  }

  .hero-card-main {
    padding: 18px 14px;
  }

  .hero-floating-card {
    font-size: 11px;
    padding: 12px 14px;
    gap: 8px;
  }

  .float-icon {
    width: 26px;
    height: 26px;
    font-size: 11px;
    min-width: 26px;
  }
}

/* ─── TICKER ─── */
.ticker {
  background: var(--gold);
  padding: 16px 0;
  overflow: hidden;
  position: relative;
  z-index: 3
}

.ticker-inner {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 25s linear infinite
}

.ticker-inner span {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--purple-deep);
  padding: 0 36px;
  letter-spacing: .04em
}

.ticker-inner .sep {
  color: var(--gold-dark);
  opacity: .5
}

@keyframes ticker {
  to {
    transform: translateX(-50%)
  }
}

/* ─── SECTION BASE ─── */
section {
  padding: 110px 6%;
  position: relative
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 700;
  color: var(--purple-deep);
  line-height: 1.1;
  letter-spacing: -.01em;
}

.section-title em {
  color: var(--purple-mid);
  font-style: italic
}

.section-sub {
  font-size: 15px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.85;
  margin-top: 18px;
  max-width: 520px;
   text-align: justify;
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .75s var(--ease), transform .75s var(--ease)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
   /* text-align: justify; */
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity .75s var(--ease), transform .75s var(--ease)
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0)
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity .75s var(--ease), transform .75s var(--ease)
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0)
}

.reveal-scale {
  opacity: 0;
  transform: scale(.9);
  transition: opacity .65s var(--ease), transform .65s var(--ease)
}

.reveal-scale.visible {
  opacity: 1;
  transform: scale(1)
}


/* ─── ABOUT ─── */
.about {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
  overflow: hidden;
  padding: 120px 6%;
}

.about-img-wrap {
  position: relative;
  height: 760px;
  overflow: hidden;
  border-radius: 32px;
  box-shadow:
    0 30px 70px rgba(0, 0, 0, .18),
    0 10px 25px rgba(74, 40, 120, .12);
  transform: translateZ(0);
}

.about-parallax-img {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 130%;
  object-fit: cover;

  transform: translate3d(0, 0, 0) scale(1.08);

  filter: saturate(1.08) contrast(1.03) brightness(.96);

  will-change: transform;
  transition: transform .08s linear;
}

.about-img-wrap:hover .about-parallax-img {
  transform: translate3d(0, -8px, 0) scale(1.1);
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;

  background:
    linear-gradient(180deg,
      rgba(20, 10, 35, .08) 0%,
      rgba(35, 18, 58, .18) 40%,
      rgba(74, 40, 120, .45) 100%);
}

.about-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(245, 184, 0, .14);
  filter: blur(80px);
  top: -60px;
  right: -60px;
  z-index: 1;
}

.about-badge {
  position: absolute;
  bottom: 28px;
  right: 28px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, var(--gold), var(--gold-light));

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;

  z-index: 2;

  backdrop-filter: blur(8px);

  box-shadow:
    0 15px 40px rgba(245, 184, 0, .35),
    inset 0 1px 6px rgba(255, 255, 255, .35);

  animation: badgeFloat 4s ease-in-out infinite;
}

@keyframes badgeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.about-badge .big {
  font-family: var(--serif);
  font-size: 56px;
  font-weight: 700;
  color: var(--purple-deep);
  line-height: 1;
}

.about-badge .sm {
  font-size: 11px;
  font-weight: 600;
  color: var(--purple);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-top: 6px;
  line-height: 1.5;
}

.about-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 24px 0;
  border-radius: 2px
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s ease, transform .5s ease;
}

.check-list li.visible {
  opacity: 1;
  transform: translateX(0)
}

.check-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--purple-deep);
  margin-top: 1px;
  box-shadow: 0 4px 12px rgba(245, 184, 0, .35);
}

/* ─── ABOUT RESPONSIVE ─── */

@media (max-width: 1200px) {
  .about {
    gap: 60px;
    padding: 100px 5%;
  }

  .about-img-wrap {
    height: 640px;
  }

  .about-badge {
    width: 160px;
    height: 160px;
    bottom: 22px;
    right: 22px;
  }

  .about-badge .big {
    font-size: 46px;
  }
}

@media (max-width: 992px) {
  .about {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 90px 6%;
  }

  .about-img-wrap {
    height: 420px;
    border-radius: 24px;
    max-width: 680px;
    margin: 0 auto;
    width: 100%;
  }

  .about-badge {
    width: 150px;
    height: 150px;
    bottom: 20px;
    right: 20px;
  }

  .about-badge .big {
    font-size: 42px;
  }

  .about-badge .sm {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 70px 5%;
    gap: 40px;
  }

  .about-img-wrap {
    height: 340px;
    border-radius: 20px;
  }

  .about-badge {
    width: 130px;
    height: 130px;
    bottom: 16px;
    right: 16px;
  }

  .about-badge .big {
    font-size: 36px;
  }

  .about-badge .sm {
    font-size: 9px;
    letter-spacing: .08em;
    margin-top: 4px;
  }

  .about-line {
    margin: 18px 0;
  }

  .check-list {
    gap: 12px;
  }

  .check-list li {
    font-size: 13.5px;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 60px 4%;
    gap: 32px;
  }

  .about-img-wrap {
    height: 280px;
    border-radius: 18px;
  }

  .about-badge {
    width: 110px;
    height: 110px;
    bottom: 14px;
    right: 14px;
    box-shadow:
      0 10px 28px rgba(245, 184, 0, .3),
      inset 0 1px 4px rgba(255, 255, 255, .3);
  }

  .about-badge .big {
    font-size: 30px;
  }

  .about-badge .sm {
    font-size: 8px;
    letter-spacing: .06em;
    margin-top: 3px;
  }

  .about-line {
    margin: 14px 0;
    width: 48px;
  }

  .check-list {
    gap: 10px;
    margin-top: 18px;
  }

  .check-list li {
    font-size: 13px;
    gap: 10px;
  }

  .check-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    font-size: 9px;
  }
}

@media (max-width: 380px) {
  .about {
    padding: 50px 4%;
  }

  .about-img-wrap {
    height: 240px;
    border-radius: 16px;
  }

  .about-badge {
    width: 95px;
    height: 95px;
    bottom: 12px;
    right: 12px;
  }

  .about-badge .big {
    font-size: 26px;
  }

  .about-badge .sm {
    font-size: 7.5px;
    margin-top: 2px;
  }
}

/* ─── SERVICES ─── */

.services{
  background:var(--white);
}

.services-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  margin-bottom:54px;
  flex-wrap:wrap;
  gap:24px;
}

/* GRID */
.services-grid{
  display:grid;

  /* SMALLER CARDS + MORE ITEMS */
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

  gap:18px;
}

/* CARD */
.service-card{
  background:var(--gray-light);

  padding:30px 24px;

  border-radius:22px;

  position:relative;
  overflow:hidden;

  cursor:pointer;

  min-height:320px;

  transition:
    background .4s var(--ease),
    transform .3s var(--ease),
    box-shadow .35s ease;
}

.service-card::before{
  content:'';
  position:absolute;
  inset:0;

  background:
    linear-gradient(
      135deg,
      var(--purple-deep),
      var(--purple-mid)
    );

  opacity:0;

  transition:opacity .4s var(--ease);
}

.service-card:hover::before{
  opacity:1;
}

.service-card:hover{
  transform:translateY(-6px);

  box-shadow:
    0 18px 40px rgba(0,0,0,.12);
}

/* BOTTOM LINE */
.service-card::after{
  content:'';

  position:absolute;
  left:0;
  right:0;
  bottom:0;

  height:3px;

  background:
    linear-gradient(
      90deg,
      var(--gold),
      var(--gold-light)
    );

  transform:scaleX(0);
  transform-origin:left;

  transition:transform .4s var(--ease);
}

.service-card:hover::after{
  transform:scaleX(1);
}

/* NUMBER */
.service-num{
  font-family:var(--serif);

  font-size:56px;
  font-weight:700;

  color:#321B56;

  line-height:1;

  margin-bottom:12px;

  position:relative;
  z-index:1;

  transition:color .4s ease;
}

.service-card:hover .service-num{
  color:#F5B800;
}

/* ICON */
.service-icon{
  width:50px;
  height:50px;

  border-radius:12px;

  background:rgba(245,184,0,.12);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:22px;

  margin-bottom:20px;

  position:relative;
  z-index:1;

  transition:.35s ease;
}

.service-card:hover .service-icon{
  background:rgba(245,184,0,.2);

  box-shadow:
    0 8px 20px rgba(245,184,0,.22);
}

/* TITLE */
.service-title{
  font-family:var(--serif);

  font-size:20px;
  font-weight:600;

  color:var(--purple-deep);

  margin-bottom:12px;

  line-height:1.35;

  position:relative;
  z-index:1;

  transition:color .35s ease;
}

.service-card:hover .service-title{
  color:var(--white);
}

/* DESC */
.service-desc{
  font-size:13px;
  font-weight:300;

  line-height:1.75;

  color:var(--gray);

  position:relative;
  z-index:1;

  transition:color .35s ease;
   text-align: justify;
}

.service-card:hover .service-desc{
  color:rgba(255,255,255,.72);
}

/* LINK */
.service-link{
  display:inline-flex;
  align-items:center;
  gap:8px;

  margin-top:20px;

  font-size:11px;
  font-weight:600;

  letter-spacing:.08em;
  text-transform:uppercase;

  color:var(--gold-dark);

  position:relative;
  z-index:1;

  transition:.3s ease;
}

.service-card:hover .service-link{
  color:var(--gold);
}

.service-link-arrow{
  width:26px;
  height:26px;

  border-radius:50%;

  border:1px solid var(--gold-dark);

  display:flex;
  align-items:center;
  justify-content:center;

  font-size:13px;

  transition:.35s ease;
}

.service-card:hover .service-link-arrow{
  background:var(--gold);

  border-color:var(--gold);

  color:var(--purple-deep);

  transform:rotate(45deg);
}

/* TABLET */
@media(max-width:992px){

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

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

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

  .service-card{
    min-height:auto;
    padding:26px 20px;
  }

  .service-title{
    font-size:18px;
  }

  .service-num{
    font-size:46px;
  }
}

/* ─── NUMBERS ─── */
.numbers {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple) 100%);
  position: relative;
  overflow: hidden;
}

.numbers-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 184, 0, .08) 0%, transparent 70%);
  animation: orbFloat 10s ease-in-out infinite;
}

.numbers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1
}

.num-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px
}

.num-box {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(245, 184, 0, .12);
  padding: 44px 32px;
  transition: background .35s, border-color .35s, transform .35s;
  cursor: default;
}

.num-box:hover {
  background: rgba(245, 184, 0, .08);
  border-color: rgba(245, 184, 0, .3);
  transform: translateY(-4px)
}

.num-box .big {
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: flex;
  align-items: flex-start;
  gap: 2px;
}

.num-box .suf {
  font-size: 32px;
  margin-top: 4px
}

.num-box p {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255, 255, 255, .45);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 12px;
  line-height: 1.6
}

.numbers-text .section-title {
  color: var(--white)
}

.numbers-text .section-sub {
  color: rgba(255, 255, 255, .5)
}

.feat-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px
}

.feat-item {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.feat-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 8px;
  border: 1px solid rgba(245, 184, 0, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  transition: all .35s;
}

.feat-item:hover .feat-icon {
  background: rgba(245, 184, 0, .15);
  border-color: rgba(245, 184, 0, .5)
}

.feat-item h4 {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px
}

.feat-item p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, .4);
  line-height: 1.65
}

/* ─── NUMBERS RESPONSIVE ─── */

@media (max-width: 1200px) {
  .numbers-inner {
    gap: 60px;
    padding: 100px 6%;
  }

  .num-box {
    padding: 36px 24px;
  }

  .num-box .big {
    font-size: 50px;
  }

  .num-box .suf {
    font-size: 28px;
  }
}

@media (max-width: 992px) {
  .numbers-inner {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 90px 6%;
  }

  .num-grid {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }

  .num-box {
    padding: 32px 22px;
  }

  .num-box .big {
    font-size: 46px;
  }

  .num-box .suf {
    font-size: 26px;
  }

  .numbers-text {
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .numbers-inner {
    padding: 70px 5%;
    gap: 40px;
  }

  .num-box {
    padding: 28px 18px;
  }

  .num-box .big {
    font-size: 40px;
  }

  .num-box .suf {
    font-size: 22px;
    margin-top: 3px;
  }

  .num-box p {
    font-size: 11px;
    margin-top: 10px;
  }

  .feat-list {
    margin-top: 28px;
    gap: 14px;
  }

  .feat-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    font-size: 18px;
  }

  .feat-item h4 {
    font-size: 13.5px;
  }

  .feat-item p {
    font-size: 12.5px;
  }
}

@media (max-width: 540px) {
  .numbers-inner {
    padding: 60px 4%;
    gap: 36px;
  }

  .num-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
  }

  .num-box {
    padding: 24px 14px;
  }

  .num-box .big {
    font-size: 34px;
  }

  .num-box .suf {
    font-size: 18px;
    margin-top: 2px;
  }

  .num-box p {
    font-size: 10px;
    letter-spacing: .04em;
    margin-top: 8px;
  }

  .feat-list {
    gap: 12px;
    margin-top: 24px;
  }

  .feat-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    font-size: 16px;
    border-radius: 6px;
  }

  .feat-item {
    gap: 12px;
  }

  .feat-item h4 {
    font-size: 13px;
  }

  .feat-item p {
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .numbers-inner {
    padding: 50px 4%;
    gap: 30px;
  }

  .num-box {
    padding: 20px 12px;
  }

  .num-box .big {
    font-size: 30px;
  }

  .num-box .suf {
    font-size: 16px;
  }

  .num-box p {
    font-size: 9.5px;
    margin-top: 6px;
  }

  .feat-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 14px;
  }

  .feat-item gap {
    gap: 10px;
  }
}

/* ─── PARALLAX IMAGE SECTION ─── */
.parallax-section {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 0;
}

.parallax-bg {
  position: absolute;
  inset: -20%;
  background: url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&q=80') center/cover no-repeat;
  will-change: transform;
  filter: saturate(1.1);
}

.parallax-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(50, 27, 86, .9) 40%,
      rgba(74, 40, 120, .6));
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 6%;
  width: 100%;
  max-width: 1100px;
}

.parallax-content h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 68px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.parallax-content h2 em {
  color: var(--gold);
  font-style: italic;
   text-align: justify;
}

.parallax-content p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 36px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
}

/* ─── TABLET ─── */
@media (max-width:768px) {

  .parallax-section {
    min-height: auto;
    padding: 80px 0;
  }

  .parallax-content {
    padding: 0 24px;
  }

  .parallax-content h2 {
    font-size: clamp(28px, 7vw, 44px);
    line-height: 1.2;
    margin-bottom: 18px;
  }

  .parallax-content p {
    font-size: 15px;
    line-height: 1.8;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .parallax-content .hero-actions {
    gap: 14px;
  }
}

/* ─── MOBILE ─── */
@media (max-width:480px) {

  .parallax-section {
    padding: 70px 0;
  }

  .parallax-overlay {
    background: linear-gradient(to bottom,
        rgba(50, 27, 86, .92),
        rgba(74, 40, 120, .75));
  }

  .parallax-content {
    padding: 0 18px;
  }

  .parallax-content h2 {
    font-size: 26px;
    line-height: 1.25;
  }

  .parallax-content p {
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .parallax-content .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .parallax-content .btn-gold,
  .parallax-content .btn-ghost {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    text-align: center;
  }
}

/* ─── TEAM ─── */
.team {
  background: var(--cream)
}

.team-head {
  text-align: center;
  margin-bottom: 64px
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.team-card {
  background: var(--white);
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  cursor: pointer;
  border-radius: 4px;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 64px rgba(74, 40, 120, .18)
}

.team-card:hover .team-photo {
  transform: scale(1.06)
}

.team-card:hover .team-overlay {
  opacity: 1
}

.team-photo-wrap {
  position: relative;
  overflow: hidden
}

.team-photo {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  filter: grayscale(15%);
  transition: transform .6s var(--ease);
}

.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(50, 27, 86, .9) 40%, rgba(74, 40, 120, .4));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 24px;
  opacity: 0;
  transition: opacity .4s var(--ease);
}

.team-socials {
  display: flex;
  gap: 10px;
  margin-bottom: 12px
}

.team-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(245, 184, 0, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  transition: all .3s;
}

.team-social:hover {
  background: var(--gold);
  color: var(--purple-deep);
  border-color: var(--gold)
}

.team-quote {
  font-size: 12px;
  color: rgba(255, 255, 255, .65);
  line-height: 1.6;
  font-style: italic
}

.team-info {
  padding: 20px 20px 24px
}

.team-name {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 4px
}

.team-role {
  font-size: 11px;
  font-weight: 500;
  color: var(--gold-dark);
  letter-spacing: .1em;
  text-transform: uppercase
}

/* ─── PROCESS ─── */
.process {
  background: var(--white);
  overflow: hidden
}

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

.process-steps {
  display: flex;
  flex-direction: column
}

.process-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(74, 40, 120, .08);
  cursor: pointer;
  transition: padding .35s var(--ease);
}

.process-step:last-child {
  border-bottom: none
}

.process-step.active {
  padding-left: 16px;
  background: linear-gradient(90deg, rgba(245, 184, 0, .06), transparent)
}

.step-num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 700;
  color: rgba(74, 40, 120, .1);
  line-height: 1;
  min-width: 56px;
  transition: color .35s, transform .35s;
}

.process-step:hover .step-num,
.process-step.active .step-num {
  color: var(--gold);
  transform: scale(1.1)
}

.step-body h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--purple-deep);
  margin-bottom: 8px;
  transition: color .35s
}

.process-step.active .step-body h4 {
  color: var(--purple-mid)
}

.step-body p {
  font-size: 14px;
  font-weight: 300;
  color: var(--gray);
  line-height: 1.75
}

.process-visual {
  position: sticky;
  top: 120px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  padding: 56px 48px;
  min-height: 440px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
}

.process-visual::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 184, 0, .12), transparent 60%);
}

.process-vis-num {
  font-family: var(--serif);
  font-size: 120px;
  font-weight: 700;
  color: rgba(255, 255, 255, .05);
  line-height: 1;
  position: absolute;
  top: 20px;
  right: 30px;
}

.process-vis-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(245, 184, 0, .15);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  border-radius: 2px;
  margin-bottom: 24px;
}

.process-vis-title {
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
   text-align: justify;
}

.process-vis-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, .55);
  line-height: 1.8;
  max-width: 340px
}

.process-vis-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, .1);
  border-radius: 2px;
  margin-top: 40px;
  overflow: hidden;
}

.process-vis-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  transition: width .6s var(--ease);
}

/* ─── PROCESS RESPONSIVE ─── */

@media (max-width: 1200px) {
  .process-inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }

  .process-visual {
    padding: 44px 36px;
    min-height: 400px;
    top: 100px;
  }

  .process-vis-num {
    font-size: 100px;
  }

  .process-vis-title {
    font-size: 30px;
  }

  .step-num {
    font-size: 36px;
    min-width: 48px;
  }

  .step-body h4 {
    font-size: 18px;
  }
}

@media (max-width: 992px) {
  .process-inner {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Visual moves below the steps */
  .process-visual {
    position: static;
    margin-top: 40px;
    padding: 40px 36px;
    min-height: 320px;
    border-radius: 6px;
  }

  .process-vis-num {
    font-size: 90px;
    top: 16px;
    right: 24px;
  }

  .process-vis-title {
    font-size: 28px;
  }

  .process-vis-desc {
    max-width: 100%;
  }

  .process-vis-bar {
    margin-top: 32px;
  }
}

@media (max-width: 768px) {
  .process-visual {
    padding: 32px 28px;
    min-height: 280px;
    margin-top: 32px;
  }

  .process-vis-num {
    font-size: 76px;
    top: 12px;
    right: 18px;
  }

  .process-vis-tag {
    font-size: 10px;
    padding: 5px 13px;
    margin-bottom: 18px;
  }

  .process-vis-title {
    font-size: 24px;
    margin-bottom: 14px;
  }

  .process-vis-desc {
    font-size: 13.5px;
    line-height: 1.75;
  }

  .process-vis-bar {
    margin-top: 26px;
  }

  .process-step {
    gap: 18px;
    padding: 22px 0;
  }

  .process-step.active {
    padding-left: 12px;
  }

  .step-num {
    font-size: 32px;
    min-width: 42px;
  }

  .step-body h4 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .step-body p {
    font-size: 13.5px;
    line-height: 1.7;
  }
}

@media (max-width: 480px) {
  .process-visual {
    padding: 28px 22px;
    min-height: 250px;
    margin-top: 24px;
    border-radius: 8px;
  }

  .process-vis-num {
    font-size: 60px;
    top: 10px;
    right: 14px;
  }

  .process-vis-tag {
    font-size: 9.5px;
    padding: 5px 11px;
    margin-bottom: 14px;
    letter-spacing: .1em;
  }

  .process-vis-title {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 12px;
  }

  .process-vis-desc {
    font-size: 13px;
    line-height: 1.7;
  }

  .process-vis-bar {
    margin-top: 22px;
  }

  .process-step {
    gap: 14px;
    padding: 18px 0;
  }

  .process-step.active {
    padding-left: 10px;
  }

  .step-num {
    font-size: 28px;
    min-width: 36px;
  }

  .step-body h4 {
    font-size: 15px;
  }

  .step-body p {
    font-size: 13px;
  }
}

@media (max-width: 380px) {
  .process-visual {
    padding: 24px 18px;
    min-height: 230px;
  }

  .process-vis-num {
    font-size: 50px;
    top: 8px;
    right: 12px;
  }

  .process-vis-title {
    font-size: 18px;
  }

  .process-vis-desc {
    font-size: 12.5px;
  }

  .process-step {
    gap: 12px;
    padding: 16px 0;
  }

  .step-num {
    font-size: 24px;
    min-width: 32px;
  }

  .step-body h4 {
    font-size: 14px;
  }

  .step-body p {
    font-size: 12.5px;
  }
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  background: linear-gradient(135deg, var(--purple-deep), var(--purple));
  position: relative;
  overflow: hidden;
}

.test-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: radial-gradient(circle, var(--gold) 1px, transparent 1px);
  background-size: 40px 40px;
}

.test-head {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 1
}

.test-head .section-title {
  color: var(--white)
}

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  position: relative;
  z-index: 1
}

.test-card {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(245, 184, 0, .1);
  padding: 48px 38px;
  transition: all .4s var(--ease);
  position: relative;
  overflow: hidden;
}

.test-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 184, 0, .07), transparent);
  opacity: 0;
  transition: opacity .4s;
}

.test-card:hover::before {
  opacity: 1
}

.test-card:hover {
  border-color: rgba(245, 184, 0, .3);
  transform: translateY(-6px)
}

.test-quote-mark {
  font-family: var(--serif);
  font-size: 80px;
  color: var(--gold);
  line-height: .8;
  margin-bottom: 12px;
  opacity: .7;
}

.test-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px
}

.star {
  color: var(--gold);
  font-size: 14px;
  display: inline-block;
  animation: starPop .3s ease both
}

@keyframes starPop {
  0% {
    transform: scale(0)
  }

  100% {
    transform: scale(1)
  }
}

.test-text {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, .7);
  line-height: 1.85;
  margin-bottom: 32px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 14px
}

.test-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
  color: var(--purple-deep);
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(245, 184, 0, .3);
}

.test-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white)
}

.test-pos {
  font-size: 12px;
  color: rgba(255, 255, 255, .4);
  margin-top: 2px
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: var(--gold);
  padding: 80px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
}

.cta-banner::after {
  content: '';
  position: absolute;
  right: 80px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
}

.cta-banner h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 52px);
  font-weight: 700;
  color: var(--purple-deep);
  max-width: 600px;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.btn-purple {
  padding: 18px 42px;
  background: var(--purple-deep);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  z-index: 1;
  transition: all .35s var(--ease);
  overflow: hidden;
}

.btn-purple::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
  transform: translateX(-100%);
  transition: transform .5s;
}

.btn-purple:hover::before {
  transform: translateX(100%)
}

.btn-purple:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(50, 27, 86, .4)
}

/* ─── CLIENTS ─── */
.clients {
  background: var(--cream);
  padding: 60px 6%
}

.clients-label {
  text-align: center;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(74, 40, 120, .4);
  margin-bottom: 44px
}

.clients-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap
}

.client-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: rgba(74, 40, 120, .2);
  letter-spacing: .04em;
  transition: color .35s var(--ease), transform .35s var(--ease);
  cursor: default;
}

.client-logo:hover {
  color: var(--purple);
  transform: scale(1.06)
}

/* ─── BLOG ─── */
.blog {
  background: var(--white)
}

.blog-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 20px
}

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

.blog-card {
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(74, 40, 120, .12)
}

.blog-thumb {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  background: var(--purple-pale);
  transition: transform .6s var(--ease);
  overflow: hidden;
}

.blog-card:hover .blog-thumb-inner {
  transform: scale(1.06)
}

.blog-thumb-inner {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform .6s var(--ease)
}

.blog-body {
  background: var(--gray-light);
  padding: 28px 28px 32px
}

.blog-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--purple-mid);
  padding: 4px 12px;
  border-radius: 2px;
  margin-bottom: 12px
}

.blog-title {
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 600;
  color: var(--purple-deep);
  line-height: 1.35;
  margin-bottom: 14px;
  transition: color .3s
}

.blog-card:hover .blog-title {
  color: var(--purple-mid)
}

.blog-meta {
  font-size: 12px;
  color: var(--gray);
  display: flex;
  gap: 16px
}

.blog-meta span:first-child::before {
  content: '📅 '
}

.blog-meta span:last-child::before {
  content: '⏱ '
}

/* ─── CONTACT ─── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr
}

.contact-left {
  padding: 110px 60px 110px 6%;
  background: linear-gradient(160deg, var(--purple-deep), var(--purple-mid));
  position: relative;
  overflow: hidden;
}

.contact-left::before {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 184, 0, .1), transparent 60%);
}

.contact-left .section-title {
  color: var(--white)
}

.contact-left .section-sub {
  color: rgba(255, 255, 255, .5)
}

.contact-info {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  z-index: 1
}

.c-item {
  display: flex;
  gap: 18px;
  align-items: flex-start
}

.c-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border: 1px solid rgba(245, 184, 0, .3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--gold);
  transition: all .35s;
}

.c-item:hover .c-icon {
  background: rgba(245, 184, 0, .12);
  border-color: rgba(245, 184, 0, .5);
  transform: scale(1.1)
}

.c-lbl {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 4px
}

.c-val {
  font-size: 14px;
  color: rgba(255, 255, 255, .75);
  line-height: 1.5
}

.contact-right {
  background: var(--cream);
  padding: 110px 6% 110px 60px
}

.contact-right h3 {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 700;
  color: var(--purple-deep);
  margin-bottom: 36px
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px
}

.form-group label {
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(74, 40, 120, .5);
  font-weight: 500
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid rgba(74, 40, 120, .12);
  background: var(--white);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--purple-deep);
  border-radius: 4px;
  outline: none;
  transition: border-color .3s, box-shadow .3s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple-mid);
  box-shadow: 0 0 0 4px rgba(74, 40, 120, .08);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical
}

.form-submit {
  width: 100%;
  padding: 17px;
  background: linear-gradient(135deg, var(--purple-deep), var(--purple-mid));
  color: var(--white);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
  transform: translateX(-100%);
  transition: transform .5s;
}

.form-submit:hover::before {
  transform: translateX(100%)
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(74, 40, 120, .3)
}


/* ─── FOOTER ─── */
footer {
  background: var(--purple-deep);
  padding: 80px 6% 0;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,184,0,.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Logo */
.footer-nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-nav-icon {
  width: 46px; height: 46px;
  object-fit: contain;
  animation: navIconSpin 8s linear infinite;
  filter: drop-shadow(0 0 6px rgba(245,184,0,.4));
  transition: transform .35s ease;
  flex-shrink: 0;
}
.footer-nav-icon:hover { transform: scale(1.08); }

.footer-logo-image {
  height: 52px; width: auto;
  object-fit: contain;
  animation: logoFloat 4s ease-in-out infinite;
}

/* Grid */
.footer-top {
  display: grid;
  grid-template-columns: 1.9fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,.07);
   text-align: justify;
}

/* Brand */
.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: #fff;
  line-height: 1.85;
  max-width: 290px;
  margin-bottom: 24px;
}

.footer-offices {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-office {
  display: flex;
  align-items: center;
  gap: 12px;
}

.office-flag { font-size: 20px; }

.office-city {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  line-height: 1.2;
}

.office-label {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.25);
  margin-top: 2px;
}

/* Socials */
/* Socials */
.footer-socials {
  display: flex;
  gap: 10px;
}

.f-social {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
   color: var(--gold);
  font-size: 12px; font-weight: 600;
  transition: all .3s;
}
.f-social:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245,184,0,.1);
  transform: translateY(-3px);
}

/* Columns */
.footer-col h5 {
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-col ul li a {
  font-size: 13px;
  color: var(--cream);
  transition: color .3s, padding-left .3s;
  display: flex;
  align-items: center;
  gap: 0;
}

.footer-col ul li a::before {
  content: '';
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width .3s, margin-right .3s;
  flex-shrink: 0;
}

.footer-col ul li a:hover {
  color: rgba(255,255,255,.85);
  padding-left: 0;
}

.footer-col ul li a:hover::before {
  width: 14px;
  margin-right: 8px;
}

/* ISO Badge */
.footer-cert {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-cert-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(245,184,0,.08);
  border: 1px solid rgba(245,184,0,.15);
  border-radius: 10px;
}

.cert-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  color: var(--purple-deep);
  flex-shrink: 0;
}

.cert-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  line-height: 1.2;
}

.cert-sub {
  font-size: 10px;
  color: rgba(255,255,255,.3);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Bottom bar */
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: center; /* center horizontally */
  text-align: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(255,255,255,.2);
  margin: 0;
}

.footer-bottom a{
  color: var(--cream);
  text-decoration: none;
}

.footer-bottom a:hover{
  color: var(--gold);
}

/* ─── BACK TO TOP ─── */
.btt {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 400;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer; color: var(--purple-deep);
  box-shadow: 0 8px 24px rgba(245,184,0,.4);
  opacity: 0; transform: translateY(20px);
  transition: all .35s var(--ease);
  border: none;
}
.btt.show { opacity: 1; transform: translateY(0); }
.btt:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(245,184,0,.5); }

/* ─── FOOTER RESPONSIVE ─── */
@media (max-width: 1100px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .footer-brand p { max-width: 100%; }
}

@media (max-width: 768px) {
  footer { padding: 60px 5% 0; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-brand p { max-width: 100%; }

  .footer-offices {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-brand { grid-column: auto; }

  .footer-offices { flex-direction: column; }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-bottom-links { gap: 16px; }
}


/* Dropdown */
/* ===== SERVICES MEGA MENU ===== */

.dropdown{
    position:relative;
}

.dropdown-btn{
    display:flex;
    align-items:center;
    gap:6px;
    color:#fff;
}

/* Main dropdown panel */
.dropdown-content{
    position:absolute;
    top:55px;
    left:50%;
    transform:translateX(-50%) translateY(15px);

    width:900px;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;

    padding:25px;

    background:rgba(16,20,33,.96);

    backdrop-filter:blur(20px);

    border:1px solid rgba(212,175,55,.25);

    border-radius:24px;

    box-shadow:
    0 25px 60px rgba(0,0,0,.35);

    opacity:0;
    visibility:hidden;

    transition:.35s ease;

    z-index:9999;
}

/* Show dropdown */
.dropdown:hover .dropdown-content{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}


/* Individual service cards */

.dropdown-content a{

    display:flex;
    flex-direction:column;

    padding:18px;

    border-radius:16px;

    background:
    linear-gradient(
        135deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
    );

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    text-decoration:none;

    font-size:14px;

    transition:.3s;
}


/* Gold hover */

.dropdown-content a:hover{

    transform:translateY(-6px);

    border-color:#D4AF37;

    background:
    linear-gradient(
      135deg,
      rgba(212,175,55,.15),
      rgba(212,175,55,.03)
    );

    box-shadow:
    0 10px 25px rgba(212,175,55,.25);
}


/* Optional small subtitle */

.dropdown-content a span{
    font-size:12px;
    margin-top:6px;
    opacity:.7;
}


/* small top arrow */

.dropdown-content::before{

    content:"";

    position:absolute;

    top:-10px;
    left:50%;

    transform:translateX(-50%) rotate(45deg);

    width:20px;
    height:20px;

    background:#101421;

    border-left:1px solid rgba(212,175,55,.25);
    border-top:1px solid rgba(212,175,55,.25);
}



/* Mobile */

@media(max-width:992px){

.dropdown-content{

    width:100%;
    left:0;
    transform:none;

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.dropdown-content{
    grid-template-columns:1fr;
}

}

@media(max-width:992px){

    /* hide desktop mega menu */
    .dropdown-content{
        display:none;
    }

    /* mobile service wrapper */
    .mobile-services{
        width:100%;
    }

    .mobile-services-btn{

        display:flex;
        justify-content:space-between;
        align-items:center;

        width:100%;
        padding:16px 20px;

        color:#fff;
        text-decoration:none;

        border-radius:14px;

        background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.04),
            rgba(255,255,255,.02)
        );

        border:1px solid rgba(212,175,55,.18);

        cursor:pointer;
    }


    /* Grid inside mobile */

    .mobile-services-list{

        display:none;

        margin-top:12px;

        padding:14px;

        border-radius:18px;

        background:
        rgba(16,20,33,.96);

        backdrop-filter:blur(20px);

        border:1px solid rgba(212,175,55,.15);

        grid-template-columns:repeat(2,1fr);

        gap:10px;
    }

    .mobile-services-list.active{
        display:grid;
    }

    .mobile-services-list a{

        padding:14px;

        border-radius:12px;

        text-decoration:none;

        color:#fff;

        font-size:13px;

        background:
        linear-gradient(
        135deg,
        rgba(255,255,255,.04),
        rgba(255,255,255,.02)
        );

        border:1px solid rgba(255,255,255,.06);

        transition:.3s;
    }

    .mobile-services-list a:hover{

        border-color:#D4AF37;

        transform:translateY(-3px);

        box-shadow:
        0 8px 18px rgba(212,175,55,.18);

    }

}


/* smaller phones */

@media(max-width:600px){

.mobile-services-list{
    grid-template-columns:1fr;
}

}

.consult-modal{

    position:fixed;
    inset:0;

    display:none;

    align-items:center;
    justify-content:center;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(10px);

    z-index:99999;
}

/* Popup box */

.consult-box{

    width:90%;
    max-width:500px;

    padding:35px;

    border-radius:28px;

    background:
    linear-gradient(
    135deg,
    #321B56,
    #4A2878
    );

    color:#fff;

    position:relative;

    box-shadow:
    0 20px 50px rgba(0,0,0,.4);
}

.consult-box h2{
    margin-bottom:10px;
}

.consult-box p{
    margin-bottom:25px;
    opacity:.8;
}

.consult-box input,
.consult-box textarea{

    width:100%;

    margin-bottom:15px;

    padding:14px 16px;

    border:none;

    border-radius:14px;

    outline:none;
}

.consult-box button{

    width:100%;

    padding:14px;

    border:none;

    border-radius:999px;

    background:linear-gradient(
    135deg,
    #F5B800,
    #FFD84D
    );

    font-weight:700;

    cursor:pointer;
}

.close-modal{

    position:absolute;
    right:20px;
    top:15px;

    font-size:28px;
    cursor:pointer;
}