/* ========================================================================== */
/*                                                                            */
/* SECTION 1: CORE CSS RESET, VARIABLES & TYPOGRAPHY                          */
/*                                                                            */
/* ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --ezy-green: #16a34a;
  --ezy-green-light: #eafdef;
  --ezy-green-border: rgba(35, 218, 98, 0.3);
  --ezy-dark: #011c15;
  --ezy-slate: #0f172a;
}

html {
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #334155;
}

body {
  overflow-x: hidden;
}

/* -------------------------------------------------------------------------- */
/* Lenis Smooth Scroll Global Overrides                                       */
/* -------------------------------------------------------------------------- */
html.lenis, html.lenis-smooth {
  scroll-behavior: auto !important;
}

html.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}
/* -------------------------------------------------------------------------- */
/* End Lenis Smooth Scroll Global Overrides                                   */
/* -------------------------------------------------------------------------- */

/* ========================================================================== */
/*                                                                            */
/* SECTION 2: HEADER NAVIGATION & MOBILE MENU                                 */
/*                                                                            */
/* ========================================================================== */

/* -------------------------------------------------------------------------- */
/* Floating Navbar Scroll Effects                                             */
/* -------------------------------------------------------------------------- */
#navbar {
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Unscrolled State (Transparent/Dark Header) */
#navbar:not(.is-scrolled) {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  padding-bottom: 14px;
}

#navbar:not(.is-scrolled) .nav-link {
  color: rgba(255, 255, 255, 0.9);
}

#navbar:not(.is-scrolled) .nav-link:hover {
  color: #39ff14;
}

#navbar:not(.is-scrolled) .home-active {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.25);
}

#navbar:not(.is-scrolled) .lang-btn {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}

#navbar:not(.is-scrolled) .lang-btn i {
  color: #39ff14;
}

#navbar:not(.is-scrolled) .mobile-menu-btn {
  color: #ffffff;
}

#navbar:not(.is-scrolled) .mobile-lang-btn {
  background: rgba(255, 255, 255, 0.16) !important;
  border: 1px solid rgba(255, 255, 255, 0.35) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

#navbar:not(.is-scrolled) .mobile-lang-btn span,
#navbar:not(.is-scrolled) #mobile-lang-btn-text {
  color: #ffffff !important;
}

#navbar:not(.is-scrolled) .mobile-lang-btn i {
  color: #39ff14 !important;
}

/* Scrolled State (Light Floating Glass Pill) */
#navbar.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
  top: 14px;
  left: 16px;
  right: 16px;
  width: calc(100% - 32px);
  max-width: 1360px;
  margin: 0 auto;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 36px -8px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(22, 163, 74, 0.1);
  padding-top: 8px;
  padding-bottom: 8px;
}

@media (max-width: 768px) {
  #navbar.is-scrolled {
    top: 10px;
    left: 10px;
    right: 10px;
    width: calc(100% - 20px);
    border-radius: 9999px;
    padding-top: 6px;
    padding-bottom: 6px;
  }
}

#navbar.is-scrolled .nav-link {
  color: #1e293b;
}

#navbar.is-scrolled .nav-link:hover {
  color: #16a34a;
}

#navbar.is-scrolled .home-active {
  background: rgba(236, 253, 245, 0.95);
  color: #10b981;
  border-color: #a7f3d0;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.12);
}

#navbar.is-scrolled .lang-btn {
  background: rgba(255, 255, 255, 0.9);
  border-color: #e2e8f0;
  color: #1e293b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

#navbar.is-scrolled .lang-btn i {
  color: #10b981;
}

#navbar.is-scrolled .mobile-menu-btn {
  color: #0f172a;
}

#navbar.is-scrolled .mobile-lang-btn {
  background: #f8fafc !important;
  border: 1.5px solid #cbd5e1 !important;
  color: #0f172a !important;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06) !important;
}

#navbar.is-scrolled .mobile-lang-btn span,
#navbar.is-scrolled #mobile-lang-btn-text {
  color: #0f172a !important;
}

#navbar.is-scrolled .mobile-lang-btn i {
  color: #16a34a !important;
}

/* Mobile Language Button Base Styling */
.mobile-lang-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.35rem !important;
  padding: 6px 12px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  border-radius: 9999px !important;
  line-height: 1 !important;
  transition: all 0.25s ease !important;
  cursor: pointer !important;
  user-select: none !important;
}

