* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Cairo', sans-serif;
  overflow-x: hidden;
  background: #f8f9fa;
}
/* Navbar Styles */
.navbar {
  background: rgba(255, 255, 255, 0.98) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.navbar.scrolled {
  padding: 0.5rem 0;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 700;
  font-size: 1.5rem;
  color: #1a2e2e !important;
  transition: transform 0.3s ease;
}
.navbar-brand:hover {
  transform: translateY(-3px);
}
.logo-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.4);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.navbar-brand:hover .logo-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.6);
}
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.brand-title {
  font-size: 1.3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.brand-subtitle {
  font-size: 0.7rem;
  color: #6c757d;
  font-weight: 400;
  letter-spacing: 1px;
}
.nav-link {
  color: #2c6752 !important;
  font-weight: 600;
  padding: 0.8rem 1.2rem !important;
  margin: 0 0.3rem;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 8px;
}
.nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  transform: translateX(-50%);
  transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 10px;
}
.nav-link:hover {
  color: #22c55e !important;
  transform: translateY(-2px);
}
.nav-link:hover::before {
  width: 80%;
}
.nav-link.active {
  color: #22c55e !important;
  background: rgba(34, 197, 94, 0.1);
}
.globe-icon {
  color: #22c55e;
  font-size: 1.3rem;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 8px;
  border-radius: 50%;
}
.globe-icon:hover {
  transform: rotate(180deg) scale(1.1);
  background: rgba(34, 197, 94, 0.1);
}


/* Light Mode Dropdown */
.dropdown-menu {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 8px;
}

.dropdown-item {
  color: #333 !important;
  padding: 0.6rem 1.5rem !important;
  font-weight: 600;
  transition: all 0.25s ease;
}

.dropdown-item:hover {
  background: rgba(34, 197, 94, 0.1) !important;
  color: #22c55e !important;
}

.dropdown-item.active,
.dropdown-item:active {
  background: rgba(34, 197, 94, 0.15) !important;
  color: #22c55e !important;
}

/* Dark Mode Dropdown */
body.dark-mode .dropdown-menu {
  background: rgba(15, 35, 34, 0.95);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #e0e0e0;
}

body.dark-mode .dropdown-item {
  color: #e0e0e0 !important;
}

body.dark-mode .dropdown-item:hover {
  background: rgba(34, 197, 94, 0.2) !important;
  color: #22c55e !important;
}

/* Carousel Styles */
.hero-carousel {
  margin-top: 125px;
  position: relative;
  overflow: hidden;
}
.carousel-item {
  height: 85vh;
  position: relative;
}
.carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #00000055;
  z-index: 1;
}
.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-caption {
  z-index: 2;
  top: 50%;
  transform: translateY(-50%);
  bottom: auto;
  text-align: center;
}
.carousel-caption h1 {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  animation: slideInDown 1s ease-out;
  letter-spacing: 2px;
}
.carousel-caption p {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  animation: slideInUp 1s ease-out 0.3s backwards;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.carousel-control-prev,
.carousel-control-next {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.carousel:hover .carousel-control-prev,
.carousel:hover .carousel-control-next {
  opacity: 1;
}
.carousel-control-prev {
  right: auto;
  left: 30px;
}
.carousel-control-next {
  left: auto;
  right: 30px;
}
.carousel-control-prev:hover,
.carousel-control-next:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}
.carousel-indicators {
  bottom: 30px;
}
.carousel-indicators button {
  width: 10px;
  height: 5px;
  margin: 0 8px;
  border: 2px solid white;
  background: transparent;
  transition: all 0.4s ease;
}
.carousel-indicators button.active {
  width: 50px;
  border-radius: 10px;
  background: white;
}
.carousel-indicators [data-bs-target] {
  border-top: 2px solid transparent !important;
  border-bottom: 2px solid transparent !important;
}

/* Page Hero */
.page-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f0fe 0%, #f0f4ff 100%);
  margin-top: 90px;
  padding: 100px 0;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 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.83.828-1.415 1.415L51.8 0h2.827zM5.373 0l-.83.828L5.96 2.243 8.2 0H5.374zM48.97 0l3.657 3.657-1.414 1.414L46.143 0h2.828zM11.03 0L7.372 3.657 8.787 5.07 13.857 0H11.03zm32.284 0L49.8 6.485 48.384 7.9l-7.9-7.9h2.83zM16.686 0L10.2 6.485 11.616 7.9l7.9-7.9h-2.83zm20.97 0l9.315 9.314-1.414 1.414L34.828 0h2.83zM22.344 0L13.03 9.314l1.414 1.414L25.172 0h-2.83zM32 0l12.142 12.142-1.414 1.414L30 .828 17.272 13.556l-1.414-1.414L28 0h4zM.284 0l28 28-1.414 1.414L0 2.544V0h.284zM0 5.373l25.456 25.455-1.414 1.415L0 8.2V5.374zm0 5.656l22.627 22.627-1.414 1.414L0 13.86v-2.83zm0 5.656l19.8 19.8-1.415 1.413L0 19.514v-2.83zm0 5.657l16.97 16.97-1.414 1.415L0 25.172v-2.83zM0 28l14.142 14.142-1.414 1.414L0 30.828V28zm0 5.657L11.314 44.97 9.9 46.386l-9.9-9.9v-2.828zm0 5.657L8.485 47.8 7.07 49.212 0 42.143v-2.83zm0 5.657l5.657 5.657-1.414 1.415L0 47.8v-2.83zM0 51.172l2.828 2.828-1.414 1.414L0 54V51.172zM54.627 60L30 35.373 5.373 60H8.2L30 38.2 51.8 60h2.827zm-5.656 0L30 41.03 11.03 60h2.828L30 43.858 46.142 60h2.83zm-5.656 0L30 46.686 16.686 60h2.83L30 49.515 40.485 60h2.83zm-5.657 0L30 52.343 22.344 60h2.83L30 55.172 34.828 60h2.83zM32 60l-2-2-2 2h4zM59.716 0l-28 28 1.414 1.414L60 2.544V0h-.284zM60 5.373L34.544 30.828l1.414 1.415L60 8.2V5.374zm0 5.656L37.373 33.656l1.414 1.414L60 13.86v-2.83zm0 5.656l-19.8 19.8 1.415 1.413L60 19.514v-2.83zm0 5.657l-16.97 16.97 1.414 1.415L60 25.172v-2.83zM60 28L45.858 42.142l1.414 1.414L60 30.828V28zm0 5.657L48.686 44.97l1.415 1.415 9.9-9.9v-2.828zm0 5.657L51.515 47.8l1.414 1.413 7.07-7.07v-2.83zm0 5.657l-5.657 5.657 1.414 1.415L60 47.8v-2.83zM60 51.172l-2.828 2.828 1.414 1.414L60 54v-2.828z' fill='%23667eea' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.page-hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}
.page-hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.page-hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 32px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
  color: #22c55e;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 3px;
  border-radius: 50px;
  margin-bottom: 30px;
  animation: badgePulse 2s ease-in-out infinite;
  border: 2px solid rgba(102, 126, 234, 0.3);
}

@keyframes badgePulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(102, 126, 234, 0);
  }
}

.page-hero-title {
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
  animation: titleSlide 1s ease-out 0.2s backwards;
  letter-spacing: 2px;
}

