:root {
  /* Brand Colors */
  --primary: #08cc54;
  --primary-dark: #06ad45;
  --primary-light: #33d67a;
  --secondary: #3d5054;
  --secondary-dark: #2c3a3e;
  --secondary-light: #566b71;

  /* Supporting Colors */
  --accent: #ff6b35;
  --accent-light: #ff8c5a;
  --success: #08cc54;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;

  /* Neutrals */
  --light: #f8f9fa;
  --lighter: #f1f3f5;
  --dark: #1a1a1a;
  --darker: #0f0f0f;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;

  /* Typography */
  --font-primary: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: 'Montserrat', 'Poppins', sans-serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-padding: 0 20px;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.16);
  --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-pill: 50px;
}

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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  color: var(--gray-800);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  margin-bottom: 1rem;
  color: var(--gray-700);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

img {
  max-width: 100%;
  height: auto;
}

/* Utility Classes */
.text-primary-custom {
  color: var(--primary) !important;
}

.text-secondary-custom {
  color: var(--secondary) !important;
}

.text-accent {
  color: var(--accent) !important;
}

.text-light-custom {
  color: var(--light) !important;
}

.text-dark-custom {
  color: var(--dark) !important;
}

.bg-primary-custom {
  background-color: var(--primary) !important;
}

.bg-secondary-custom {
  background-color: var(--secondary) !important;
}

.bg-accent {
  background-color: var(--accent) !important;
}

.bg-light-custom {
  background-color: var(--light) !important;
}

.bg-dark-custom {
  background-color: var(--dark) !important;
}

/* Gradient Backgrounds */
.gradient-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.gradient-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
}

.gradient-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 50%, var(--primary) 100%);
}

.gradient-mixed {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

/* Navigation */
.navbar {
  font-family: var(--font-heading);
  padding: 15px 0;
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--secondary) !important;
  display: flex;
  align-items: center;
}

.navbar-brand i {
  color: var(--primary);
  font-size: 1.8rem;
  margin-right: 8px;
}

.nav-link {
  font-weight: 500;
  color: var(--secondary) !important;
  margin: 0 10px;
  position: relative;
  padding: 8px 0 !important;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-normal);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--primary) !important;
}

.navbar-nav {
  align-items: center;
}

/* Buttons */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-normal);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(8, 204, 84, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(8, 204, 84, 0.4);
  color: white;
}

.btn-secondary {
  background: var(--secondary);
  color: white;
  box-shadow: 0 4px 15px rgba(61, 80, 84, 0.3);
}

.btn-secondary:hover {
  background: var(--secondary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(61, 80, 84, 0.4);
  color: white;
}

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

.btn-outline-primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

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

.btn-outline-secondary:hover {
  background: var(--secondary);
  color: white;
  transform: translateY(-2px);
}

.btn-light {
  background: white;
  color: var(--secondary);
  box-shadow: var(--shadow-md);
}

.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--secondary);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 1rem;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* Hero Section */
.hero-section {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--section-padding);
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(61, 80, 84, 0.95) 0%, rgba(44, 58, 62, 0.9) 50%, rgba(8, 204, 84, 0.8) 100%);
  z-index: -1;
}

