/* =============================================
   GREEN EQUITY PARTNERS LIMITED
   Custom Stylesheet
   ============================================= */

:root {
  --primary: #0b6e4f;
  --primary-light: #129e70;
  --primary-dark: #063d2c;
  --secondary: #0f7ea3;
  --secondary-light: #1ec2d6;
  --accent: #f0b429;
  --accent-light: #ffd166;
  --text-dark: #12241d;
  --text-muted: #64766f;
  --bg-light: #f6faf8;
  --bg-section: #eef6f2;
  --white: #ffffff;
  --border: #e0ece6;
  --shadow-sm: 0 2px 14px rgba(6, 61, 44, 0.08);
  --shadow-md: 0 10px 34px rgba(6, 61, 44, 0.14);
  --shadow-lg: 0 20px 54px rgba(6, 61, 44, 0.18);
  --radius: 14px;
  --radius-lg: 26px;
  --radius-organic: 42px 14px 42px 14px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --header-height: 96px;
  --grad-brand: linear-gradient(120deg, var(--primary) 0%, var(--secondary) 100%);
  --grad-brand-deep: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 45%, var(--secondary) 100%);
}

/* ---- Base ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Manrope', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: var(--header-height);
}
h1, h2, h3, h4, h5, h6 { font-family: 'Space Grotesk', sans-serif; }
a { text-decoration: none; transition: var(--transition); }
img { max-width: 100%; }

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg-light); }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 4px; }

/* ============================================
   ORGANIC BACKDROP SHAPES (reusable)
   ============================================ */
.blob {
  position: absolute;
  border-radius: 42% 58% 65% 35% / 45% 45% 55% 55%;
  animation: morph 12s ease-in-out infinite;
  pointer-events: none;
}
@keyframes morph {
  0%, 100% { border-radius: 42% 58% 65% 35% / 45% 45% 55% 55%; }
  50% { border-radius: 58% 42% 35% 65% / 55% 60% 40% 45%; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-22px) rotate(4deg); }
}

/* Wave divider */
.wave-divider { position: relative; line-height: 0; }
.wave-divider svg { width: 100%; height: 70px; display: block; }

/* ============================================
   TOP BAR
   ============================================ */
#topbar {
  background: var(--primary-dark);
  padding: 8px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.78);
}
#topbar a { color: rgba(255,255,255,0.78); }
#topbar a:hover { color: var(--accent-light); }
#topbar .social-icons a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  background: rgba(255,255,255,0.12);
  border-radius: 50%;
  color: rgba(255,255,255,0.85);
  font-size: 0.74rem;
  margin-left: 5px;
  transition: var(--transition);
}
#topbar .social-icons a:hover { background: var(--accent); color: var(--primary-dark); transform: translateY(-2px); }

/* ============================================
   FIXED SITE HEADER — glass
   ============================================ */
