/* =============================================
   Aarambh Investedge - Main Stylesheet
   ============================================= */

:root {
  --navy: #1a2b44;
  --navy-dark: #0f1a2e;
  --navy-light: #2a4066;
  --gold: #c9a227;
  --gold-light: #e8c547;
  --gold-dark: #a6851f;
  --white: #ffffff;
  --grey: #6c757d;
  --grey-light: #f4f6f9;
  --text: #333333;
  --shadow: 0 10px 40px rgba(26, 43, 68, 0.12);
  --shadow-hover: 0 20px 50px rgba(26, 43, 68, 0.2);
  --gradient-gold: linear-gradient(135deg, #e8c547 0%, #c9a227 50%, #a6851f 100%);
  --gradient-navy: linear-gradient(135deg, #2a4066 0%, #1a2b44 100%);
  --transition: all 0.35s ease;
  --radius: 12px;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --topbar-height: 38px;
  --navbar-height: 72px;
  --header-height: calc(var(--topbar-height) + var(--navbar-height));
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: var(--navbar-height);
}

body:has(.top-bar) {
  padding-top: var(--header-height);
}

body.header-scrolled:has(.top-bar) {
  padding-top: var(--navbar-height);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--navy);
}

a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; }

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--gradient-gold);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* Preloader */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--navy-dark);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-logo {
  width: 180px;
  animation: pulse 1.5s ease-in-out infinite;
}

.preloader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255,255,255,0.1);
  margin-top: 30px;
  border-radius: 3px;
  overflow: hidden;
}

.preloader-bar span {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--gradient-gold);
  animation: loadBar 1.5s ease-in-out infinite;
}

@keyframes loadBar {
  0% { width: 0%; margin-left: 0; }
  50% { width: 70%; margin-left: 15%; }
  100% { width: 0%; margin-left: 100%; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}

/* Top Bar */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 8px 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1041;
  transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
}

body.header-scrolled .top-bar {
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--white); }

.top-bar i { color: var(--gold); margin-right: 6px; }

.site-tagline-top {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.88rem;
  letter-spacing: 0.3px;
}

.site-tagline-top em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-tagline {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

.hero-tagline span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
}

.footer-tagline {
  color: var(--gold-light);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-tagline strong {
  color: var(--gold);
}

/* Navbar */
.navbar-main {
  padding: 10px 0;
  transition: var(--transition);
  background: rgba(15, 26, 46, 0.94) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 162, 39, 0.12);
  z-index: 1040;
}

.top-bar + .navbar-main {
  top: var(--topbar-height);
}

body.header-scrolled .top-bar + .navbar-main {
  top: 0;
}

.navbar-main.scrolled {
  background: rgba(26, 43, 68, 0.98) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  padding: 8px 0;
}

.navbar-main .navbar-brand {
  padding: 0;
  margin-right: 16px;
}

.navbar-main .navbar-brand img {
  height: 52px;
  transition: var(--transition);
  display: block;
}

.navbar-main.scrolled .navbar-brand img { height: 46px; }

.navbar-main .navbar-toggler {
  border: 1px solid rgba(201, 162, 39, 0.45);
  padding: 6px 10px;
}

.navbar-main .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.25);
}

.navbar-main .nav-link {
  color: rgba(255, 255, 255, 0.92) !important;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 14px !important;
  position: relative;
}

.navbar-main.navbar {
  --bs-navbar-color: rgba(255, 255, 255, 0.92);
  --bs-navbar-hover-color: var(--gold-light);
  --bs-navbar-active-color: var(--gold-light);
  --bs-navbar-toggler-border-color: rgba(201, 162, 39, 0.45);
}

body.nav-open {
  overflow: hidden;
}

@media (min-width: 992px) {
  .navbar-main .navbar-collapse {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 0 !important;
    margin-top: 0 !important;
  }

  .navbar-main .nav-link {
    border-bottom: none !important;
  }
}

.navbar-main .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after { width: 60%; }

.navbar-main .nav-link:hover { color: var(--gold-light) !important; }

.btn-gold {
  background: var(--gradient-gold);
  color: var(--navy-dark) !important;
  border: none;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 10px 28px;
  border-radius: 50px;
  transition: var(--transition);
  display: inline-block;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
  color: var(--navy-dark) !important;
}