@keyframes titleSlide {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-hero-description {
  font-size: 1.3rem;
  color: #6c757d;
  line-height: 1.8;
  animation: fadeIn 1s ease-out 0.4s backwards;
  max-width: 800px;
  margin: 0 auto;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Floating Animation */
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
.floating {
  animation: float 3s ease-in-out infinite;
}
/* Responsive */
@media (max-width: 768px) {
  .carousel-caption h1 {
    font-size: 2rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
  .carousel-item {
    height: 70vh;
  }
  .brand-title {
    font-size: 1rem;
  }
  .brand-subtitle {
    font-size: 0.6rem;
  }
}

/* Particle Effect */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: rise 10s infinite ease-in;
}
@keyframes rise {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(-1000px) scale(1);
  }
}
/* Navbar Toggle */
.navbar-toggler {
  border: none;
  padding: 10px;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.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='rgba(34, 197, 94, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
/* Theme Toggle */
.theme-toggle {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}
.theme-toggle:hover {
  transform: scale(1.1) rotate(15deg);
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
}
.theme-toggle i {
  transition: all 0.3s ease;
}
/* Dark Mode Styles */
body.dark-mode {
  background: #0f2321;
  color: #e0e0e0;
}
body.dark-mode .navbar {
  background: #0f2322 !important;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}
body.dark-mode .nav-link {
  color: #e0e0e0 !important;
}
body.dark-mode .nav-link:hover {
  color: #22c55e !important;
}
body.dark-mode .brand-title {
  -webkit-text-fill-color: transparent;
}
body.dark-mode .brand-subtitle {
  color: #9ca3af;
}
body.dark-mode .page-hero {
  background: linear-gradient(135deg, #0f2321 0%, #1a2e2e 100%);
}

body.dark-mode .page-hero-description {
  color: #9ca3af;
}
body.dark-mode .about-section {
  background: linear-gradient(180deg, #0f2321 0%, #1a2e2e 100%);
}
body.dark-mode .section {
  background: linear-gradient(180deg, #0f2321 0%, #1a2e2e 100%);
}
body.dark-mode .section-title {
  color: #e0e0e0;
  -webkit-text-fill-color: transparent;
}
body.dark-mode .section-subtitle {
  color: #9ca3af;
}
body.dark-mode .card {
  background: #1a2e2e;
  border-color: rgba(34, 197, 94, 0.3);
}
body.dark-mode .section-description,
body.dark-mode .card-description {
  color: #9ca3af;
}
body.dark-mode .feature-card {
  background: #1a2e2e;
  border-color: rgba(34, 197, 94, 0.3);
}
body.dark-mode .card-title {
  color: #e0e0e0;
}
body.dark-mode .feature-list li {
  background: #0f2321;
  color: #e0e0e0;
}
body.dark-mode .feature-list li:hover {
  background: #1a2e2e;
}
body.dark-mode .feature-list li span {
  color: #d1d5db;
}
body.dark-mode .business-section {
  background: linear-gradient(180deg, #1a2e2e 0%, #0f2321 100%);
}
body.dark-mode .pillar-card {
  background: #1a2e2e;
  border-color: rgba(34, 197, 94, 0.2);
}
body.dark-mode .pillar-card:hover {
  background: #254238;
}
body.dark-mode .pillar-title {
  color: #e0e0e0;
}
body.dark-mode .pillar-description {
  color: #9ca3af;
}

/* Business Section Styles */
.business-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}
.pillars-header {
  text-align: center;
  margin-top: 60px;
}
.pillars-header h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2c6752;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}
.pillars-header h3:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 10px;
}
.pillar-card {
  background: white;
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(34, 197, 94, 0.1);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  height: 100%;
  /*cursor: pointer;*/
}
.pillar-card:hover {
  transform: translateY(-20px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(34, 197, 94, 0.4);
}
.pillar-shine {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
    );
  transform: rotate(45deg);
  transition: all 0.6s ease;
  opacity: 0;
}
.pillar-card:hover .pillar-shine {
  left: 100%;
  opacity: 1;
}
.pillar-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 25px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.pillar-card:hover .pillar-icon {
  transform: rotateY(360deg) scale(1.1);
}
.infrastructure-icon {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
  color: #3b82f6;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}
.trade-icon {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
  color: #10b981;
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}
.education-icon {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
  color: #8b5cf6;
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}
.energy-icon {
  background: linear-gradient(135deg, rgba(251, 146, 60, 0.15) 0%, rgba(249, 115, 22, 0.15) 100%);
  color: #fb923c;
  box-shadow: 0 10px 30px rgba(251, 146, 60, 0.3);
}
.pillar-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c6752;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.pillar-card:hover .pillar-title {
  color: #22c55e;
  transform: scale(1.05);
}
.pillar-description {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.7;
  transition: all 0.3s ease;
}
.pillar-card:hover .pillar-description {
  color: #7dabaa;
}
/* Animated Background Shapes */
.business-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  z-index: 0;
}
.business-bg-shape.shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  top: 15%;
  left: -200px;
  animation: morphShape 15s ease-in-out infinite;
}
.business-bg-shape.shape-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  bottom: 10%;
  right: -150px;
  animation: morphShape 20s ease-in-out infinite;
  animation-delay: 5s;
}
.business-bg-shape.shape-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: morphShape 18s ease-in-out infinite;
  animation-delay: 10s;
}
@keyframes morphShape {
  0%, 100% {
    border-radius: 50% 50% 50% 50%;
    transform: rotate(0deg) scale(1);
  }
  25% {
    border-radius: 60% 40% 60% 40%;
    transform: rotate(90deg) scale(1.1);
  }
  50% {
    border-radius: 40% 60% 40% 60%;
    transform: rotate(180deg) scale(0.9);
  }
  75% {
    border-radius: 55% 45% 55% 45%;
    transform: rotate(270deg) scale(1.05);
  }
}
[data-aos="zoom-in"] {
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
[data-aos="zoom-in"].aos-animate {
  transform: scale(1);
  opacity: 1;
}
/* Why Syria Section */
.why-syria-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.why-card {
  background: white;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  height: 100%;
  /*  cursor: pointer;*/
  z-index: 50;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  transition: left 0.5s ease;
}
.why-card:hover::before {
  left: 100%;
}
.why-card:hover {
  transform: translateY(-15px) rotateY(5deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.why-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  position: relative;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.why-card:hover .why-icon {
  transform: scale(1.15) rotate(10deg);
}
.infrastructure-why {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(37, 99, 235, 0.2) 100%);
  color: #3b82f6;
}
.why-card:hover .infrastructure-why {
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
}
.energy-why {
  background: linear-gradient(135deg, rgba(234, 179, 8, 0.2) 0%, rgba(202, 138, 4, 0.2) 100%);
  color: #eab308;
}
.why-card:hover .energy-why {
  box-shadow: 0 15px 35px rgba(234, 179, 8, 0.4);
}
.tourism-why {
  background: linear-gradient(135deg, rgba(236, 72, 153, 0.2) 0%, rgba(219, 39, 119, 0.2) 100%);
  color: #ec4899;
}
.why-card:hover .tourism-why {
  box-shadow: 0 15px 35px rgba(236, 72, 153, 0.4);
}
.manufacturing-why {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(124, 58, 237, 0.2) 100%);
  color: #8b5cf6;
}
.why-card:hover .manufacturing-why {
  box-shadow: 0 15px 35px rgba(139, 92, 246, 0.4);
}
.agriculture-why {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.2) 100%);
  color: #22c55e;
}
.why-card:hover .agriculture-why {
  box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4);
}
.technology-why {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2) 0%, rgba(14, 165, 233, 0.2) 100%);
  color: #06b6d4;
}
.why-card:hover .technology-why {
  box-shadow: 0 15px 35px rgba(6, 182, 212, 0.4);
}
.financial-why {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2) 0%, rgba(234, 88, 12, 0.2) 100%);
  color: #f97316;
}
.why-card:hover .financial-why {
  box-shadow: 0 15px 35px rgba(249, 115, 22, 0.4);
}
.education-why {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.2) 0%, rgba(147, 51, 234, 0.2) 100%);
  color: #a855f7;
}
.why-card:hover .education-why {
  box-shadow: 0 15px 35px rgba(168, 85, 247, 0.4);
}
.why-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c6752;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}
.why-card:hover .why-title {
  color: #22c55e;
}
.why-description {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.6;
}
/* Card Particles */
.card-particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}
.card-particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 3s ease-in-out infinite;
}
.why-card:hover .card-particles span {
  opacity: 1;
}
.card-particles span:nth-child(1) {
  top: 20%;
  left: 20%;
  animation-delay: 0s;
}
.card-particles span:nth-child(2) {
  top: 60%;
  left: 80%;
  animation-delay: 1s;
}
.card-particles span:nth-child(3) {
  top: 80%;
  left: 40%;
  animation-delay: 2s;
}
@keyframes particleFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  50% {
    transform: translateY(-30px) scale(1.5);
    opacity: 1;
  }
}
/* Background Circles */
.why-bg-circle {
  position: absolute;
  border-radius: 50%;
  border: 3px dashed;
  opacity: 0.1;
  animation: rotateCircle 30s linear infinite;
  z-index: 0;
}
.circle-1 {
  width: 500px;
  height: 500px;
  border-color: #22c55e;
  top: 10%;
  right: 5%;
}
.circle-2 {
  width: 400px;
  height: 400px;
  border-color: #ef476f;
  bottom: 15%;
  left: 10%;
  animation-direction: reverse;
}
.circle-3 {
  width: 300px;
  height: 300px;
  border-color: #06b6d4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* Flip Animation */
[data-aos="flip-left"] {
  transform: perspective(2500px) rotateY(-100deg);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
[data-aos="flip-left"].aos-animate {
  transform: perspective(2500px) rotateY(0);
  opacity: 1;
  z-index: 50;
}
/* Dark Mode for Why Syria Section */
body.dark-mode .why-syria-section {
  background: linear-gradient(180deg, #0f2321 0%, #1a2e2e 100%);
}
body.dark-mode .why-card {
  background: #1a2e2e;
  border-color: rgba(34, 197, 94, 0.2);
}
body.dark-mode .why-card:hover {
  background: #254238;
}
body.dark-mode .why-title {
  color: #e0e0e0;
}
body.dark-mode .why-description {
  color: #9ca3af;
}
/* Get Involved Section */
.get-involved-section {
  padding: 100px 0;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(22, 163, 74, 0.08) 100%);
  position: relative;
  overflow: hidden;
}
.involved-content {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 40px;
  padding: 80px 60px;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.8);
}
.involved-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #2c6752;
  margin-bottom: 30px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}
