:root {
  --primary: #000000;
  --secondary: #E31E24;
  --light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  padding-top: 80px;
  background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

/* Global Impact Section */
#global-impact {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.bg-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29-22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-29c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM60 91c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23e31e24' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
}

.impact-card {
  transition: all 0.3s ease;
  border-left: 4px solid var(--secondary);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.impact-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--secondary);
}

.impact-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.impact-stats > div {
  text-align: center;
  padding: 0 1.5rem;
  position: relative;
}

.impact-stats > div:not(:last-child):after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 60%;
  background: rgba(255, 255, 255, 0.1);
}

/* Animate counter */
@keyframes countUp {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.impact-stats .display-4 {
  animation: countUp 0.5s ease-out forwards;
  opacity: 0;
  animation-delay: calc(var(--delay, 0) * 0.1s);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .impact-stats {
    justify-content: center;
  }
  
  .impact-stats > div {
    flex: 0 0 calc(50% - 1rem);
    margin-bottom: 1rem;
  }
  
  .impact-stats > div:after {
    display: none;
  }
}

/* Navigation */
.navbar {
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff !important;
}

.navbar-brand img {
  max-height: 50px;
}

.navbar-nav .nav-link {
  color: var(--dark);
  font-weight: 500;
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary);
}

.navbar-nav .nav-link:after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--secondary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover:after,
.navbar-nav .nav-link.active:after {
  width: 60%;
}

/* Dropdown */
.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: var(--secondary);
}

/* Responsive */
@media (max-width: 991.98px) {
  .navbar-collapse {
    background: #fff;
    padding: 1rem;
    margin-top: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 0;
    margin: 0;
  }
  
  .navbar-nav .nav-link:after {
    display: none;
  }
  
  .dropdown-menu {
    box-shadow: none;
    padding: 0;
    margin: 0;
    border: 1px solid #eee;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  background-color: #000;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0;
  margin-top: -80px; /* Offset the fixed header */
  background-image: url('https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 0 100px;
}

.hero h1 {
  font-size: 4.5rem;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p.lead {
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
  z-index: 1;
}

/* Utility Classes */
.py-6 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-lg-8 {
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

/* Contact Form */
.contact-form-wrapper {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contact-form {
  position: relative;
}

.form-step {
  display: none;
  animation: fadeIn 0.4s ease-out;
}

.form-step.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Form elements */
.form-floating > label {
  color: #6c757d;
  padding: 0.5rem 0.75rem;
}

.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-control-plaintext ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.8;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.5rem);
}

.form-control, .form-select {
  border: 1px solid #e2e8f0;
  padding: 1rem 0.75rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.25rem rgba(227, 30, 36, 0.15);
}

/* Service options */
.service-options .btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.25rem 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  color: #4a5568;
  height: 100%;
}

.service-options .btn i {
  color: var(--primary);
  transition: all 0.3s ease;
}

.service-options .btn-check:checked + .btn,
.service-options .btn:hover {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(227, 30, 36, 0.1);
}

.service-options .btn-check:checked + .btn i,
.service-options .btn:hover i {
  color: white;
}

/* Form navigation */
.btn-next, .btn-prev {
  min-width: 140px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-next i, .btn-prev i {
  transition: transform 0.3s ease;
}

.btn-next:hover i {
  transform: translateX(3px);
}

.btn-prev:hover i {
  transform: translateX(-3px);
}

/* Success message */
.form-success {
  animation: fadeIn 0.5s ease-out;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.success-icon i {
  font-size: 2.5rem;
  color: #28a745;
}

/* Progress bar */
.progress {
  background-color: #f1f5f9;
  border-radius: 10px;
  overflow: hidden;
}

.progress-bar {
  transition: width 0.6s ease;
  background: linear-gradient(90deg, var(--primary), #ff6b6b);
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .contact-form-wrapper {
    padding: 1.5rem;
  }
  
  .service-options .btn {
    padding: 1rem 0.5rem;
    font-size: 0.875rem;
  }
  
  .btn-next, .btn-prev {
    width: 100%;
    margin-bottom: 0.5rem;
  }
  
  .d-flex.justify-content-between {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Form validation */
.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid:focus,
.form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip,
.form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip {
  display: block;
}

/* Buttons */
.btn {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.875rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.btn-primary:hover {
  background-color: #c5191e;
  border-color: #c5191e;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
}

.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Dark Section */
.bg-dark {
  background-color: #1a1d23 !important;
  color: #fff;
}

.bg-dark .text-muted {
  color: #adb5bd !important;
}

.bg-dark .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.bg-dark .btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
/* Process styles have been moved to process.css */

.service-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(227, 30, 36, 0.1);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.service-card h3 {
  color: #1a1d23;
  font-weight: 700;
  margin-bottom: 1rem;
}

.service-card p {
  color: #6c757d;
  margin-bottom: 1.5rem;
}

.service-card ul {
  margin-bottom: 1.5rem;
}

.service-card ul li {
  margin-bottom: 0.5rem;
  color: #495057;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.service-card .btn-link {
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-card .btn-link:hover {
  color: #c5191e !important;
  transform: translateX(5px);
}

/* Golazo/* Team Section */
#team {
  position: relative;
  overflow: hidden;
}

.team-member-img {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

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

.team-member-img:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.team-member-img:hover img {
  transform: scale(1.05);
}

/* Golazo Group Section */
#golazo {
  position: relative;
  overflow: hidden;
}

#golazo .display-4 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

#golazo .lead {
  font-size: 1.25rem;
  color: #adb5bd;
  margin-bottom: 2rem;
}

#golazo .rounded-circle {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 2;
  transition: all 0.3s ease;
}

#golazo .rounded-circle i {
  font-size: 1.5rem;
}

#golazo .d-flex {
  margin-bottom: 1.5rem;
}

#golazo .d-flex i {
  color: var(--secondary);
  margin-right: 1rem;
  font-size: 1.5rem;
  min-width: 2rem;
  margin-top: 0.25rem;
}

#golazo .d-flex h4 {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #fff;
}

#golazo .d-flex p {
  margin-bottom: 0;
  font-size: 0.9rem;
  color: #adb5bd;
}

#golazo .btn-outline-light {
  border-width: 2px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 0.75rem 2rem;
}

