/* ================= Ready Leasings - Custom Styles ================= */
:root {
  --bg-dark: #0a1f17;
  --bg-darker: #071711;
  --bg-card: #0f2a1f;
  --bg-card-2: #112f22;
  --accent: #2ee8a0;
  --accent-soft: rgba(46, 232, 160, 0.12);
  --text-light: #eef3ef;
  --text-muted: #9bb3a8;
  --text-faint: #5f7a6d;
  --border-soft: rgba(255, 255, 255, 0.07);
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-family: "Bricolage Grotesque", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ================= Animations ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.94);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes growLine {
  from {
    width: 0;
  }

  to {
    width: 26px;
  }
}

@keyframes floatGlow {

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

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

/* Hero load-in sequence */
.hero-badge,
.hero-title .line,
.hero-desc,
.hero-buttons,
.services-strip {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.hero-badge {
  animation-delay: 0.05s;
}

.hero-title .line:nth-child(1) {
  animation-delay: 0.15s;
}

.hero-title .line:nth-child(2) {
  animation-delay: 0.28s;
}

.hero-title .line:nth-child(3) {
  animation-delay: 0.41s;
}

.hero-desc {
  animation-delay: 0.55s;
}

.hero-buttons {
  animation-delay: 0.68s;
}

/* .aum-card {
  animation: scaleIn 0.9s ease forwards;
  animation-delay: 0.4s;
} */

.services-strip {
  animation-delay: 0.85s;
}

.hero-badge .dot {
  animation: floatGlow 2.4s ease-in-out infinite;
}

/* Scroll reveal */
.reveal {
  opacity: 1;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.reveal-fade {
  transition: opacity 0.9s ease;
}

.reveal-fade.is-visible {
  opacity: 1;
}

.reveal-scale {
  transform: scale(0.95);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Eyebrow underline grow */
.eyebrow::before {
  animation: growLine 0.6s ease forwards;
  animation-delay: 0.1s;
}

.reveal .eyebrow::before {
  width: 0;
}

.reveal.is-visible .eyebrow::before {
  animation: growLine 0.6s ease forwards 0.15s;
}

/* Stagger helpers for grouped children */
.stagger>* {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stagger.is-visible>*:nth-child(1) {
  transition-delay: 0.05s;
}

.stagger.is-visible>*:nth-child(2) {
  transition-delay: 0.15s;
}

.stagger.is-visible>*:nth-child(3) {
  transition-delay: 0.25s;
}

.stagger.is-visible>*:nth-child(4) {
  transition-delay: 0.35s;
}

.stagger.is-visible>* {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar entrance */
.navbar-ready {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
  animation-delay: 0s;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0s !important;
    transition-duration: 0.001ms !important;
  }

  .reveal,
  .reveal-fade,
  .reveal-scale,
  .stagger>* {
    opacity: 1 !important;
    transform: none !important;
  }
}

body {
  background-color: var(--bg-dark);
  color: var(--text-light);
  font-family: var(--font-body);
  overflow-x: hidden;
  position: relative;
}

/* Background grid texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(0, 0, 0, 0.6), transparent 70%);
}

.container,
.container-fluid,
header,
footer,
section {
  position: relative;
  z-index: 1;
}

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

/* ================= Typography ================= */
.display-font {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.text-accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 300;
  padding-right: 13px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: var(--accent);
}

.section-pad {
  padding: 90px 0;
}

/* ================= Navbar ================= */
.navbar-ready {
  padding: 24px 0;
  background: transparent;
}

.brand-icon {
  width: 38px;
  height: 38px;
  background: var(--accent);
  color: #06140e;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.brand-text {
  line-height: 1.1;
}

.brand-text .top {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-light);
}

.brand-text .bottom {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 700;
}

.navbar-ready .nav-link {
  color: #ffff;
  font-size: 0.92rem;
  font-weight: 500;
  margin: 0 14px;
  transition: color 0.2s ease;
}


.navbar-nav .nav-link.active {
  color: var(--accent) !important;
  font-weight: 500 !important;
}


.btn-accent {
  background: var(--accent);
  color: #06140e;
  border: none;
  font-weight: 600;
  border-radius: 999px;
  padding: 11px 22px;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 232, 160, 0.3);
  color: #06140e;
}

.btn-outline-light-soft {
  border: 1px solid var(--border-soft);
  color: var(--text-light);
  border-radius: 999px;
  padding: 11px 24px;
  font-size: 0.92rem;
  font-weight: 500;
  background: transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-outline-light-soft:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ================= Hero ================= */
.hero {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(46, 232, 160, 0.35);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 28px;
  background: rgba(46, 232, 160, 0.04);
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero-title {
  font-family: var(--font-family);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 85px;
  font-size: 80px;
  /* font-size: clamp(3rem, 10vw, 11.375rem); */
  color: var(--text-light);
  margin-bottom: 28px;
}

.hero-title .line {
  display: inline-block;
}

.hero-title .line-accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 300 !important;
}

.line-accent{
  color: var(--accent);
  font-weight: bold;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero,
.hero .container,
.hero .row,
.hero .col-lg-5 {
  overflow: visible !important;
}

/* AUM Card */
/* .aum-card {
  position: relative;
  z-index: 10;
  border: 1px solid rgba(46, 232, 160, 0.25);
  border-radius: 22px;
  padding: 32px;
  backdrop-filter: blur(6px);

  width: 402px;
  min-height: 310px;

  margin-top: -128px;
  margin-left: 123px;


} */


.aum-card .label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 600;
}

.aum-card .value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--text-light);
  letter-spacing: -0.02em;
  margin: 14px 0 22px;
}

.aum-card .value .plus {
  color: var(--accent);
}

.aum-card .sub-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent);
}