.involved-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 5px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 10px;
}
.involved-description {
  font-size: 1.15rem;
  color: #7dabaa;
  line-height: 1.9;
  margin-bottom: 45px;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 1s ease-out 0.6s backwards;
}
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}
.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.btn-cta:hover::before {
  left: 100%;
}
.btn-cta:hover {
  transform: translateY(-5px) scale(1.05);
}
.btn-primary-cta {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  color: white;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}

.btn-secondary-cta {
  background: white;
  color: #1e40af;
  border: 2px solid #1e40af;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.btn-cta:hover::before {
  left: 100%;
}

.btn-cta:hover {
  transform: translateY(-5px) scale(1.05);
}

.btn-primary-cta:hover {
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.5);
}

.btn-secondary-cta:hover {
  background: #1e40af;
  color: white;
  border-color: #1e40af;
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.3);
}

.btn-cta i {
  transition: transform 0.3s ease;
}

.btn-cta:hover i {
  transform: translateX(5px);
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.btn-primary {
  background: linear-gradient(135deg, #1e8a65 0%, #1eaf73 100%);
  color: white;
}
.btn-secondary {
  background: linear-gradient(135deg, #1eaf84 0%, #3bf684 100%);
  color: white;
}
.btn-primary::before,
.btn-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::before,
.btn-secondary:hover::before {
  left: 100%;
}
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}
.btn-primary i,
.btn-secondary i {
  transition: transform 0.3s ease;
}
.btn-primary:hover i {
  transform: translateX(5px);
}
.btn-secondary:hover i {
  transform: translateX(5px) rotate(45deg);
}
/* Background Grid */
.involved-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(34, 197, 94, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34, 197, 94, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
}
@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}
/* Glowing Elements */
.involved-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: glowPulse 8s ease-in-out infinite;
  pointer-events: none;
}
.glow-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  top: -200px;
  left: -200px;
}
.glow-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #ef476f 0%, #ff6b6b 100%);
  bottom: -250px;
  right: -250px;
  animation-delay: 4s;
}
@keyframes glowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}
/* Dark Mode for Get Involved */
body.dark-mode .get-involved-section {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.15) 100%);
}
body.dark-mode .involved-content {
  background: rgb(26 46 42 / 95%);
  border-color: rgba(34, 197, 94, 0.3);
}
body.dark-mode .involved-title {
  color: #e0e0e0;
  -webkit-text-fill-color: transparent;
}
body.dark-mode .involved-description {
  color: #9ca3af;
}
/* Responsive */
@media (max-width: 768px) {
  .involved-content {
    padding: 50px 30px;
  }
  .involved-title {
    font-size: 2.2rem;
  }
  .involved-description {
    font-size: 1rem;
  }
  .btn-primary,
  .btn-secondary {
    padding: 15px 35px;
    font-size: 1rem;
  }
}
/* Team Section */
.team-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}
.team-carousel-wrapper {
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.team-carousel {
  display: flex;
  gap: 30px;
  animation: scrollTeam 40s linear infinite;
  will-change: transform;
}
.team-carousel:hover {
  animation-play-state: paused;
}
@keyframes scrollTeam {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-320px * 6 - 180px));
  }
}
.team-card {
  min-width: 320px;
  flex-shrink: 0;
  background: white;
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 500;
}
.team-card:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: rgba(34, 197, 94, 0.5);
  box-shadow: 0 20px 50px rgba(34, 197, 94, 0.3);
}
.team-avatar {
  width: 140px;
  height: 140px;
  margin: 0 auto 25px;
  position: relative;
}
.avatar-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 3px solid;
  border-color: #22c55e transparent #16a34a transparent;
  animation: ringRotate 3s linear infinite;
}
.team-card:hover .avatar-ring {
  animation-duration: 1s;
}
@keyframes ringRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.avatar-img::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  animation: avatarShine 3s ease-in-out infinite;
}
@keyframes avatarShine {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}
.avatar {
  background: linear-gradient(135deg, #f9f9f9 0%, #96a4d2 100%);
}
.male-avatar {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}
.female-avatar {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}
.team-card:hover .avatar-img {
  transform: scale(1.1) rotate(5deg);
}
.team-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c6752;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}
.team-card:hover .team-name {
  color: #22c55e;
}
.team-role {
  font-size: 0.9rem;
  color: #6c757d;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.team-social {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}
.team-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  transition: all 0.3s ease;
  text-decoration: none;
}
.team-social a:hover {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  transform: translateY(-5px) rotate(360deg);
}
.team-bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.05;
  z-index: 0;
}
.team-bg-shape.shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  top: 10%;
  left: -100px;
  animation: floatShape 15s ease-in-out infinite;
}
.team-bg-shape.shape-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #ef476f 0%, #ff6b6b 100%);
  bottom: 15%;
  right: -80px;
  animation: floatShape 20s ease-in-out infinite;
  animation-delay: 7s;
}
/* Footer */
.footer {
  background: linear-gradient(135deg, #1a2e2e 0%, #0f2322 100%);
  color: #e0e0e0;
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.footer-wave svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}
.footer-wave path {
  fill: #f8f9fa;
}
.footer-brand {
  margin-bottom: 30px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}
.footer-logo .logo-icon {
  width: 50px;
  height: 50px;
}
.footer-description {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #9ca3af;
}
.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: white;
  position: relative;
  padding-bottom: 15px;
}
.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border-radius: 10px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.footer-links a:hover {
  color: #22c55e;
  transform: translateX(5px);
}
.footer-contact {
  list-style: none;
  padding: 0;
}
.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  color: #9ca3af;
}
.footer-contact i {
  color: #22c55e;
  font-size: 1.1rem;
  margin-top: 3px;
}
.footer-contact a {
  color: #9ca3af;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-contact a:hover {
  color: #22c55e;
}
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}
.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: white;
  transform: translateY(-5px) rotate(360deg);
}
.footer-bottom {
  margin-top: 60px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #9ca3af;
}
.footer-bottom p {
  margin: 5px 0;
  font-size: 0.9rem;
}
/* Dark Mode for Team & Footer */
body.dark-mode .pillars-header h3 {
  color: rgb(18 127 58) !important;
}
body.dark-mode .team-section {
  background: linear-gradient(180deg, #0f2321 0%, #1a2e2e 100%);
}
body.dark-mode .team-card {
  background: #1a2e2e;
  border-color: rgba(34, 197, 94, 0.2);
}
body.dark-mode .team-card:hover {
  background: #254238;
}
body.dark-mode .team-name {
  color: #e0e0e0;
}
body.dark-mode .footer-wave path {
  fill: #0f2321;
}

/* Members */
/* Members List Section */
.members-list-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.member-card {
  background: white;
  border-radius: 25px;
  padding: 45px 35px;
  text-align: center;
  border: 2px solid #f0f0f0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  height: 100%;
  position: relative;
  overflow: hidden;
  /*  cursor: pointer;*/
}

.member-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #22c55e 0%, #764ba2 100%);
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.member-card:hover::before {
  transform: scaleX(1);
}

.member-card:hover {
  transform: translateY(-20px) scale(1.02);
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.member-logo-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
}

.member-logo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  position: relative;
  z-index: 2;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.logo-text {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 1px;
}

/* Logo Colors */
.member-1-logo {
  border-color: rgba(16, 185, 129, 0.3);
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
}
.member-1-logo .logo-text {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.member-2-logo {
  border-color: rgba(30, 41, 59, 0.3);
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.1) 0%, rgba(15, 23, 42, 0.1) 100%);
}
.member-2-logo .logo-text {
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.member-3-logo {
  border-color: rgba(14, 165, 233, 0.3);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(2, 132, 199, 0.1) 100%);
}
.member-3-logo .logo-text {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.member-4-logo {
  border-color: rgba(245, 158, 11, 0.3);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(217, 119, 6, 0.1) 100%);
}
.member-4-logo .logo-text {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.member-5-logo {
  border-color: rgba(132, 204, 22, 0.3);
  background: linear-gradient(135deg, rgba(132, 204, 22, 0.1) 0%, rgba(101, 163, 13, 0.1) 100%);
}
.member-5-logo .logo-text {
  background: linear-gradient(135deg, #84cc16 0%, #65a30d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.namember-6-logo {
  border-color: rgba(139, 92, 246, 0.3);
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
}
.namember-6-logo .logo-text {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.member-card:hover .member-1-logo {
  border-color: rgba(16, 185, 129, 0.6);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.member-card:hover .member-2-logo {
  border-color: rgba(30, 41, 59, 0.6);
  box-shadow: 0 15px 40px rgba(30, 41, 59, 0.4);
}

.member-card:hover .member-3-logo {
  border-color: rgba(14, 165, 233, 0.6);
  box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
}

.member-card:hover .member-4-logo {
  border-color: rgba(245, 158, 11, 0.6);
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
}

.member-card:hover .member-5-logo {
  border-color: rgba(132, 204, 22, 0.6);
  box-shadow: 0 15px 40px rgba(132, 204, 22, 0.4);
}

.member-card:hover .namember-2-logo {
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.member-card:hover .member-logo {
  transform: scale(1.1) rotate(360deg);
  border-color: rgba(102, 126, 234, 0.5);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.logo-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 2px dashed rgba(102, 126, 234, 0.3);
  animation: ringRotate 20s linear infinite;
}

@keyframes ringRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.member-card:hover .logo-ring {
  animation-duration: 5s;
  border-color: rgba(102, 126, 234, 0.6);
}

.member-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a2e2e;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.member-card:hover .member-name {
  color: #22c55e;
  transform: scale(1.05);
}

.member-category {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.section-1 {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.section-2 {
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.15) 0%, rgba(15, 23, 42, 0.15) 100%);
  color: #1e293b;
  border: 1px solid rgba(30, 41, 59, 0.3);
}

.section-3 {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15) 0%, rgba(2, 132, 199, 0.15) 100%);
  color: #0ea5e9;
  border: 1px solid rgba(14, 165, 233, 0.3);
}

.section-4 {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(217, 119, 6, 0.15) 100%);
  color: #f59e0b;
  border: 1px solid rgba(245, 158, 11, 0.3);
}

.section-5 {
  background: linear-gradient(135deg, rgba(132, 204, 22, 0.15) 0%, rgba(101, 163, 13, 0.15) 100%);
  color: #84cc16;
  border: 1px solid rgba(132, 204, 22, 0.3);
}

.section-6 {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(124, 58, 237, 0.15) 100%);
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.3);
}