#siteHeader {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
}
#mainNav {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  padding: 0;
  border-bottom: 1px solid rgba(11,110,79,0.08);
  transition: var(--transition);
}
#siteHeader.scrolled #mainNav { box-shadow: var(--shadow-md); }
.navbar-brand-wrap { display: flex; align-items: center; gap: 12px; padding: 10px 0; }
.navbar-brand-wrap img { height: 50px; object-fit: contain; }
.brand-text { line-height: 1.2; }
.brand-text .full-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.2px;
  display: block;
}
.brand-text .tagline {
  font-size: 0.64rem;
  color: var(--text-muted);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  display: block;
}
.navbar-nav .nav-item { position: relative; }
.navbar-nav .nav-link {
  color: var(--primary-dark) !important;
  font-weight: 600;
  font-size: 0.87rem;
  padding: 22px 15px !important;
  letter-spacing: 0.2px;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 12px; left: 15px; right: 15px;
  height: 3px;
  background: var(--grad-brand);
  border-radius: 3px;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover, .navbar-nav .nav-link.active { color: var(--primary) !important; }
.navbar-nav .nav-link:hover::after, .navbar-nav .nav-link.active::after { transform: scaleX(1); }

.dropdown-menu {
  background: var(--white);
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  padding: 8px;
  margin-top: 0 !important;
  animation: fadeInDown 0.25s ease;
}
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.dropdown-item { font-size: 0.87rem; color: var(--text-dark); padding: 9px 14px; border-radius: 9px; font-weight: 500; transition: var(--transition); }
.dropdown-item:hover { background: var(--bg-section); color: var(--primary); padding-left: 20px; }
@media (min-width: 992px) { .nav-item.dropdown:hover .dropdown-menu { display: block; } }

/* ============================================
   MEGA MENU (Who We Are / What We Do)
   ============================================ */
.navbar-nav .nav-item.mega-menu-wrap { position: static; }
.mega-dropdown {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 34px 0;
  animation: fadeInDown 0.25s ease;
  z-index: 1040;
}
@media (min-width: 992px) { .mega-menu-wrap:hover .mega-dropdown { display: block; } }
.mega-col-title {
  font-size: 0.72rem; font-weight: 700; color: var(--secondary);
  text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px;
}
.mega-link {
  display: flex; align-items: center; gap: 13px;
  padding: 10px 12px; border-radius: 12px; margin-bottom: 3px;
  transition: var(--transition);
}
.mega-link:hover { background: var(--bg-section); padding-left: 16px; }
.mega-link .ml-icon {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0;
  background: var(--bg-section); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 0.95rem;
  transition: var(--transition);
}
.mega-link:hover .ml-icon { background: var(--grad-brand); color: #fff; }
.mega-link .ml-text { display: flex; flex-direction: column; text-align: left; }
.mega-link .ml-title { font-size: 0.87rem; font-weight: 700; color: var(--text-dark); }
.mega-link .ml-desc { font-size: 0.75rem; color: var(--text-muted); margin-top: 1px; }
.mega-divider { width: 1px; background: var(--border); }

/* Mega menu — people preview (photos in submenu) */
.mega-people { display: flex; flex-direction: column; gap: 4px; }
.mega-person {
  display: flex; align-items: center; gap: 12px;
  padding: 8px 10px; border-radius: 12px; transition: var(--transition);
}
.mega-person:hover { background: var(--bg-section); padding-left: 14px; }
.mega-person img {
  width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--white); box-shadow: 0 0 0 2px var(--border);
  flex-shrink: 0;
}
.mega-person .mp-name { font-size: 0.85rem; font-weight: 700; color: var(--text-dark); }
.mega-person .mp-role { font-size: 0.72rem; color: var(--secondary); font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; }

.mega-highlight {
  background: var(--grad-brand-deep); border-radius: var(--radius-lg);
  padding: 26px; color: #fff; height: 100%; position: relative; overflow: hidden;
}
.mega-highlight::before { content:''; position:absolute; top:-40px; right:-40px; width:140px; height:140px; background:rgba(255,255,255,0.06); border-radius:50%; }
.mega-highlight .mh-label { font-size: 0.7rem; font-weight: 700; color: var(--accent-light); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 10px; position:relative; z-index:1; }
.mega-highlight h6 { font-size: 0.98rem; font-weight: 800; color: #fff; line-height: 1.4; margin-bottom: 10px; position:relative; z-index:1; }
.mega-highlight p { font-size: 0.8rem; color: rgba(255,255,255,0.72); line-height: 1.7; margin-bottom: 16px; position:relative; z-index:1; }
.mega-highlight .mh-btn {
  font-size: 0.78rem; font-weight: 700; color: var(--primary-dark); background: var(--accent);
  padding: 8px 16px; border-radius: 50px; display: inline-flex; align-items: center; gap: 6px;
  position: relative; z-index: 1; transition: var(--transition);
}
.mega-highlight .mh-btn:hover { background: var(--accent-light); }

.navbar-nav .nav-link.btn-nav-cta {
  background: var(--grad-brand);
  color: #fff !important;
  font-weight: 700;
  padding: 9px 20px !important;
  border-radius: 10px;
  font-size: 0.85rem !important;
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 6px 18px rgba(11,110,79,0.28);
}
.btn-nav-cta::after { display: none !important; }
.btn-nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(11,110,79,0.38); }

.navbar-toggler { border: none; padding: 6px 10px; }

/* Mobile drawer */
#drawerToggle {
  background: transparent; border: none; color: var(--primary-dark);
  font-size: 1.4rem; padding: 6px 10px; display: none;
}
@media (max-width: 991px) { #drawerToggle { display: inline-flex; } }
#drawerOverlay {
  position: fixed; inset: 0; background: rgba(6,61,44,0.55);
  z-index: 1200; opacity: 0; visibility: hidden; transition: var(--transition);
}
#drawerOverlay.active { opacity: 1; visibility: visible; }
#mobileDrawer {
  position: fixed; top: 0; left: -320px; width: 300px; height: 100%;
  background: var(--primary-dark); z-index: 1300; transition: left 0.35s ease;
  display: flex; flex-direction: column;
}
#mobileDrawer.open { left: 0; }
.drawer-header { display: flex; align-items: center; justify-content: space-between; padding: 22px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.drawer-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; }
.drawer-logo-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--grad-brand); display: flex; align-items: center; justify-content: center; font-weight: 800; }
#drawerClose { background: transparent; border: none; color: #fff; font-size: 1.2rem; }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 10px; }
.drawer-nav { list-style: none; }
.drawer-link, .drawer-parent {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  background: transparent; border: none; color: rgba(255,255,255,0.85);
  padding: 13px 14px; border-radius: 10px; font-size: 0.92rem; font-weight: 600;
}
.drawer-link:hover, .drawer-parent:hover { background: rgba(255,255,255,0.08); color: #fff; }
.drawer-arrow { margin-left: auto; transition: transform 0.3s ease; font-size: 0.75rem; }
.drawer-item-group.open .drawer-arrow { transform: rotate(180deg); }
.drawer-sub { list-style: none; max-height: 0; overflow: hidden; transition: max-height 0.35s ease; padding-left: 10px; }
.drawer-item-group.open .drawer-sub { max-height: 500px; }
.drawer-sub a { display: flex; gap: 10px; align-items: center; color: rgba(255,255,255,0.65); padding: 9px 14px; font-size: 0.85rem; border-radius: 8px; }
.drawer-sub a:hover { background: rgba(255,255,255,0.06); color: #fff; }
.drawer-footer { padding: 18px 22px; border-top: 1px solid rgba(255,255,255,0.1); }
.drawer-social { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.08); display: inline-flex; align-items: center; justify-content: center; color: #fff; font-size: 0.8rem; }
body.drawer-open { overflow: hidden; }

/* ============================================
   HERO
   ============================================ */
#hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
  padding: 60px 0 40px;
}

/* Hero slideshow — Ken Burns zoom + crossfade */
.hero-slideshow { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.6s ease-in-out; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-slide .slide-art { position: absolute; inset: -6%; width: 112%; height: 112%; transform: scale(1); }
.hero-slide .slide-art svg, .hero-slide .slide-art img { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero-slide.kb-in .slide-art { transform: scale(1); }
.hero-slide.kb-out .slide-art { transform: scale(1.14); }
.hero-slide.active.kb-in .slide-art { animation: kenburnsIn 9000ms ease-in-out forwards; }
.hero-slide.active.kb-out .slide-art { animation: kenburnsOut 9000ms ease-in-out forwards; }
@keyframes kenburnsIn { from { transform: scale(1); } to { transform: scale(1.14); } }
@keyframes kenburnsOut { from { transform: scale(1.14); } to { transform: scale(1); } }
.hero-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(4,20,15,0.92) 0%, rgba(6,45,35,0.82) 30%, rgba(11,110,79,0.58) 55%, rgba(15,126,163,0.4) 100%);
}
.hero-slide-dots {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3;
  display: flex; gap: 8px;
}
.hero-slide-dots span {
  width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.35);
  transition: var(--transition); cursor: pointer;
}
.hero-slide-dots span.active { width: 26px; border-radius: 5px; background: var(--accent); }
#hero .blob-1 { width: 620px; height: 620px; top: -220px; right: -160px; background: rgba(255,255,255,0.05); animation-delay: 0s; }
#hero .blob-2 { width: 380px; height: 380px; bottom: -160px; left: -120px; background: rgba(240,180,41,0.08); animation-delay: 3s; }
#hero .blob-3 { width: 220px; height: 220px; top: 20%; right: 18%; background: rgba(30,194,214,0.12); animation: morph 10s ease-in-out infinite, floatY 7s ease-in-out infinite; }
.hero-grid-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.09) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 40%, transparent 100%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(240,180,41,0.16);
  border: 1px solid rgba(240,180,41,0.4);
  color: var(--accent-light);
  padding: 7px 20px;
  border-radius: 100px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 26px;
}
.hero-badge .dot { width: 7px; height: 7px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(1.5); } }
.hero-title { font-size: clamp(2.3rem, 5vw, 3.75rem); font-weight: 800; color: #fff; line-height: 1.14; margin-bottom: 22px; letter-spacing: -0.5px; }
.hero-title .hl { background: linear-gradient(120deg, var(--accent-light), var(--secondary-light)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-desc { font-size: 1.06rem; color: rgba(255,255,255,0.78); max-width: 560px; margin-bottom: 38px; line-height: 1.85; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.btn-hero-primary {
  background: var(--accent); color: var(--primary-dark); font-weight: 700;
  padding: 15px 34px; border-radius: 50px; border: none; font-size: 0.9rem;
  transition: var(--transition); box-shadow: 0 8px 26px rgba(240,180,41,0.35);
  display: inline-flex; align-items: center; gap: 9px;
}
.btn-hero-primary:hover { background: var(--accent-light); color: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 12px 34px rgba(240,180,41,0.45); }
.btn-hero-outline {
  background: rgba(255,255,255,0.06); color: #fff; font-weight: 600; padding: 14px 32px;
  border-radius: 50px; border: 1.5px solid rgba(255,255,255,0.35); font-size: 0.9rem;
  transition: var(--transition); display: inline-flex; align-items: center; gap: 9px;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.6); color: #fff; transform: translateY(-3px); }
.hero-stats { display: flex; gap: 38px; flex-wrap: wrap; }
.hero-stat .num { font-size: 2.1rem; font-weight: 800; color: var(--accent-light); line-height: 1; font-family: 'Space Grotesk', sans-serif; }
.hero-stat .lbl { font-size: 0.76rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.6px; margin-top: 5px; }
.hero-sdiv { width: 1px; background: rgba(255,255,255,0.16); }

.hero-visual { position: relative; padding: 10px; }
.hero-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-organic);
  padding: 34px;
  color: #fff;
}
.hero-card-icon {
  width: 58px; height: 58px; background: rgba(30,194,214,0.18);
  border: 1px solid rgba(30,194,214,0.35); border-radius: 18px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 18px;
}
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.hero-pill {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.86); padding: 6px 15px; border-radius: 100px;
  font-size: 0.79rem; font-weight: 500; transition: var(--transition); cursor: default;
}
.hero-pill:hover { background: var(--accent); color: var(--primary-dark); border-color: var(--accent); }
.floating-chip {
  position: absolute; background: var(--white); border-radius: var(--radius);
  padding: 15px 19px; box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 13px;
  animation: floatY 6s ease-in-out infinite;
}
.floating-chip.c1 { bottom: -16px; left: -26px; animation-delay: 0s; }
.floating-chip.c2 { top: -18px; right: -22px; animation-delay: 2s; }
.floating-chip .icon { width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; color: #fff; background: var(--grad-brand); }
.floating-chip .title { font-size: 0.82rem; font-weight: 700; color: var(--text-dark); line-height: 1; }
.floating-chip .sub { font-size: 0.72rem; color: var(--text-muted); margin-top: 3px; }

/* ============================================
   SECTION STYLES
   ============================================ */
.section-pad { padding: 100px 0; }
.section-pad-sm { padding: 64px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 700; color: var(--secondary);
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 14px;
}
.section-label::before { content: ''; width: 26px; height: 3px; background: var(--accent); border-radius: 3px; }
.section-title { font-size: clamp(1.85rem, 3.4vw, 2.6rem); font-weight: 800; color: var(--text-dark); line-height: 1.22; margin-bottom: 16px; letter-spacing: -0.5px; }
.section-title span { color: var(--primary); }
.section-desc { font-size: 1.02rem; color: var(--text-muted); max-width: 580px; line-height: 1.85; }
.divider-line { width: 60px; height: 4px; background: linear-gradient(90deg, var(--primary), var(--secondary)); border-radius: 3px; margin: 16px 0 32px; }

/* ============================================
   GOAL / MISSION BANNER
   ============================================ */
.goal-banner {
  background: var(--grad-brand-deep);
  border-radius: var(--radius-organic);
  padding: 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.goal-banner::before { content: ''; position: absolute; top: -70px; right: -70px; width: 240px; height: 240px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.goal-banner::after { content: ''; position: absolute; bottom: -50px; left: -50px; width: 180px; height: 180px; background: rgba(240,180,41,0.1); border-radius: 50%; }
.goal-quote-mark { font-family: 'Space Grotesk', sans-serif; font-size: 4rem; color: var(--accent); line-height: 1; opacity: 0.6; }
.goal-text { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 700; line-height: 1.55; margin: 8px 0 20px; }
.goal-sub { color: rgba(255,255,255,0.72); font-size: 0.95rem; max-width: 700px; }

/* ============================================
   ABOUT / FEATURES
   ============================================ */
#about { background: var(--bg-light); }
.about-img-wrap { position: relative; padding: 20px 20px 20px 0; }
.about-img-main { border-radius: var(--radius-organic); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; position: relative; overflow: hidden; }
.about-img-main .aim-art { position: absolute; inset: 0; z-index: 0; }
.about-img-main .aim-art svg, .about-img-main .aim-art img { width: 100%; height: 100%; display: block; object-fit: cover; }
.about-img-main .aim-scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(4,20,15,0.82) 0%, rgba(4,20,15,0.15) 55%, rgba(4,20,15,0.35) 100%); }
.about-img-main .aim-caption { position: relative; z-index: 2; }
.about-badge-card { position: absolute; bottom: 0; right: -6px; background: var(--primary-dark); color: #fff; border-radius: var(--radius); padding: 20px 26px; box-shadow: var(--shadow-lg); min-width: 170px; }
.about-badge-card .big-num { font-size: 1.7rem; font-weight: 800; color: var(--accent-light); line-height: 1.15; font-family: 'Space Grotesk', sans-serif; }
.about-badge-card .small-text { font-size: 0.76rem; color: rgba(255,255,255,0.8); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.about-features { display: grid; gap: 16px; margin-top: 28px; }
.about-feature { display: flex; align-items: flex-start; gap: 15px; padding: 18px 20px; background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); transition: var(--transition); }
.about-feature:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateX(6px); }
.about-feature .icon { width: 46px; height: 46px; background: var(--grad-brand); color: #fff; border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.about-feature .text h6 { font-weight: 700; font-size: 0.94rem; margin-bottom: 3px; color: var(--text-dark); }
.about-feature .text p { font-size: 0.84rem; color: var(--text-muted); margin: 0; }

/* ============================================
   SERVICE CARDS (What We Do)
   ============================================ */
#services-grid { background: var(--white); }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-organic);
  padding: 36px 30px; transition: var(--transition); height: 100%; position: relative; overflow: hidden;
}
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--grad-brand); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.service-card:hover { box-shadow: var(--shadow-md); border-color: transparent; transform: translateY(-6px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { width: 66px; height: 66px; background: var(--grad-brand); border-radius: 18px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; color: #fff; margin-bottom: 22px; transition: var(--transition); }
.service-card:hover .service-icon { background: linear-gradient(135deg, var(--accent), var(--accent-light)); color: var(--primary-dark); }
.service-card h5 { font-size: 1.08rem; font-weight: 700; color: var(--text-dark); margin-bottom: 11px; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.service-tag { font-size: 0.71rem; font-weight: 600; background: var(--bg-section); color: var(--primary); padding: 4px 11px; border-radius: 100px; }
.service-link { font-size: 0.83rem; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.service-link:hover { color: var(--secondary); gap: 10px; }

/* Detailed service block (services.html) */
.service-block { display: flex; gap: 28px; padding: 34px; border-radius: var(--radius-lg); border: 1px solid var(--border); background: var(--white); transition: var(--transition); }
.service-block:hover { box-shadow: var(--shadow-md); border-color: transparent; }
.service-block .num { font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--bg-section); flex-shrink: 0; line-height: 1; -webkit-text-stroke: 1.5px var(--border); }
.service-block h4 { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
.service-block p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.8; margin-bottom: 14px; }
.service-block ul { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 8px 18px; }
.service-block ul li { font-size: 0.85rem; color: var(--text-dark); display: flex; align-items: center; gap: 8px; }
.service-block ul li i { color: var(--secondary); font-size: 0.8rem; }

/* ============================================
   STATS
   ============================================ */
.stats-section { background: var(--grad-brand-deep); padding: 64px 0; position: relative; overflow: hidden; }
.stats-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.stat-item { text-align: center; padding: 10px 16px; flex: 1 1 0; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 1px; height: 40px; background: rgba(255,255,255,0.14);
}
.stat-item .count { font-size: 2.6rem; font-weight: 800; color: var(--accent-light); line-height: 1; font-family: 'Space Grotesk', sans-serif; }
.stat-item .stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.72); text-transform: uppercase; letter-spacing: 1px; margin-top: 9px; }

/* ============================================
   CLIENTS / SECTORS (Who We Work With)
   ============================================ */
.client-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px; height: 100%; transition: var(--transition); text-align: center; }
.client-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); border-color: transparent; }
.client-icon { width: 60px; height: 60px; margin: 0 auto 18px; border-radius: 16px; background: var(--bg-section); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; }
.client-card h6 { font-weight: 700; font-size: 0.98rem; margin-bottom: 8px; }
.client-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; margin: 0; }