@media (max-width: 991.98px) {
  #golazo .display-4 {
    font-size: 2rem;
  }
  
  #golazo .lead {
    font-size: 1.1rem;
  }
  
  #golazo .rounded-circle {
    width: 60px;
    height: 60px;
  }
  
  #golazo .rounded-circle i {
    font-size: 1.25rem;
  }
}

@media (max-width: 991.98px) {
  #about .display-4 {
    font-size: 2rem;
  }
  
  #about .lead {
    font-size: 1.1rem;
  }
  
  .py-6, .py-lg-8 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

/* Animation for portfolio items on load */
.portfolio-grid {
  counter-reset: item-counter;
}

.portfolio-item {
  --item-index: 0;
  counter-increment: item-counter;
  animation-delay: calc(counter(item-counter) * 0.1s);
}

/* Responsive */
@media (max-width: 1199.98px) {
  .hero h1 {
    font-size: 3.5rem;
  }
  
  #services .display-4 {
    font-size: 2.25rem;
  }
}

@media (max-width: 991.98px) {
  .portfolio-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .portfolio-filter .btn-filter {
    margin: 0.25rem;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
  }
  
  .portfolio-title {
    font-size: 1.1rem;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.25rem;
  }
  
  .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  
  .service-card p {
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
  }
  
  .service-card ul li {
    font-size: 0.9rem;
  }
}

/* Responsive Adjustments for Global Impact */
@media (max-width: 991.98px) {
  #global-impact .display-4 {
    font-size: 2.5rem;
  }
  
  #global-impact .lead {
    font-size: 1.1rem;
    max-width: 100%;
  }
  
  #global-impact .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  #global-impact .btn-outline-light {
    margin-right: 0 !important;
  }
}

