/* VARIABLES & RESET */
:root {
  --brand-primary:   #1b5e20;
  --brand-secondary: #388e3c;
  --brand-accent:    #a5d6a7;
  --brand-light:     #e8f5e9;
  --text-dark:       #2d3748;
  --bg-light:        #f9f9f9;
  --covered-color:   #4caf50;
  --uncovered-color: #e0e0e0;
  --hover-color:     #66bb6a;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm:       0 1px 3px rgba(0,0,0,0.12);
  --shadow-md:       0 4px 6px rgba(0,0,0,0.10);
  --section-padding: 4rem 0;
  --mobile-padding:  2rem 0;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  padding-top: 80px;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
section { padding: var(--section-padding); }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 0.75rem 1rem;
  z-index: 1000;
  transition: all 0.3s ease;
  overflow: visible;
}

.navbar.scrolled {
  padding: 0.5rem 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-logo {
  height: 140px;
  width: auto;
  margin-right: 0;
  transition: all 0.3s ease;
  object-fit: contain;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.navbar-nav {
  list-style: none;
  display: flex;
  gap: 0.25rem;
}

.nav-link {
  display: inline-block;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.6rem 1rem;
  border-radius: 0.5rem;
  transition: var(--transition-fast);
  font-size: 0.95rem;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--brand-primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--brand-primary);
  background: var(--brand-light);
}

.nav-link.active {
  color: var(--brand-primary);
  background: var(--brand-light);
}

/* Dropdown Menu Styling */
.dropdown-menu {
  border: none;
  border-radius: 0.75rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  position: relative;
  z-index: 1001;
  min-width: 180px;
  max-height: none;
  overflow: visible;
}

.dropdown-item {
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  font-weight: 500;
  transition: var(--transition-fast);
  border-left: 3px solid transparent;
  white-space: normal;
}

.dropdown-item:hover {
  background: var(--brand-light);
  color: var(--brand-primary);
  border-left-color: var(--brand-primary);
  padding-left: 1.75rem;
}

/* Navbar Button Styling */
.navbar .btn-primary {
  background: var(--brand-primary);
  border: none;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  border-radius: 0.5rem;
  transition: var(--transition-fast);
}

.navbar .btn-primary:hover {
  background: var(--brand-secondary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(27, 94, 32, 0.3);
}

.navbar .btn-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(27, 94, 32, 0.25);
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
  transition: var(--transition-fast);
}

.navbar-collapse {
  overflow: visible !important;
}

.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 0.25rem var(--brand-light);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%231b5e20' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* HERO - FIXED ANIMATION */
.hero {
  height: 90vh;
  background:
    linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
    url('../images/hero.jpg') center/cover no-repeat;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-align: center;
}
.hero-content h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3.5rem; font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

/* FIXED ANIMATION */
.animated-info {
  position: relative;
  display: inline-block;
  height: 2.2em; /* Adjusted height */
  overflow: hidden;
  vertical-align: bottom;
  min-width: 320px; /* Ensure container has width */
}

.animated-info span {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  animation: wordAnimation 9s infinite;
  animation-timing-function: ease-in-out;
  transform: translateY(100%);
  width: 100%;
  text-align: center;
}

/* Set different animation delays for each word */
.animated-info span:nth-child(1) { animation-delay: 0s; } /* Knowledge */
.animated-info span:nth-child(2) { animation-delay: 3s; } /* Skills */
.animated-info span:nth-child(3) { animation-delay: 6s; } /* Career */

/* Animation keyframes */
@keyframes wordAnimation {
  0%, 5% {
    opacity: 0;
    transform: translateY(100%);
  }
  10%, 25% {
    opacity: 1;
    transform: translateY(0);
  }
  30%, 33% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 0;
    transform: translateY(-100%);
  }
}

/* SECTION TITLES */
.section-title {
  font-family: "Poppins", sans-serif;
  font-size: 2.5rem; font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 2rem; text-align: center; position: relative;
}
.section-title:after {
  content: ""; display: block;
  width: 60px; height: 3px;
  background: var(--brand-accent);
  margin: 1rem auto 0;
}

