/* Copied from team/styles.css */
/* Reset and Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Arial', sans-serif; line-height: 1.6; color: #333; background-color: #F5F5F5; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Global 80% scale: use zoom with transform fallback */
html { zoom: 0.8; }
@supports not (zoom: 1) {
  body {
    transform: scale(0.8);
    transform-origin: top left;
    /* Preserve layout width after scaling */
    width: 125%;
  }
}

/* Header Navigation */
.header { background: linear-gradient(0deg, rgba(0,0,0,0.22), rgba(0,0,0,0.22)), linear-gradient(135deg, rgba(37,168,73,0.12), rgba(32,130,67,0.10)); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); border-bottom: 1px solid rgba(34,158,71,0.25); box-shadow: 0 10px 28px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.25); position: fixed; width: 100%; top: 0; z-index: 1000; }
.navbar { padding: 1rem 0; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.nav-logo { display: flex; align-items: center; gap: 10px; margin-left: -17%; }
.nav-logo-img { height: 48px; width: auto; object-fit: contain; display: block; }
.nav-logo h2 { color: #FFFFFF; font-size: 1.8rem; font-weight: bold; }
.header.on-hero .nav-logo h2 { color: #FFFFFF; }
.nav-menu { display: flex; list-style: none; gap: 2rem; }
.nav-link { text-decoration: none; color: #FFFFFF; font-weight: 700; font-size: 1.2rem; transition: color 0.3s ease; }
.nav-link:hover, .nav-link.active { color: rgba(255,255,255,0.9); }
.top-green-bar { height: 80px; background: linear-gradient(135deg, #25a849 0%, #208243 100%); }
.header.on-hero .nav-link { color: #FFFFFF; }
.header.on-hero .nav-link:hover, .header.on-hero .nav-link.active { color: rgba(255,255,255,0.9); }
.get-started-btn { background: #25a849; color: white; border: none; padding: 12px 24px; border-radius: 6px; cursor: pointer; font-weight: 600; transition: background 0.3s ease; }
.get-started-btn:hover { background: #208243; }
.hamburger { display: none; flex-direction: column; cursor: pointer; }
.bar { width: 25px; height: 3px; background: #333; margin: 3px 0; transition: 0.3s; }

/* Hero Section */
.hero-section { background: linear-gradient(135deg, #25a849 0%, #208243 50%, #229e47 100%); padding: 120px 0 80px; text-align: center; margin-top: 0; padding-top: 80px; }
.hero-content { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.hero-title { font-size: 5rem; font-weight: 500; line-height: 1; color: #FFFFFF; margin-bottom: 1rem; text-shadow: 0 4px 20px rgba(0,0,0,0.3); font-family: 'Poppins', sans-serif; }
.breadcrumb { display: flex; justify-content: center; align-items: center; gap: 0.5rem; font-size: 1rem; }
.breadcrumb-link { color: #FFFFFF; text-decoration: none; transition: opacity 0.3s ease; }
.breadcrumb-link:hover { opacity: 0.9; }
.breadcrumb-separator { color: #FFFFFF; font-weight: bold; }
.breadcrumb-current { color: #FFFFFF; font-weight: 600; }

/* Team */
.team-section { padding: 80px 0; background: #f9fafb; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; justify-content: center; max-width: 1200px; margin-left: auto; margin-right: auto; }
.team-member { background: white; border-radius: 12px; padding: 2rem; text-align: center; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: transform 0.3s ease, box-shadow 0.3s ease; cursor: pointer; position: relative; overflow: hidden; justify-self: center; }
.team-member:hover { transform: translateY(-5px) scale(0.96); box-shadow: 0 8px 25px rgba(0,0,0,0.15); }
.team-member.active { transform: translateY(-6px) scale(1.02); box-shadow: 0 16px 40px rgba(0,0,0,0.18); }
.member-image { width: 288px; height: 288px; margin: 0 auto 1.5rem; border-radius: 12px; overflow: hidden; border: 0; display: flex; align-items: center; justify-content: center; background: none; color: inherit; position: relative; }
.member-image.square { border-radius: 12px; }
.member-image img { width: 100%; height: 100%; object-fit: cover; }
.member-initials { font-size: 2rem; font-weight: 800; letter-spacing: 1px; }
.member-role { color: #6B7280; font-size: 0.95rem; margin-bottom: 0.25rem; }
.team-member::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: radial-gradient(400px 120px at 10% -10%, rgba(37,168,73,0.08), transparent), radial-gradient(400px 120px at 110% 110%, rgba(82,159,102,0.08), transparent); opacity: 0; transition: opacity 0.3s ease; }
.team-member.active::after { opacity: 1; animation: glow 1.2s ease forwards; }
@keyframes glow { 0%{ box-shadow: 0 0 0 rgba(0,0,0,0);} 100%{ box-shadow: 0 0 0 rgba(0,0,0,0);} }
.ripple { position: absolute; border-radius: 50%; transform: scale(0); background: rgba(255,255,255,0.5); animation: ripple 600ms ease-out; pointer-events: none; }
@keyframes ripple { to { transform: scale(6); opacity: 0; } }
.member-name { font-size: 1.25rem; font-weight: 600; color: #1F2937; margin-bottom: 0.5rem; }
.member-position { color: #6B7280; font-size: 0.95rem; }

/* CTA */
.cta-section { background: #25a849; padding: 80px 0; text-align: center; }
.cta-content { max-width: 800px; margin: 0 auto; padding: 0 20px; }
.cta-title { font-size: 2.5rem; font-weight: bold; color: white; margin-bottom: 2rem; }
.cta-button { background: white; color: #25a849; border: none; padding: 16px 32px; border-radius: 8px; font-size: 1.1rem; font-weight: 600; cursor: pointer; transition: transform 0.3s ease, box-shadow 0.3s ease; text-decoration: none; display: inline-block; }
.cta-button:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); text-decoration: none; }

/* Footer (match home.css) */
.footer { background: #1f2937; color: white; padding: 3rem 0 1rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-bottom: 2rem; }
.footer-section h3, .footer-section h4 { margin-bottom: 1rem; color: white; }
.footer-section h3 { font-size: 1.5rem; background: linear-gradient(135deg, #25a849, #208243); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section a { color: #9ca3af; text-decoration: none; transition: color 0.3s ease; }
.footer-section a:hover { color: #25a849; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid #374151; color: #9ca3af; }

/* Footer social icons */
.footer-social { margin-top: 0.5rem; display: flex; gap: 0.75rem; }
.footer-social .social { color: #9ca3af; font-size: 2.2rem; display: inline-flex; align-items: center; justify-content: center; width: 72px; height: 72px; border-radius: 50%; background: #111827; transition: background 0.3s ease, color 0.3s ease; }
.footer-social .social:hover { color: white; background: linear-gradient(135deg, #25a849, #208243); }

/* Hide scrollbars globally */
html { -ms-overflow-style: none; scrollbar-width: none; }
html::-webkit-scrollbar { display: none; }

/* Responsive */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-menu { position: fixed; left: -100%; top: 70px; flex-direction: column; background-color: white; width: 100%; text-align: center; transition: 0.3s; box-shadow: 0 10px 27px rgba(0,0,0,0.05); padding: 2rem 0; }
  .nav-menu.active { left: 0; }
  .nav-menu li { margin: 1rem 0; }
  .hamburger.active .bar:nth-child(2) { opacity: 0; }
  .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
  .hero-title { font-size: 3rem; }
  .team-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-content { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 2.5rem; }
}

