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

body {
  font-family: Inter, sans-serif;
  background: #0b1220;
}

/* COLOR SYSTEM */
:root {
  --gold: #d4af37;
  --gold-soft: #f3d98b;
  --navy: #0b1220;
  --navy-light: #121a2f;
}

/* HEADER */
.site-header {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  position: fixed; /* FIXED header to overlay hero */
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  color: var(--gold);
}

/* DESKTOP NAV */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.desktop-nav a,
.nav-dropdown button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  font-weight: 500;
  color: #f1f1f1;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.5px;
}
.desktop-nav a:hover {
  color: var(--gold);
}

/* DROPDOWN */
.nav-dropdown {
  position: relative;
  z-index: 9999;
}
.nav-dropdown button.erf-btn {
  background: none;
  border: none;
  color: white;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.3s;
}
.nav-dropdown button.erf-btn:hover {
  background: rgba(212, 175, 55, 0.1);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #0f172a;
  border-radius: 10px;
  min-width: 200px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: none;
  flex-direction: column;
  z-index: 10000;
  overflow: hidden;
}
.dropdown-menu a {
  padding: 12px 18px;
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
}
.dropdown-menu a:hover {
  background: #d4af37;
  color: #0b1220;
}

/* MOBILE NAV */
.menu-btn {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
  z-index: 10001;
}

@media(max-width:900px) {
  .menu-btn {
    display: block;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-menu {
    display: flex;
    flex-direction: column;
    background: #0b1220;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 10000;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
  }
  .mobile-menu.open {
    max-height: 500px;
    overflow: visible;
  }
  .mobile-erf-dropdown {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 10px;
  }
  .mobile-erf-dropdown.open {
    max-height: 300px;
  }
  .mobile-menu a,
  .mobile-erf-btn {
    padding: 12px 20px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: #f1f1f1;
    background: none;
    border: none;
    text-align: left;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mobile-menu a:hover,
  .mobile-erf-btn:hover {
    background: rgba(212, 175, 55, 0.15);
  }
}

/* HERO */
.hero-slider {
  position: relative;
  height: 100vh; /* full viewport */
  width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0;
}

.slides {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: none;
  animation: fade 1.2s ease;
}
.slides.active {
  display: block;
}
@keyframes fade { from {opacity:0} to {opacity:1} }

.slides::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(212, 175, 55, 0.35), rgba(11, 18, 32, 0.9)),
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15), transparent 60%);
}

/* HERO GRID */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr .9fr;
  height: 100%;
  align-items: center;
  padding: 0 70px;
  color: white;
}

/* LEFT */
.hero-content small {
  letter-spacing: 3px;
  color: var(--gold-soft);
}
.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 54px;
  margin: 18px 0;
  line-height: 1.15;
}
.hero-content p {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.95;
  max-width: 520px;
}
.btns {
  margin-top: 30px;
}
.hero-content a {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 15px;
  letter-spacing: 0.5px;
}
.btn-main {
  background: linear-gradient(135deg, #d4af37, #f3d98b);
  color: #0b1220;
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.45);
}
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold);
}

/* HERO RIGHT PANEL */
.hero-right-panel {
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding-left: 30px;
  width: 100%;
}
.trust-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  backdrop-filter: blur(14px);
  border-radius: 22px;
  padding: 32px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.trust-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.trust-item i {
  font-size: 22px;
  color: #d4af37;
  min-width: 28px;
  margin-top: 3px;
}
.trust-item h4 {
  color: #fff;
  margin-bottom: 4px;
  font-size: 16px;
  letter-spacing: 0.4px;
}
.trust-item p {
  color: #e5e7eb;
  font-size: 13.5px;
  line-height: 1.6;
}

/* MOBILE HERO & TRUST PANEL */
@media(max-width:900px){
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 0 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-content h1 { font-size: 32px; }
  .hero-content p { font-size: 14px; }
  .btns a { padding: 12px 28px; margin-right: 10px; }

  .hero-right-panel {
    flex-direction: column;
    gap: 18px;
    padding-left: 0;
    width: 100%;
  }

  .trust-panel {
    padding: 20px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
  }

  .trust-item { gap: 12px; }
  .trust-item i { font-size: 20px; min-width: 24px; }
  .trust-item h4 { font-size: 14px; }
  .trust-item p { font-size: 12.5px; line-height: 1.5; }
}

/* MOBILE MENU - hide by default */
.mobile-menu {
  display: none; /* hide on desktop */
}