.sector-pill-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.sector-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); border: 1.5px solid var(--border); border-radius: 100px;
  padding: 12px 22px; font-size: 0.87rem; font-weight: 600; color: var(--text-dark);
  transition: var(--transition);
}
.sector-pill i { color: var(--secondary); }
.sector-pill:hover { background: var(--primary); border-color: var(--primary); color: #fff; }
.sector-pill:hover i { color: var(--accent-light); }

.engagement-step { display: flex; gap: 20px; padding: 26px 0; border-bottom: 1px dashed var(--border); }
.engagement-step:last-child { border-bottom: none; }
.engagement-step .step-num { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-brand); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 800; flex-shrink: 0; font-family: 'Space Grotesk', sans-serif; }
.engagement-step h6 { font-weight: 700; font-size: 0.98rem; margin-bottom: 6px; }
.engagement-step p { font-size: 0.87rem; color: var(--text-muted); margin: 0; line-height: 1.75; }

/* ============================================
   INSIGHTS / NEWS
   ============================================ */
#insights-grid { background: var(--bg-section); }
.insight-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); height: 100%; border: 1px solid var(--border); }
.insight-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.insight-img-wrap { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--grad-brand); display: flex; align-items: center; justify-content: center; }
.insight-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.insight-card:hover .insight-img-wrap img { transform: scale(1.06); }
.insight-category { position: absolute; top: 14px; left: 14px; background: var(--accent); color: var(--primary-dark); font-size: 0.7rem; font-weight: 700; padding: 4px 13px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.5px; }
.insight-body { padding: 24px; }
.insight-meta { display: flex; align-items: center; gap: 12px; font-size: 0.78rem; color: var(--text-muted); margin-bottom: 12px; flex-wrap: wrap; }
.insight-meta i { color: var(--secondary); }
.insight-body h5 { font-size: 1rem; font-weight: 700; color: var(--text-dark); line-height: 1.5; margin-bottom: 12px; transition: var(--transition); }
.insight-card:hover .insight-body h5 { color: var(--primary); }
.read-more { font-size: 0.83rem; font-weight: 700; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; transition: var(--transition); }
.read-more:hover { color: var(--secondary); gap: 10px; }