.hero-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(8, 204, 84, 0.1) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: white;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-section .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-image {
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Stats Section */
.stats-section {
  padding: var(--section-padding);
  background: var(--light);
  position: relative;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.stat-item {
  text-align: center;
  padding: 30px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 10px;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 1.1rem;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-size: 1.75rem;
  box-shadow: 0 8px 20px rgba(8, 204, 84, 0.3);
}

/* Cards */
.card {
  border: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.card-body {
  padding: 2rem;
}

.card-title {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.card-text {
  color: var(--gray-600);
  line-height: 1.8;
}

/* Service Cards */
.service-card {
  position: relative;
  padding: 2.5rem 2rem;
  text-align: center;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  height: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  font-size: 2rem;
  box-shadow: 0 8px 20px rgba(8, 204, 84, 0.3);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Campaign Cards */
.campaign-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  background: white;
}

.campaign-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.campaign-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.campaign-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.campaign-card:hover .campaign-image img {
  transform: scale(1.1);
}

.campaign-progress {
  height: 12px;
  border-radius: 10px;
  background: var(--gray-200);
  overflow: hidden;
  margin: 1rem 0;
}

.campaign-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  transition: width 1s ease;
}

.campaign-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.campaign-goal {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Testimonials */
.testimonial-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition-normal);
  border: 1px solid var(--gray-200);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
  z-index: 0;
}

.testimonial-quote p {
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  line-height: 1.8;
  font-size: 1.05rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 1rem;
}

.testimonial-author img,
.testimonial-author .rounded-circle {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border: 3px solid var(--primary-light);
  box-shadow: 0 4px 10px rgba(8, 204, 84, 0.2);
}

.testimonial-author h6 {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.15rem;
  font-size: 1rem;
}

.testimonial-author small {
  color: var(--gray-500);
  font-size: 0.85rem;
}

.testimonial-rating {
  margin-bottom: 1rem;
}

.testimonial-rating i {
  font-size: 0.9rem;
  margin-right: 2px;
}

/* Sections */
.section {
  padding: var(--section-padding);
}

.section-light {
  background: var(--light);
}

.section-dark {
  background: var(--secondary);
  color: white;
}

.section-primary {
  background: var(--primary);
  color: white;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.section-header p.lead {
  max-width: 700px;
  margin: 1rem auto 0;
  color: var(--gray-600);
}

/* CTA Section */
.cta-section {
  padding: var(--section-padding);
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/assets/images/pattern.png') repeat;
  opacity: 0.1;
}

.cta-section h2 {
  color: white;
  position: relative;
  z-index: 2;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 2;
}

/* Footer */
footer {
  background: var(--darker);
  color: white;
  padding: 80px 0 30px;
}

footer h5 {
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

footer p {
  color: var(--gray-400);
  line-height: 1.8;
}

footer a {
  color: var(--gray-400);
  transition: var(--transition-normal);
}

footer a:hover {
  color: var(--primary);
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-right: 10px;
  transition: var(--transition-normal);
}

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

/* Forms */
.form-control {
  border-radius: var(--radius-pill);
  border: 2px solid var(--gray-200);
  padding: 12px 20px;
  font-family: var(--font-primary);
  transition: var(--transition-normal);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(8, 204, 84, 0.15);
  outline: none;
}

.form-label {
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

/* Progress Bars */
.progress {
  height: 12px;
  border-radius: 10px;
  background: var(--gray-200);
  overflow: visible;
}

.progress-bar {
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  border-radius: 10px;
  position: relative;
  transition: width 1s ease;
}

.progress-bar::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3));
  border-radius: 0 10px 10px 0;
}

/* Badges */
.badge {
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.5px;
}

/* Alerts */
.alert {
  border: none;
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  font-weight: 500;
}

.alert-success {
  background: rgba(8, 204, 84, 0.1);
  color: var(--primary-dark);
  border-left: 4px solid var(--primary);
}

/* Team Cards */
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  text-align: center;
  padding-bottom: 1.5rem;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
}

.team-img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 1.5rem auto 1rem;
  border: 5px solid var(--primary);
  box-shadow: 0 8px 20px rgba(8, 204, 84, 0.2);
}