/* ABOUT */
.about-card {
  background: #fff; border-radius: 1rem;
  padding: 2rem; box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--brand-accent);
  transition: var(--transition-fast);
  min-height: 200px;
  display: flex;
  flex-direction: column;
}
.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.col-lg-6.text-center {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--brand-accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;   /* separate it from what's below */
}
.experience-badge {
  width: 160px; height: 160px;
  background: linear-gradient(45deg, var(--brand-primary), var(--brand-secondary));
  color: #fff; display:flex; align-items:center; justify-content:center;
  border-radius:1rem; box-shadow:var(--shadow-md);
  transition:var(--transition-fast);
}
.experience-badge:hover {
  transform: scale(1.05) rotate(-5deg);
}

/* STATS GRID */
.coverage-stats,
.stats-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  margin-top: 2rem;
}
.stat-card {
  background: #fff; border-radius:1rem;
  padding:1.5rem; text-align:center;
  box-shadow:0 2px 6px rgba(0,0,0,0.08);
  border-bottom:4px solid var(--brand-accent);
  transition:transform 0.3s ease;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.stat-card:hover {
  transform:translateY(-5px);
  box-shadow:0 5px 15px rgba(0,0,0,0.10);
}
.stat-number {
  font-size:2.5rem; font-weight:700;
  color:var(--brand-primary); line-height:1;
}
.stat-label {
  font-size:1rem; margin-top:0.5rem;
  color:var(--text-dark);
}

/* MAP (coverage) */
.map-container {
  background:#fff; border-radius:1rem;
  box-shadow:var(--shadow-sm); padding:2rem;
  margin-top:2rem; margin-bottom: 1rem; position:relative; overflow:hidden;
}
.map-wrapper {
  display:flex; flex-wrap:wrap; gap:2rem;
  justify-content:center;
}
.map-svg-container {
  flex:1; min-width:300px; max-width:800px;
  display:flex; justify-content:center; align-items:center;
}
.map-legend {
  flex:0 0 250px; background:#f8f9fa;
  padding:1.5rem; border-radius:0.5rem;
  box-shadow:0 2px 4px rgba(0,0,0,0.05);
}
.legend-item { display:flex; align-items:center; margin-bottom:1rem; }
.legend-color {
  width:20px; height:20px; border-radius:4px;
  margin-right:10px;
}
/* interactive info box */
.state-info {
  display:none; position:fixed; z-index:1000;
  background:#fff; border-radius:0.5rem;
  padding:1.5rem; box-shadow:0 5px 15px rgba(0,0,0,0.15);
  max-width:300px; border-left:4px solid var(--brand-primary);
  transition:all 0.3s ease;
}
.state-info h5 { font-size:1.25rem; margin-top:0; color:var(--brand-primary); }
.state-info .status-badge { display:inline-block; padding:0.25rem 0.75rem; border-radius:20px; margin-bottom:1rem; font-size:0.8rem; font-weight:600; }
.covered-badge { background:rgba(76,175,80,0.15); color:#2e7d32; }
.uncovered-badge { background:rgba(224,224,224,0.3); color:#616161; }
.state-info ul { padding-left:20px; margin-bottom:0; }
.state-info li { position:relative; margin-bottom:8px; }
.state-info li::before {
  content:"•"; position:absolute; left:-15px;
  color:var(--brand-primary); font-weight:bold;
}

/* SVG map states */
.state {
  fill: var(--uncovered-color);
  stroke: #fff; stroke-width:1px;
  cursor: pointer; transition:all 0.3s ease;
}
.state.covered { fill: var(--covered-color); }
.state:hover {
  fill: var(--hover-color); stroke-width:2px;
  filter: brightness(1.05);
}
.state-label {
  font-size:10px; font-weight:600;
  text-anchor:middle; fill:#333; pointer-events:none;
}

/* TEAM */
.team-section {
  background: var(--brand-light);
  position: relative; overflow:hidden;
}
.team-section:before {
  content:""; position:absolute;
  width:200%; height:200px; background:#fff;
  top:-50px; left:-50%; transform:rotate(-3deg);
  z-index:0; opacity:0.9;
}
.team-member-card {
  background:#fff; border-radius:1rem;
  padding:2rem; padding-top:100px; margin:2rem auto;
  box-shadow:var(--shadow-sm); text-align:center;
  border-top:4px solid var(--brand-accent);
  transition:var(--transition-fast);
  position:relative; overflow:hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}
.team-member-card:hover {
  transform:translateY(-5px); box-shadow:var(--shadow-md);
}
.team-img {
  width:150px; height:150px; border-radius:50%;
  object-fit:cover; border:5px solid #fff;
  margin:-120px auto 20px; box-shadow:0 5px 15px rgba(0,0,0,0.1);
  transition:all 0.3s ease;
}
.team-member-card:hover .team-img {
  transform:scale(1.05); border-color:var(--brand-accent);
}
.position { color:var(--brand-primary); font-weight:600; margin-bottom:1.5rem; text-transform:uppercase; letter-spacing:1px; }
.quote {
  position:relative; font-style:italic; color:#555;
  padding:0 15px; line-height:1.7; min-height:80px; font-size:1.05rem;
}
.quote::before, .quote::after {
  content:"\""; font-family:Georgia, serif; font-size:3rem;
  color:var(--brand-light); opacity:0.3; position:absolute;
}
.quote::before { top:-15px; left:-5px; }
.quote::after { bottom:-40px; right:-5px; transform:rotate(180deg); }
.social-links { display:flex; justify-content:center; gap:12px; margin-top:25px; }
.social-links a {
  width:40px; height:40px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:var(--brand-light); color:var(--brand-primary);
  transition:var(--transition-fast);
}
.social-links a:hover {
  background:var(--brand-accent); color:#fff; transform:translateY(-3px);
}

/* CHARTS & OPENINGS */
.chart-container {
  background:#fff; border-radius:1rem;
  padding:2rem; box-shadow:var(--shadow-sm);
  display:flex; flex-wrap:wrap; gap:2rem; justify-content:center; align-items:flex-start;
}
.chart-wrapper { flex: 0 0 auto; min-width:300px; max-width:400px; height:300px; margin-bottom: 0; }
.chart-info { flex:1; min-width:300px; max-width:500px; }

@media (max-width: 768px) {
  .chart-container { padding: 1.5rem; gap: 1.5rem; }
  .chart-wrapper { min-width: 100%; max-width: 100%; height: 250px; }
  .chart-info { min-width: 100%; max-width: 100%; }
}

@media (max-width: 576px) {
  .chart-container { padding: 1rem; gap: 1rem; }
  .chart-wrapper { height: 220px; }
  .chart-title { font-size: 1.1rem; margin-bottom: 1rem; }
}
.chart-title { text-align:center; font-weight:600; margin-bottom:1.5rem; color:var(--brand-primary); }
.chart-description {
  background:var(--brand-light); padding:1.5rem; border-radius:0.75rem;
}
.chart-description h4 { margin-bottom:1rem; color:var(--brand-primary); }

/* JOB SLIDER */
.openings-section {
  background: linear-gradient(135deg, var(--brand-light) 0%, #e8f5e9 100%);
  position: relative; overflow:hidden; padding:6rem 0;
}
.openings-section:before {
  content:""; position:absolute;
  width:200%; height:200px; background:#fff;
  top:-50px; left:-50%; transform:rotate(2deg);
  opacity:0.8; z-index:0;
}
.coming-soon-card {
  position:relative; z-index:1;
  max-width:800px; margin:0 auto;
  background:#fff; border-radius:1.5rem; padding:3rem;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  border-top:6px solid var(--brand-primary);
  text-align:center; transition:all 0.4s ease;
}
.coming-soon-card:hover {
  transform:translateY(-10px); box-shadow:0 15px 40px rgba(0,0,0,0.12);
}
.section-header:after {
  content:""; display:block;
  width:80px; height:4px; background:var(--brand-accent);
  margin:1.5rem auto 0; border-radius:2px;
}
.grow-icon {
  font-size:5rem; color:var(--brand-primary);
  animation:pulse 2s infinite ease-in-out; margin-bottom:1.5rem;
}
@keyframes pulse {
  0% { transform:scale(1); opacity:0.8; }
  50% { transform:scale(1.1); opacity:1; }
 100% { transform:scale(1); opacity:0.8; }
}
.openings-title { font-size:2.8rem; font-weight:700; color:var(--brand-primary); margin-bottom:1rem; }
.subtitle { font-size:1.4rem; font-weight:500; margin-bottom:2rem; }
.placeholder-text { max-width:600px; margin:0 auto 2.5rem; line-height:1.8; }

/* slider */
.job-slider-container {
  position:relative; padding:0 2rem; margin-top:3rem;
}
.slider-track {
  display:flex; gap:1.5rem; overflow-x:auto;
  scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch;
  scrollbar-width:none; -ms-overflow-style:none;
}
.slider-track::-webkit-scrollbar { display:none; }
.job-slide {
  flex:0 0 auto; scroll-snap-align:start;
  background:#fff; border-radius:1rem;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:all 0.3s ease; width:300px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
}
.job-slide:hover { transform:translateY(-5px); box-shadow:0 10px 25px rgba(0,0,0,0.15); }
.job-image { height:200px; background:var(--brand-light) center/cover no-repeat; }
.job-content { padding:1.5rem; flex-grow: 1; display: flex; flex-direction: column; }
.job-title { font-size:1.4rem; font-weight:700; color:var(--brand-primary); margin-bottom:0.5rem; }
.job-location { font-size:0.95rem; color:#666; margin-bottom:1rem; display:flex; gap:5px; }
.job-description { min-height:80px; margin-bottom:1.5rem; color:#555; flex-grow: 1; }
.job-link {
  display:inline-block; padding:0.6rem 1.5rem;
  background:var(--brand-primary); color:#fff;
  border-radius:0.75rem; font-weight:600;
  text-decoration:none; transition:all 0.3s ease;
  margin-top: auto;
}
.job-link:hover {
  background:var(--brand-secondary);
  box-shadow:0 4px 8px rgba(0,0,0,0.1);
  transform:translateY(-2px);
}
.slider-control {
  position:absolute; top:50%; transform:translateY(-50%);
  width:40px; height:40px; border-radius:50%;
  background:#fff; display:flex; align-items:center; justify-content:center;
  box-shadow:0 2px 8px rgba(0,0,0,0.15); cursor:pointer; transition:all 0.3s ease;
}
.slider-control:hover { background:var(--brand-accent); transform:translateY(-50%) scale(1.1); }
.slider-prev { left:1rem; }
.slider-next { right:1rem; }

/* CONTACT & FOOTER */
.contact-form {
  max-width:600px; margin:0 auto;
  background:#fff; padding:2rem; border-radius:1rem;
  box-shadow:var(--shadow-sm);
}

/* Form Messages */
#formMessage {
  padding: 15px 20px;
  border-radius: 0.5rem;
  margin-top: 15px;
  font-weight: 500;
  animation: slideDown 0.3s ease;
}

#formMessage.alert-success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

#formMessage.alert-danger {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.site-footer {
  background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-secondary) 100%);
  padding: 4rem 0 2rem;
  margin-top: 4rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
  color: #fff;
}

.site-footer h5 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.site-footer h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--brand-accent);
  border-radius: 2px;
}