/* SHOW MOBILE MENU ONLY ON SMALL SCREENS */
@media(max-width:900px){
  .mobile-menu {
    display: flex; /* show on mobile */
    flex-direction: column;
    background: #0b1220;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    z-index: 10000;
    border-top: 1px solid rgba(212,175,55,.2);
  }
  .mobile-menu.open {
    max-height: 500px; /* adjust based on menu length */
    overflow: visible;
  }

  /* Mobile dropdown inside mobile menu */
  .mobile-erf-dropdown {
    display: flex;
    flex-direction: column;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 10px;
  }
  .mobile-erf-dropdown.open {
    max-height: 300px; /* adjust as needed */
  }
}
/* DESKTOP NAV ACTIVE LINK */
.desktop-nav a.active {
  background: var(--gold);   /* gold block */
  color: #0b1220;             /* dark text inside gold */
  padding: 8px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

/* Optional: subtle hover effect on other links */
.desktop-nav a:hover:not(.active) {
  color: var(--gold);
  background: rgba(212,175,55,0.1);
  border-radius: 6px;
}

/* MOBILE MENU ACTIVE LINK */
.mobile-menu a.active {
  background: var(--gold);   /* gold block */
  color: #0b1220;             /* dark text */
  font-weight: 600;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
}
/* SLIDER CONTROLS - DOTS */
.slider-controls {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10; /* make sure it’s above the hero content */
}

.slider-controls span {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-controls span.active {
  background: var(--gold); /* highlight active dot in gold */
  transform: scale(1.3);
}
.about-us {
  position: relative;
  background: #0b1220;
  color: white;
  padding: 120px 20px 80px;
  overflow: hidden;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  flex-wrap: wrap;
}

/* IMAGE PANEL */
.about-image {
  flex: 1;
  position: relative;
  z-index: 1;
}

.about-image .main-img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-image .accent-img {
  position: absolute;
  width: 45%;
  top: 40%;
  left: 60%;
  border-radius: 20px;
  border: 3px solid rgba(212,175,55,0.5);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  transform: rotate(-5deg);
  z-index: 2;
  transition: transform 0.4s ease, top 0.4s ease, left 0.4s ease;
}

/* Hover animation for accent image */
.about-image:hover .accent-img {
  transform: rotate(0deg) scale(1.05);
}

/* CONTENT PANEL */
.about-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.about-content small {
  color: #f3d98b;
  letter-spacing: 2px;
  font-weight: 600;
}

.about-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin: 20px 0;
  line-height: 1.2;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.9;
  max-width: 500px;
}

/* FLOATING CARDS */
.about-cards {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,175,55,0.25);
  padding: 18px 22px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  flex: 1 1 200px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px rgba(0,0,0,0.5);
}
.card i {
  font-size: 24px;
  color: #d4af37;
  min-width: 28px;
}
.card h4 {
  margin: 0 0 4px;
  font-size: 16px;
}
.card p {
  font-size: 13px;
  line-height: 1.4;
  opacity: 0.85;
}

/* RESPONSIVE MOBILE */
@media(max-width:900px){
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  /* Swap order: image first, then content */
  .about-image { order: -1; width: 100%; }
  .about-image .accent-img {
    top: 60%;
    left: 50%;
    width: 60%;
    transform: translate(-50%, -50%) rotate(-3deg);
  }

  .about-content h2 { font-size: 28px; }
  .about-content p { font-size: 14px; }
  .about-cards { justify-content: center; }
}
.about-btn{
  margin-top: 35px;
}

.btn-about{
  display:inline-block;
  padding:14px 34px;
  border-radius:40px;
  text-decoration:none;
  font-weight:600;
  letter-spacing:.5px;
  background:linear-gradient(135deg,#d4af37,#f3d98b);
  color:#0b1220;
  box-shadow:0 0 25px rgba(212,175,55,.45);
  transition:transform .3s ease, box-shadow .3s ease;
}

.btn-about:hover{
  transform:translateY(-3px);
  box-shadow:0 0 35px rgba(212,175,55,.65);
}
.expertise-section{
  background:#0b1220;
  padding:120px 20px;
  color:white;
  position:relative;
  overflow:hidden;
}

/* Soft animated background glow */
.expertise-section::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 20% 40%, rgba(212,175,55,.08), transparent 60%),
              radial-gradient(circle at 80% 60%, rgba(212,175,55,.05), transparent 60%);
  animation: glowMove 20s linear infinite alternate;
  z-index:0;
}

@keyframes glowMove{
  from{ transform: translate(0,0); }
  to{ transform: translate(-120px,-80px); }
}

.expertise-container{
  max-width:1200px;
  margin:auto;
  position:relative;
  z-index:1;
}

