* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
 }


:root {
    --primary-color: #799193 ;
    --secondary-color: #dbbc7b ;
    --accent-color: #b78350 ;
    --light-color: #EDF2F4;
    --dark-color: #304852;
    --text-color: #333;
    --transition: all 0.3s ease;
}

body {
    background: linear-gradient(135deg, #f8f9fa 60%, #e9f2ff 100%);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.secondary-btn {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.secondary-btn:hover {
    background-color: white;
    color: var(--primary-color);
}

.donate-btn {
    background-color: var(--secondary-color);
}

.donate-btn:hover {
    background-color: #fbe0c2;
}

/* Top Bar */
.top-bar {
  background: linear-gradient(135deg, #004d40 40%, #dbbc7b 100%);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    color: var(--secondary-color);
}

/* Header & Navigation */
/* --- Navbar Modern Style --- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: linear-gradient(135deg, #f8f9fa 60%, #dbbc7b   100%);
  transition: all 0.3s ease;
}

header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
  padding: 5px 0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  position: relative;
}

.logo {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--secondary-color);
}

.logo-img {
  width: 55px;
  height: auto;
}

/* Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  transition: all 0.3s ease;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark-color);
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: 0.3s;
  transform: translateX(-50%);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Donate Button */
.donate-btn {
  background: linear-gradient(135deg, #ff6b6b, #feca57);
  color: white !important;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
  transition: 0.3s;
}

.donate-btn:hover {
  box-shadow: 0 6px 25px rgba(255, 107, 107, 0.6);
  transform: translateY(-2px);
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px 0;
  transition: 0.4s;
}

/* Overlay Style */
.nav-links {
  transition: all 0.4s ease-in-out;
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #f8f9fa 60%, #dbbc7b   100%);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 35px;
    transition: 0.5s;
  }

  .nav-links a {
    color: #333;
    font-size: 22px;
  }

  .nav-links.show {
    right: 0;
  }

  .menu-toggle {
    display: flex;
  }

  /* Menu Animation */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

/* Hero Section */
.hero {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
  background: url('../images/hero-img.jpg') center/cover no-repeat fixed;
  color: white;
}

/* Overlayص*/
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s forwards 0.5s;
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 20px;
}

.hero-title span {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
 background: linear-gradient(90deg, #dbbc7b, #b9995c);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transition: background-position 0.5s ease;
  padding-bottom: 10px;
  position: relative;
}

.hero-text {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 30px auto;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 1s;
}

.hero-buttons .btn {
  margin: 0 10px;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.primary-btn {
 background: linear-gradient(90deg, #dbbc7b, #b9995c);
  color: #333;
}

.primary-btn:hover {
  color: white;
  background: #dbbc7b;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.secondary-btn {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.secondary-btn:hover {
  background: white;
  color: #0066cc;
  transform: translateY(-3px) scale(1.05);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#hero-canvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-title { font-size: 2.5rem; }
  .hero-text { font-size: 1.1rem; }
}

@media (max-width: 768px) {
  .hero-title { font-size: 2rem; }
  .hero-text { font-size: 1rem; }
  .hero-buttons .btn { padding: 10px 25px; margin: 5px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.5rem; }
  .hero-text { font-size: 0.9rem; }
}

/* Section Titles Unified Style */
section h2 {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--accent-color));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  transition: background-position 0.5s ease;
  padding-bottom: 10px;
  position: relative;
}

section h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 5px;
  background-color: var(--accent-color);
  margin: 10px auto 0;
  border-radius: 5px;
}

/* Hover Effect */
section h2:hover {
  background-position: right center;
}


/* Features Section */
.features {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

/* Title & Intro */
.features-header {
    text-align: center;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards;
}
.features-header h2 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 15px;
    position: relative;
}
.features-header p {
    font-size: 1.2rem;
    color: #666;
}

/* Feature Cards */
/* Features Section */
.features {
    padding: 100px 0;
  background: linear-gradient(135deg, #fffdf4 0%, #f4edda 50%, #ffffff 100%);
    background-size: 200% 200%;
    animation: shine 12s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}
@keyframes shine {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
/* Section Header */
.features-header {
    text-align: center;
    margin-bottom: 60px;
}

.features-header h2 {
    font-size: 3rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.features-header h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 5px;
    background-color: var(--accent-color);
    margin: 10px auto 0;
    border-radius: 5px;
}

.features-header p {
    margin-top: 15px;
    color: var(--dark-color);
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Feature Cards */
.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 20px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: var(--accent-color);
    opacity: 0.1;
    transition: width 0.5s ease;
    z-index: 0;
}

.feature-card:hover::before {
    width: 100%;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.feature-card h3, .feature-card p {
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 30px;
    transition: transform 0.5s ease, background-color 0.5s ease;
}

.feature-card:hover .feature-icon {
    transform: rotate(20deg) scale(1.2);
    background-color: var(--accent-color);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.feature-card p {
    color: var(--dark-color);
    font-size: 1rem;
    line-height: 1.6;
}
@keyframes floatDots {
    0% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-20px) scale(1.2); opacity: 0.6; }
    100% { transform: translateY(0) scale(1); opacity: 0.3; }
}
/* Decorative Dots */
.features-decor {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.features-decor span {
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    background-color: var(--accent-color);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatDots 10s linear infinite;
}

.features-decor span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.features-decor span:nth-child(2) { top: 40%; left: 80%; animation-delay: 2s; }
.features-decor span:nth-child(3) { top: 70%; left: 30%; animation-delay: 4s; }
.features-decor span:nth-child(4) { top: 10%; left: 60%; animation-delay: 6s; }
.features-decor span:nth-child(5) { top: 50%; left: 50%; animation-delay: 8s; }


/* About Section */
.about {
  position: relative;
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 60%, #e9f2ff 100%);
  overflow: hidden;
}

.about::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -150px;
  width: 350px;
  height: 350px;
  background: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.about::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 250px;
  height: 250px;
  background: rgba(40, 167, 69, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.about-content {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
  z-index: 1;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  transition: transform 0.4s ease, color 0.4s ease;
}

.about-text:hover {
  transform: translateY(-5px);
}

.about-text h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
  position: relative;
  padding-bottom: 15px;
  transition: color 0.3s ease;
}

.about-text h3:hover {
  color: var(--secondary-color);
}

.about-text h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: var(--secondary-color);
}

.about-text p {
  margin-bottom: 20px;
  line-height: 1.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.about-text p:hover {
  transform: translateX(10px);
  opacity: 0.9;
}

.about-text .btn {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.about-text .btn:hover {
  background: var(--secondary-color);
  transform: scale(1.05);
}

.about-image {
  flex: 1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  max-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;

}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit:inherit;  
  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05) rotate(1deg); 
}

/* Responsiveness */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-image {
    max-height: 300px;
    width: 100%;
  }
}


/* Programs Section */
.programs {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 60%, #eef5ff 100%);
  overflow: hidden;
}

.programs::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background: rgba(0, 123, 255, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.programs::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 250px;
  height: 250px;
  background: rgba(40, 167, 69, 0.08);
  border-radius: 50%;
  z-index: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  position: relative;
}

.section-header h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
  margin: 15px auto 0;
}

.section-header p {
  font-size: 1.1rem;
  color: #555;
}

/* Grid Layout */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Program Card */
.program-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.program-card::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 160px;
  height: 160px;
  background: var(--secondary-color);
  opacity: 0.1;
  border-radius: 50%;
  transition: opacity 0.4s ease;
}

.program-card:hover::before {
  opacity: 0.2;
}

.program-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.program-card .icon {
  font-size: 3rem;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.program-card:hover .icon {
  transform: rotate(10deg) scale(1.2);
}

.program-card h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.program-card:hover h3 {
  color: var(--secondary-color);
}

.program-card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.program-card:hover p {
  transform: translateY(5px);
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 2rem;
  }
  .program-card {
    padding: 30px 20px;
  }
}

/* Video Section */
.video-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #fffdf4 0%, #f4edda 50%, #ffffff 100%);
}