/* Sidebar widget (insight detail pages) */
.sidebar-widget { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 24px; }
.sidebar-widget-header { background: var(--grad-brand-deep); color: #fff; padding: 16px 22px; font-size: 0.92rem; font-weight: 700; display: flex; align-items: center; gap: 9px; }
.sidebar-widget-body { padding: 10px 22px 18px; }
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li { padding: 13px 0; border-bottom: 1px dashed var(--border); }
.sidebar-list li:last-child { border-bottom: none; }
.sidebar-list a { color: var(--text-dark); font-size: 0.87rem; font-weight: 600; line-height: 1.5; display: block; transition: var(--transition); }
.sidebar-list a:hover { color: var(--primary); padding-left: 4px; }

.filter-tabs { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-tab { padding: 9px 22px; border-radius: 50px; border: 1.5px solid var(--border); background: var(--white); color: var(--text-muted); font-size: 0.84rem; font-weight: 600; cursor: pointer; transition: var(--transition); }
.filter-tab:hover, .filter-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }

/* ============================================
   TEAM / LEADERSHIP
   ============================================ */
.team-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.team-avatar { width: 100%; aspect-ratio: 1/1; background: var(--grad-brand); display: flex; align-items: center; justify-content: center; font-size: 2.4rem; color: rgba(255,255,255,0.35); font-weight: 800; font-family: 'Space Grotesk', sans-serif; position: relative; overflow: hidden; }
.team-avatar::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.18), transparent 60%); }
.team-body { padding: 22px; }
.team-body h6 { font-weight: 700; font-size: 1rem; color: var(--text-dark); margin-bottom: 4px; }
.team-body .role { font-size: 0.78rem; color: var(--secondary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 12px; }
.team-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; margin: 0; }
.team-social { display: flex; gap: 8px; margin-top: 14px; }
.team-social a { width: 32px; height: 32px; border-radius: 50%; background: var(--bg-section); color: var(--text-muted); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; transition: var(--transition); }
.team-social a:hover { background: var(--primary); color: #fff; }

/* Values */
.value-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px 26px; text-align: center; height: 100%; transition: var(--transition); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.value-icon { width: 68px; height: 68px; margin: 0 auto 20px; border-radius: 50%; background: var(--bg-section); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; }
.value-card h5 { font-weight: 700; font-size: 1.02rem; margin-bottom: 10px; }
.value-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.75; }

