/* ===== ETHICAL SERVANT RDC - MODERN NGO WEBSITE STYLES ===== */

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

:root {
  --primary-blue: #0d47a1;
  --secondary-blue: #1565c0;
  --accent-blue: #1976d2;
  --dark: #000000;
  --orange: #ff9800;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --medium-text: #424242;
  --light-text: #757575;
  --border-gray: #e0e0e0;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 6px 16px rgba(0, 0, 0, 0.12);
  --transition: all 0.3s ease;
  --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  --gradient-accent: linear-gradient(135deg, var(--orange) 0%, #ff5722 100%);
  --card-bg: rgba(255, 255, 255, 0.95);
  --section-padding: 6rem 0;
}

/* Typography */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: var(--medium-text);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
  margin-bottom: 1rem;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  position: relative;
  padding-bottom: 1rem;
  color: var(--dark);
}

h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--orange);
  border-radius: 2px;
}

.text-center h2::after {
  left: 50%;
  transform: translateX(-50%);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  margin-bottom: 0.75rem;
}

h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

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

/* Accessibility */
.skip-link {
  position: absolute;
  top: -40px;
  left: 6px;
  background: var(--primary-blue);
  color: var(--white);
  padding: 8px;
  z-index: 1000;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
}

.skip-link:focus {
  top: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.section {
  padding: 5rem 0;
}

.text-center {
  text-align: center;
}

/* Header */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
}

.logo img {
  height: 80px;
  width: auto;
  transition: var(--transition);
}

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

/* Navigation */
.main-nav {
  display: flex;
  align-items: center;
}

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

.nav-link {
  color: var(--dark);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
}

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

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 1rem;
  right: 1rem;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
}

/* Language Switcher */
.language-switcher {
  display: none; /* Disabled */
  align-items: center;
  gap: 0.5rem;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--medium-text);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: var(--transition);
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.lang-btn .flag {
  font-size: 1.2rem;
  line-height: 1;
}

.lang-btn:hover {
  color: var(--orange);
  background: var(--light-gray);
}

.lang-btn.active {
  color: var(--orange);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
  position: relative;
}

.hamburger-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark-text);
  position: relative;
  transition: var(--transition);
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--dark-text);
  transition: var(--transition);
}

.hamburger-icon::before {
  top: -8px;
}

.hamburger-icon::after {
  top: 8px;
}

.nav-toggle[aria-expanded="true"] .hamburger-icon {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
  background: var(--primary-blue);
}

/* Hero Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide-content {
  width: 100%;
  height: 100%;
}

.slide-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.7);
}

.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 1rem;
  z-index: 2;
}

.prev-btn,
.next-btn {
  background: rgba(0, 0, 0, 0.5);
  color: var(--white);
  border: 2px solid var(--white);
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.prev-btn:hover,
.next-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 2;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
}

.dot.active,
.dot:hover {
  background: var(--white);
  transform: scale(1.2);
}

.hero-content-wrapper {
  position: absolute;
  bottom: 8rem;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  background: rgba(0, 0, 0, 0.6);
  padding: 3rem;
  border-radius: 15px;
  max-width: 800px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  transform: translateY(0);
  transition: var(--transition);
}

.hero-content:hover {
  transform: translateY(-5px);
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  line-height: 1.2;
  font-family: "Inter", sans-serif;
  gap: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-accent);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn:hover::before {
  opacity: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  box-shadow: var(--shadow);
}

.btn-primary:hover {
  background: var(--gradient-accent); /* Changed to orange gradient on hover */
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-blue);
}

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

.btn-outline:hover {
  background: var(--primary-blue);
  color: var(--white);
}

/* Cards */
.card {
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: none;
  position: relative;
  z-index: 1;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  border-radius: 12px;
  z-index: -1;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card:hover::before {
  opacity: 0.05;
}

.card-body {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  margin-bottom: 1rem;
  color: var(--dark);
  font-size: 1.3rem;
}

.card-text {
  color: var(--light-text);
  line-height: 1.7;
  flex-grow: 1;
  margin-bottom: 1.5rem;
}

.card-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 1.5rem;
  transition: var(--transition);
}

.card:hover .card-icon {
  transform: scale(1.1);
  box-shadow: 0 10px 20px rgba(13, 71, 161, 0.3);
}

