:root {
  --primary-color: #0B2545; /* Deep Navy Blue */
  --primary-light: #13315C;
  --accent-color: #C5A028; /* Premium Gold */
  --accent-light: #DFBD51;
  --text-dark: #1A1A1A;
  --text-muted: #666666;
  --text-light: #F8F9FA;
  --bg-main: #FAFAFA;
  --bg-card: #FFFFFF;
  --bg-dark: #0A192F;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.18);
  --border-radius: 12px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: 'Outfit', 'Inter', sans-serif;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: var(--accent-color);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-light);
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-primary { color: var(--primary-color); }
.text-accent { color: var(--accent-color); }
.text-white { color: var(--text-light); }
.text-light { color: #ffffff !important; opacity: 1 !important; }
.text-muted { color: var(--text-muted); }

/* Layout Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.gap-4 { gap: 2rem; }
.grid { display: grid; }

/* Spacing */
.py-section { padding: 5rem 0; }
.pt-section { padding-top: 5rem; }
.pb-section { padding-bottom: 5rem; }
.mt-4 { margin-top: 2rem; }
.mb-4 { margin-bottom: 2rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--text-light);
  box-shadow: 0 4px 15px rgba(11, 37, 69, 0.2);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(11, 37, 69, 0.3);
}

.btn-accent {
  background-color: var(--accent-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(197, 160, 40, 0.3);
}

.btn-accent:hover {
  background-color: var(--accent-light);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(197, 160, 40, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--text-light);
  transform: translateY(-3px);
}

/* Glassmorphism Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 0.8rem 0;
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.95);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo img {
  height: 40px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links li a {
  color: var(--primary-color);
  font-weight: 500;
  position: relative;
  font-size: 1.05rem;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--accent-color);
  transition: var(--transition);
}

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

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  background: none;
  border: none;
}

/* Footer */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h3 {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
}

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

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

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

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

.fade-in.active {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--bg-card);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: 0.4s ease-in-out;
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .py-section { padding: 4rem 0; }
}

/* =============================================
   HOME PAGE STYLES (extracted from index.html)
   ============================================= */

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--bg-main) 0%, rgba(11, 37, 69, 0.05) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-shape {
    position: absolute;
    top: -10%;
    right: -5%;
    width: 50%;
    height: 120%;
    background: var(--primary-color);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.1;
    z-index: 0;
    animation: morph 15s ease-in-out infinite;
}

@keyframes morph {
    0%   { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    50%  { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; }
    100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content h1 span {
    color: var(--accent-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-muted);
    max-width: 90%;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: var(--accent-light);
    border-radius: 20px;
    z-index: 1;
    opacity: 0.5;
}

/* Floating Stats */
.hero-stats-box {
    position: absolute;
    top: 20%;
    left: -15%;
    background: rgba(240, 245, 250, 0.85);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
    text-align: left;
    animation: float 6s ease-in-out infinite;
}

.hero-stats-box .stat-item {
    margin-bottom: 2rem;
    position: relative;
}

.hero-stats-box .stat-item:last-child {
    margin-bottom: 0;
    padding-top: 1.5rem;
}

.hero-stats-box .stat-item:last-child::before {
    content: '';
    position: absolute;
    top: -0.5rem;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(11, 37, 69, 0.15) 50%, transparent);
    transform: skewX(-30deg);
}

.hero-stats-box h3 {
    font-size: 2.2rem;
    color: #0d284f;
    margin: 0;
    line-height: 1;
    display: flex;
    align-items: flex-start;
}

.hero-stats-box p {
    margin: 5px 0 0 0;
    color: #0d284f;
    font-weight: 400;
    font-size: 1.1rem;
}

/* Floating Clients / LinkedIn */
.hero-clients {
    position: absolute;
    bottom: 15%;
    right: -10%;
    background: rgba(240, 245, 250, 0.85);
    backdrop-filter: blur(10px);
    padding: 0.8rem 2rem 0.8rem 0.8rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    animation: float 7s ease-in-out infinite reverse;
}

.hero-clients-avatars {
    display: flex;
    align-items: center;
}

.hero-clients-avatars img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    margin-left: -18px;
    box-shadow: var(--shadow-sm);
    background: white;
}

.hero-clients-avatars img:first-child { margin-left: 0; }

.hero-clients-avatars .arrow-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #0d284f;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -18px;
    z-index: 4;
    border: 3px solid white;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.hero-clients-avatars .arrow-btn:hover { background: var(--accent-color); }

.hero-clients-stats h4 {
    font-size: 1.8rem;
    color: #0d284f;
    margin: 0;
    line-height: 1.2;
}

.hero-clients-stats p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 400;
}

@keyframes float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Hero Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    .hero-content p { margin: 0 auto 2.5rem; }
    .hero-content h1 { font-size: 2.8rem; }
    .hero-image img { max-width: 60%; }
    .hero-stats-box {
        top: 10%;
        left: 5%;
        padding: 1rem 1.5rem;
    }
    .hero-stats-box h3 { font-size: 2rem; }
    .hero-clients { bottom: -5%; right: 10%; }
}