.team-name {
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.team-bio {
  color: var(--gray-600);
  font-size: 0.9rem;
}

/* Impact Numbers */
.impact-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.impact-label {
  font-size: 1.2rem;
  color: var(--secondary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Animations */
[data-aos] {
  pointer-events: none;
}

[data-aos].aos-animate {
  pointer-events: auto;
}

.aos-init {
  opacity: 0;
  transition-property: transform, opacity;
}

.aos-animate {
  opacity: 1;
}

/* Fade animations */
.fade-in {
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pulse animation for CTA */
.pulse {
  animation: pulse-btn 2s infinite;
}

@keyframes pulse-btn {
  0% {
    box-shadow: 0 0 0 0 rgba(8, 204, 84, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(8, 204, 84, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(8, 204, 84, 0);
  }
}

/* Gradient Text */
.gradient-text {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section Dividers */
.section-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 2rem auto;
  border-radius: 2px;
}

/* Bento Grid for Services */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-list i {
  color: var(--primary);
  font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0;
  }

  .hero-buttons {
    justify-content: center;
  }

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

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  .navbar-brand {
    font-size: 1.3rem;
  }

  .nav-link {
    margin: 5px 0;
  }

  .hero-section h1 {
    font-size: 2.5rem;
  }

  .section {
    padding: 60px 0;
  }

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

  .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
  }

  .service-card {
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}

/* Print Styles */
@media print {

  .navbar,
  footer,
  .btn,
  .social-links {
    display: none !important;
  }

  body {
    padding-top: 0 !important;
    font-size: 12pt;
    line-height: 1.5;
  }

  .hero-section {
    min-height: auto;
    padding: 40px 0;
    background: var(--light) !important;
  }

  .hero-section h1,
  .hero-section p {
    color: var(--dark) !important;
  }
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-normal);
  z-index: 1000;
}

.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.scroll-to-top:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
}

/* Blog Post Styles */
.blog-post {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.blog-post-header {
  border-bottom: 2px solid var(--gray-200);
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.blog-post-header h1 {
  color: var(--secondary);
  line-height: 1.2;
}

.blog-post-image img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.blog-post-content {
  line-height: 1.8;
  color: var(--gray-700);
  font-size: 1.1rem;
}

.blog-post-content h2 {
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.blog-post-content h3 {
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--secondary);
}

.blog-post-content p {
  margin-bottom: 1.5rem;
}

.blog-post-content ul,
.blog-post-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.blog-post-content li {
  margin-bottom: 0.5rem;
}

.blog-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

.blog-post-content blockquote {
  border-left: 4px solid var(--primary);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--gray-600);
}

.blog-post-footer {
  border-top: 2px solid var(--gray-200);
}

/* Sticky Sidebar */
.sticky-top {
  z-index: 100;
}

/* Recent Posts Sidebar */
.card .blog-post-sidebar-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.card .blog-post-sidebar-item:last-child {
  border-bottom: none;
}

.card .blog-post-sidebar-item h6 {
  font-size: 0.9rem;
  line-height: 1.4;
}

.card .blog-post-sidebar-item a {
  color: var(--gray-800);
  transition: var(--transition-fast);
}

.card .blog-post-sidebar-item a:hover {
  color: var(--primary);
}

/* Blog Post Card (Homepage) */
.blog-post-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.blog-post-card .post-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-post-card .post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-post-card:hover .post-image img {
  transform: scale(1.1);
}

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

.blog-post-card .card-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.blog-post-card .card-title a {
  color: var(--secondary);
  transition: var(--transition-fast);
}

.blog-post-card .card-title a:hover {
  color: var(--primary);
}

.blog-post-card .card-text {
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.blog-post-card .post-meta {
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.blog-post-card .post-meta i {
  margin-right: 4px;
}

.blog-post-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Partners Carousel */
.partners-carousel {
  margin-top: 2rem;
}

.partner-item {
  padding: 2rem;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

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

.partner-logo {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: var(--transition-normal);
}

.partner-item:hover .partner-logo {
  filter: grayscale(0%);
  opacity: 1;
}

.partner-placeholder {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
}

.partner-item h6 {
  color: var(--secondary);
  font-weight: 600;
  margin-top: 1rem;
  font-size: 0.95rem;
}

/* Owl Carousel overrides */
.owl-carousel .owl-stage-outer {
  padding: 1rem 0;
}

.owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary) !important;
  color: white !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}

.owl-carousel .owl-nav .owl-prev {
  left: -20px;
}

.owl-carousel .owl-nav .owl-next {
  right: -20px;
}

.owl-carousel .owl-dots {
  margin-top: 1.5rem;
}

.owl-carousel .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gray-300) !important;
  margin: 0 5px;
}

.owl-carousel .owl-dot.active {
  background: var(--primary) !important;
}

/* Map Embed Styles */
.map-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.map-container iframe {
  width: 100% !important;
  height: 450px;
  border: 0;
  display: block;
}

@media (max-width: 768px) {
  .map-container iframe {
    height: 350px;
  }
}

/* Contact Page Social Links */
.contact-social-links {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.contact-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(8, 204, 84, 0.1);
  color: var(--primary);
  border-radius: 50%;
  transition: all var(--transition-normal);
}

.contact-social-links a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}