@media (max-width: 767.98px) {
  .portfolio-filter {
    margin-bottom: 1.5rem;
  }
  
  .portfolio-filter .btn-filter {
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    margin: 0.15rem;
  }
  
  .portfolio-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .portfolio-overlay {
    padding: 1rem;
  }
  
  .hero {
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .hero p.lead {
    font-size: 1.25rem;
  }
  
  .hero .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .hero .d-flex {
    flex-direction: column;
  }
  
  .hero .gap-3 {
    gap: 1rem !important;
  }
  
  #services .display-4 {
    font-size: 2rem;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
}

.btn-teal { background: var(--teal); color:white; }
.btn-gold { background: var(--gold); color:#1f2b4a; }
.btn-gold:hover { background:#e5a13a; }

section { padding: 5rem 0; }
.section-muted { background:#f5f7fb; }
.soft-card {
  background:#fff;
  border:1px solid #e9eef6;
  border-radius:1rem;
  box-shadow:0 6px 20px rgba(10,31,68,.06);
}

/* Footer */
footer {
  background: linear-gradient(135deg, #0A1F44 0%, #1A2C4F 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 5rem 0 2rem;
}

.bg-pattern-dark {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M54.627 0l-5.334 5.334L48 6.627l1.333-1.333L60 0zM0 54.627L5.333 48 6.627 48l-1.333 1.333L0 60z' fill='%23E31E24' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.footer-logo img {
  transition: transform 0.3s ease;
}

.footer-logo:hover img {
  transform: scale(1.05);
}

.text-white-60 {
  color: rgba(255, 255, 255, 0.6) !important;
}

footer h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

footer h5::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

footer h5:hover::after {
  width: 60px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 0.25rem 0;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 8px;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: #fff;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
  color: #fff !important;
}

.footer-contact i {
  font-size: 1.1rem;
  min-width: 24px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  footer {
    text-align: center;
  }
  
  .footer-logo {
    margin-bottom: 2rem;
  }
  
  footer h5::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact {
    margin-top: 2rem;
  }
  
  .social-links {
    justify-content: center !important;
    margin-bottom: 2rem;
  }
  
  .footer-links {
    margin-bottom: 2rem;
  }
}

/* Leadership Notes Section */
.leadership-notes {
  position: relative;
  padding: 2.5rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.leadership-carousel {
  position: relative;
  min-height: 380px;
  padding: 0 2.5rem;
  
  /* Navigation buttons */
  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: none;
    color: #e31e24;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0.8;
    
    &:hover {
      background: #e31e24;
      color: white;
      transform: translateY(-50%) scale(1.1);
      opacity: 1;
    }
    
    &:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.3);
    }
    
    &.prev {
      left: -10px;
    }
    
    &.next {
      right: -10px;
    }
    
    i {
      display: block;
      transition: transform 0.2s ease;
    }
    
    &:active i {
      transform: scale(0.9);
    }
  }
  
  /* Hide navigation buttons on mobile */
  @media (max-width: 767.98px) {
    padding: 0;
    
    .carousel-nav {
      display: none;
    }
  }
}

.leadership-note {
  position: relative;
  width: 100%;
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
  backface-visibility: hidden;
  perspective: 1000px;
  transform-style: preserve-3d;
  
  /* Hide all notes by default */
  display: none;
  opacity: 0;
  transform: translateX(0);
  
  /* Active state */
  &.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Entering animations */
  &[style*="display: block"] {
    display: block !important;
    opacity: 0;
    transform: translateX(30px);
  }
  
  /* Smooth transitions for transform and opacity */
  transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
              transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.6s step-end;
}

.note-content {
  padding: 2.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.leader-meta {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 1.5rem;
}

.leader-meta::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #e31e24, #ff6b6b);
  border-radius: 3px;
}

.leader-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e31e24 0%, #ff6b6b 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(227, 30, 36, 0.25);
  transition: all 0.3s ease;
}

.leader-avatar i {
  font-size: 2rem;
  color: white;
  transition: transform 0.3s ease;
}

.leader-meta h4 {
  margin-bottom: 0.25rem;
  color: #1a202c;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: -0.3px;
}

.leader-meta span {
  font-size: 0.95rem;
  color: #6b7280;
  font-weight: 500;
  display: inline-block;
  background: rgba(107, 114, 128, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-top: 0.5rem;
}

.note-text blockquote {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4b5563;
  font-style: italic;
  position: relative;
  padding: 1.5rem 0 1.5rem 2rem;
  margin: 1.5rem 0;
  border-left: 3px solid #e31e24;
  background: rgba(247, 247, 249, 0.5);
  border-radius: 0 8px 8px 0;
  font-family: 'Georgia', serif;
}

.note-text blockquote::before {
  content: '"\201C"';
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  font-size: 4rem;
  color: rgba(227, 30, 36, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.signature {
  font-weight: 600;
  color: #1a202c;
  font-style: normal;
  margin-top: 1.5rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
}

.signature::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #e31e24;
  margin-right: 10px;
}

.note-nav-dots {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  gap: 0.75rem;
}

.note-nav-dots .dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #e5e7eb;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.note-nav-dots .dot::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e31e24 0%, #ff6b6b 100%);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.note-nav-dots .dot.active {
  background-color: transparent;
}

.note-nav-dots .dot.active::after {
  transform: scale(1);
}

/* Hover effects */
.leader-avatar:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(227, 30, 36, 0.3);
}

.leader-avatar:hover i {
  transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 1199.98px) {
  .leadership-notes {
    padding: 2rem;
  }
  
  .note-content {
    padding: 2rem;
  }
  
  .leader-avatar {
    width: 70px;
    height: 70px;
  }
  
  .leader-meta h4 {
    font-size: 1.25rem;
  }
  
  .note-text blockquote {
    font-size: 1.05rem;
    padding-left: 1.75rem;
  }
}

@media (max-width: 991.98px) {
  .leadership-notes {
    margin-top: 3rem;
  }
}

@media (max-width: 767.98px) {
  .leader-meta {
    flex-direction: column;
    text-align: center;
    padding-bottom: 1.5rem;
  }
  
  .leader-meta::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .leader-avatar {
    margin: 0 auto 1.25rem;
  }
  
  .note-content {
    padding: 1.75rem 1.5rem;
  }
  
  .note-text blockquote {
    font-size: 1rem;
    padding: 1.25rem 1.25rem 1.25rem 2rem;
  }
  
  .signature {
    justify-content: center;
  }
}

#toTop {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  display: none;
}