/* Mission / Vision */
.mv-card { border-radius: var(--radius-organic); padding: 42px; height: 100%; position: relative; overflow: hidden; }
.mv-card .mv-icon { width: 62px; height: 62px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 22px; }
.mv-card .mv-label { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.mv-card h4 { font-weight: 800; margin-bottom: 16px; line-height: 1.4; }
.mv-card p { font-size: 0.92rem; line-height: 1.8; margin: 0; }

/* Timeline (registration / history strip if needed) */
.info-strip { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 30px 34px; display: flex; gap: 26px; flex-wrap: wrap; align-items: center; justify-content: space-between; }
.info-strip .info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-strip .info-item i { width: 42px; height: 42px; border-radius: 12px; background: var(--bg-section); color: var(--primary); display: flex; align-items: center; justify-content: center; font-size: 1.05rem; flex-shrink: 0; }
.info-strip .info-item h6 { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.6px; color: var(--text-muted); margin-bottom: 4px; }
.info-strip .info-item div.val { font-size: 0.9rem; font-weight: 700; color: var(--text-dark); }

/* ============================================
   CTA BANNER
   ============================================ */
#cta-section {
  background: var(--grad-brand-deep);
  position: relative; overflow: hidden; padding: 90px 0;
}
#cta-section::before { content: ''; position: absolute; top: -90px; right: -90px; width: 320px; height: 320px; background: rgba(240,180,41,0.1); border-radius: 50%; }
#cta-section::after { content: ''; position: absolute; bottom: -70px; left: -70px; width: 220px; height: 220px; background: rgba(30,194,214,0.12); border-radius: 50%; }
.cta-title { color: #fff; font-weight: 800; font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 16px; }
.cta-sub { color: rgba(255,255,255,0.72); font-size: 1rem; max-width: 520px; }
.newsletter-form { position: relative; max-width: 440px; }
.newsletter-form input {
  width: 100%; padding: 15px 150px 15px 22px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,0.25);
  font-size: 0.9rem; outline: none; background: rgba(255,255,255,0.12); color: var(--white); backdrop-filter: blur(10px);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form button {
  position: absolute; right: 5px; top: 5px; bottom: 5px; background: var(--accent); color: var(--primary-dark);
  border: none; border-radius: 50px; padding: 0 24px; font-weight: 700; font-size: 0.85rem; cursor: pointer; transition: var(--transition);
}
.newsletter-form button:hover { background: var(--accent-light); }

/* ============================================
   FOOTER
   ============================================ */
#footer { background: var(--primary-dark); color: rgba(255,255,255,0.75); padding: 74px 0 0; position: relative; overflow: hidden; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { height: 46px; background: #fff; border-radius: 10px; padding: 6px 12px; }
.footer-brand .full { font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 700; color: #fff; line-height: 1.3; display: block; }
.footer-brand .sub { font-size: 0.72rem; color: rgba(255,255,255,0.55); letter-spacing: 0.5px; }
.footer-desc { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.85; margin: 16px 0; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 37px; height: 37px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.72); font-size: 0.85rem; transition: var(--transition); }
.footer-social a:hover { background: var(--accent); color: var(--primary-dark); border-color: var(--accent); transform: translateY(-3px); }
.footer-heading { font-size: 0.87rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 22px; position: relative; padding-bottom: 11px; }
.footer-heading::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 3px; background: var(--accent); border-radius: 3px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.footer-links a::before { content: '›'; color: var(--accent); font-size: 1.05rem; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; font-size: 0.85rem; color: rgba(255,255,255,0.62); }
.footer-contact-item i { color: var(--accent); font-size: 0.9rem; margin-top: 3px; flex-shrink: 0; }
.footer-bottom { background: rgba(0,0,0,0.2); border-top: 1px solid rgba(255,255,255,0.07); padding: 20px 0; margin-top: 54px; position: relative; z-index: 1; }
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin: 0; }
.footer-bottom a { color: var(--accent-light); }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================
   BUTTONS (GLOBAL)
   ============================================ */