.aum-card .sub-label {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-top: 2px;
}

.aum-card .footer-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-soft);
  padding-top: 18px;
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Services strip */
.services-strip {
  border-top: 1px solid var(--border-soft);
  padding: 28px 0;
  margin-top: 40px;
}

.services-strip .item {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.services-strip .divider {
  color: var(--accent);
  font-size: 0.7rem;
}

/* ================= Stats ================= */
.stats-section {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 70px 0;
}

.stat-item {
  border-top: 1px solid var(--border-soft);
  padding-top: 18px;
}

.stat-tag {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--text-faint);
  font-weight: 600;
  margin-bottom: 18px;
  display: block;
}

.stat-number {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 4.5rem);
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 6px;
}

/* ================= About ================= */
.section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.12;
  font-size: clamp(2.2rem, 4.2vw, 3.2rem);
  color: var(--text-light);
}

.about-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 24px;
  max-width: 470px;
}

.about-meta {
  display: flex;
  gap: 36px;
  margin-top: 32px;
}

.about-meta .meta-item {
  padding-left: 18px;
  border-left: 1px solid var(--border-soft);
}

.about-meta .meta-item:first-child {
  padding-left: 0;
  border-left: none;
}

.about-meta .meta-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--accent);
}

.about-meta .meta-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--text-faint);
  text-transform: uppercase;
  margin-top: 4px;
}

/* About cards */
.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 20px;
  display: flex;
  gap: 22px;
}

.about-card:last-child {
  margin-bottom: 0;
}

.about-card .num {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
  font-size: 1.5rem;
  min-width: 40px;
}

.about-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-light);
}

.about-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
}

/* ================= Services ================= */
.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 50px;
}

.all-services-link {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.all-services-link:hover {
  color: var(--accent);
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: 18px;
  padding: 32px;
  height: 100%;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.service-card:hover {
  border-color: rgba(46, 232, 160, 0.35);
  transform: translateY(-4px);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
  font-size: 1.3rem;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-light);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 26px;
}

.service-list li {
  position: relative;
  padding-left: 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.inquire-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ================= Leadership ================= */
.leadership-intro {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 380px;
}

.team-card {
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
}

.team-card .team-img-wrap {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.team-card .team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) brightness(0.9);
  transition: transform 0.4s ease;
}

.team-card:hover .team-img-wrap img {
  transform: scale(1.04);
  filter: grayscale(0%) brightness(1.0);
}

.team-card:hover {
  border-color: #00f29866;
}

.team-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(7, 23, 17, 0.95) 100%);
}

.team-social {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(7, 23, 17, 0.6);
  border: 1px solid var(--border-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  z-index: 2;
  font-size: 0.95rem;
}

.team-info-overlay {
  position: absolute;
  bottom: 16px;
  left: 24px;
  right: 24px;
  z-index: 2;
}

.team-role {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 6px;
}

.team-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-light);
}

.team-name .fca {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--accent);
}

.team-bio {
  padding: 22px 24px 26px;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ================= Portfolio ================= */
.portfolio-intro {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 560px;
  margin-top: 18px;
}

.portfolio-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.portfolio-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-card:hover img {
  transform: scale(1.06);
}

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 23, 17, 0.92) 5%, rgba(7, 23, 17, 0.15) 60%);
  z-index: 1;
}