.card-icon svg,
.card-icon i {
  width: 28px;
  height: 28px;
  stroke-width: 1.5;
}

.card-icon i {
  font-size: 1.8rem;
}

/* Team Member Card - New Layout */
.team-member-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
}

.team-member-image {
  flex: 0 0 auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--orange);
  margin-right: 1.5rem;
}

.team-member-info {
  flex: 1;
}

.team-member-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.team-member-role {
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.team-member-bio {
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .team-member-card {
    flex-direction: column;
    text-align: center;
  }
  
  .team-member-image {
    margin-right: 0;
    margin-bottom: 1rem;
    width: 200px;
    height: 200px;
  }
}

/* Section Headers */
.section-header {
  margin-bottom: 4rem;
  position: relative;
}

.section-title {
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--gradient-accent);
  border-radius: 2px;
}

.section-description {
  font-size: 1.125rem;
  color: var(--medium-text);
  max-width: 700px;
  margin: 1.5rem auto 0;
  line-height: 1.7;
}

.text-center .section-description {
  margin-left: auto;
  margin-right: auto;
}

/* Mission Section */
.mission-section {
  padding: var(--section-padding);
  background: var(--light-gray);
  position: relative;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--gradient-primary);
}

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

.mission-card {
  text-align: center;
  padding: 2rem;
  transition: var(--transition);
}

.mission-card .card-body {
  padding: 1.5rem;
}

/* Stats Section */
.stats-section {
  background: var(--gradient-primary);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.stat-item {
  padding: 1.5rem;
  position: relative;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.stat-label {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Programs Section */
.programs-section {
  padding: var(--section-padding);
  position: relative;
}

.programs-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--gradient-accent);
}

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

.program-card {
  border: none;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.program-card .card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.instructor-profile {
  text-align: center;
  margin-bottom: 1.5rem;
}

.instructor-image {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 4px solid var(--orange);
  margin: 0 auto;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.program-card:hover .instructor-image {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(255, 152, 0, 0.3);
}

.program-title {
  color: var(--dark);
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.program-instructor {
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.section-cta {
  margin-top: 4rem;
  text-align: center;
}

/* Why Choose Section */
.why-choose-section {
  background: var(--light-gray);
  padding: var(--section-padding);
  position: relative;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--gradient-primary);
}

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

.feature-item {
  text-align: center;
  position: relative;
  padding: 2rem 1rem;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-number {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 20px rgba(13, 71, 161, 0.2);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  margin: 0 auto 1.5rem;
  box-shadow: 0 10px 20px rgba(13, 71, 161, 0.2);
}

.feature-title {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  color: var(--dark);
}

.feature-description {
  color: var(--medium-text);
  line-height: 1.7;
}

/* Key Members Section */
.key-members-section {
  background: var(--light-gray);
  padding: var(--section-padding);
  position: relative;
}

.key-members-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--gradient-accent);
}

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

.member-card {
  text-align: center;
  transition: var(--transition);
}

.member-card .card-body {
  padding: 2rem 1.5rem;
}

.member-name {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 600;
}

.member-role {
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Partners Section */
.partners-section {
  background: var(--white);
  padding: var(--section-padding);
  position: relative;
}

.partners-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--gradient-primary);
}

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

.partner-card {
  text-align: center;
  transition: var(--transition);
}

.partner-card .card-body {
  padding: 2rem 1.5rem;
}

.partner-name {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
  font-weight: 600;
}

.partner-role {
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Get Involved Section */
.get-involved-section {
  padding: var(--section-padding);
  background: var(--light-gray);
  position: relative;
}

.get-involved-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: var(--gradient-accent);
}

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

.involved-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.involved-card .card-body {
  padding: 2.5rem 1.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  align-items: center;
  text-align: center;
}

.card-icon-large {
  width: 80px;
  height: 80px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px rgba(13, 71, 161, 0.2);
}

.involved-card .card-body {
  padding: 2rem 1.5rem;
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle at 10% 20%, rgba(255, 152, 0, 0.1) 0%, transparent 20%),
                    radial-gradient(circle at 90% 80%, rgba(255, 152, 0, 0.1) 0%, transparent 20%);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.footer-title {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.8rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--orange);
}

.footer-subtitle {
  color: var(--orange);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 600;
  position: relative;
  display: inline-block;
}

.footer-subtitle::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--orange);
}