.btn-outline-gold {
  border: 2px solid var(--gold);
  color: var(--gold) !important;
  background: transparent;
  font-weight: 700;
  font-family: var(--font-heading);
  padding: 10px 28px;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-outline-gold:hover {
  background: var(--gradient-gold);
  color: var(--navy-dark) !important;
  border-color: var(--gold);
}

.btn-navy {
  background: var(--gradient-navy);
  color: var(--white) !important;
  border: none;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 50px;
  transition: var(--transition);
}

.btn-navy:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  color: var(--white) !important;
}

/* Mega Menu */
.dropdown-mega .dropdown-menu {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 24px;
  min-width: 600px;
  margin-top: 12px !important;
}

.dropdown-mega .mega-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 700;
}

.dropdown-mega .dropdown-item {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  color: var(--text);
}

.dropdown-mega .dropdown-item:hover {
  background: var(--grey-light);
  color: var(--navy);
}

.dropdown-mega .dropdown-item i {
  color: var(--gold);
  width: 20px;
  margin-right: 8px;
}

/* Hero Slider */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  margin-top: calc(-1 * var(--navbar-height));
}

body:has(.top-bar) .hero-section {
  margin-top: calc(-1 * var(--header-height));
}

body:has(.top-bar):not(.header-scrolled) .hero-section {
  padding-top: 0;
}

.hero-swiper, .hero-swiper .swiper-slide {
  height: 100%;
}

.hero-slide {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,26,46,0.85) 0%, rgba(26,43,68,0.7) 50%, rgba(15,26,46,0.8) 100%);
}

.hero-slide.hero-animate .hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.06), transparent);
  animation: overlayShine 3s ease 0.5s;
}

@keyframes overlayShine {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content .hero-badge,
.hero-content .hero-tagline,
.hero-content h1,
.hero-content p,
.hero-content .hero-btns {
  opacity: 0;
}

.hero-slide.hero-animate .hero-content .hero-badge,
.hero-slide.hero-animate .hero-content .hero-tagline,
.hero-slide.hero-animate .hero-content h1,
.hero-slide.hero-animate .hero-content p,
.hero-slide.hero-animate .hero-content .hero-btns {
  opacity: 1;
}

.hero-content .hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Background ambient effects (replaces currency particles) */
.hero-bg-effects {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.fx-orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.25) 0%, rgba(201, 162, 39, 0) 70%);
  opacity: 0;
}

.fx-orb.orb-1 { width: 120px; height: 120px; left: 8%; bottom: 15%; }
.fx-orb.orb-2 { width: 80px; height: 80px; left: 55%; bottom: 25%; }
.fx-orb.orb-3 { width: 100px; height: 100px; right: 12%; bottom: 10%; }

.fx-pulse {
  position: absolute;
  left: 30%;
  bottom: 20%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(201, 162, 39, 0.15);
  border-radius: 50%;
  opacity: 0;
}

.fx-icon {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.15);
}

.fx-intro .fx-icon.icon-1 { left: 10%; bottom: 30%; }
.fx-intro .fx-icon.icon-2 { left: 22%; bottom: 18%; }
.fx-intro .fx-icon.icon-3 { left: 38%; bottom: 35%; }

.fx-equipment .fx-icon.icon-1 { left: 12%; bottom: 28%; }
.fx-equipment .fx-icon.icon-2 { left: 28%; bottom: 15%; }
.fx-equipment .fx-icon.icon-3 { left: 45%; bottom: 32%; }

.fx-business .fx-icon.icon-1 { left: 15%; bottom: 25%; }
.fx-business .fx-icon.icon-2 { left: 32%; bottom: 18%; }
.fx-business .fx-icon.icon-3 { left: 48%; bottom: 30%; }

.fx-property .fx-icon.icon-1 { left: 14%; bottom: 22%; }
.fx-property .fx-icon.icon-2 { left: 30%; bottom: 35%; }
.fx-property .fx-icon.icon-3 { left: 42%; bottom: 14%; }

.fx-msme .fx-icon.icon-1 { left: 11%; bottom: 30%; }
.fx-msme .fx-icon.icon-2 { left: 26%; bottom: 16%; }
.fx-msme .fx-icon.icon-3 { left: 40%; bottom: 28%; }

.fx-project .fx-icon.icon-1 { left: 13%; bottom: 24%; }
.fx-project .fx-icon.icon-2 { left: 29%; bottom: 34%; }
.fx-project .fx-icon.icon-3 { left: 44%; bottom: 16%; }