/* HEADER */
.expertise-header{
  text-align:center;
  max-width:650px;
  margin:0 auto 70px;
}
.expertise-header small{
  color:#f3d98b;
  letter-spacing:3px;
  font-weight:600;
}
.expertise-header h2{
  font-family:"Playfair Display",serif;
  font-size:44px;
  margin:15px 0;
}
.expertise-header p{
  opacity:.9;
  line-height:1.7;
}

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

/* BOX */
.expertise-box{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(212,175,55,.25);
  padding:40px 32px;
  border-radius:22px;
  position:relative;
  overflow:hidden;
  transition: transform .4s ease, box-shadow .4s ease;
}

.expertise-box::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(120deg, transparent, rgba(212,175,55,.08), transparent);
  opacity:0;
  transition:.4s;
}

.expertise-box:hover::before{ opacity:1; }
.expertise-box:hover{
  transform:translateY(-12px);
  box-shadow:0 30px 60px rgba(0,0,0,.6);
}

/* NUMBER */
.exp-number{
  position:absolute;
  top:20px;
  right:20px;
  font-size:48px;
  font-weight:700;
  color:rgba(212,175,55,.15);
}

/* TEXT */
.expertise-box h3{
  font-size:20px;
  margin-bottom:10px;
  color:#fff;
}
.expertise-box p{
  font-size:14.5px;
  line-height:1.7;
  opacity:.9;
}

/* RESPONSIVE */
@media(max-width:900px){
  .expertise-grid{ grid-template-columns:1fr; }
  .expertise-header h2{ font-size:30px; }
}
.expertise-subtitle{
  display:block;
  margin-top:8px;
  font-size:14px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#d4af37;
  opacity:.85;
}
.what-we-do{
  background:#0b1220;
  padding:120px 20px;
  color:white;
}

.what-container{
  max-width:1200px;
  margin:auto;
}

.what-header{
  text-align:center;
  max-width:700px;
  margin:auto;
}

.what-header small{
  color:#f3d98b;
  letter-spacing:3px;
  font-weight:600;
}

.what-header h2{
  font-family:"Playfair Display",serif;
  font-size:42px;
  margin:18px 0;
}

.what-header p{
  opacity:.9;
  line-height:1.7;
}

/* SLIDER */
.what-slider-wrapper{
  position:relative;
  margin-top:60px;
  overflow:hidden;
}

.what-slider{
  display:flex;
  gap:25px;
  transition:transform .6s ease;
}

.what-card{
  min-width:280px;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(212,175,55,.25);
  border-radius:22px;
  padding:30px;
  text-align:center;
  box-shadow:0 20px 50px rgba(0,0,0,.4);
  transition:transform .4s ease;
}

.what-card:hover{
  transform:translateY(-10px);
}

.what-card i{
  font-size:36px;
  color:#d4af37;
  margin-bottom:15px;
}

.what-card h3{
  margin-bottom:10px;
  font-size:18px;
}

.what-card p{
  font-size:14px;
  opacity:.85;
  line-height:1.6;
}

/* ARROWS */
.what-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#d4af37;
  color:#0b1220;
  border:none;
  font-size:22px;
  padding:10px 14px;
  border-radius:50%;
  cursor:pointer;
  z-index:10;
}
.what-nav.left{ left:-10px; }
.what-nav.right{ right:-10px; }

/* CTA */
.what-cta{
  margin-top:60px;
  text-align:center;
}

.what-cta a{
  display:inline-block;
  margin:0 12px;
  padding:14px 34px;
  border-radius:40px;
  font-weight:600;
  text-decoration:none;
}

/* WHY CHOOSE US */
.why-choose{
  background:#0b1220;
  padding:130px 20px;
  color:white;
  overflow:hidden;
}

.why-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:70px;
  align-items:center;
}

/* LEFT */
.why-left small{
  color:#f3d98b;
  letter-spacing:3px;
  font-weight:600;
}

.why-left h2{
  font-family:"Playfair Display",serif;
  font-size:42px;
  margin:20px 0;
}

.why-left p{
  opacity:.9;
  line-height:1.8;
  max-width:500px;
}

/* POINTS */
.why-points{
  margin-top:40px;
}

.why-item{
  display:flex;
  gap:18px;
  margin-bottom:25px;
}

.why-item span{
  font-size:26px;
  font-weight:700;
  color:#d4af37;
  min-width:40px;
}

.why-item h4{
  margin-bottom:6px;
  font-size:17px;
}

.why-item p{
  font-size:14px;
  opacity:.85;
  line-height:1.6;
}

/* RIGHT PANEL (DESKTOP TIMELINE) */
.why-right{
  position:relative;
  height:420px;
}