.footer-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

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

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

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

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

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.social-links {
  display: flex;
  gap: 1.2rem;
  margin-top: 1.5rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  font-size: 1.2rem;
}

.social-links a:hover {
  background: var(--gradient-accent);
  transform: translateY(-5px) rotate(5deg);
  box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  position: relative;
  z-index: 1;
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero-subtitle {
    font-size: 1.125rem;
  }

  .stats-grid {
    gap: 1.5rem;
  }

  .features-grid {
    gap: 2rem;
  }
  
  .section {
    padding: 4rem 0;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 80%;
    max-width: 300px;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    transition: var(--transition);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-menu.show {
    right: 0;
  }

  .nav-menu::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: -1;
  }

  .nav-menu.show::before {
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 1rem;
    font-size: 1.125rem;
  }

  .nav-toggle {
    display: block;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .mission-cards,
  .programs-grid,
  .features-grid,
  .involved-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section {
    padding: 4rem 0;
  }

  .section-header {
    margin-bottom: 2rem;
  }
  
  .hero-content {
    padding: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .features-grid {
    gap: 2rem;
  }
  
  .instructor-image {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .card-body {
    padding: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-links {
    padding: 0;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-header {
    margin-bottom: 1.5rem;
  }
  
  .stat-item {
    padding: 1rem;
  }
  
  .mission-cards {
    gap: 2rem;
  }
}

/* Print Styles */
@media print {
  .nav-toggle,
  .hero-buttons,
  .footer-social,
  .get-involved-section {
    display: none;
  }

  .site-header {
    box-shadow: none;
    position: static;
  }

  .hero {
    background: none;
    color: var(--dark-text);
    min-height: auto;
    padding: 2rem 0;
  }

  .hero-title {
    color: var(--dark-text);
  }

  .hero-subtitle {
    color: var(--medium-text);
  }

  .stats-section {
    background: none;
    color: var(--dark-text);
  }

  .stat-number {
    color: var(--dark-text);
  }

  .stat-label {
    color: var(--medium-text);
  }

  .site-footer {
    background: none;
    color: var(--dark-text);
  }

  .footer-links a,
  .footer-contact a,
  .footer-contact p {
    color: var(--medium-text);
  }
}

/* Gallery Section */
.gallery-section {
  background: var(--light-gray);
}

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

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 300px;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(13, 71, 161, 0.85);
  color: var(--white);
  padding: 1.5rem;
  transform: translateY(100%);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
  background: var(--light-gray);
}

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

.contact-info {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.contact-info h3 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--orange);
}

.contact-detail {
  display: flex;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: rgba(13, 71, 161, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.contact-text h4 {
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.contact-text p,
.contact-text a {
  color: var(--light-text);
  text-decoration: none;
  transition: var(--transition);
}

.contact-text a:hover {
  color: var(--primary-blue);
}

.social-links-contact {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--primary-blue);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 600;
}

.social-links-contact a:hover {
  background: var(--orange);
  transform: translateY(-3px);
}

.contact-form {
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-gray);
  border-radius: 4px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.1);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Additional enhancements */
.section {
  padding: var(--section-padding);
  position: relative;
}

/* Enhanced team member cards */
.team-member-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  transition: var(--transition);
}

.team-member-card:hover {
  transform: translateY(-5px);
}

.team-member-image {
  flex: 0 0 auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--orange);
  margin-right: 1.5rem;
  transition: var(--transition);
}

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

.team-member-info {
  flex: 1;
}

.team-member-name {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.team-member-role {
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.team-member-bio {
  color: var(--light-text);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .team-member-card {
    flex-direction: column;
    text-align: center;
  }
  
  .team-member-image {
    margin-right: 0;
    margin-bottom: 1rem;
    width: 200px;
    height: 200px;
  }
}

/* Enhancements for accessibility */
a:focus,
button:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Add animations for elements when they come into view */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.6s ease-out forwards;
}

/* Header scroll effect */
.header-scrolled {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

/* Additional button styles */
.btn-transparent {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-transparent:hover {
  background: var(--primary-blue);
  color: var(--white);
}

/* Card hover effects */
.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Enhanced stats section styling */
.stats-item {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  transition: var(--transition);
}

.stats-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-blue);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-blue);
}