.member-card:hover .member-category {
  transform: scale(1.05);
}

.member-desc {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.member-card:hover .member-desc {
  color: #7dabaa;
}

.card-hover-effect {
  position: absolute;
  bottom: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(102, 126, 234, 0.05) 100%);
  transition: bottom 0.5s ease;
}

.member-card:hover .card-hover-effect {
  bottom: 0;
}

/* Background Pattern */
.members-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle, rgba(102, 126, 234, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: patternMove 30s linear infinite;
  pointer-events: none;
}

@keyframes patternMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, 40px);
  }
}

/* AOS Animations */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Dark Mode for Members */
body.dark-mode .members-list-section {
  background: linear-gradient(180deg, #0f2321 0%, #1a2e2e 100%);
}

body.dark-mode .member-card {
  background: #1a2e2e;
  border-color: rgba(102, 126, 234, 0.2);
}

body.dark-mode .member-card:hover {
  background: #284a40;
}

body.dark-mode .member-logo {
  background: #284a40;
  border-color: rgba(102, 126, 234, 0.3);
}

body.dark-mode .member-name {
  color: #e0e0e0;
}

body.dark-mode .member-desc {
  color: #9ca3af;
}

/* Contact Content Section */
.contact-content-section {
  padding: 100px 0;
  background: #ffffff;
}
body.dark-mode .contact-content-section {
  background: linear-gradient(180deg, #0f2321 0%, #1a2e2e 100%);
}

.content-box {
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.content-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1a2e2e;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.content-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #22c55e 0%, #764ba2 100%);
  border-radius: 10px;
}

.content-text {
  font-size: 1.05rem;
  color: #6c757d;
  line-height: 1.9;
  margin-bottom: 35px;
}

.join-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
  position: relative;
  overflow: hidden;
}

.join-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.join-btn:hover::before {
  left: 100%;
}

.join-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.5);
}