.portfolio-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  background: rgba(7, 23, 17, 0.55);
  border: 1px solid rgba(46, 232, 160, 0.3);
  color: var(--accent);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.portfolio-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(46, 232, 160, 0.15);
  border: 1px solid rgba(46, 232, 160, 0.35);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-content {
  position: relative;
  z-index: 2;
  padding: 24px;
}

.portfolio-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.portfolio-content p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  margin: 0;
  max-width: 420px;
}

/* ================= Code of Conduct ================= */
.conduct-card {
  background: linear-gradient(140deg, rgba(46, 232, 160, 0.08), var(--bg-card));
  border: 1px solid var(--border-soft);
  border-radius: 22px;
  padding: 40px;
  height: 100%;
}

.conduct-icon {
  color: var(--accent);
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.conduct-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.conduct-list li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-light);
  font-size: 1rem;
}

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

.conduct-list .conduct-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent);
  min-width: 24px;
}

/* ================= CTA / Footer ================= */
.footer-top {
  background: var(--bg-card);
  border-top: 1px solid var(--border-soft);
  padding: 90px 0 60px;

  p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-family: var(--font-display);
  }

  
}

.footer-cta-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--text-light);
}

.footer-cta-title .accent {
  color: var(--accent);
}

.footer-cta-btn {
  margin-top: 28px;
}

.footer-col-title {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 13px;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--accent);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;

}

.footer-contact li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.5;
  cursor: pointer;

  &:hover {
    color: var(--accent);
  }
}

.footer-contact .icon-circle {
  color: var(--accent);
  font-size: 1rem;
  min-width: 18px;
  margin-top: 2px;
}

.footer-bigtext {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-size: clamp(4rem, 13vw, 9rem);
  color: rgba(255, 255, 255, 0.04);
  text-align: left;
  user-select: none;
  white-space: nowrap;
  overflow: hidden;
  padding: 30px 0 0;
}

.footer-bottom {
  border-top: 1px solid var(--border-soft);
  padding: 24px 0;
  font-size: 0.82rem;
  color: var(--text-faint);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  letter-spacing: 0.04em;
}

/* ================= Responsive ================= */
@media (max-width: 991.98px) {
  .section-pad {
    padding: 60px 0;
  }

  .aum-card {
    margin-top: 40px;
  }

  .services-strip .item {
    justify-content: flex-start;
    gap: 18px;
  }

  .footer-bigtext {
    font-size: 14vw;
  }
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: clamp(2.6rem, 12vw, 4rem);
    line-height: 60px;
  }

  .city {
    margin-top: 30px;
  }



  .navbar-ready .navbar-collapse {
    background: var(--bg-card);
    border-radius: 14px;
    padding: 16px;
    margin-top: 14px;
    border: 1px solid var(--border-soft);
  }

  .navbar-ready .nav-link {
    margin: 6px 0;
  }

  .about-meta {
    flex-wrap: wrap;
    gap: 24px;
  }

  .stat-item {
    margin-bottom: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 575.98px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-accent,
  .hero-buttons .btn-outline-light-soft {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  .conduct-card {
    padding: 26px;
  }

  .about-card {
    flex-direction: column;
    gap: 10px;
  }
}

/* about page */
/* ================= About Us Story ================= */
.story-heading {
  font-family: var(--font-family);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 70px;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: var(--text-light);
  max-width: 980px;
}

.story-heading .fst-italic {
  font-family: var(--font-family);
  font-style: italic;
  font-weight: 300;
  text-shadow: 0 0 40px rgba(46, 232, 160, 0.35);
}

.story-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 640px;
  margin-top: 28px;
}

/* ================= Mission & Approach ================= */
.mission-img-wrap {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--border-soft);
  aspect-ratio: 4 / 3;
}

.mission-img-wrap img {
  width: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9);
  border-radius: 24px;
}

.mission-heading {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: var(--text-light);
}

.mission-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 16px;
  /* max-width: 480px; */
}

/* about page */

/* service page */
.services-header-section {
  background-color: #0a1f17;
  padding: 80px 0 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2ee8a0;
  margin-bottom: 24px;
}

.eyebrow-line {
  display: inline-block;
  width: 26px;
  height: 1px;
  background: #2ee8a0;
}

.services-heading {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 70px;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  color: #eef3ef;
  max-width: 980px;
  margin-bottom: 28px;
}