.btn-primary-custom { background: var(--primary); color: var(--white); padding: 12px 30px; border-radius: 50px; border: none; font-weight: 600; font-size: 0.88rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-primary-custom:hover { background: var(--primary-light); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(11,110,79,0.3); }
.btn-outline-custom { background: transparent; color: var(--primary); padding: 11px 28px; border-radius: 50px; border: 2px solid var(--primary); font-weight: 600; font-size: 0.88rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-custom:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; padding: 13px 30px; border-radius: 50px; border: 1.5px solid rgba(255,255,255,0.4); font-weight: 600; font-size: 0.88rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); color: #fff; }
.btn-accent-custom { background: var(--accent); color: var(--primary-dark); padding: 12px 30px; border-radius: 50px; border: none; font-weight: 700; font-size: 0.88rem; transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.btn-accent-custom:hover { background: var(--accent-light); color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(240,180,41,0.4); }
.view-all-wrap { text-align: center; margin-top: 50px; }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header { background: var(--grad-brand-deep); padding: 84px 0 60px; position: relative; overflow: hidden; }
.page-header .blob { background: rgba(255,255,255,0.05); }
.page-header .blob-1 { width: 420px; height: 420px; top: -160px; right: -90px; }
.page-header .blob-2 { width: 260px; height: 260px; bottom: -110px; left: -70px; background: rgba(240,180,41,0.08); }
.page-header-label { font-size: 0.75rem; font-weight: 700; color: var(--accent-light); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 11px; }
.page-header h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 800; color: #fff; margin-bottom: 14px; line-height: 1.2; }
.page-header p { font-size: 0.98rem; color: rgba(255,255,255,0.72); max-width: 560px; line-height: 1.85; margin-bottom: 22px; }
.breadcrumb { background: transparent; margin: 0; padding: 0; }
.breadcrumb-item a { color: rgba(255,255,255,0.65); font-size: 0.84rem; }
.breadcrumb-item a:hover { color: var(--accent-light); }
.breadcrumb-item.active { color: rgba(255,255,255,0.9); font-size: 0.84rem; }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); content: "›"; }