.join-btn i {
  transition: transform 0.3s ease;
}

.join-btn:hover i {
  transform: translateX(5px) rotate(45deg);
}

.map-container {
  margin-top: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  animation: fadeInUp 1s ease-out 0.3s backwards;
}

.info-card,
.follow-card {
  background: white;
  border-radius: 25px;
  padding: 40px 35px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid #f0f0f0;
  transition: all 0.4s ease;
  animation: fadeInRight 1s ease-out;
}
body.dark-mode .info-card,
body.dark-mode .follow-card {
  background: #1a2e2e;
  border-color: rgba(34, 197, 94, 0.3);
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.info-card:hover,
.follow-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(102, 126, 234, 0.3);
}

.info-card {
  margin-bottom: 30px;
}

.info-title,
.follow-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1a2e2e;
  margin-bottom: 30px;
}
body.dark-mode .content-title,
body.dark-mode .info-title,
body.dark-mode .follow-title {
  color: #e0e0e0;
}

.info-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-item:hover {
  background: #e8f0fe;
  transform: translateX(10px);
}
body.dark-mode .info-item {
  background: #294a4a;
  border-color: rgba(34, 197, 94, 0.3);
}
body.dark-mode .info-item:hover {
  background: #29624d;
  transform: translateX(10px);
}
.info-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.info-item:hover .info-icon {
  transform: scale(1.1) rotate(10deg);
}

.address-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.email-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.info-content {
  flex: 1;
}

.info-label {
  font-size: 1rem;
  font-weight: 700;
  color: #22c55e;
  margin-bottom: 8px;
}

.info-value {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
  text-decoration: none;
  transition: all 0.3s ease;
}

a.info-value:hover {
  color: #22c55e;
}

.social-buttons {
  display: flex;
  gap: 15px;
}

.social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.social-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.social-btn:hover::before {
  left: 100%;
}

.social-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

.facebook-btn {
  background: linear-gradient(135deg, #1da1f2 0%, #0c85d0 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
}
.facebook-btn:hover {
  box-shadow: 0 12px 35px rgba(29, 161, 242, 0.5);
}

.instagram-btn {
  background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3);
}
.instagram-btn:hover {
  box-shadow: 0 12px 35px rgba(0, 119, 181, 0.5);
}

.twitter-btn {
  background: linear-gradient(135deg, #1da1f2 0%, #0c85d0 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
}
.twitter-btn:hover {
  box-shadow: 0 12px 35px rgba(29, 161, 242, 0.5);
}

.linkedin-btn {
  background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
  color: white;
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.3);
}
.linkedin-btn:hover {
  box-shadow: 0 12px 35px rgba(0, 119, 181, 0.5);
}

.social-btn i {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}
.social-btn:hover i {
  transform: scale(1.2) rotate(360deg);
}

/* Busines content */
.pillar-card {
  background: white;
  border-radius: 20px;
  padding: 45px 40px;
  text-align: center;
  border: 2px solid #e5e7eb;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: currentColor;
}

.sector-4-card {
  color: #3b82f6;
}

.sector-4-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
}

.sector-1-card {
  color: #10b981;
}

.sector-1-card:hover {
  border-color: rgba(16, 185, 129, 0.4);
}

.sector-2-card {
  color: #8b5cf6;
}

.sector-2-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
}

.sector-3-card {
  color: #f59e0b;
}

.sector-3-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
}

.pillar-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.pillar-icon {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  position: relative;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.1) rotate(5deg);
}

.sector-4-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.sector-1-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.sector-2-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.sector-3-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.pillar-card:hover .sector-4-icon {
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.pillar-card:hover .sector-1-icon {
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.pillar-card:hover .sector-2-icon {
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.pillar-card:hover .sector-3-icon {
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
}

.pillar-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a2e2e;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-title {
  color: currentColor;
}

.pillar-desc {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.7;
  margin: 0;
}

.card-border-effect {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: currentColor;
  transition: width 0.4s ease;
}

.pillar-card:hover .card-border-effect {
  width: 80%;
}

/* Background Lines */
.pillars-bg-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  width: 100%;
  pointer-events: none;
}

.line-1 {
  top: 30%;
  animation: lineSlide 15s linear infinite;
}

.line-2 {
  bottom: 30%;
  animation: lineSlide 20s linear infinite reverse;
}

@keyframes lineSlide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Background Dots */
.pillars-bg-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(102, 126, 234, 0.2);
  border-radius: 50%;
  animation: dotFloat 10s ease-in-out infinite;
}

.dot-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.dot-2 {
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

.dot-3 {
  bottom: 25%;
  left: 20%;
  animation-delay: 6s;
}

@keyframes dotFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) scale(1.5);
    opacity: 0.8;
  }
}

/* AOS Animations */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Dark Mode for Pillars */
body.dark-mode .pillars-section {
  background: linear-gradient(180deg, #0f2321 0%, #1a2e2e 100%);
}

body.dark-mode .section-title {
  color: #e0e0e0;
}

body.dark-mode .section-subtitle {
  color: #9ca3af;
}

body.dark-mode .pillar-card {
  background: #1a2e2e;
  border-color: rgba(102, 126, 234, 0.2);
}

body.dark-mode .pillar-card:hover {
  background: #284a40;
}

body.dark-mode .pillar-title {
  color: #e0e0e0;
}

body.dark-mode .pillar-desc {
  color: #9ca3af;
}

/* Why Syria Section */
.why-syria-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.section-description {
  font-size: 1.05rem;
  color: #6c757d;
  line-height: 1.9;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.sector-card {
  background: white;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  border: 2px solid #f0f0f0;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
}

.sector-card.animate-in {
  animation: slideUpFade 0.6s ease-out forwards;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.5s ease;
}

.sector-card:hover::before {
  left: 100%;
}

.sector-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(102, 126, 234, 0.3);
}

.sector-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sector-card:hover .sector-icon {
  transform: scale(1.15) rotate(10deg);
}

.blue-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.yellow-icon {
  background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
  box-shadow: 0 8px 25px rgba(234, 179, 8, 0.3);
}

.cyan-icon {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.purple-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.teal-icon {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

.indigo-icon {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.gray-icon {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  box-shadow: 0 8px 25px rgba(100, 116, 139, 0.3);
}

.lavender-icon {
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.sector-card:hover .blue-icon {
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

.sector-card:hover .yellow-icon {
  box-shadow: 0 12px 35px rgba(234, 179, 8, 0.5);
}

.sector-card:hover .cyan-icon {
  box-shadow: 0 12px 35px rgba(6, 182, 212, 0.5);
}

.sector-card:hover .purple-icon {
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.5);
}

.sector-card:hover .teal-icon {
  box-shadow: 0 12px 35px rgba(20, 184, 166, 0.5);
}

.sector-card:hover .indigo-icon {
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5);
}

.sector-card:hover .gray-icon {
  box-shadow: 0 12px 35px rgba(100, 116, 139, 0.5);
}

.sector-card:hover .lavender-icon {
  box-shadow: 0 12px 35px rgba(168, 85, 247, 0.5);
}

.sector-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a2e2e;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.sector-card:hover .sector-title {
  color: #22c55e;
}

.sector-desc {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

/* Dark Mode for Why Syria */
body.dark-mode .why-syria-section {
  background: linear-gradient(180deg, #1c3333  0%, #0f2321 100%);
}

body.dark-mode .section-description {
  color: #9ca3af;
}

body.dark-mode .sector-card {
  background: #1a2e2e;
  border-color: rgba(102, 126, 234, 0.2);
}

body.dark-mode .sector-card:hover {
  background: #284a40;
}

body.dark-mode .sector-title {
  color: #e0e0e0;
}

body.dark-mode .sector-desc {
  color: #9ca3af;
}

/* NEWS content */
.btn-primary-cta {
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  color: white;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
}
.btn-primary-cta:hover {
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.5);
}

.btn-secondary-cta {
  background: white;
  color: #1e40af;
  border: 2px solid #1e40af;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.btn-secondary-cta:hover {
  background: #1e40af;
  color: white;
  border-color: #1e40af;
  box-shadow: 0 15px 40px rgba(30, 64, 175, 0.3);
}

.btn-cta i {
  transition: transform 0.3s ease;
}

.btn-cta:hover i {
  transform: translateX(5px);
}

/* Background Shapes */
.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  top: -150px;
  right: -100px;
  animation: floatShape1 20s ease-in-out infinite;
}

.shape-2 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
  bottom: -80px;
  left: -80px;
  animation: floatShape2 15s ease-in-out infinite;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #06b6d4 0%, #0ea5e9 100%);
  top: 40%;
  left: 10%;
  animation: floatShape3 18s ease-in-out infinite;
}

@keyframes floatShape1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-50px, 50px) rotate(180deg);
  }
}