.why-line{
  position:absolute;
  left:50%;
  top:0;
  width:2px;
  height:100%;
  background:linear-gradient(to bottom,#d4af37,transparent);
  transform:translateX(-50%);
  z-index:0;
}

/* NODES */
.why-node{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(212,175,55,.3);
  border-radius:18px;
  padding:18px 24px;
  text-align:center;
  box-shadow:0 20px 50px rgba(0,0,0,.5);
  width:180px;
  z-index:1;
}

.why-node i{
  color:#d4af37;
  font-size:26px;
  margin-bottom:6px;
}

.why-node p{
  font-size:13px;
  opacity:.9;
}

/* POSITIONING */
.why-node.top{ top:0; }
.why-node.mid{ top:45%; }
.why-node.bottom{ bottom:0; }

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

  .why-container{
    display:block; /* stack left and right */
  }

  .why-left{
    text-align:center;
    margin-bottom:40px;
  }

  .why-left h2{
    font-size:28px;
  }

  .why-left p{
    font-size:14px;
    max-width:100%;
    margin:0 auto;
  }

  /* RIGHT PANEL MOBILE */
  .why-right{
    position:static !important; /* cancel absolute */
    display:flex !important;
    flex-direction:column;
    align-items:center;
    gap:20px;
    height:auto !important;
    margin-top:20px;
  }

  .why-line{
    display:none !important;
  }

  .why-node{
    position:relative !important;
    top:auto !important;
    bottom:auto !important;
    left:auto !important;
    transform:none !important;
    width:100% !important;
    max-width:320px;
    padding:18px 22px;
    margin-bottom:15px;
  }

  .why-node i{
    display:block;
    margin-bottom:8px;
  }

}

.investments{
  background:#0b1220;
  color:white;
  padding:120px 20px;
  overflow:hidden;
}

.investments-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:60px;
}

/* HEADER */
.investments-header small{
  color:#f3d98b;
  letter-spacing:2px;
  font-weight:600;
}

.investments-header h2{
  font-family:"Playfair Display", serif;
  font-size:42px;
  margin:15px 0;
  line-height:1.2;
}

.investments-header p{
  opacity:.85;
  max-width:650px;
  line-height:1.7;
}

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