/* ============================================
   CONTACT
   ============================================ */
.contact-form .form-control, .contact-form .form-select {
  border: 1.5px solid var(--border); border-radius: 12px; padding: 13px 17px; font-size: 0.9rem;
  transition: var(--transition); background: var(--bg-light);
}
.contact-form .form-control:focus, .contact-form .form-select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(11,110,79,0.1); background: #fff; }
.contact-form label { font-size: 0.82rem; font-weight: 700; color: var(--text-dark); margin-bottom: 7px; display: block; }
.contact-info-card { background: var(--grad-brand-deep); border-radius: var(--radius-organic); padding: 40px; color: #fff; height: 100%; position: relative; overflow: hidden; }
.contact-info-card::before { content: ''; position: absolute; top: -60px; right: -60px; width: 200px; height: 200px; background: rgba(255,255,255,0.05); border-radius: 50%; }
.contact-info-item { display: flex; gap: 15px; align-items: flex-start; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,0.1); position: relative; z-index: 1; }
.contact-info-item:last-child { border-bottom: none; }
.ci-icon { width: 46px; height: 46px; flex-shrink: 0; background: rgba(255,255,255,0.12); border-radius: 13px; display: flex; align-items: center; justify-content: center; font-size: 1.05rem; }
.ci-icon i { color: var(--accent-light); }
.contact-info-item h6 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: 0.85rem; color: rgba(255,255,255,0.68); margin: 0; }
.contact-info-item a:hover { color: var(--accent-light); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ============================================
   BACK TO TOP
   ============================================ */
#backToTop {
  position: fixed; bottom: 28px; right: 28px; width: 48px; height: 48px;
  background: var(--grad-brand); color: var(--white); border: none; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1rem; cursor: pointer;
  transition: var(--transition); box-shadow: 0 6px 20px rgba(11,110,79,0.35);
  opacity: 0; visibility: hidden; z-index: 999;
}
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { transform: translateY(-4px) scale(1.05); }