.mobile-lang-btn:hover {
  transform: translateY(-1px);
}

/* Header state when mobile menu is open */
#navbar.is-mobile-open {
  background-color: #ffffff !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-radius: 0 !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  border-bottom: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06) !important;
  margin: 0 !important;
  z-index: 50 !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

#navbar.is-mobile-open .mobile-menu-btn {
  color: #0f172a !important;
}

#navbar.is-mobile-open .hamburger-bar {
  background-color: #0f172a !important;
}

#navbar.is-mobile-open .mobile-lang-btn {
  color: #0f172a !important;
  border: 1.5px solid #cbd5e1 !important;
  background-color: #f8fafc !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04) !important;
}

#navbar.is-mobile-open .mobile-lang-btn span,
#navbar.is-mobile-open #mobile-lang-btn-text {
  color: #0f172a !important;
}

#navbar.is-mobile-open .mobile-lang-btn i {
  color: #16a34a !important;
}

/* Hide floating chatbot when mobile menu is open */
body.mobile-menu-open #chatbot-trigger-btn,
body.mobile-menu-open #ezy-chatbot-modal,
body.mobile-menu-open #scroll-to-top-btn,
body.mobile-menu-open .fixed.bottom-6.right-6 {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Animated Hamburger Icon */
.mobile-menu-btn .hamburger-bar {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.mobile-menu-btn.hamburger-active .hamburger-bar:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.mobile-menu-btn.hamburger-active .hamburger-bar:nth-child(2) {
  opacity: 0;
  transform: translateX(-12px);
}

.mobile-menu-btn.hamburger-active .hamburger-bar:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile Fullscreen Menu Drawer - Pure Solid White Background */
#mobile-fullscreen-menu {
  background-color: #ffffff !important;
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
  z-index: 45 !important;
}

#mobile-fullscreen-menu.is-open {
  opacity: 1 !important;
  pointer-events: auto !important;
  transform: translateY(0) !important;
  visibility: visible !important;
  background-color: #ffffff !important;
}

#mobile-fullscreen-menu:not(.is-open) {
  opacity: 0 !important;
  pointer-events: none !important;
  transform: translateY(-16px) !important;
  visibility: hidden !important;
}

/* Mobile Partner Submenu Accordion Animation */
#mobile-partner-submenu {
  transition: all 0.25s ease-in-out;
}

#mobile-partner-submenu.hidden {
  display: none !important;
}

#mobile-partner-submenu:not(.hidden) {
  display: flex !important;
}
/* -------------------------------------------------------------------------- */
/* End Floating Navbar Scroll Effects                                         */
/* -------------------------------------------------------------------------- */

/* ========================================================================== */
/*                                                                            */
/* SECTION 3: BUTTONS, BADGES & DECORATIVE UI ELEMENTS                        */
/*                                                                            */
/* ========================================================================== */

/* Mission Vision Animated Central Circle Waves & Glass Types */
@keyframes waveSlowPulse {
  0%, 100% {
    transform: scale(0.96);
    opacity: 0.35;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.2);
  }
  50% {
    transform: scale(1.04);
    opacity: 0.75;
    box-shadow: 0 0 30px 8px rgba(16, 185, 129, 0.25);
  }
}

@keyframes waveSlowPulseOuter {
  0%, 100% {
    transform: scale(0.98);
    opacity: 0.25;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.6;
  }
}

@keyframes dualSpinCW {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes dualSpinCCW {
  0% { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes floatGentle {
  0%, 100% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-6px) scale(1.02); }
}

@keyframes glassShimmer {
  0% { transform: translateX(-150%) rotate(25deg); }
  50%, 100% { transform: translateX(150%) rotate(25deg); }
}

.mission-vision-card {
  background: #ffffff;
  border-radius: 2rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.05), 0 8px 16px -6px rgba(15, 23, 42, 0.03);
  position: relative;
  overflow: hidden;
}

.wave-ring-outer {
  position: absolute;
  width: 14rem;
  height: 14rem;
  border-radius: 9999px;
  border: 1px solid rgba(16, 185, 129, 0.25);
  animation: waveSlowPulseOuter 6s ease-in-out infinite;
  pointer-events: none;
}