.fx-wealth .fx-icon.icon-1 { left: 12%; bottom: 26%; }
.fx-wealth .fx-icon.icon-2 { left: 27%; bottom: 14%; }
.fx-wealth .fx-icon.icon-3 { left: 41%; bottom: 32%; }

.fx-beam {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.4), transparent);
  opacity: 0;
  width: 0;
}

.fx-beam.beam-1 { left: 5%; bottom: 40%; transform: rotate(-8deg); }
.fx-beam.beam-2 { left: 20%; bottom: 22%; transform: rotate(5deg); }

.hero-pop-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  inset: 0;
}

.hero-pop-img.img-fallback {
  background: linear-gradient(145deg, var(--navy-light), var(--navy-dark));
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-pop-img .pop-fallback-icon {
  font-size: 2.2rem;
  color: var(--gold);
  opacity: 0.85;
  z-index: 1;
}

.hero-pop-img.img-fallback .pop-fallback-icon {
  animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.1); opacity: 1; }
}

/* Floating particles - deprecated, kept hidden */
.hero-particles {
  display: none;
}

/* Hero related image collage - populate animation */
.hero-visual {
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 340px;
  z-index: 2;
  pointer-events: none;
}

.hero-pop-img {
  position: absolute;
  background-size: cover;
  background-position: center;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(201, 162, 39, 0.45);
  opacity: 0;
  transform: scale(0.55) translateY(40px);
  overflow: hidden;
  will-change: transform, opacity;
}

.hero-pop-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 26, 46, 0.65) 0%, transparent 55%);
}

.hero-pop-img .pop-label {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  z-index: 2;
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-pop-img.img-1 {
  width: 210px;
  height: 145px;
  top: 0;
  left: 0;
}

.hero-pop-img.img-2 {
  width: 175px;
  height: 125px;
  top: 35px;
  right: 0;
}

.hero-pop-img.img-3 {
  width: 195px;
  height: 135px;
  bottom: 10px;
  left: 55px;
}

.hero-pop-img.img-4 {
  width: 150px;
  height: 110px;
  bottom: 55px;
  right: 25px;
}

/* Decorative slide elements */
.hero-deco {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  color: var(--gold-light);
}

.hero-deco-gear {
  right: 12%;
  bottom: 18%;
  font-size: 8rem;
  opacity: 0;
}

.hero-deco-bars {
  right: 8%;
  bottom: 15%;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 120px;
  opacity: 0.9;
}

.hero-deco-bars .bar {
  width: 18px;
  background: linear-gradient(to top, var(--gold-dark), var(--gold-light));
  border-radius: 4px 4px 0 0;
  transform-origin: bottom;
  opacity: 0;
}

.hero-deco-bars .bar:nth-child(1) { height: 45px; }
.hero-deco-bars .bar:nth-child(2) { height: 70px; }
.hero-deco-bars .bar:nth-child(3) { height: 95px; }
.hero-deco-bars .bar:nth-child(4) { height: 60px; }
.hero-deco-bars .bar:nth-child(5) { height: 110px; }

.hero-deco-house {
  right: 10%;
  bottom: 20%;
  font-size: 7rem;
  opacity: 0;
}

.hero-deco-doc {
  right: 22%;
  bottom: 28%;
  font-size: 4rem;
  opacity: 0;
}

.hero-deco-truck {
  right: 8%;
  bottom: 22%;
  font-size: 6rem;
  opacity: 0;
}

.hero-deco-smoke {
  right: 14%;
  bottom: 38%;
  display: flex;
  gap: 8px;
}

.hero-deco-smoke span {
  width: 20px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  opacity: 0;
}

.hero-deco-crane {
  right: 10%;
  bottom: 25%;
  font-size: 6rem;
  opacity: 0;
  transform-origin: bottom center;
}

.hero-deco-skyline {
  right: 6%;
  bottom: 12%;
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
}

.hero-deco-skyline span {
  width: 28px;
  background: rgba(201, 162, 39, 0.2);
  border-radius: 3px 3px 0 0;
  transform-origin: bottom;
  opacity: 0;
}

.hero-deco-skyline span:nth-child(1) { height: 40px; }
.hero-deco-skyline span:nth-child(2) { height: 65px; }
.hero-deco-skyline span:nth-child(3) { height: 90px; }
.hero-deco-skyline span:nth-child(4) { height: 55px; }
.hero-deco-skyline span:nth-child(5) { height: 75px; }

.hero-deco-chart {
  right: 7%;
  bottom: 18%;
  width: 220px;
  height: 90px;
  opacity: 0.7;
}

.hero-deco-chart svg {
  width: 100%;
  height: 100%;
}

.hero-deco-chart polyline {
  fill: none;
  stroke: var(--gold-light);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dashoffset: 300;
  opacity: 0;
}

.hero-deco-coins {
  right: 18%;
  bottom: 22%;
  display: flex;
  flex-direction: column-reverse;
  gap: 4px;
}

.hero-deco-coins span {
  width: 36px;
  height: 12px;
  background: var(--gradient-gold);
  border-radius: 50%;
  opacity: 0;
}

.hero-deco-coins span:nth-child(2) { width: 42px; }
.hero-deco-coins span:nth-child(3) { width: 48px; }

.hero-icon-float {
  width: 60px;
  height: 60px;
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.4rem;
  opacity: 0;
}

.hero-slide.hero-animate .hero-icon-float {
  opacity: 1;
}

/* Hero Video Background */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-video {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.hero-video-fallback {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-video-wrap.is-playing .hero-video-fallback {
  opacity: 0;
}

.hero-overlay-video {
  background: linear-gradient(135deg, rgba(15,26,46,0.88) 0%, rgba(26,43,68,0.75) 50%, rgba(15,26,46,0.85) 100%);
}

/* Company Video Showcase */
.video-showcase-section {
  background: var(--grey-light);
  padding: 90px 0;
}

.video-player-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 3px solid rgba(201, 162, 39, 0.25);
  background: var(--navy-dark);
}

.video-player-wrap .company-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--navy-dark);
}