@keyframes floatShape2 {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(50px, -50px) scale(1.2);
  }
}

@keyframes floatShape3 {
  0%, 100% {
    transform: translate(0, 0);
  }
  33% {
    transform: translate(30px, -30px);
  }
  66% {
    transform: translate(-30px, 30px);
  }
}

body.dark-mode .btn-secondary-cta {
  background: #1a2e2e;
  color: #3b82f6;
  border-color: #3b82f6;
}

/* Responsive */
@media (max-width: 768px) {
  .btn-cta {
    padding: 14px 30px;
    font-size: 0.95rem;
  }
}

/* Pillars Section */
.pillars-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #1a2e2e;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: #6c757d;
  line-height: 1.8;
}

.pillar-card {
  background: white;
  border-radius: 20px;
  padding: 45px 40px;
  text-align: center;
  border: 2px solid #e5e7eb;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pillar-card:hover::before {
  transform: scaleX(1);
}

.pillar-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: currentColor;
}

.infrastructure-card {
  color: #3b82f6;
}

.infrastructure-card:hover {
  border-color: rgba(59, 130, 246, 0.4);
}

.trade-card {
  color: #10b981;
}

.trade-card:hover {
  border-color: rgba(16, 185, 129, 0.4);
}

.education-card {
  color: #8b5cf6;
}

.education-card:hover {
  border-color: rgba(139, 92, 246, 0.4);
}

.energy-card {
  color: #f59e0b;
}

.energy-card:hover {
  border-color: rgba(245, 158, 11, 0.4);
}

.pillar-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.pillar-icon {
  width: 90px;
  height: 90px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
  position: relative;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.1) rotate(5deg);
}

.infrastructure-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
}

.trade-icon {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.education-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.energy-icon {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.pillar-card:hover .infrastructure-icon {
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
}

.pillar-card:hover .trade-icon {
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

.pillar-card:hover .education-icon {
  box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
}

.pillar-card:hover .energy-icon {
  box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
}

.pillar-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #1a2e2e;
  margin-bottom: 18px;
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-title {
  color: currentColor;
}

.pillar-desc {
  font-size: 1rem;
  color: #6c757d;
  line-height: 1.7;
  margin: 0;
}

.card-border-effect {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: currentColor;
  transition: width 0.4s ease;
}

.pillar-card:hover .card-border-effect {
  width: 80%;
}

/* Background Lines */
.pillars-bg-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
  width: 100%;
  pointer-events: none;
}

.line-1 {
  top: 30%;
  animation: lineSlide 15s linear infinite;
}

.line-2 {
  bottom: 30%;
  animation: lineSlide 20s linear infinite reverse;
}

@keyframes lineSlide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Background Dots */
.pillars-bg-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: rgba(102, 126, 234, 0.2);
  border-radius: 50%;
  animation: dotFloat 10s ease-in-out infinite;
}

.dot-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.dot-2 {
  top: 60%;
  right: 15%;
  animation-delay: 3s;
}

.dot-3 {
  bottom: 25%;
  left: 20%;
  animation-delay: 6s;
}

@keyframes dotFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-30px) scale(1.5);
    opacity: 0.8;
  }
}

/* AOS Animations */
[data-aos="fade-up"] {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

[data-aos="fade-up"].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* Dark Mode for Pillars */
body.dark-mode .pillars-section {
  background: linear-gradient(180deg, #0f2321 0%, #1a2e2e 100%);
}

body.dark-mode .section-title {
  color: #e0e0e0;
}

body.dark-mode .section-subtitle {
  color: #9ca3af;
}

body.dark-mode .pillar-card {
  background: #1a2e2e;
  border-color: rgba(102, 126, 234, 0.2);
}

body.dark-mode .pillar-card:hover {
  background: #284a40;
}

body.dark-mode .pillar-title {
  color: #e0e0e0;
}

body.dark-mode .pillar-desc {
  color: #9ca3af;
}

/* Why Syria Section */
.why-syria-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.section-description {
  font-size: 1.05rem;
  color: #6c757d;
  line-height: 1.9;
  text-align: center;
  max-width: 1100px;
  margin: 0 auto;
}

.sector-card {
  background: white;
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  border: 2px solid #f0f0f0;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
}

.sector-card.animate-in {
  animation: slideUpFade 0.6s ease-out forwards;
}

@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sector-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  transition: left 0.5s ease;
}

.sector-card:hover::before {
  left: 100%;
}

.sector-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(102, 126, 234, 0.3);
}

.sector-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sector-card:hover .sector-icon {
  transform: scale(1.15) rotate(10deg);
}

.blue-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.yellow-icon {
  background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
  box-shadow: 0 8px 25px rgba(234, 179, 8, 0.3);
}