.investment-card{
  background: rgba(255,255,255,0.05);
  border:1px solid rgba(212,175,55,0.25);
  border-radius:22px;
  padding:30px 25px;
  text-align:center;
  box-shadow:0 20px 50px rgba(0,0,0,0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.investment-card:hover{
  transform: translateY(-8px);
  box-shadow:0 30px 60px rgba(0,0,0,0.6);
}

.investment-card i{
  font-size:28px;
  color:#d4af37;
  margin-bottom:12px;
}

.investment-card h4{
  margin-bottom:8px;
  font-size:18px;
}

.investment-card p{
  font-size:14px;
  opacity:.85;
  line-height:1.5;
}

/* SCROLL REVEAL */
.investments .reveal{
  opacity:0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

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

/* RESPONSIVE */
@media(max-width:900px){
  .investments-header h2{ font-size:28px; }
  .investments-header p{ font-size:14px; }
  .investment-card{ padding:22px 18px; }
}

.testimonials{
  background:#0b1220;
  padding:120px 20px;
  color:white;
}

.testimonials-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:60px;
}

/* HEADER */
.testimonials-header small{
  color:#f3d98b;
  letter-spacing:2px;
  font-weight:600;
}

.testimonials-header h2{
  font-family:"Playfair Display", serif;
  font-size:42px;
  margin:15px 0;
}

.testimonials-header p{
  opacity:.85;
  max-width:600px;
}

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

/* CARD */
.testimonial-card{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(212,175,55,0.25);
  border-radius:22px;
  padding:30px 25px;
  box-shadow:0 20px 50px rgba(0,0,0,0.5);
  position:relative;
  transition:transform 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover{
  transform:translateY(-8px);
  box-shadow:0 30px 60px rgba(0,0,0,0.6);
}

.testimonial-card i{
  color:#d4af37;
  font-size:22px;
  margin-bottom:10px;
}

.testimonial-card p{
  font-size:14px;
  line-height:1.7;
  opacity:.9;
}

/* CLIENT */
.client{
  display:flex;
  align-items:center;
  gap:14px;
  margin-top:18px;
}

.client img{
  width:48px;
  height:48px;
  border-radius:50%;
  object-fit:cover;
  border:2px solid rgba(212,175,55,.6);
}

.client h4{
  margin:0;
  font-size:15px;
}

.client span{
  font-size:12px;
  opacity:.75;
}

/* SCROLL ANIMATION */
.testimonials .reveal{
  opacity:0;
  transform:translateY(30px);
  transition:all .8s ease;
}

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

/* RESPONSIVE */
@media(max-width:900px){
  .testimonials-header h2{font-size:28px;}
  .testimonial-card{padding:22px 18px;}
}

.site-footer{
  background:#0b1220;
  color:#e5e7eb;
  padding-top:90px;
  border-top:1px solid rgba(212,175,55,.25);
}

.footer-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:50px;
  padding:0 20px 70px;
}

/* COLUMNS */
.footer-col h3{
  color:#d4af37;
  font-family:"Playfair Display",serif;
  font-size:24px;
  margin-bottom:15px;
}
.footer-col h4{
  color:#f3d98b;
  margin-bottom:15px;
  font-size:16px;
}
.footer-col p{
  font-size:14px;
  line-height:1.7;
  opacity:.9;
}

/* LINKS */
.footer-col ul{
  list-style:none;
}
.footer-col ul li{
  margin-bottom:10px;
}
.footer-col ul li a{
  color:#e5e7eb;
  text-decoration:none;
  font-size:14px;
  transition:.3s;
}
.footer-col ul li a:hover{
  color:#d4af37;
}

/* SOCIAL */
.footer-social{
  margin-top:15px;
  display:flex;
  gap:12px;
}
.footer-social a{
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:rgba(212,175,55,.15);
  color:#d4af37;
  transition:.3s;
}
.footer-social a:hover{
  background:#d4af37;
  color:#0b1220;
}

/* NEWSLETTER */
.footer-newsletter form{
  margin-top:12px;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-newsletter input{
  padding:12px;
  border-radius:8px;
  border:none;
  outline:none;
  background:#121a2f;
  color:white;
}
.footer-newsletter button{
  padding:12px;
  border-radius:8px;
  border:none;
  cursor:pointer;
  background:linear-gradient(135deg,#d4af37,#f3d98b);
  color:#0b1220;
  font-weight:600;
}

/* BOTTOM */
.footer-bottom{
  border-top:1px solid rgba(212,175,55,.2);
  padding:20px;
  text-align:center;
  font-size:13px;
  background:#080e1a;
}
.footer-bottom span{
  display:block;
  margin-top:5px;
  color:#d4af37;
}

/* ========================= */
/* GLOBAL SECTION SPACING FIX */
/* ========================= */

section{
  margin:0;
}

/* unify vertical spacing */
.about-us,
.expertise-section,
.what-we-do,
.why-choose,
.investments,
.testimonials{
  padding-top:80px !important;
  padding-bottom:80px !important;
}

/* remove accidental extra bottom gaps */
.about-container,
.expertise-container,
.what-container,
.why-container,
.investments-container,
.testimonials-container{
  margin-bottom:0 !important;
  padding-bottom:0 !important;
}

/* prevent last element from creating phantom space */
.about-us *:last-child,
.expertise-section *:last-child,
.what-we-do *:last-child,
.why-choose *:last-child,
.investments *:last-child,
.testimonials *:last-child{
  margin-bottom:0 !important;
}

/* mobile tighter spacing */
@media(max-width:900px){
  .about-us,
  .expertise-section,
  .what-we-do,
  .why-choose,
  .investments,
  .testimonials{
    padding-top:60px !important;
    padding-bottom:60px !important;
  }
}
/* ====== INVESTMENT PORTFOLIO ====== */
.investment-portfolio {
  background: #0b1220;
  color: white;
  padding: 120px 20px;
  position: relative;
  overflow: visible;
}

.portfolio-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* HEADER */
.portfolio-header small {
  color: #f3d98b;
  letter-spacing: 2px;
  font-weight: 600;
}

.portfolio-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin: 15px 0;
  line-height: 1.2;
}

.portfolio-header p {
  opacity: 0.85;
  max-width: 650px;
  line-height: 1.7;
}

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

/* CARD */
.portfolio-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 22px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
}

.portfolio-card i {
  font-size: 28px;
  color: #d4af37;
  margin-bottom: 12px;
}

.portfolio-card h4 {
  margin-bottom: 8px;
  font-size: 18px;
}

.portfolio-card p {
  font-size: 14px;
  opacity: 0.85;
  line-height: 1.5;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .portfolio-header h2 {
    font-size: 28px;
  }
  .portfolio-header p {
    font-size: 14px;
  }
  .portfolio-card {
    padding: 22px 18px;
  }
}



/* REST OF YOUR CSS REMAINS THE SAME */