.video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: none;
  background: var(--gradient-gold);
  color: var(--navy-dark);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  z-index: 2;
}

.video-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}

.video-player-wrap.is-playing .video-play-btn {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-features {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.video-features li {
  padding: 8px 0;
  font-size: 1rem;
}

.video-features li i {
  color: var(--gold);
  margin-right: 10px;
}

/* About Why List */
.about-why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.about-why-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.about-why-item i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.about-closing {
  color: var(--grey);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Leadership Cards */
.leader-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
}

.leader-card:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.leader-photo {
  background: rgba(10, 18, 32, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}

.leader-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
}

.leader-body {
  padding: 24px;
}

.leader-body h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.leader-role {
  color: var(--gold-light);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.leader-body p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.expertise-tags span {
  background: rgba(201, 162, 39, 0.15);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: var(--gold-light);
  font-size: 0.78rem;
  padding: 5px 12px;
  border-radius: 50px;
  font-weight: 600;
}

.founder-section .expertise-tags span {
  background: rgba(201, 162, 39, 0.12);
}

.hero-content .hero-badge {
  display: inline-block;
  background: rgba(201, 162, 39, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-content h1 span {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.hero-icons {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.4);
  opacity: 1;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  width: 30px;
  border-radius: 6px;
}

.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: var(--gold);
  background: rgba(255,255,255,0.1);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  backdrop-filter: blur(5px);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 1.2rem;
}

/* Section Styles */
section { padding: 90px 0; }

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px;
}

.section-header .section-tag {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--grey);
  font-size: 1.05rem;
}

.section-header .gold-line {
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  margin: 20px auto 0;
  border-radius: 2px;
}

.bg-grey { background: var(--grey-light); }
.bg-navy { background: var(--navy); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--white); }

/* About Section */
.about-image-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-image-wrap img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.about-image-wrap .experience-badge {
  position: absolute;
  bottom: 30px;
  right: -20px;
  background: var(--gradient-gold);
  color: var(--navy-dark);
  padding: 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.about-image-wrap .experience-badge .number {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
}

.about-image-wrap .experience-badge .text {
  font-size: 0.85rem;
  font-weight: 600;
}

.about-content h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.about-content h3 span { color: var(--gold); }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 30px;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--grey-light);
  border-radius: 8px;
  transition: var(--transition);
}

.about-feature-item:hover {
  background: var(--navy);
  color: var(--white);
}

.about-feature-item:hover h5 { color: var(--gold-light); }

.about-feature-item i {
  font-size: 1.5rem;
  color: var(--gold);
  width: 40px;
  text-align: center;
}

.about-feature-item h5 {
  font-size: 0.95rem;
  margin: 0;
}