.services-accent {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 300;
  color: #2ee8a0;
  text-shadow: 0 0 40px rgba(46, 232, 160, 0.35);
}

.services-desc {
  color: #9bb3a8;
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 640px;
  margin: 0;
}

@media (max-width: 767.98px) {
  .services-heading {
    line-height: 1.2;
  }
}

/* service page */

/* code of conduct */
.conduct-detail-section {
  background-color: #0a1f17;
  padding: 60px 0;
}

.conduct-detail-item {
  background: #0f2a1f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 36px 40px;
  margin-bottom: 24px;
  width: 927px;
  margin-left: auto;
}

.conduct-detail-item:last-child {
  margin-bottom: 0;
}

.conduct-detail-num {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.8rem;
  color: #2ee8a0;
  letter-spacing: -0.02em;
}

.conduct-detail-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.25;
  color: #eef3ef;
  letter-spacing: -0.01em;
  margin: 0;
}

.conduct-detail-desc {
  color: #9bb3a8;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

@media (max-width: 767.98px) {
  .conduct-detail-item {
    padding: 28px 24px;
    width: 350px;
    margin: 20px auto 0 auto;
  }

  .conduct-detail-num {
    font-size: 1.5rem;
    margin-bottom: 8px;
    display: block;
  }

  .conduct-detail-title {
    font-size: 1.3rem;
    margin-bottom: 14px;
  }
}

/* code of conduct */

/* contact */
.reach-us-section {
  background-color: #0a1f17;
  padding: 80px 0;
}

/* ---- Left column ---- */
.reach-heading {
  font-family: 'Archivo', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  color: #eef3ef;
  margin-bottom: 36px;
}

.reach-info-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #0f2a1f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 20px;
}

.reach-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 12px;
  background: rgba(46, 232, 160, 0.12);
  color: #2ee8a0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.reach-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9bb3a8;
  font-weight: 600;
  margin-bottom: 8px;
}

.reach-value {
  color: #eef3ef;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

/* ---- Right column: form ---- */
.reach-form-card {
  background: #0f2a1f;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 22px;
  padding: 40px;
}

.form-label-custom {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9bb3a8;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-control-custom {
  background-color: #0a1f17;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  color: #eef3ef;
  padding: 14px 16px;
  font-size: 0.95rem;
}

.form-control-custom::placeholder {
  color: #5f7a6d;
}

.form-control-custom:focus {
  background-color: #0a1f17;
  border-color: #2ee8a0;
  box-shadow: 0 0 0 3px rgba(46, 232, 160, 0.15);
  color: #eef3ef;
}

textarea.form-control-custom {
  resize: vertical;
  min-height: 140px;
}

/* ---- Send button ---- */
.btn-accent {
  background: #2ee8a0;
  color: #06140e;
  border: none;
  font-weight: 600;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 232, 160, 0.3);
  color: #06140e;
}

@media (max-width: 991.98px) {
  .reach-form-card {
    padding: 28px;
  }
}

/* contact */

.fintech {
  padding: 40px 0 !important;

  .conduct-detail-item {
    width: 300px;
    margin-left: 0px;
    padding: 20px;
    height: 86px;
  }


}

.social_icon a i {
  color: var(--text-muted);

  &:hover {
    color: var(--accent);
  }
}

.partner-grid {
  padding: 35px 0;
}

.partner-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  padding: 20px 24px;
  border-radius: 14px;

  background: linear-gradient(135deg, #071a14, #0b2a20);
  border: 1px solid rgba(255, 255, 255, 0.08);

  color: #fff;

  transition: all 0.3s ease;
  width: 400px;
}

.partner-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 255, 170, 0.3);
}

.partner-left img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.partner-right {
  flex: 1;
}

.partner-right h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.partner-right p {
  margin: 4px 0 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* buttons */
.actions {
  display: flex;
  gap: 10px;
}

.btn-outline {
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 8px;
  font-size: 12px;
  text-decoration: none;
  transition: 0.2s;
}

.btn-outline:hover {
  border-color: #00ffb3;
  color: #00ffb3;
}

.btn-primary {
  padding: 6px 12px;
  background: #00ffb3;
  color: #000;
  border-radius: 8px;
  font-size: 12px;
  text-decoration: none;
  font-weight: 500;
}

.btn-primary:hover {
  background: #00e6a3;
}

.mail{
  color: var(--accent);
  font-weight: bold;
}