.cyan-icon {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.purple-icon {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.teal-icon {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3);
}

.indigo-icon {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.gray-icon {
  background: linear-gradient(135deg, #64748b 0%, #475569 100%);
  box-shadow: 0 8px 25px rgba(100, 116, 139, 0.3);
}

.lavender-icon {
  background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
  box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}

.sector-card:hover .blue-icon {
  box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

.sector-card:hover .yellow-icon {
  box-shadow: 0 12px 35px rgba(234, 179, 8, 0.5);
}

.sector-card:hover .cyan-icon {
  box-shadow: 0 12px 35px rgba(6, 182, 212, 0.5);
}

.sector-card:hover .purple-icon {
  box-shadow: 0 12px 35px rgba(139, 92, 246, 0.5);
}

.sector-card:hover .teal-icon {
  box-shadow: 0 12px 35px rgba(20, 184, 166, 0.5);
}

.sector-card:hover .indigo-icon {
  box-shadow: 0 12px 35px rgba(99, 102, 241, 0.5);
}

.sector-card:hover .gray-icon {
  box-shadow: 0 12px 35px rgba(100, 116, 139, 0.5);
}

.sector-card:hover .lavender-icon {
  box-shadow: 0 12px 35px rgba(168, 85, 247, 0.5);
}

.sector-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a2e2e;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.sector-card:hover .sector-title {
  color: #22c55e;
}

.sector-desc {
  font-size: 0.9rem;
  color: #6c757d;
  line-height: 1.6;
  margin: 0;
}

body.dark-mode .sector-card {
  background: #1a2e2e;
  border-color: rgba(102, 126, 234, 0.2);
}

body.dark-mode .sector-card:hover {
  background: #284a40;
}

body.dark-mode .sector-title {
  color: #e0e0e0;
}

body.dark-mode .sector-desc {
  color: #9ca3af;
}

.page-header {
  padding: 180px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
body.dark-mode .page-header {
  background: linear-gradient(135deg, #0f2321 0%, #1a2e2e 100%);
}
.page-header h1 {
  font-size: 3.5rem;
  font-weight: 900;
  color: #1a2e2e;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
body.dark-mode .page-header h1 {
  -webkit-text-fill-color: transparent;
}
.news-card, .featured-news {
  border-radius: 25px;
  overflow: hidden;
  background: white;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
}
.news-card:hover, .featured-news:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
}
.news-image img {
  width: 100%;
  height: auto;
  display: block;
}
.news-content {
  padding: 25px;
}
.news-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1a2e2e;
  margin-bottom: 15px;
}
.news-card .news-title {
  font-size: 1.25rem;
}
.featured-news .news-title {
  font-size: 2rem;
}
.news-date {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 15px;
  display: flex;
  gap: 10px;
}
.news-date i {
  color: #22c55e;
}
.news-excerpt {
  font-size: 1rem;
  color: #7dabaa;
  line-height: 1.7;
  margin-bottom: 20px;
}
.btn-primary {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  border: none;
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.4);
}
.btn-outline-primary {
  color: #22c55e;
  border-color: #22c55e;
  padding: 8px 20px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.btn-outline-primary:hover {
  background: rgba(34, 197, 94, 0.1);
  transform: translateY(-3px);
}
/* Dark Mode */
body.dark-mode .news-card,
body.dark-mode .featured-news {
  background: #1a2e2e;
  border-color: rgba(34, 197, 94, 0.2);
}
body.dark-mode .news-title,
body.dark-mode .featured-news .news-title {
  color: #e0e0e0;
}
body.dark-mode .news-excerpt {
  color: #9ca3af;
}
body.dark-mode .news-date {
  color: #9ca3af;
}
body.dark-mode .btn-outline-primary {
  color: #a0e8c2;
  border-color: #a0e8c2;
}
body.dark-mode .btn-outline-primary:hover {
  background: rgba(160, 232, 194, 0.15);
}

/* Purpose & Mission Section */
.purpose-mission-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.pm-card {
  background: white;
  border-radius: 25px;
  padding: 50px 40px;
  border: 2px solid #f0f0f0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.pm-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(102, 126, 234, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.pm-card:hover::before {
  opacity: 1;
}

.pm-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.purpose-card {
  border-color: rgba(59, 130, 246, 0.2);
}

.purpose-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
}

.mission-card {
  border-color: rgba(239, 71, 111, 0.2);
}

.mission-card:hover {
  border-color: rgba(239, 71, 111, 0.5);
}

.pm-icon-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.pm-icon {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
}

.purpose-icon {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(37, 99, 235, 0.15) 100%);
  color: #3b82f6;
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.mission-icon {
  background: linear-gradient(135deg, rgba(239, 71, 111, 0.15) 0%, rgba(219, 39, 119, 0.15) 100%);
  color: #ef476f;
  box-shadow: 0 10px 30px rgba(239, 71, 111, 0.2);
}

.pm-card:hover .pm-icon {
  transform: scale(1.15) rotate(360deg);
}

.pm-icon::before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 2px dashed;
  opacity: 0.3;
  animation: iconRotate 15s linear infinite;
}

.purpose-icon::before {
  border-color: #3b82f6;
}

.mission-icon::before {
  border-color: #ef476f;
}

@keyframes iconRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.pm-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a2e2e;
  margin-bottom: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.purpose-card:hover .pm-title {
  color: #3b82f6;
}

.mission-card:hover .pm-title {
  color: #ef476f;
}

.pm-description {
  font-size: 1.05rem;
  color: #6c757d;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 30px;
}

.pm-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pm-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInList 0.5s ease-out forwards;
}

.pm-list li:nth-child(1) {
  animation-delay: 0.1s;
}

.pm-list li:nth-child(2) {
  animation-delay: 0.2s;
}

.pm-list li:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes slideInList {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.pm-list li:hover {
  transform: translateX(10px);
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.list-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
  transition: all 0.3s ease;
}

.purpose-dot {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.mission-dot {
  background: linear-gradient(135deg, #ef476f 0%, #db2777 100%);
}

.pm-list li:hover .list-dot {
  transform: scale(1.5);
}

.pm-list li span:last-child {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Floating Shapes */
.pm-float-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  animation: floatPM 20s ease-in-out infinite;
}

.pm-float-shape.shape-1 {
  width: 350px;
  height: 350px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  top: 20%;
  left: -100px;
}

.pm-float-shape.shape-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #ef476f 0%, #db2777 100%);
  bottom: 20%;
  right: -80px;
  animation-delay: 10s;
}

@keyframes floatPM {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(30px, -30px) rotate(180deg);
  }
}

/* AOS Animation */
[data-aos="fade-right"] {
  opacity: 0;
  transform: translateX(-100px);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos="fade-right"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

[data-aos="fade-left"] {
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos="fade-left"].aos-animate {
  opacity: 1;
  transform: translateX(0);
}

/* Dark Mode for Purpose & Mission */
body.dark-mode .purpose-mission-section {
  background: linear-gradient(180deg, #0f2321 0%, #1a2e2e 100%);
}

body.dark-mode .pm-card {
  background: #1a2e2e;
  border-color: rgba(102, 126, 234, 0.3);
}

body.dark-mode .pm-title {
  color: #e0e0e0;
}

body.dark-mode .pm-description {
  color: #9ca3af;
}

body.dark-mode .pm-list li {
  background: #0f2321;
}

body.dark-mode .pm-list li:hover {
  background: #284a40;
}

body.dark-mode .pm-list li span:last-child {
  color: #d1d5db;
}

/* Our Values Section */
.values-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 20px;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  line-height: 1.8;
}

.value-card {
  background: white;
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  border: 2px solid #f0f0f0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  height: 100%;
  position: relative;
  overflow: hidden;
  /*  cursor: pointer;*/
}

.value-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.value-card:hover::before {
  width: 300px;
  height: 300px;
}

.value-card:hover {
  transform: translateY(-20px) scale(1.03);
  border-color: rgba(102, 126, 234, 0.3);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.value-icon-wrapper {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
}

.value-icon {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
  position: relative;
  z-index: 2;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.value-card:hover .value-icon {
  transform: rotateY(360deg) scale(1.15);
}

/* Icon Colors */
.icon-blue {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.icon-indigo {
  background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.icon-cyan {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
}

.icon-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
  box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.icon-teal {
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  box-shadow: 0 10px 30px rgba(20, 184, 166, 0.4);
}

.icon-pink {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
  box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
}

.icon-green {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.icon-orange {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

/* Icon Ripple Effect */
.icon-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 18px;
  border: 3px solid rgba(102, 126, 234, 0.5);
  opacity: 0;
  animation: rippleEffect 2s ease-out infinite;
}

@keyframes rippleEffect {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.6;
  }
  100% {
    width: 150%;
    height: 150%;
    opacity: 0;
  }
}

.value-card:hover .icon-ripple {
  animation-duration: 1s;
}

.value-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a2e2e;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}

.value-card:hover .value-title {
  color: #22c55e;
  transform: scale(1.05);
}

.value-desc {
  font-size: 0.95rem;
  color: #6c757d;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.value-card:hover .value-desc {
  color: #7dabaa;
}

/* Background Grid */
.values-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridFloat 30s linear infinite;
  pointer-events: none;
}

@keyframes gridFloat {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Floating Circles */
.values-float-circle {
  position: absolute;
  border-radius: 50%;
  border: 3px dashed;
  opacity: 0.08;
  animation: circleRotate 40s linear infinite;
}

.circle-1 {
  width: 400px;
  height: 400px;
  border-color: #22c55e;
  top: 15%;
  right: 5%;
}

.circle-2 {
  width: 350px;
  height: 350px;
  border-color: #ef476f;
  bottom: 20%;
  left: 8%;
  animation-direction: reverse;
}

.circle-3 {
  width: 280px;
  height: 280px;
  border-color: #06b6d4;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@keyframes circleRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Zoom In Animation */
[data-aos="zoom-in"] {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

[data-aos="zoom-in"].aos-animate {
  opacity: 1;
  transform: scale(1);
}

/* Team Section */
.team-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.team-carousel-wrapper {
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  padding: 30px 0;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.team-carousel {
  display: flex;
  gap: 30px;
  animation: scrollTeam 40s linear infinite;
  will-change: transform;
}

.team-carousel:hover {
  animation-play-state: paused;
}

@keyframes scrollTeam {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-320px * 6 - 180px));
  }
}

.team-card {
  min-width: 320px;
  flex-shrink: 0;
  background: white;
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  border: 2px solid transparent;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.team-card:hover {
  transform: translateY(-15px) scale(1.05);
  border-color: rgba(102, 126, 234, 0.5);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.3);
}

.team-avatar {
  width: 140px;
  height: 140px;
  margin: 0 auto 25px;
  position: relative;
}

.avatar-ring {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 3px solid;
  border-color: #22c55e transparent #764ba2 transparent;
  animation: ringRotate 3s linear infinite;
}

.team-card:hover .avatar-ring {
  animation-duration: 1s;
}

@keyframes ringRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes avatarShine {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
  }
  50% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.male-avatar {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
}

.female-avatar {
  background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
}

/* Dark Mode for Team & Footer */
body.dark-mode .team-section {
  background: linear-gradient(180deg, #0f2321 0%, #1a2e2e 100%);
}

body.dark-mode .team-card {
  background: #1a2e2e;
  border-color: rgba(102, 126, 234, 0.2);
}

body.dark-mode .team-card:hover {
  background: #284a40;
}

body.dark-mode .team-name {
  color: #e0e0e0;
}

body.dark-mode .footer-wave path {
  fill: #0f2321;
}

/* Dark Mode for Values */
body.dark-mode .values-section {
  background: linear-gradient(180deg, #1a2e2e 0%, #0f2321 100%);
}

body.dark-mode .value-card {
  background: #1a2e2e;
  border-color: rgba(102, 126, 234, 0.2);
}

body.dark-mode .value-card:hover {
  background: #284a40;
}

body.dark-mode .value-title {
  color: #e0e0e0;
}

body.dark-mode .value-desc {
  color: #9ca3af;
}
/* About Section Styles */
.section {
  padding: 120px 0;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.section-badge {
  display: inline-block;
  padding: 8px 24px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1) 0%, rgba(22, 163, 74, 0.1) 100%);
  color: #22c55e;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: fadeInScale 0.6s ease-out;
}
.section-title {
  font-size: 3.5rem;
  font-weight: 900;
  color: #1a2e2e;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  line-height: 1.8;
}
.section-description {
  font-size: 1.2rem;
  color: #6c757d;
  line-height: 1.8;
}
.feature-card {
  background: white;
  border-radius: 30px;
  padding: 50px 40px;
  position: relative;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
  border: 2px solid transparent;
  height: 100%;
}
.purpose-card {
  border-color: rgba(34, 197, 94, 0.2);
}
.mission-card {
  border-color: rgba(239, 71, 111, 0.2);
}
.feature-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}
.purpose-card:hover {
  border-color: rgba(34, 197, 94, 0.5);
}
.mission-card:hover {
  border-color: rgba(239, 71, 111, 0.5);
  background-color: #ffd1db47;
}
.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}
.feature-card:hover .card-glow {
  opacity: 1;
}
.icon-wrapper {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  position: relative;
  animation: float 3s ease-in-out infinite;
}
.icon-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.purpose-icon .icon-circle {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15) 0%, rgba(22, 163, 74, 0.15) 100%);
  color: #22c55e;
  box-shadow: 0 10px 40px rgba(34, 197, 94, 0.3);
}
.mission-icon .icon-circle {
  background: linear-gradient(135deg, rgba(239, 71, 111, 0.15) 0%, rgba(255, 107, 107, 0.15) 100%);
  color: #ef476f;
  box-shadow: 0 10px 40px rgba(239, 71, 111, 0.3);
}
.feature-card:hover .icon-circle {
  transform: scale(1.15) rotate(360deg);
}
.purpose-icon .icon-circle:before,
.mission-icon .icon-circle:before {
  content: '';
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 2px dashed;
  opacity: 0.3;
  animation: rotate 20s linear infinite;
}
.purpose-icon .icon-circle:before {
  border-color: #22c55e;
}
.mission-icon .icon-circle:before {
  border-color: #ef476f;
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.card-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a2e2e;
  margin-bottom: 20px;
  text-align: center;
}
.card-description {
  font-size: 1.1rem;
  color: #6c757d;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 35px;
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  opacity: 0;
  transform: translateX(-30px);
}
.feature-list li.aos-animate {
  opacity: 1;
  transform: translateX(0);
}
.feature-list li:hover {
  transform: translateX(10px);
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.list-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.3rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.list-icon:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  transform: translate(-50%, -50%);
  transition: all 0.5s ease;
}
.feature-list li:hover .list-icon:before {
  width: 100px;
  height: 100px;
}
.purpose-list {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.2) 0%, rgba(22, 163, 74, 0.2) 100%);
  color: #22c55e;
}
.mission-list {
  background: linear-gradient(135deg, rgba(239, 71, 111, 0.2) 0%, rgba(255, 107, 107, 0.2) 100%);
  color: #ef476f;
}
.feature-list li:hover .list-icon {
  transform: scale(1.1) rotate(5deg);
}
.feature-list li span {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  font-weight: 500;
}
/* Floating Shapes */
.floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
  animation: floatShape 20s ease-in-out infinite;
  z-index: 1;
}
.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  top: 10%;
  left: -150px;
  animation-delay: 0s;
}
.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #ef476f 0%, #ff6b6b 100%);
  top: 60%;
  right: -100px;
  animation-delay: 5s;
}
.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  bottom: 20%;
  left: 10%;
  animation-delay: 10s;
}
.shape-4 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #ef476f 0%, #ff6b6b 100%);
  top: 30%;
  right: 5%;
  animation-delay: 15s;
}
@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg);
  }
  50% {
    transform: translate(-30px, 30px) rotate(180deg);
  }
  75% {
    transform: translate(30px, 30px) rotate(270deg);
  }
}
/* AOS Animation */
[data-aos] {
  pointer-events: auto;
}
[data-aos="fade-up"] {
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
[data-aos="fade-up"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}
[data-aos="fade-right"] {
  transform: translateX(-100px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
  opacity: 1;
}
[data-aos="fade-left"] {
  transform: translateX(100px);
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
[data-aos="fade-left"].aos-animate {
  transform: translateX(0);
  opacity: 1;
}