/* Counter inline */
.counter-inline {
  display: flex;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.counter-inline .counter-box {
  text-align: center;
}

.counter-inline .counter-box .count {
  font-size: 2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--gold);
  line-height: 1;
}

.counter-inline .counter-box .label {
  font-size: 0.85rem;
  color: var(--grey);
  margin-top: 4px;
}

/* Founder Section */
.founder-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  position: relative;
  overflow: hidden;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,162,39,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.founder-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  border: 4px solid var(--gold);
  background: rgba(10, 18, 32, 0.85);
}

.founder-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center top;
}

.founder-quote {
  color: rgba(255,255,255,0.9);
}

.founder-quote blockquote {
  font-size: 1.3rem;
  font-style: italic;
  line-height: 1.8;
  border-left: 4px solid var(--gold);
  padding-left: 24px;
  margin: 24px 0;
}

.founder-quote .founder-name {
  color: var(--gold-light);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.founder-quote .founder-title {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

/* Service Cards */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(26,43,68,0.08);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

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

.service-card .service-icon {
  width: 70px;
  height: 70px;
  background: var(--grey-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--gold);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--gradient-gold);
  color: var(--navy-dark);
}

.service-card h4 {
  font-size: 1.05rem;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--grey);
  margin-bottom: 16px;
}

.service-card .read-more {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.service-card .read-more i { transition: var(--transition); }
.service-card:hover .read-more i { transform: translateX(4px); }

/* Why Choose Us */
.why-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(26,43,68,0.06);
  height: 100%;
}

.why-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.why-box .why-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: var(--navy-dark);
}

.why-box h5 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.why-box p {
  font-size: 0.85rem;
  color: var(--grey);
  margin: 0;
}

/* Process Steps */
.process-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  flex-wrap: wrap;
  gap: 20px;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(201, 162, 39, 0.3);
  z-index: 0;
}

.process-step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step .step-number {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.5rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(201, 162, 39, 0.3);
}

.process-step h5 {
  color: var(--white);
  margin-bottom: 8px;
}

.process-step p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

/* Partner CTA */
.partner-cta {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.partner-cta img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  object-fit: cover;
}

.partner-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 20px 0;
}

.partner-list li {
  padding: 8px 0;
  font-size: 0.95rem;
}

.partner-list li i {
  color: var(--gold);
  margin-right: 8px;
}

/* Logo Carousel */
.logo-carousel-wrap {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.logo-carousel-wrap::before,
.logo-carousel-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.logo-carousel-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--grey-light), transparent);
}

.logo-carousel-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--grey-light), transparent);
}

.logo-track {
  display: flex;
  animation: scrollLogos 30s linear infinite;
  width: max-content;
}

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

.logo-item {
  flex-shrink: 0;
  width: 180px;
  height: 80px;
  margin: 0 20px;
  background: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--navy);
  padding: 10px 14px;
  text-align: center;
  line-height: 1.3;
}

/* Client List Grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
}

.client-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(26, 43, 68, 0.08);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  padding: 24px 18px 20px;
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.client-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(201, 162, 39, 0.35);
}

.client-logo {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  padding: 8px 12px;
  background: var(--grey-light);
  border-radius: 10px;
}

.client-logo img {
  max-width: 100%;
  max-height: 56px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.client-initials {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.client-card .client-name {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.45;
}

.clients-note {
  margin-top: 28px;
  text-align: center;
  color: var(--grey);
  font-size: 0.92rem;
}

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

/* Testimonials */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  position: relative;
  margin: 20px 10px;
}

.testimonial-card .quote-icon {
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 20px;
  right: 30px;
}

.testimonial-card .stars {
  color: var(--gold);
  margin-bottom: 16px;
}

.testimonial-card p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
}

.testimonial-card .client-info {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card .client-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy-dark);
  font-family: var(--font-heading);
}

.testimonial-card .client-name {
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.testimonial-card .client-role {
  font-size: 0.85rem;
  color: var(--grey);
  margin: 0;
}

/* Stats Section */
.stats-section {
  background: var(--gradient-navy);
  position: relative;
}

.stat-box {
  text-align: center;
  padding: 30px 20px;
}

.stat-box .stat-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.stat-box .stat-count {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  font-family: var(--font-heading);
  color: var(--gold-light);
  line-height: 1;
}

.stat-box .stat-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-top: 8px;
}