@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .hero-image img { max-width: 80%; }
    .hero-image {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        padding-bottom: 2rem;
    }
    .hero-stats-box,
    .hero-clients {
        position: relative;
        top: auto; bottom: auto; left: auto; right: auto;
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
        animation: none;
    }
    .hero-stats-box {
        padding: 1.5rem;
        display: flex;
        justify-content: space-around;
        text-align: center;
    }
    .hero-stats-box .stat-item { margin-bottom: 0; }
    .hero-stats-box .stat-item:last-child { padding-top: 0; }
    .hero-stats-box .stat-item:last-child::before { display: none; }
    .hero-stats-box h3 { font-size: 1.8rem; justify-content: center; }
    .hero-stats-box p { font-size: 0.9rem; }
    .hero-clients { padding: 1rem 1.5rem; gap: 1.2rem; justify-content: center; }
    .hero-clients-avatars img,
    .hero-clients-avatars .arrow-btn { width: 45px; height: 45px; }
    .hero-clients-stats h4 { font-size: 1.5rem; }
}

/* Vision Section */
.vision-section {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.vision-section h2,
.vision-section h3 { color: var(--text-light); }

.vision-section p { color: #ffffff; }

.vision-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 3rem;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.vision-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.vision-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

/* Causes Section */
.causes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cause-card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.cause-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--accent-color);
}

.cause-icon {
    width: 80px;
    height: 80px;
    background: rgba(197, 160, 40, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent-color);
    transition: var(--transition);
}

.cause-card:hover .cause-icon {
    background: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

/* Contact Section */
.contact-section {
    background: linear-gradient(to bottom, var(--bg-main), #fff);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-info h4 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-info p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Carousel Section */
.carousel-section { background-color: #f8f9fa; }

.carousel-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    background: white;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 500px;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.carousel-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.carousel-btn:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn { left: -25px; }
.next-btn { right: -25px; }

@media (max-width: 768px) {
    .carousel-btn { width: 40px; height: 40px; }
    .prev-btn { left: -10px; }
    .next-btn { right: -10px; }
    .carousel-track { height: 350px; }
}

/* News Section */
.news-section { background-color: var(--bg-card); }

.news-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.news-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.news-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.news-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: var(--transition);
}

.news-image-wrapper:hover img { transform: scale(1.05); }

.news-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.news-content .news-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.news-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.news-content blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--primary-color);
    font-size: 1.15rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .news-container { grid-template-columns: 1fr; gap: 3rem; }
    .news-images { grid-template-columns: 1fr 1fr; }
}

/* MCO Section */
.mco-section {
    background: linear-gradient(135deg, #0d284f 0%, #1a3a6a 100%);
    color: white;
    overflow: hidden;
}

.mco-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mco-content h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.mco-content .highlight-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.mco-video-preview {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    aspect-ratio: 16 / 9;
    background: #000;
}

.mco-video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: var(--transition);
}

.mco-video-preview:hover img {
    opacity: 0.9;
    transform: scale(1.05);
}

.play-btn-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 0 30px rgba(197, 160, 40, 0.5);
    transition: var(--transition);
}

.mco-video-preview:hover .play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 50px rgba(197, 160, 40, 0.8);
}

.arrow-indicator {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.5rem;
    color: var(--accent-color);
    animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40%  { transform: translateX(-50%) translateY(-20px); }
    60%  { transform: translateX(-50%) translateY(-10px); }
}

/* Video Overlay */
.video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.video-overlay.active { display: flex; }

.video-overlay-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    aspect-ratio: 16 / 9;
}

.video-overlay-content video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.close-video {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

.close-video:hover { color: var(--accent-color); }

@media (max-width: 992px) {
    .mco-container { grid-template-columns: 1fr; gap: 3rem; }
}

/* HSMC Section */
.hsmc-section {
    background: linear-gradient(135deg, #0d284f 0%, #1a3a6a 100%);
    color: white;
    overflow: hidden;
}

.hsmc-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hsmc-content h2 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.hsmc-content .highlight-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--accent-color);
    margin-bottom: 2rem;
    backdrop-filter: blur(5px);
}

.hsmc-video-preview {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    aspect-ratio: 16 / 9;
    background: #000;
}

.hsmc-video-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: var(--transition);
}

.hsmc-video-preview:hover img {
    opacity: 0.9;
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .hsmc-container { grid-template-columns: 1fr; gap: 3rem; }
}

/* Health Group Section */
.health-group-section {
    background-color: var(--bg-main);
    position: relative;
    padding-bottom: 5rem;
}

.group-header { margin-bottom: 4rem; }

.group-ecosystem {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.group-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 5px solid var(--accent-color);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.group-card .icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.group-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0d284f;
}

.group-card p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

@media (max-width: 992px) {
    .group-ecosystem { grid-template-columns: 1fr; gap: 2rem; }
}