.wave-ring-middle {
  position: absolute;
  width: 11.5rem;
  height: 11.5rem;
  border-radius: 9999px;
  border: 1.5px dashed rgba(16, 185, 129, 0.35);
  animation: dualSpinCW 30s linear infinite, waveSlowPulse 5s ease-in-out infinite;
  pointer-events: none;
}

.wave-ring-inner {
  position: absolute;
  width: 9rem;
  height: 9rem;
  border-radius: 9999px;
  border: 1px solid rgba(52, 211, 153, 0.5);
  background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
  animation: dualSpinCCW 20s linear infinite;
  pointer-events: none;
}

.glass-dna-orb {
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 9999px;
  background: radial-gradient(circle at 35% 35%, #064e3b 0%, #022c22 60%, #011c15 100%);
  border: 4px solid #ffffff;
  box-shadow: 0 15px 35px rgba(16, 185, 129, 0.3), inset 0 2px 10px rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: floatGentle 5s ease-in-out infinite;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-dna-orb:hover {
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 20px 45px rgba(16, 185, 129, 0.45), inset 0 2px 12px rgba(255, 255, 255, 0.6);
}

.glass-dna-orb::after {
  display: none !important;
}

/* -------------------------------------------------------------------------- */
/* Pill Badges and Hero Box Styling                                           */
/* -------------------------------------------------------------------------- */
.badge-pill-green {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.375rem 1.25rem;
  background-color: #eafdef;
  border: 1px solid rgba(22, 163, 74, 0.25);
  border-radius: 9999px;
  color: #16a34a;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.badge-pill-green i {
  font-size: 1.05rem;
}

.hero-title-box {
  background-color: #011c15;
  border: 1px solid rgba(35, 218, 98, 0.25);
  box-shadow: 0 10px 30px rgba(1, 28, 21, 0.3);
}

.breadcrumb-pill {
  background-color: #eafdef;
  border: 1px solid rgba(22, 163, 74, 0.3);
}
/* -------------------------------------------------------------------------- */
/* End Pill Badges and Hero Box Styling                                      */
/* -------------------------------------------------------------------------- */

/* -------------------------------------------------------------------------- */
/* Section Titles and Decorative Underlines                                  */
/* -------------------------------------------------------------------------- */
.section-title-wrapper {
  text-align: center;
  margin-bottom: 2.5rem;
}

.section-title {
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 3.25rem;
  }
}

.title-underline-bar {
  width: 3.5rem;
  height: 0.25rem;
  background-color: #16a34a;
  border-radius: 9999px;
  margin: 0.875rem auto 0 auto;
}

.title-underline-bar-white,
.dark-grid-section .title-underline-bar,
.bg-testimonials .title-underline-bar,
.text-white .title-underline-bar,
[class*="bg-[#022c22]"] .title-underline-bar,
[class*="bg-[#011108]"] .title-underline-bar,
[class*="bg-[#16A34A]"] .title-underline-bar {
  background-color: #ffffff !important;
}

.text-left .title-underline-bar,
.section-title-wrapper.text-left .title-underline-bar {
  margin-left: 0 !important;
  margin-right: auto !important;
}

.title-underline-bar-left {
  width: 3.5rem;
  height: 0.25rem;
  background-color: #16a34a;
  border-radius: 9999px;
  margin-top: 0.875rem;
}

.title-underline-bar-left.title-underline-bar-white,
.dark-grid-section .title-underline-bar-left,
.bg-testimonials .title-underline-bar-left,
.text-white .title-underline-bar-left {
  background-color: #ffffff !important;
}
/* -------------------------------------------------------------------------- */
/* End Section Titles and Decorative Underlines                              */
/* -------------------------------------------------------------------------- */

/* ========================================================================== */
/*                                                                            */
/* SECTION 4: SPONSOR MARQUEE & LOGO CARDS                                    */
/*                                                                            */
/* ========================================================================== */

/* -------------------------------------------------------------------------- */
/* Marquee Logo Animation & Clean Image Render                                */
/* -------------------------------------------------------------------------- */
@keyframes marqueeLogos {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

.animate-marquee-logos {
  display: flex;
  width: max-content;
  animation: marqueeLogos 35s linear infinite;
}

.animate-marquee-logos:hover {
  animation-play-state: paused;
}

.sponsor-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  background-color: #ffffff;
  border-radius: 1rem;
  min-width: 180px;
  height: 90px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sponsor-logo-item img,
.animate-marquee-logos img,
.slider-container-logos img {
  max-height: 55px;
  max-width: 150px;
  object-fit: contain;
  filter: none !important;
  -webkit-filter: none !important;
  opacity: 0.95 !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease !important;
}

.sponsor-logo-item:hover img,
.animate-marquee-logos img:hover,
.slider-container-logos img:hover {
  opacity: 1 !important;
  transform: scale(1.08) !important;
}
/* -------------------------------------------------------------------------- */
/* End Marquee Logo Animation & Clean Image Render                            */
/* -------------------------------------------------------------------------- */

/* ========================================================================== */
/*                                                                            */
/* SECTION 5: CAPABILITY & STRENGTH CARDS                                     */
/*                                                                            */
/* ========================================================================== */

/* -------------------------------------------------------------------------- */
/* Site Capabilities & Strength Card Components                               */
/* -------------------------------------------------------------------------- */
.capability-card {
  background-color: #ffffff;
  background-image: radial-gradient(circle at 100% 0%, rgba(234, 253, 239, 0.8) 0%, #ffffff 65%);
  border-radius: 1.25rem;
  position: relative;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
  overflow: hidden;
  border: 1px solid #bbf7d0;
  box-shadow: 0 10px 25px -5px rgba(20, 184, 92, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  min-height: 250px;
  z-index: 1;
}

.card-content-wrap {
  margin-top: auto;
  width: 100%;
}

.capability-card:hover {
  transform: translateY(-8px);
  border-color: #86efac;
  box-shadow: 0 15px 30px -10px rgba(20, 184, 92, 0.15);
  z-index: 10;
  background-image: radial-gradient(circle at 100% 0%, rgba(220, 252, 231, 0.9) 0%, #ffffff 75%);
}

.strength-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  padding: 1.75rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.strength-card:hover {
  transform: translateY(-5px);
  border-color: #16a34a;
  box-shadow: 0 12px 25px -5px rgba(22, 163, 74, 0.12);
}

.card-corner-shape {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.card-icon {
  color: #16a34a;
  font-size: 2.5rem;
  z-index: 2;
  transition: transform 0.4s ease;
  filter: none;
}

.card-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: #a1a1aa;
  line-height: 1;
  margin-bottom: auto;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.capability-card:hover .card-number {
  color: #71717a;
}

.card-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: capitalize;
  color: #022c22;
  line-height: 1.25;
}

@media (max-width: 639px) {
  .capability-card {
    min-height: 150px;
    padding: 1rem 0.875rem;
    border-radius: 0.875rem;
  }
  .card-corner-shape {
    top: 0.875rem;
    right: 0.875rem;
  }
  .card-icon {
    font-size: 1.5rem;
  }
  .card-number {
    font-size: 1.75rem;
  }
  .card-title {
    font-size: 0.8125rem;
    line-height: 1.2;
  }
}
/* -------------------------------------------------------------------------- */
/* End Site Capabilities & Strength Card Components                          */
/* -------------------------------------------------------------------------- */

/* ========================================================================== */
/*                                                                            */
/* SECTION 6: TEAM & EXECUTIVE LEADERSHIP CARDS                               */
/*                                                                            */
/* ========================================================================== */

/* -------------------------------------------------------------------------- */
/* Team Member Cards Layout & Hover Effects                                   */
/* -------------------------------------------------------------------------- */
.team-member-card {
  background: #ffffff;
  border-radius: 1.25rem;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.team-member-card:hover {
  transform: translateY(-6px);
  border-color: #16a34a;
  box-shadow: 0 15px 30px -10px rgba(22, 163, 74, 0.15);
}

.team-member-img-wrap {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
  background-color: #f1f5f9;
}

.team-member-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.team-member-card:hover .team-member-img-wrap img {
  transform: scale(1.06);
}

.team-name-box {
  background-color: transparent;
  color: #0f172a;
  padding: 0.5rem 0.5rem 0.25rem 0.5rem;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.team-role-box {
  background-color: transparent;
  color: #16a34a;
  padding: 0 0.5rem 0.5rem 0.5rem;
  text-align: center;
  font-weight: 800;
  font-size: 0.725rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
}

.founder-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.founder-card:hover {
  border-color: #16a34a;
  box-shadow: 0 15px 35px -10px rgba(22, 163, 74, 0.12);
}
/* -------------------------------------------------------------------------- */
/* End Team Member Cards Layout & Hover Effects                               */
/* -------------------------------------------------------------------------- */

/* ========================================================================== */
/*                                                                            */
/* SECTION 7: LOCATIONS & INTERACTIVE MAP STYLING                             */
/*                                                                            */
/* ========================================================================== */

/* -------------------------------------------------------------------------- */
/* Interactive Map & Location Node Styling                                    */
/* -------------------------------------------------------------------------- */
.leaflet-control-container { display: none !important; }

#locations-map {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 640px;
  height: 400px;
  z-index: 10;
  background: transparent !important;
}

@media (min-width: 1024px) {
  #locations-map {
    max-width: 700px;
    height: 440px;
  }
}

#locations-map .leaflet-container {
  background: transparent !important;
}

/* Map SVG container styling - SVG map shadows removed per user request */
.leaflet-overlay-pane svg {
  filter: none !important;
  overflow: visible !important;
}

.state-path {
  transition: fill-opacity 0.3s ease;
}

.locations-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 25;
  pointer-events: none;
  overflow: visible;
}

.locations-links path {
  fill: none;
  stroke: #16a34a;
  stroke-width: 1.5;
  stroke-dasharray: 4 4;
  animation: mapDashFlow 2.5s linear infinite;
  filter: drop-shadow(0 0 2px rgba(22, 163, 74, 0.35));
}

.locations-links path.hq-link {
  stroke: #16a34a;
  stroke-width: 1.6;
  stroke-dasharray: 4 4;
  animation: mapDashFlow 2s linear infinite;
  filter: drop-shadow(0 0 3px rgba(22, 163, 74, 0.5));
}

.locations-links circle {
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

@keyframes mapDashFlow {
  to {
    stroke-dashoffset: -22;
  }
}

.custom-marker-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-map-marker {
  width: 12px;
  height: 12px;
  background-color: #046a38;
  border: 1.5px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 1.5px 4px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease;
}

.custom-map-marker::after {
  content: '';
  width: 3px;
  height: 3px;
  background-color: #ffffff;
  border-radius: 50%;
}

.custom-map-marker::before {
  display: none !important;
}

.hq-star-marker {
  width: 20px !important;
  height: 20px !important;
  background-color: #046a38 !important;
  border: 1.5px solid #ffffff !important;
  border-radius: 50% !important;
  box-shadow: 0 2px 6px rgba(4, 106, 56, 0.35) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  font-size: 10px !important;
}

.hq-star-marker::after {
  display: none !important;
}

.hq-star-marker::before {
  display: none !important;
}

/* -------------------------------------------------------------------------- */
/* Locations Stage & 2 Left / 2 Right Overlay Cards Positioning               */
/* -------------------------------------------------------------------------- */
.locations-stage {
  position: relative;
  min-height: 560px;
}

.loc-card {
  position: relative;
  background-color: #ffffff;
  color: #1e293b;
  border-radius: 1.5rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.08), 0 5px 15px -5px rgba(15, 23, 42, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.loc-card:hover {
  border-color: rgba(22, 163, 74, 0.35);
  box-shadow: 0 20px 40px -10px rgba(22, 163, 74, 0.16), 0 8px 16px -6px rgba(15, 23, 42, 0.06);
}

.loc-card.hq {
  background: linear-gradient(135deg, #046a38 0%, #03522b 100%);
  color: #ffffff;
  border: 1px solid rgba(52, 211, 153, 0.4);
  box-shadow: 0 15px 35px -5px rgba(4, 106, 56, 0.3), 0 5px 15px -5px rgba(0, 0, 0, 0.15);
}

.loc-card.hq:hover {
  border-color: rgba(167, 243, 208, 0.8);
  box-shadow: 0 20px 45px -10px rgba(4, 106, 56, 0.5), 0 8px 16px -6px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .locations-stage {
    min-height: 580px;
  }

  .loc-card {
    position: absolute;
    width: 270px;
    z-index: 30;
  }

  /* Left Column: Miami (Top) & Naples (Bottom) */
  .loc-card.hq {
    top: 20px;
    left: 15px;
    bottom: auto;
  }

  .loc-card.nap {
    bottom: 20px;
    left: 15px;
    top: auto;
  }

  /* Right Column: Manhattan (Top) & Lakeland (Bottom) */
  .loc-card.man {
    top: 20px;
    right: 15px;
    bottom: auto;
  }

  .loc-card.lake {
    bottom: 20px;
    right: 15px;
    top: auto;
  }
}

@media (min-width: 1024px) {
  .locations-stage {
    min-height: 600px;
  }

  .loc-card {
    width: 295px;
  }

  .loc-card.hq {
    top: 25px;
    left: 25px;
  }

  .loc-card.nap {
    bottom: 25px;
    left: 25px;
  }

  .loc-card.man {
    top: 25px;
    right: 25px;
  }

  .loc-card.lake {
    bottom: 25px;
    right: 25px;
  }
}

@media (min-width: 1280px) {
  .loc-card {
    width: 315px;
  }

  .loc-card.hq {
    top: 30px;
    left: 35px;
  }

  .loc-card.nap {
    bottom: 30px;
    left: 35px;
  }

  .loc-card.man {
    top: 30px;
    right: 35px;
  }

  .loc-card.lake {
    bottom: 30px;
    right: 35px;
  }
}

/* Mobile responsive layout (<768px) */
@media (max-width: 767px) {
  .locations-stage {
    display: flex;
    flex-direction: column;
    height: auto !important;
    min-height: auto;
    gap: 1.25rem;
    position: relative;
  }

  #locations-map {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    height: 380px !important;
    order: 2;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(226, 232, 240, 0.9);
    background: #f8fafc !important;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.03);
    margin: 0.5rem 0;
  }

  #locations-map .leaflet-container {
    background: transparent !important;
  }

  .state-path {
    stroke-width: 1.8px !important;
    filter: drop-shadow(0 1px 2px rgba(34, 197, 94, 0.15));
  }

  .locations-links {
    display: block !important;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 25;
    pointer-events: none;
  }

  .loc-card {
    position: relative !important;
    width: 100% !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
  }

  .custom-map-marker {
    width: 10px !important;
    height: 10px !important;
    border-width: 1.5px !important;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2) !important;
  }

  .hq-star-marker {
    width: 18px !important;
    height: 18px !important;
    font-size: 9px !important;
    box-shadow: 0 2px 6px rgba(4, 106, 56, 0.35) !important;
  }

  .loc-card.hq { order: 1; }
  .loc-card.man { order: 3; }
  .loc-card.nap { order: 4; }
  .loc-card.lake { order: 5; }
}
/* -------------------------------------------------------------------------- */
/* End Interactive Map & Location Node Styling                                */
/* -------------------------------------------------------------------------- */

/* ========================================================================== */
/*                                                                            */
/* SECTION 8: STATS & COUNTER CARDS                                           */
/*                                                                            */
/* ========================================================================== */

/* -------------------------------------------------------------------------- */
/* Stat Counter Cards Component Styling                                       */
/* -------------------------------------------------------------------------- */
.counter-stat-card {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  border-radius: 1.5rem;
  padding: 1.75rem;
  border: 1px solid rgba(35, 218, 98, 0.15);
  box-shadow: 0 4px 20px -4px rgba(0, 0, 0, 0.03);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.counter-stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(35, 218, 98, 0.35);
  box-shadow: 0 10px 30px -6px rgba(35, 218, 98, 0.12);
}
/* -------------------------------------------------------------------------- */
/* End Stat Counter Cards Component Styling                                  */
/* -------------------------------------------------------------------------- */

/* ========================================================================== */
/*                                                                            */
/* SECTION 9: CHATBOT MODAL & FLOATING WIDGET                                 */
/*                                                                            */
/* ========================================================================== */

/* -------------------------------------------------------------------------- */
/* Floating Assistant & Meeting Callout Bar                                   */
/* -------------------------------------------------------------------------- */
#ezy-chatbot-modal {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-hero-bg {
  background: radial-gradient(circle at 50% 0%, #064e3b 0%, #011c15 100%);
}

.meeting-callout-bar {
  background: linear-gradient(135deg, #57e04a 0%, #22c55e 100%);
}

/* ========================================================================== */
/* MOBILE FULLSCREEN NAVIGATION ANIMATED TOP-TO-BOTTOM                        */
/* ========================================================================== */
#mobile-fullscreen-menu {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

#mobile-fullscreen-menu.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.hamburger-icon-bar {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* -------------------------------------------------------------------------- */
/* End Floating Assistant & Meeting Callout Bar                               */
/* -------------------------------------------------------------------------- */

/* Animated 3-dot Connector Lines for Our Organization Section */
.animated-dash-line {
  stroke-dasharray: 6 6;
  animation: dash-flow 1.8s linear infinite;
}

@keyframes dash-flow {
  from {
    stroke-dashoffset: 24;
  }
  to {
    stroke-dashoffset: 0;
  }
}

/* ========================================================================== */
/* SECTION 10: MAP DESKTOP BORDERLESS REFINEMENTS                            */
/* ========================================================================== */
@media (min-width: 1024px) {
  #locations-map,
  #contact-map,
  .leaflet-map-borderless {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
  }

  .locations-stage {
    border: none !important;
    box-shadow: none !important;
  }
}

/* Leaflet Container Reset */
.leaflet-container {
  font-family: inherit !important;
  background: transparent !important;
}

/* ========================================================================== */
/* SECTION 11: GLOBAL LAYOUT CONTAINERS & TITLE SYSTEM                        */
/* ========================================================================== */

.global-container {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 640px) {
  .global-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.global-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .global-section {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}

.global-section-header {
  text-align: center;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.global-section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.375rem 1.25rem;
  background-color: #eafdef;
  border: 1px solid rgba(22, 163, 74, 0.3);
  border-radius: 9999px;
  color: #16a34a;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.global-section-badge i {
  font-size: 1.05rem;
}

.global-section-title {
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 900;
  color: #0f172a;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
}

@media (min-width: 768px) {
  .global-section-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .global-section-title {
    font-size: 3.25rem;
  }
}

.global-section-title span {
  color: #16a34a;
}

.global-section-underline {
  width: 3.5rem;
  height: 0.25rem;
  background-color: #16a34a;
  border-radius: 9999px;
  margin: 0.875rem auto 0 auto;
}

.global-section-desc {
  color: #475569;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.875rem;
}

/* ========================================================================== */
/* SECTION 12: BOTTOM-TO-TOP FAQ WIDGET & ACCORDION                          */
/* ========================================================================== */
#bottom-faq-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 45;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}

#bottom-faq-widget.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.faq-drawer-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  opacity: 0;
}

.faq-drawer-panel.is-open {
  max-height: 520px;
  opacity: 1;
}

.faq-accordion-item {
  border: 1px solid #e2e8f0;
  border-radius: 1.25rem;
  background-color: #ffffff;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq-accordion-item:hover {
  border-color: #86efac;
  box-shadow: 0 8px 25px -5px rgba(22, 163, 74, 0.08);
}

.faq-accordion-header {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-weight: 800;
  color: #0f172a;
  cursor: pointer;
}

.faq-accordion-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  background-color: #f0fdf4;
  color: #16a34a;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  flex-shrink: 0;
}

.faq-accordion-item.is-active .faq-accordion-icon {
  transform: rotate(180deg);
  background-color: #16a34a;
  color: #ffffff;
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
  padding: 0 1.5rem;
  color: #475569;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.faq-accordion-item.is-active .faq-accordion-content {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem 1.5rem;
}

/* ========================================================================== */
/* SECTION 13: FULL-CONTAINER BUSINESS HOURS LONG CARD                      */
/* ========================================================================== */
.business-hours-fullcard {
  width: 100%;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1.75rem;
  box-shadow: 0 12px 35px -10px rgba(0, 0, 0, 0.05);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.business-hours-fullcard:hover {
  border-color: #86efac;
  box-shadow: 0 20px 45px -12px rgba(22, 163, 74, 0.12);
}

/* ========================================================================== */
/* SECTION 14: INFINITE MARQUEE LOGO SLIDER                                   */
/* ========================================================================== */
@keyframes marquee-infinite {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}

.animate-marquee {
  display: flex;
  width: max-content;
  animation: marquee-infinite 32s linear infinite;
}

.animate-marquee:hover {
  animation-play-state: paused;
}




.lottie-icon-container { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; }
.lottie-icon-container svg { width: 100% !important; height: 100% !important; display: block; }