.video-section .section-title {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.video-section .section-title:hover {
  color: var(--secondary-color);
}

.video-section .section-subtitle {
  font-size: 1.1rem;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Video Box */
.video-box {
  position: relative;
  max-width: 800px;   
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  
  aspect-ratio: 16 / 9;
  background: linear-gradient(135deg, #fffdf4 0%, #f4edda 50%, #ffffff 100%);
}

.video-box video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}



/* Target Groups Section */
.targets {
  position: relative;
  padding: 100px 0;
  background: #fdfdfd;
  overflow: hidden;
  z-index: 1;
}

/* Waves */
.wave {
  position: absolute;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 0;
}

.wave svg {
  display: block;
  width: 100%;
  height: 120px;
}

.wave-top {
  top: 0;
  transform: translateY(-100%);
}

.wave-bottom {
  bottom: 0;
  transform: translateY(100%);
}

/* Background Circles */
.targets::before,
.targets::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(0,123,255,0.07);
  z-index: 0;
}

.targets::before {
  width: 250px;
  height: 250px;
  top: 50px;
  right: -120px;
}

.targets::after {
  width: 180px;
  height: 180px;
  bottom: 60px;
  left: -90px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.section-header p {
  font-size: 1.1rem;
  color: #555;
}

/* Timeline Style */
.targets-list {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  z-index: 2;
}

.targets-list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: var(--secondary-color);
  transform: translateX(-50%);
  border-radius: 2px;
}

.target-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

.target-item:nth-child(1) { animation-delay: 0.2s; }
.target-item:nth-child(2) { animation-delay: 0.4s; }
.target-item:nth-child(3) { animation-delay: 0.6s; }
.target-item:nth-child(4) { animation-delay: 0.8s; }

.target-item.left { flex-direction: row; }
.target-item.right { flex-direction: row-reverse; }

.target-item .icon {
  width: 70px;
  height: 70px;
  background: var(--primary-color);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  transition: transform 0.4s ease, background 0.4s ease;
}

.target-item:hover .icon {
  transform: scale(1.2) rotate(10deg);
  background: var(--secondary-color);
}

.target-item .text {
  background: #fff;
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  max-width: 400px;
  transition: transform 0.3s ease;
}

.target-item:hover .text {
  transform: translateY(-5px);
}

.target-item .text h3 {
  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.target-item .text p {
  color: #555;
  line-height: 1.5;
}

/* Animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .targets-list::before {
    left: 10px;
  }
  .target-item {
    flex-direction: row !important;
    margin-left: 30px;
  }
  .target-item .text {
    max-width: 100%;
  }
}
/* Waves */
.wave-top,
.wave-bottom {
  width: 100%;
  line-height: 0;
}

.wave-top svg,
.wave-bottom svg {
  width: 100%;
  height: 100px; 
  display: block;
}


/* Statistics Section */
.stats {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 60%, #dbbc7b   100%);
  padding: 100px 0;
  text-align: center;
  color: var(--dark-color);
  overflow: hidden;
}

/* Decorative dots background */
.stats-decor span {
  position: absolute;
  display: block;
  width: 25px;
  height: 25px;
  background: var(--secondary-color);
  border-radius: 50%;
  opacity: 0.2;
  animation: float 12s infinite ease-in-out;
}

.stats-decor span:nth-child(1) { top: 20%; left: 10%; animation-duration: 10s; }
.stats-decor span:nth-child(2) { top: 60%; left: 20%; animation-duration: 14s; }
.stats-decor span:nth-child(3) { top: 30%; left: 80%; animation-duration: 16s; }
.stats-decor span:nth-child(4) { top: 70%; left: 70%; animation-duration: 12s; }
.stats-decor span:nth-child(5) { top: 50%; left: 40%; animation-duration: 18s; }

@keyframes float {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.1); }
  100% { transform: translateY(0) scale(1); }
}