/* Contact Section */
.contact-row > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  flex: 1;
  height: 100%;
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  height: 100%;
  min-height: 0;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid rgba(26,43,68,0.12);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: var(--transition);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.15);
}

.contact-info-card {
  background: var(--gradient-navy);
  color: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  flex: 0 0 auto;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
}

.contact-info-item:last-of-type {
  margin-bottom: 0;
}

.contact-info-card .btn-gold {
  margin-top: 20px;
}

.contact-info-item .icon {
  width: 50px;
  height: 50px;
  background: rgba(201, 162, 39, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item h5 {
  color: var(--gold-light);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.contact-info-item p {
  color: rgba(255,255,255,0.85);
  margin: 0;
  font-size: 0.95rem;
}

.contact-info-item a { color: rgba(255,255,255,0.85); }
.contact-info-item a:hover { color: var(--gold-light); }

.contact-sidebar .map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  flex: 1 1 auto;
  min-height: 200px;
}

.contact-sidebar .map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: 0;
  display: block;
}

/* Footer */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  padding-top: 70px;
}

.footer h5 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

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

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-light);
  padding-left: 6px;
}

.footer-links a i {
  color: var(--gold);
  margin-right: 8px;
  font-size: 0.75rem;
}

.footer-social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-right: 8px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--navy-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  margin-top: 50px;
  font-size: 0.9rem;
}

/* Page Banner (inner pages) */
.page-banner {
  background: var(--gradient-navy);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
  margin-top: calc(-1 * var(--navbar-height));
}

body:has(.top-bar) .page-banner {
  margin-top: calc(-1 * var(--header-height));
  padding-top: 150px;
}

body:has(.top-bar).header-scrolled .page-banner {
  margin-top: calc(-1 * var(--navbar-height));
  padding-top: 120px;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920') center/cover;
  opacity: 0.15;
}

.page-banner .container { position: relative; z-index: 1; }

.page-banner h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.breadcrumb-custom {
  display: flex;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-custom li {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}

.breadcrumb-custom li a { color: var(--gold-light); }
.breadcrumb-custom li.active { color: rgba(255,255,255,0.8); }
.breadcrumb-custom li + li::before {
  content: '/';
  margin-right: 8px;
  color: rgba(255,255,255,0.4);
}

/* Floating Buttons */
.float-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: var(--transition);
  border: none;
}

.float-btn:hover {
  transform: scale(1.1);
  color: var(--white);
}

.float-btn.whatsapp { background: #25d366; }
.float-btn.call { background: var(--gold); color: var(--navy-dark); }
.float-btn.top { background: var(--navy); opacity: 0; visibility: hidden; }
.float-btn.top.visible { opacity: 1; visibility: visible; }

/* Timeline (About page) */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -33px;
  top: 5px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--gold);
}

.timeline-item .year {
  color: var(--gold);
  font-weight: 700;
  font-family: var(--font-heading);
}

/* Service Detail */
.service-detail-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  margin-bottom: 30px;
}

.service-detail-card h3 {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--grey-light);
}

.service-detail-card .service-tagline {
  color: var(--gold);
  font-weight: 600;
  font-size: 1.05rem;
  margin: -8px 0 16px;
  font-family: var(--font-heading);
}

.service-detail-card .service-intro {
  font-size: 1.02rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.service-detail-card h3 i {
  color: var(--gold);
  margin-right: 12px;
}

.eligibility-list, .doc-list, .benefit-list {
  list-style: none;
  padding: 0;
}

.eligibility-list li, .doc-list li, .benefit-list li {
  padding: 8px 0;
  padding-left: 28px;
  position: relative;
}

.eligibility-list li::before, .doc-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--gold);
}

.benefit-list li::before {
  content: '\f005';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* FAQ Accordion custom */
.accordion-button:not(.collapsed) {
  background: var(--grey-light);
  color: var(--navy);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.2);
}

/* Gallery */
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 43, 68, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover .overlay { opacity: 1; }
.gallery-item .overlay i {
  color: var(--gold);
  font-size: 2rem;
}

/* Association Grid */
.association-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}

.association-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.association-card .assoc-logo {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 16px;
}

.association-card p {
  font-size: 0.9rem;
  color: var(--grey);
  margin: 0;
}

/* Values Cards */
.value-card {
  text-align: center;
  padding: 30px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
}

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

.value-card i {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 16px;
}