/* ============================================
   ANIMATIONS
   ============================================ */
[data-aos] { opacity: 0; transition-property: transform, opacity; }
[data-aos].aos-animate { opacity: 1; }
[data-aos="fade-up"] { transform: translateY(32px); }
[data-aos="fade-up"].aos-animate { transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-32px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(32px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }
[data-aos="zoom-in"] { transform: scale(0.9); }
[data-aos="zoom-in"].aos-animate { transform: scale(1); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .section-pad { padding: 68px 0; }
  .navbar-nav .nav-link { padding: 11px 15px !important; }
  .navbar-nav .nav-link::after { display: none; }
  .hero-stats { gap: 26px; }
  .hero-sdiv { display: none; }
  .floating-chip { display: none; }
  .goal-banner { padding: 40px; }
  .service-block { flex-direction: column; }
}
@media (max-width: 767px) {
  .section-pad { padding: 54px 0; }
  .hero-cta { flex-direction: column; }
  .hero-stats { gap: 22px; }
  .hero-stat .num { font-size: 1.75rem; }
  #topbar { display: none; }
  .stats-section { padding: 44px 0; }
  .stat-item { flex: 1 1 50%; margin-bottom: 20px; }
  .stat-item:nth-child(2n)::after { display: none; }
  .info-strip { flex-direction: column; align-items: flex-start; }
}