/* Header */
.stats-header h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  color: var(--dark-color);
  transition: all 0.4s ease;
}

/* Hover effect on title */
.hover-title {
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color), var(--accent-color));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.5s ease;
}

.hover-title:hover {
  background-position: right center;
}

.stats-header h2::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 12px auto 0;
  border-radius: 5px;
}

.stats-header p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 15px auto 60px;
  color: var(--text-color);
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.stat-item {
  background: #fff;
  padding: 40px 20px;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.stat-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.stat-icon {
  width: 70px;
  height: 70px;
  background: var(--secondary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
  font-size: 28px;
  transition: background 0.4s ease, transform 0.4s ease;
}

.stat-item:hover .stat-icon {
  background: var(--accent-color);
  transform: rotate(15deg) scale(1.2);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: bold;
}

.stat-item p {
  font-size: 1rem;
  color: var(--dark-color);
}
.impactsec-image-wrapper {
  text-align: center;
  margin: 2rem auto;
}

.impactsec-image {
  max-width: 300px;
  width: 35%;
  height: auto;
  border-radius: 40px;
  box-shadow: 3px 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

.impactsec-image:hover {
  transform: scale(1.02);
}


/* About Us Page */

/* Section Container */
.aboutuspg-vm {
  background: linear-gradient(135deg, #f8f9fa 60%, #dbbc7b   100%);
  color: var(--text-color);
  padding: 80px 20px;
}

.aboutuspg-vm-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

/* Card */
.aboutuspg-vm-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.aboutuspg-vm-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 30px rgba(0,0,0,0.3);
  background: rgba(255, 215, 100, 0.12);
  border-color: #f4e3c1;
}

/* Icon */
.aboutuspg-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #f4e3c1;
  animation: floatIcon 3s ease-in-out infinite;
}

/* Title */
.aboutuspg-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #f4e3c1;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s ease forwards;
}

.aboutuspg-text {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Lists */
.aboutuspg-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  text-align: left;
}

.aboutuspg-list li {
  margin: 8px 0;
  padding-left: 5px;
  transition: color 0.3s;
}

.aboutuspg-list.check li:hover {
  color: #f4e3c1;
  transform: translateX(5px);
  transition: all 0.3s ease;
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Responsive */
@media (max-width: 768px) {
  .aboutuspg-title { font-size: 1.6rem; }
  .aboutuspg-text { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .aboutuspg-vm { padding: 50px 15px; }
  .aboutuspg-title { font-size: 1.4rem; }
  .aboutuspg-icon { font-size: 2rem; }
}

/* Timeline Section */
.aboutuspg-timeline {
  background: linear-gradient(135deg, #f8f9fa 60%, #dbbc7b 100%);
  padding: 80px 20px;
  position: relative;
}

.aboutuspg-timeline-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #304852;
  animation: fadeDown 1s ease forwards;
}

/* Timeline Container */
.aboutuspg-timeline-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-left: 20px;
  border-left: 4px solid #dbbc7b;
}

/* Timeline Item */
.aboutuspg-timeline-item {
  position: relative;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.aboutuspg-timeline-item:nth-child(1) { animation-delay: 0.2s; }
.aboutuspg-timeline-item:nth-child(2) { animation-delay: 0.4s; }
.aboutuspg-timeline-item:nth-child(3) { animation-delay: 0.6s; }
.aboutuspg-timeline-item:nth-child(4) { animation-delay: 0.8s; }
.aboutuspg-timeline-item:nth-child(5) { animation-delay: 1s; }

/* Timeline Dot */
.aboutuspg-timeline-icon {
  position: absolute;
  left: -40px;
  top: 0;
  background: #dbbc7b;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.15);
  transition: transform 0.3s, background 0.3s;
}

.aboutuspg-timeline-item:hover .aboutuspg-timeline-icon {
  transform: scale(1.2);
  background: #304852;
}

/* Timeline Content */
.aboutuspg-timeline-content {
  background: #fff;
  border-radius: 12px;
  padding: 20px 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.aboutuspg-timeline-content h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  color: #304852;
  font-weight: 600;
}

.aboutuspg-timeline-content p {
  margin: 0;
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.aboutuspg-timeline-item:hover .aboutuspg-timeline-content {
  transform: translateX(5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Animations */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .aboutuspg-timeline-container {
    border-left: none;
    padding-left: 0;
  }
  .aboutuspg-timeline-item {
    margin-left: 0;
    padding-left: 50px;
  }
  .aboutuspg-timeline-icon {
    left: 0;
  }
}


/* Section Styling */
.about-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 60%, #dbbc7b 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  animation: fadeDown 1s ease forwards;
  opacity: 0;
}

.about-text {
  max-width: 800px;
  margin: 0 auto 40px auto;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  animation: fadeUp 1.5s ease forwards;
  opacity: 0;
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-box {
  width: 500px;
  max-width: 100%;
  aspect-ratio: 1 / 1;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  overflow: hidden;
  z-index: 2;
}

.video-box iframe {
  width: 100%;
  height: 100%;
}

.shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 1;
}

.shape1 {
  width: 150px;
  height: 150px;
  background: #dbbc7b;
  top: 10%;
  left: 5%;
  animation: float 6s infinite ease-in-out;
}

.shape2 {
  width: 200px;
  height: 200px;
  background: #999;
  bottom: 10%;
  right: 5%;
  animation: float 8s infinite ease-in-out;
}

@keyframes fadeDown {
  from { transform: translateY(-30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes fadeUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Responsive */
@media (max-width: 768px) {
  .about-title { font-size: 2rem; }
  .about-text { font-size: 1rem; padding: 0 10px; }
  .video-box { width: 280px; }
}


/* services page */

/* ====== Services Section ====== */
.services-section-serpg {
  padding: 80px 20px;
  background: linear-gradient(135deg #dbbc7b 40%, #f8f9fa 60%, #dbbc7b 60%);
  font-family: 'Poppins', sans-serif;
}

.container-serpg {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.services-title-serpg {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 40px;
  color: #004d40;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ====== Card ====== */
.service-card-serpg {
  background: linear-gradient(135deg, #f8f9fa 60%, #dbbc7b 100%);
  border-radius: 20px;
  padding: 35px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.service-card-serpg:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}

.service-content-serpg h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #004d40;
  font-weight: 700;
}

.service-content-serpg ul {
  list-style: none;
  padding: 0;
  line-height: 1.9;
  font-size: 1.05rem;
  color: #333;
}

.service-content-serpg ul li::before {
  content: "✔️";
  margin-right: 8px;
  color: #dbbc7b;
}

.services-image-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.services-end-img {
  max-width: 100%;
  border-radius: 40px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  transition: transform 0.6s ease;
}

.services-end-img:hover {
  transform: scale(1.03);
}

/* ====== Scroll Reveal Animation ====== */
.reveal-serpg {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.reveal-serpg.active {
  opacity: 1;
  transform: translateY(0);
}

/* ====== Responsive ====== */
@media screen and (max-width: 768px) {
  .services-title-serpg {
    font-size: 2.2rem;
  }
  .service-card-serpg {
    padding: 25px;
  }
  .service-content-serpg h3 {
    font-size: 1.5rem;
  }
}
/* ====== Services Section Background Decorations ====== */
.services-section-serpg {
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 60%, #dbbc7b 100%);
  font-family: 'Poppins', sans-serif;
}

/* دوائر ديكور */
.services-section-serpg::before,
.services-section-serpg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(215, 182, 110, 0.25) 0%, transparent 70%);
  z-index: 0;
  animation: float-serpg 10s infinite ease-in-out alternate;
}

/* شكل واحد يسار */
.services-section-serpg::before {
  width: 350px;
  height: 350px;
  top: -100px;
  left: -120px;
}

/* شكل ثاني يمين */
.services-section-serpg::after {
  width: 280px;
  height: 280px;
  bottom: -100px;
  right: -100px;
  animation-delay: 3s;
}

/* حركة خفيفة */
@keyframes float-serpg {
  0% { transform: translateY(0) rotate(0); }
  100% { transform: translateY(-20px) rotate(5deg); }
}

/* ترتيب المحتوى فوق الديكور */
.container-serpg,
.services-title-serpg,
.service-card-serpg,
.services-image-wrapper {
  position: relative;
  z-index: 2;
}

/* خط ديكوري ذهبي تحت العنوان */
.services-title-serpg {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
  margin-bottom: 40px;
}

.services-title-serpg::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #dbbc7b, transparent);
  border-radius: 3px;
}



/* program page */ 

/* About Organization Section */
.about-org-section-proh-pg {
  background: linear-gradient(135deg, #fffdf4 0%, #f4edda 50%, #ffffff 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  color: #333;
  border-radius: 20px;
}

.about-org-section-proh-pg::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  top: -50px;
  right: -50px;
  z-index: 1;
  transform: rotate(45deg);
}

.about-org-section-proh-pg::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
  z-index: 1;
}

.container-proh-pg {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-org-content-proh-pg {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.text-box-proh-pg {
  flex: 1 1 400px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.text-box-proh-pg h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #333;
  transition: color 0.3s ease;
}

.text-box-proh-pg p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.image-box-proh-pg {
  flex: 1 1 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.image-box-proh-pg img {
  width: 100%;
  max-width: 500px;
  border-radius: 15px;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effects */
.about-org-content-proh-pg:hover .text-box-proh-pg {
  transform: translateY(-10px);
  color: #474643;
}

.about-org-content-proh-pg:hover .image-box-proh-pg img {
  transform: scale(1.05) rotate(-1deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 900px) {
  .about-org-content-proh-pg {
    flex-direction: column-reverse;
    text-align: center;
  }

  .text-box-proh-pg h2 {
    font-size: 2rem;
  }

  .text-box-proh-pg p {
    font-size: 1rem;
  }
}

/* Reveal Animation */
.reveal-proh-pg.active-proh-pg {
  opacity: 1;
  transform: translateY(0);
}



.programs-section-proh-pg {
  position: relative ;
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 60%, #dbbc7b 100%);
  overflow: hidden;
}

.section-title-proh-pg {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 60px;
  color: #333;
  position: relative;
}

.programs-grid-proh-pg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.program-card-proh-pg {
  background: #fff;
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  text-align: center;
  position: relative;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.program-card-proh-pg:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.15);
}

.program-img-proh-pg {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 20px;
}

.program-title-proh-pg {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #444;
  text-align: center;
}

.program-text-proh-pg {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Decorative shapes */
.shape-proh-pg {
  position: absolute;
  border-radius: 50%;
  opacity: 0.2;
  z-index: 0;
}

.shape1-proh-pg {
  width: 120px;
  height: 120px;
  background: #dbbc7b;
  top: 10%;
  left: 5%;
}

.shape2-proh-pg {
  width: 180px;
  height: 180px;
  background: #caa86c;
  bottom: 15%;
  right: 10%;
}

.shape3-proh-pg {
  width: 80px;
  height: 80px;
  background: #b9995c;
  top: 50%;
  right: 20%;
}

/* Scroll Reveal */
.reveal-proh-pg {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal-proh-pg.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .section-title-proh-pg {
    font-size: 2rem;
  }
  .program-text-proh-pg {
    font-size: 0.95rem;
  }
}

/* ==================== VOLUNTEER PAGE CSS ==================== */


.container-vol-page {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* --- Hero Section --- */
.hero-vol-page {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  background: linear-gradient(135deg, #fffdf7, #f9f6ef);
  flex-wrap: wrap;
  overflow: hidden;
}

.decor-vol-page {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(219,188,123,0.25) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
}
.decor-vol-page::before,
.decor-vol-page::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  opacity: 0.15;
}
.decor-vol-page::before {
  width: 250px;
  height: 250px;
  top: -80px;
  left: -80px;
  background: radial-gradient(circle, #dbbc7b, transparent 70%);
}
.decor-vol-page::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
  background: radial-gradient(circle, #b9995c, transparent 70%);
}

.hero-content-vol-page {
  flex: 1;
  padding: 20px;
  animation: fadeInUp 1s ease;
}
.hero-content-vol-page h1 {
  font-size: 3rem;
  color: #2c3e50;
  margin-bottom: 15px;
  line-height: 1.2;
}
.hero-content-vol-page p {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 25px;
}
.hero-content-vol-page .btn-vol-page {
  background: linear-gradient(90deg, #dbbc7b, #b9995c);
  padding: 14px 30px;
  border-radius: 40px;
  color: white;
  font-weight: bold;
  text-decoration: none;
  transition: 0.4s;
  box-shadow: 0 4px 15px rgba(185, 153, 92, 0.5);
  backdrop-filter: blur(6px);
}
.hero-content-vol-page .btn-vol-page:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(219, 188, 123, 0.6);
}

.hero-image-vol-page {
  flex: 1;
  text-align: center;
  width: 450px;
  animation: zoomIn 1s ease;
}
.hero-image-vol-page img {
  max-width: 100%;
  border-radius: 25px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
  transition: transform 0.5s ease;
}
.hero-image-vol-page img:hover {
  transform: scale(1.05) rotate(1deg);
}

/* --- Impact Section --- */
.impact-vol-page {
  text-align: center;
  padding: 100px 20px;
  background: #fafafa;
  position: relative;
  overflow: hidden;
}
.impact-vol-page h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  color: #2c3e50;
  animation: fadeInUp 1s ease;
}
.intro-vol-page {
  color: #555;
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.2rem;
}
.achievements-vol-page {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.achievement-box-vol-page {
  background: rgba(255,255,255,0.9);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: 0.4s ease;
  backdrop-filter: blur(8px);
}
.achievement-box-vol-page:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 25px rgba(219, 188, 123, 0.4);
}
.achievement-box-vol-page h3 {
  font-size: 2rem;
  color: #b9995c;
  margin-bottom: 10px;
}

/* Impact Decoration (Dots) */
.decor-impact-vol-page {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 250px;
  height: 250px;
  background-image: radial-gradient(#dbbc7b 2px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.12;
  z-index: 0;
}

/* --- Get Involved Section --- */
.get-involved-vol-page {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fff, #fdfaf3);
  position: relative;
  overflow: hidden;
}
.get-involved-vol-page h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: #2c3e50;
}
.involve-options-vol-page {
  display: flex;
  justify-content: space-around;
  gap: 30px;
  flex-wrap: wrap;
}
.option-vol-page {
  flex: 1;
  min-width: 260px;
  background: rgba(255,255,255,0.95);
  padding: 40px 25px;
  text-align: center;
  border-radius: 20px;
  transition: 0.4s;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
}
.option-vol-page:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 25px rgba(219, 188, 123, 0.4);
}
.option-vol-page i {
  font-size: 3rem;
  color: #dbbc7b;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}
.option-vol-page h3 {
  font-size: 1.7rem;
  margin-bottom: 15px;
  color: #2c3e50;
}
.option-vol-page p {
  color: #555;
  font-size: 1.05rem;
}

/* Get Involved Decoration (Wave) */
.decor-getinvolved-vol-page {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: url('https://svgshare.com/i/uJZ.svg') no-repeat center/cover;
  opacity: 0.2;
  z-index: 0;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

/* --- Responsive --- */
@media (max-width: 992px) {
  .hero-content-vol-page h1 { font-size: 2.5rem; }
}
@media (max-width: 768px) {
  .hero-vol-page {
    flex-direction: column;
    text-align: center;
  }
  .hero-image-vol-page { width: 100%; margin-top: 25px; }
  .involve-options-vol-page { flex-direction: column; gap: 25px; }
}
@media (max-width: 480px) {
  .hero-content-vol-page h1 { font-size: 2rem; }
  .impact-vol-page h2, .get-involved-vol-page h2 { font-size: 2rem; }
  .option-vol-page h3 { font-size: 1.4rem; }
}


/* ===== Join Us Section ===== */
.join-hero-join-us {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 60%, #dbbc7b 100%);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.join-hero-join-us::before,
.join-hero-join-us::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  z-index: 0;
  animation: float-join-us 10s ease-in-out infinite;
}

.join-hero-join-us::before {
  width: 280px; height: 280px;
  background: var(--secondary-color);
  top: 8%; left: 5%;
}

.join-hero-join-us::after {
  width: 360px; height: 360px;
  background: var(--accent-color);
  bottom: 12%; right: 6%;
}

.join-container-join-us {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.join-header-join-us {
  text-align: center;
  margin-bottom: 40px;
}

.join-title-join-us {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 10px;
  opacity: 0; transform: translateY(-12px);
  animation: fadeDown-join-us .8s ease forwards;
}

.join-subtitle-join-us {
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: 1.1rem;
  color: var(--text-color);
  opacity: 0; transform: translateY(10px);
  animation: fadeUp-join-us .9s ease .1s forwards;
}

/* Mode Switch */
.mode-switch-join-us {
  display: inline-flex;
  position: relative;
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  padding: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  overflow: hidden;
}

.mode-btn-join-us {
  position: relative;
  z-index: 1;
  border: 0;
  background: transparent;
  padding: 12px 22px;
  font-weight: 700;
  color: var(--dark-color);
  border-radius: 12px;
  cursor: pointer;
  transition: transform .2s ease, color .3s ease;
  will-change: transform;
}

.mode-btn-join-us:hover { transform: translateY(-1px); }
.mode-btn-join-us.is-active-join-us { color: #fff; }

.mode-indicator-join-us {
  position: absolute;
  height: calc(100% - 12px);
  width: 50%;
  top: 6px; left: 6px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  border-radius: 12px;
  transition: transform .35s ease, width .2s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
}

/* Form */
.join-form-join-us {
  margin-top: 26px;
  background: #fff;
  border-radius: 22px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease;
}

.join-form-join-us:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0,0,0,.16);
}

.form-grid-join-us {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.form-field-join-us { grid-column: span 6; }
.form-field-join-us:has(textarea) { grid-column: 1 / -1; }

.form-label-join-us {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.form-input-join-us,
.form-select-join-us,
.form-textarea-join-us {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.12);
  padding: 14px 14px;
  font-size: 1rem;
  background: #fff;
  color: var(--dark-color);
  transition: border-color .25s ease, box-shadow .25s ease, transform .12s ease;
  outline: none;
}

.form-input-join-us:focus,
.form-select-join-us:focus,
.form-textarea-join-us:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 5px rgba(0,0,0,0), 0 10px 24px rgba(0,0,0,.06), inset 0 0 0 2px var(--accent-color);
  transform: translateY(-1px);
}

/* File input */
.file-field-join-us {
  position: relative;
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.file-input-join-us { display: none; }

.file-label-join-us {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.16);
  transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

.file-label-join-us:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0,0,0,.18); }
.file-name-join-us { font-size: .95rem; color: var(--text-color); }

/* Volunteer chips */
.skills-join-us {
  margin: 10px 0 12px;
  border: 1px dashed rgba(0,0,0,.12);
  border-radius: 16px;
  padding: 14px;
}

.skills-title-join-us {
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.chip-join-us {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,0,0,.12);
  border-radius: 999px;
  padding: 8px 14px;
  margin: 6px 8px 0 0;
  cursor: pointer;
  user-select: none;
  transition: transform .15s ease, background .25s ease, border-color .25s ease;
}

.chip-join-us input { accent-color: var(--accent-color); }
.chip-join-us:hover { transform: translateY(-1px); border-color: var(--accent-color); background: rgba(0,0,0,.02); }

/* Shared bottom */
.agree-join-us { margin: 10px 0 6px; }
.agree-label-join-us { font-size: .95rem; color: var(--text-color); }
.inline-link-join-us { color: var(--accent-color); text-decoration: underline; }

.form-actions-join-us {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.submit-btn-join-us {
  border: 0;
  padding: 14px 26px;
  border-radius: 14px;
  font-weight: 900;
  letter-spacing: .2px;
  background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
  color: #fff;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0,0,0,.16);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.submit-btn-join-us:hover { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(0,0,0,.2); filter: brightness(1.02); }
.form-note-join-us { color: var(--text-color); font-size: .95rem; }

/* Validation feedback */
.field-msg-join-us {
  display: none;
  margin-top: 6px;
  font-size: .85rem;
  color: #b40000;
}

.show-errors-join-us :invalid ~ .field-msg-join-us { display: block; }
.show-errors-join-us :invalid {
  border-color: #e45757 !important;
  box-shadow: 0 0 0 2px rgba(228,87,87,.12);
}

/* Visibility helpers */
.is-hidden-join-us { display: none; }

/* Animations */
@keyframes fadeDown-join-us {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp-join-us {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float-join-us {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-14px); }
}

/* Responsive */
@media (max-width: 900px) {
  .form-field-join-us { grid-column: span 12; }
  .join-title-join-us { font-size: 2.2rem; }
}
@media (max-width: 520px) {
  .join-form-join-us { padding: 22px; }
  .mode-btn-join-us { padding: 10px 16px; }
}


/* ==================== CONTACT PAGE ==================== */


/* --- Hero Section --- */
.contact-hero {
  position: relative;
  padding: 120px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 60%, #dbbc7b 100%);
  overflow: hidden;
}
.contact-hero p {
  font-size: 1.3rem;
  color: #555;
}

/* Hero Decoration */
.decor-contact {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(219,188,123,0.2) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}
.decor-contact::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(185,153,92,0.2) 0%, transparent 70%);
  border-radius: 50%;
}

/* --- Contact Section --- */
.contact-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 60%, #dbbc7b 100%);

  
}
.container-contact {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.contact-content, .contact-map {
  flex: 1;
  min-width: 300px;
  background: rgba(255,255,255,0.95);
  padding: 40px;
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.contact-content:hover, .contact-map:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(219,188,123,0.3);
}

/* Contact Form */
.contact-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.contact-content p {
  margin-bottom: 25px;
  color: #555;
}
.form-group {
  margin-bottom: 20px;
}
.form-group input, .form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border-radius: 15px;
  border: 1px solid #ddd;
  font-size: 1rem;
  transition: 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: #dbbc7b;
  box-shadow: 0 0 10px rgba(219,188,123,0.3);
  outline: none;
}
textarea { resize: none; }

.btn-contact {
  background: linear-gradient(90deg, #dbbc7b, #b9995c);
  color: white;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: 0.4s;
}
.btn-contact:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(219,188,123,0.6);
}

/* Form Feedback */
.form-feedback {
  margin-top: 15px;
  font-weight: bold;
}

/* Map */
.contact-map h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}
.contact-map p {
  margin-bottom: 20px;
  color: #555;
}
.contact-map iframe {
  border-radius: 20px;
  border: 0;
}

/* --- Responsive --- */
@media(max-width: 992px){
  .container-contact { flex-direction: column; }
  .contact-content, .contact-map { margin-bottom: 25px; }
}
@media(max-width: 480px){
  .contact-hero h1 { font-size: 2rem; }
  .contact-hero p { font-size: 1.1rem; }
  .contact-content h2, .contact-map h2 { font-size: 1.5rem; }
}



/* donate page */
/* ====== Section Base ====== */
.partnerships-section-help {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f4e5c6 40%, #f8f9fa 60%, #dbbc7b 60%);
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Decorations */
.partnerships-section-help::before,
.partnerships-section-help::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(215,182,110,0.25) 0%, transparent 70%);
  z-index: 0;
  animation: float-help 10s infinite ease-in-out alternate;
}
.partnerships-section-help::before {
  width: 350px;
  height: 350px;
  top: -100px;
  left: -120px;
}
.partnerships-section-help::after {
  width: 280px;
  height: 280px;
  bottom: -100px;
  right: -100px;
  animation-delay: 3s;
}
@keyframes float-help {
   0% 
   {transform: translateY(0);} 
   100% {transform: translateY(-20px);}
   }

/* Container */
.container-help { 
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2; 
}

/* Title */
.section-title-help {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin: 40px 0;
  color: #004d40;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}
.section-title-help::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #dbbc7b, transparent);
  border-radius: 3px;
}

/* Stats Bar */
.stats-bar-help {
  display: flex; justify-content: center; gap: 40px; margin-bottom: 30px;
}
.stat-item-help h3 {
  font-size: 2rem; color: #004d40; font-weight: 800; margin-bottom: 6px;
}
.stat-item-help p { color: #333; font-size: 0.95rem; }

/* Grid: images + timeline */
.part-grid-help {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  align-items: center; gap: 20px; margin-bottom: 40px;
}

/* Images */
.part-image-wrapper-help { display: flex; justify-content: center; }
.part-end-img-help {
  max-width: 100%; border-radius: 28px; box-shadow: 0 15px 40px rgba(0,0,0,0.25);
  transition: transform 0.6s ease; width: 100%; height: auto;
}
.part-end-img-help:hover { transform: scale(1.03); }

/* Timeline */
.timeline-help {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 20px; position: relative;
}
.timeline-step-help { text-align: center; }
.circle-help {
  width: 60px; height: 60px; border-radius: 50%;
  background: #dbbc7b; display: flex; justify-content: center; align-items: center;
  font-size: 1.6rem; margin: 0 auto 10px; color: #004d40;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2); animation: pulse-help 2s infinite;
}
.timeline-line-help {
  width: 3px; height: 40px; background: linear-gradient(180deg, #004d40, #00695c);
  border-radius: 2px;
}
.timeline-step-help p { font-size: 0.9rem; color: #333; }
@keyframes pulse-help {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
  100% { transform: scale(1); opacity: 1; }
}

/* Forms row below */
.part-cards-row-help {
  display: flex; gap: 30px; justify-content: center;
}
.part-card-help {
  flex: 1; background: rgba(255,255,255,0.75); backdrop-filter: blur(12px);
  border-radius: 20px; padding: 30px; box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.part-card-help:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(0,0,0,0.2); }
.icon-box-help { font-size: 2.4rem; margin-bottom: 12px; }
.part-card-help h3 { font-size: 1.6rem; color: #004d40; margin-bottom: 8px; }
.muted-help { color: #555; margin-bottom: 12px; }

/* Forms */
.input-help, .textarea-help {
  width: 100%; margin-bottom: 12px; padding: 12px 14px; border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08); font-size: 1rem; outline: none;
  transition: border-color 0.3s;
}
.input-help:focus, .textarea-help:focus { border-color: #dbbc7b; }
.textarea-help { resize: vertical; }

/* Button */
.btn-help {
  background: linear-gradient(90deg, #00695c, #004d40);
  color: #fff; padding: 12px 20px; border-radius: 12px; border: none;
  font-weight: 700; cursor: pointer; box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  transition: transform 0.2s ease;
}
.btn-help:hover { transform: translateY(-3px); }

/* Reveal */
.reveal-help { opacity: 0; transform: translateY(40px); transition: all 0.9s ease; }
.reveal-help.active { opacity: 1; transform: translateY(0); }

/* Responsive */
@media screen and (max-width: 1024px) {
  .part-grid-help { grid-template-columns: 1fr; }
  .timeline-help { flex-direction: row; }
  .timeline-line-help { width: 40px; height: 3px; }
  .part-cards-row-help { flex-direction: column; }
}
@media screen and (max-width: 768px) {
  .section-title-help { font-size: 2.2rem; }
}
/* ====== Responsive Images Fix ====== */
@media screen and (max-width: 1024px) {
  .part-end-img-help {
    max-width: 80%;
  }
}

@media screen and (max-width: 768px) {
  .part-end-img-help {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
  }
}

@media screen and (max-width: 311px) {
  .part-end-img-help {
    max-width: 20%;
    border-radius: 14px;
  }
}
.reveal-help {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease, transform 1s ease;
}

.reveal-help.active-help {
  opacity: 1;
  transform: translateY(0);
}

/* .donation-section-don-bg {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 60%, #dbbc7b 100%);
  position: relative;
  overflow: hidden;
}


.donation-section-don-bg::before,
.donation-section-don-bg::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  z-index: 0;
  animation: float 8s infinite ease-in-out;
}

.donation-section-don-bg::before {
  width: 200px;
  height: 200px;
  background: var(--accent-color);
  top: 10%;
  left: 5%;
}

.donation-section-don-bg::after {
  width: 300px;
  height: 300px;
  background: var(--secondary-color);
  bottom: 15%;
  right: 5%;
}

.donation-container-don-bg {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.donation-header-don-bg {
  text-align: center;
  margin-bottom: 70px;
}

.donation-header-don-bg h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--dark-color);
  animation: fadeDown 1s ease forwards;
  opacity: 0;
}

.donation-header-don-bg p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-color);
  animation: fadeUp 1.2s ease forwards;
  opacity: 0;
}


.donation-grid-don-bg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}


.don-card-don-bg {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.don-card-don-bg:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}


.don-icon-don-bg {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--secondary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: all 0.4s ease;
}

.don-card-don-bg:hover .don-icon-don-bg {
  background: var(--accent-color);
  transform: rotate(15deg) scale(1.2);
}


.don-card-don-bg h3 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}


.don-card-don-bg p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--dark-color);
}


.don-btn-don-bg {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 30px;
  background: var(--accent-color);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.don-btn-don-bg:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}


@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}


@media (max-width: 768px) {
  .donation-header-don-bg h2 { font-size: 2.2rem; }
  .donation-header-don-bg p { font-size: 1rem; }
} */



/* ====== Footer New Style ====== */
footer {
  position: relative;
  background: linear-gradient(135deg, #004d40 40%, #dbbc7b 100%);
  color: white;
  padding: 70px 20px 30px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

footer::before,
footer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  animation: float-footer 12s infinite ease-in-out alternate;
}
footer::before {
  width: 350px;
  height: 350px;
  top: -120px;
  left: -120px;
}
footer::after {
  width: 250px;
  height: 250px;
  bottom: -100px;
  right: -100px;
  animation-delay: 4s;
}

@keyframes float-footer {
  0% { transform: translateY(0) rotate(0); }
  100% { transform: translateY(-20px) rotate(5deg); }
}

/* المحتوى */
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.footer-column {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.footer-column:hover {
  transform: translateY(-6px);
}

/* عناوين الأعمدة */
.footer-column h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #dbbc7b;
  position: relative;
}
.footer-column h3::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #dbbc7b, transparent);
  border-radius: 2px;
}

/* روابط */
.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-column ul li {
  margin-bottom: 10px;
}
.footer-column ul li a {
  color: white;
  text-decoration: none;
  display: inline-block;
  position: relative;
  transition: color 0.3s ease;
}
.footer-column ul li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -4px;
  background: #dbbc7b;
  transition: width 0.3s ease;
}
.footer-column ul li a:hover {
  color: #dbbc7b;
}
.footer-column ul li a:hover::after {
  width: 100%;
}

/* Contact Info */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: block !important;
}

.contact-info li {
  display: block !important;   
  margin-bottom: 12px;
  color: white;
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-info li i {
  display: inline-block;       
  margin-right: 8px;
  color: #dbbc7b;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  color: white;
  transition: all 0.4s ease;
}
.footer-social a:hover {
  background: #dbbc7b;
  color: #004d40;
  transform: rotate(15deg) scale(1.1);
}

/* Newsletter */
.newsletter-form {
  display: flex;
  margin-top: 20px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  outline: none;
}
.newsletter-form button {
  padding: 0 25px;
  background: #dbbc7b;
  color: #004d40;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.newsletter-form button:hover {
  background: #b9995c;
  color: white;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.9rem;
  color: #ddd;
  position: relative;
  z-index: 2;
}
.footer-bottom p {
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-info li {
    justify-content: center;
  }
  .footer-social {
    justify-content: center;
  }
}