.site-footer ul li {
  margin-bottom: 0.8rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: var(--transition-fast);
  display: inline-block;
}

.site-footer a:hover {
  color: var(--brand-accent);
  transform: translateX(5px);
}

.site-footer .text-muted {
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 0.95rem;
}

.site-footer .small {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.site-footer hr {
  border-color: rgba(255, 255, 255, 0.2);
  margin: 2rem 0;
}

.footer-logo {
  height: 130px;
  margin-bottom: 1rem;
  display: block;
}

.site-footer i {
  transition: var(--transition-fast);
}

.site-footer .fs-4 {
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: var(--transition-fast);
}

.site-footer .fs-4:hover {
  background: var(--brand-accent);
  color: var(--brand-primary);
  transform: translateY(-3px);
}

.footer-section {
  position: relative;
}

.site-footer .list-unstyled li {
  color: rgba(255, 255, 255, 0.9);
}

.footer-platform-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: rgba(255, 255, 255, 0.9) !important;
  text-decoration: none;
  transition: var(--transition-fast);
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-platform-link:hover {
  background: var(--brand-accent);
  color: var(--brand-primary) !important;
  border-color: var(--brand-accent);
  transform: translateY(-2px);
}

.footer-platform-link i {
  font-size: 1.1rem;
}


/* BACK TO TOP */
.back-to-top {
  position:fixed; bottom:30px; right:30px;
  width:50px; height:50px; border-radius:50%;
  background:var(--brand-primary); color:#fff;
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; opacity:0; transform:translateY(20px);
  transition:all 0.3s ease; z-index:100;
}
.back-to-top.visible { opacity:1; transform:translateY(0); }
.back-to-top:hover { background:var(--brand-secondary); transform:translateY(-5px); }

/* FORM CONTROLS & TOUCH */
.form-control,
.form-select { font-size:1rem; padding:1rem; }
.form-floating label { padding:1rem; }
.nav-link, .btn, .state, .slider-control, .job-link { touch-action: manipulation; }

/* RESPONSIVE BREAKPOINTS */
/* Tablet ≤992px */
@media (max-width: 992px) {
  .navbar-logo { height: 150px; }
  .hero-content h1 { font-size: 3rem; }
  section { padding: var(--mobile-padding); }
}

/* TABLET & MOBILE RESPONSIVE (≤768px) */
@media (max-width: 768px) {
  body { padding-top: 70px; }
  .navbar {
    padding: 0.5rem 1rem;
    border-bottom: 2px solid var(--brand-primary);
    overflow: visible !important;
  }
  .navbar-logo { height: 40px; }
  .navbar-toggler { display: block; font-size: 1.2rem; border: none; }
  .navbar-toggler:focus { outline: none; box-shadow: 0 0 0 0.25rem var(--brand-light); }
  .navbar-collapse {
    overflow: visible !important;
  }
  .navbar-nav {
    flex-direction: column;
    background: #fff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 1rem;
    overflow: visible !important;
  }
  .nav-link { margin: 0.5rem 0; padding: 0.75rem 1rem !important; border-radius: 0.5rem; }
  .nav-link::after { display: none; }
  .dropdown { width: 100%; display: block; margin-top: 1rem; position: relative; overflow: visible !important; margin-left: 0 !important; }
  .dropdown-menu { 
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    top: 100% !important;
    width: auto !important;
    min-width: 220px !important;
    margin-top: 0.5rem !important;
    display: none !important;
    overflow: visible !important;
    max-height: none !important;
    z-index: 1002 !important;
    border-radius: 0.75rem !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15) !important;
  }
  .dropdown-menu.show { display: block !important; }
  .dropdown-item {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
  .btn-primary { width: 100%; margin-top: 0; margin-bottom: 0; margin-left: 0 !important; }
  .hero { height:80vh; padding:0 1rem; }
  .hero-content h1 { font-size:2.2rem; }
  .experience-badge {
    width: 140px;
    height: 140px;
    border-radius: 0.8rem;
    padding: 0.5rem;
  }
  .experience-badge .display-4 { font-size: 2rem; }
  .experience-badge small { font-size: 0.8rem; }
  .about-card, .stat-card, .team-member-card { margin-bottom:1.5rem; }
  .map-container {
    padding: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .map-wrapper { flex-direction:column; margin-top:1.5rem; gap: 1.5rem; }
  .map-legend { width:100%; margin-top:1rem; }
  .map-svg-container { max-width: 100%; }
  .coverage-stats { grid-template-columns:1fr; gap: 1rem; margin-top: 1rem; margin-bottom: 1rem; }
  .chart-container {
    flex-direction:column;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1rem;
  }
  .chart-wrapper {
    width:100% !important;
    max-width: 100% !important;
    height: 250px !important;
    margin-bottom: 0;
  }
  .chart-info { width: 100%; max-width: 100%; }
  .chart-description { padding: 1rem; }
  .contact-form { padding:1.5rem; }
  
  /* Team cards on tablet */
  .team-member-card {
    min-height: 450px;
    padding: 1.5rem;
    padding-top: 90px;
    margin: 1.5rem auto;
  }
  .team-img {
    width: 120px;
    height: 120px;
    margin: -100px auto 15px;
  }
  .position { margin-bottom: 1rem; font-size: 0.9rem; }
  .quote { min-height: auto; font-size: 0.95rem; padding: 0 10px; line-height: 1.6; margin: 1rem 0; flex-grow: 1; }
  .quote::before, .quote::after { font-size: 1.8rem; }
  .social-links { margin-top: auto; gap: 10px; padding-top: 1rem; }
  .social-links a { width: 35px; height: 35px; font-size: 0.8rem; }
}

/* SMALL MOBILE (≤576px) */
@media (max-width: 576px) {
  .hero { height:75vh; }
  .hero-content h1 { font-size:1.8rem; line-height:1.3; }
  .experience-badge {
    width: 120px;
    height: 120px;
    border-radius: 0.75rem;
    padding: 0.4rem;
  }
  .experience-badge .display-4 { font-size: 1.6rem; }
  .experience-badge small { font-size: 0.75rem; }
  .section-title { font-size:2rem; }
  .section-title:after { margin:0.5rem auto; }
  .stat-number { font-size:2rem; }
  .openings-title { font-size:2rem; }
  .subtitle { font-size:1.2rem; }
  .slider-track { height:300px; }
  .job-slide { width:260px; }
  .back-to-top { width:40px; height:40px; bottom:15px; right:15px; font-size:1rem; }
  .state-info { max-width:90%; left:5% !important; right:5% !important; transform:translateX(0) !important; }
  .slider-control { width:35px; height:35px; font-size:0.9rem; }
  .map-instructions { font-size:0.85rem; }
  
  /* Coverage section small mobile */
  .map-container { padding: 1rem; margin-bottom: 1.5rem; }
  .map-wrapper { gap: 1rem; }
  .map-legend { flex: 0 0 100%; }
  .coverage-stats { gap: 1rem; margin-bottom: 1rem; }
  .chart-wrapper { height: 220px !important; }
  .chart-container { padding: 1rem; gap: 1rem; }
  
  /* Dropdown menu on small mobile */
  .dropdown { margin-top: 0.5rem; position: relative; overflow: visible; margin-left: 0 !important; }
  .dropdown-menu {
    position: absolute !important;
    left: 0 !important;
    right: auto !important;
    top: 100% !important;
    width: auto !important;
    min-width: 180px !important;
    margin-top: 0.25rem !important;
    display: none !important;
    overflow: visible !important;
    max-height: none !important;
    z-index: 1002 !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
  }
  .dropdown-menu.show { display: block !important; }
  .dropdown-item { 
    padding: 0.75rem 1.5rem; 
    font-size: 0.95rem;
    border-left: 3px solid transparent;
    white-space: normal;
  }
  .dropdown-item:hover { 
    padding-left: 1.75rem;
    border-left-color: var(--brand-primary);
  }
  
  /* Team cards small screens - allow scrolling for overflow content */
  .team-member-card {
    padding: 1.5rem;
    padding-top: 70px;
    margin: 1rem auto;
    min-height: 420px;
    max-height: 90vh;
    overflow-y: auto;
  }
  .team-img {
    width: 100px;
    height: 100px;
    margin: -75px auto 15px;
  }
  .position { font-size: 0.85rem; margin-bottom: 1rem; }
  .quote { min-height: auto; font-size: 0.95rem; padding: 0 10px; line-height: 1.6; flex-grow: 1; }
  .quote::before, .quote::after { font-size: 1.5rem; }
  .social-links { gap: 0.5rem; margin-top: 1rem; }
  .social-links a { width: 32px; height: 32px; font-size: 0.8rem; }
}

/* CHART STYLING */
.chart-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  height: 300px !important;
  margin: 0 auto;
  position: relative;
  flex-shrink: 0;
}

.chart-wrapper canvas {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  display: block;
}

/* BUTTON STYLING */
.btn-primary {
  background: var(--brand-primary) !important;
  color: white !important;
  border: none !important;
}
.btn-primary:hover {
  background: var(--brand-secondary) !important;
}
