:root {
  --primary: #651e1a;
  --secondary: #f4a460;
  --light: #fff;
  --shadow: 0 2px 8px rgba(0,0,0,0.07);
}
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.header {
  background: var(--light);
  box-shadow: var(--shadow);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 100;
}
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo {
  height: 52px;
  width: auto;
}
nav {
  position: relative;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  cursor: pointer;
}
.nav-list {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}
.nav-list li {
  position: relative;
}
.nav-list > li > a {
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 4px;
  transition: background 0.2s;
}
.nav-list > li > a:hover,
.nav-list > li > a:focus {
  background: var(--secondary);
  color: var(--light);
}
.has-submenu > a i {
  margin-left: 5px;
  font-size: 0.9em;
}
.submenu {
  display: none;
  position: absolute;
  left: 0;
  top: 110%;
  background: var(--light);
  box-shadow: var(--shadow);
  min-width: 210px;
  border-radius: 5px;
  z-index: 10;
  padding: 0.5rem 0;
}
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  display: block;
}
.submenu li {
  position: relative;
}
.submenu a {
  display: block;
  padding: 10px 22px;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  border-radius: 3px;
  transition: background 0.2s;
}
.submenu a:hover,
.submenu a:focus {
  background: var(--secondary);
  color: var(--light);
}
.submenu-right {
  left: 100%;
  top: 0;
}
@media (max-width: 900px) {
  .header-flex {
    height: auto;
    flex-direction: column;
    align-items: stretch;
  }
  .logo {
    height: 48px;
  }
}
@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--light);
    position: absolute;
    top: 70px;
    right: 0;
    width: 250px;
    box-shadow: var(--shadow);
    border-radius: 0 0 8px 8px;
    z-index: 99;
  }
  .nav-list.open {
    display: flex;
  }
  .nav-list > li > a {
    padding: 15px 22px;
    border-radius: 0;
  }
  .submenu {
    position: static;
    box-shadow: none;
    min-width: 100%;
    border-radius: 0;
    padding: 0;
  }
  .submenu-right {
    left: 0;
    top: 0;
  }
}
section {
  min-height: 100px;
  padding: 40px 0;
}

/* বাংলা নির্দেশনা:
১. এই CSS কেবলমাত্র হিরো সেকশনের জন্য।
২. প্রাইমারি কালার #651e1a, ফন্ট Inter/Arial।
৩. ব্যাকগ্রাউন্ডে গ্র্যাডিয়েন্ট ও ৩ডি ছবি ব্যবহারের জন্য স্টাইল।
৪. মোবাইল-ফার্স্ট ও রেসপন্সিভ ডিজাইন।
*/

.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #651e1a 80%, #fff 100%);
  overflow: hidden;
}

.hero-section .hero-bg-img {
  /* বাংলা নির্দেশনা: এখানে ৩ডি ফার্ম/ভেজিটেবল ডেমো ছবি দিন */
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50vw;
  max-width: 600px;
  min-width: 250px;
  opacity: 0.16;
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  color: #fff;
  text-align: left;
  padding: 2rem;
}

.hero-title {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  line-height: 1.15;
  letter-spacing: -1px;
  font-family: 'Inter', Arial, sans-serif;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2.2rem;
  line-height: 1.5;
  color: #fff;
  max-width: 500px;
}

.hero-cta {
  background: #FFD700;
  color: #651e1a;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  box-shadow: 0 4px 18px rgba(101,30,26,0.13);
  display: inline-block;
  border: none;
  cursor: pointer;
}
.hero-cta:hover, .hero-cta:focus {
  background: #651e1a;
  color: #FFD700;
  transform: scale(1.06);
}

@media (max-width: 900px) {
  .hero-content {
    text-align: center;
    margin: 0 auto;
    padding: 1.5rem 0.5rem;
  }
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-section .hero-bg-img {
    width: 70vw;
    min-width: 150px;
  }
}

@media (max-width: 600px) {
  .hero-section {
    flex-direction: column;
    padding: 0;
  }
  .hero-content {
    padding: 1.2rem 0.4rem 2.5rem 0.4rem;
  }
  .hero-title {
    font-size: 1.35rem;
  }
  .hero-section .hero-bg-img {
    display: none;
  }
}

/* Section Project Overview (Scroll-triggered Fade-in)
/* বাংলা নির্দেশনা:
১. এই CSS কেবলমাত্র Project Overview সেকশনের জন্য।
২. স্ক্রল-ট্রিগার্ড fade-in অ্যানিমেশন, কার্ড লেআউট, ৩ডি আইকন ও মোবাইল রেসপন্সিভ ডিজাইন অন্তর্ভুক্ত।
৩. .fade-in ক্লাসে অ্যানিমেশন যুক্ত করুন।
*/

.project-overview-section {
  background: #f8f6f4;
  padding: 4rem 0 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  color: #651e1a;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: 'Inter', Arial, sans-serif;
}

.overview-content {
  max-width: 850px;
  color: #333;
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(101,30,26,0.07);
  padding: 2rem 2rem 1.5rem 2rem;
}

.overview-stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  margin: 2.5rem 0;
}

.overview-stat-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(101,30,26,0.09);
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 180px;
  max-width: 220px;
  flex: 1 1 180px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.overview-stat-card:hover {
  transform: translateY(-7px) scale(1.04);
  box-shadow: 0 8px 30px rgba(101,30,26,0.17);
}

.overview-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  /* বাংলা নির্দেশনা: এখানে ৩ডি আইকন ইমেজ দিন */
}

.stat-number {
  font-size: 1.7rem;
  font-weight: 700;
  color: #651e1a;
  display: block;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 1rem;
  color: #555;
  text-align: center;
}

.overview-goals {
  max-width: 850px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(101,30,26,0.07);
  padding: 2rem 2rem 1.5rem 2rem;
  margin-top: 2rem;
}

.overview-goals h3 {
  color: #651e1a;
  font-size: 1.25rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.overview-goals ul {
  margin-bottom: 1.2rem;
  padding-left: 1.3rem;
}

.overview-goals li {
  color: #333;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  line-height: 1.6;
}

/* Fade-in Animation */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(.4,0,.2,1), transform 0.9s cubic-bezier(.4,0,.2,1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* মোবাইল রেসপন্সিভ */
@media (max-width: 900px) {
  .overview-content, .overview-goals {
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .overview-stats-container {
    gap: 1rem;
  }
}

@media (max-width: 600px) {
  .project-overview-section {
    padding: 2rem 0 1.5rem 0;
  }
  .section-title {
    font-size: 1.3rem;
  }
  .overview-stats-container {
    flex-direction: column;
    align-items: center;
  }
  .overview-stat-card {
    min-width: 0;
    max-width: 95vw;
    width: 100%;
  }
}

/* Section 3. Objectives & Goals (Horizontal Scroll/Reveal)
/* বাংলা নির্দেশনা:
১. .card-row কন্টেইনারে flexbox ব্যবহার করুন যাতে কার্ডগুলো হরাইজন্টাল লাইনে থাকে।
২. কার্ডগুলো রেসপন্সিভভাবে wrap হবে (বড় স্ক্রিনে 3-4টি, ছোট স্ক্রিনে 1-2টি)।
৩. .card-এ ডাইনামিক শ্যাডো, হোভার ইফেক্ট ও fade-in অ্যানিমেশন দিন।
*/

.objectives-goals-section {
  background: #fff;
  padding: 4rem 0 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  color: #651e1a;
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.2rem;
  font-family: 'Inter', Arial, sans-serif;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 1200px;
}

.card {
  background: #f8f6f4;
  border-radius: 22px;
  box-shadow: 0 4px 22px rgba(101,30,26,0.13);
  padding: 2.2rem 1.3rem 1.7rem 1.3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 1 calc(33% - 2rem);
  min-width: 260px;
  max-width: 340px;
  opacity: 0;
  transform: translateY(60px) scale(0.97);
  transition: opacity 0.9s cubic-bezier(.4,0,.2,1), transform 0.9s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
  will-change: transform, box-shadow;
}

.card.card-reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.card:hover {
  transform: scale(1.045) translateY(-6px);
  box-shadow: 0 12px 32px rgba(101,30,26,0.19);
  z-index: 2;
}

.card-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 1.2rem;
  filter: drop-shadow(0 8px 18px rgba(101,30,26,0.10));
  /* বাংলা নির্দেশনা: এখানে ৩ডি আইকন ইমেজ দিন */
}

.card h3 {
  color: #651e1a;
  font-size: 1.28rem;
  margin-bottom: 0.8rem;
  font-weight: 700;
  text-align: center;
}

.card p {
  color: #333;
  font-size: 1.08rem;
  text-align: center;
  line-height: 1.6;
}

/* মোবাইল রেসপন্সিভ */
@media (max-width: 900px) {
  .card-row {
    gap: 1.3rem;
  }
  .card {
    flex: 0 1 calc(48% - 1.3rem);
    min-width: 180px;
    max-width: 98vw;
  }
}
@media (max-width: 600px) {
  .card-row {
    gap: 1rem;
  }
  .card {
    flex: 0 1 98vw;
    min-width: 98vw;
    max-width: 98vw;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
  }
  .section-title {
    font-size: 1.25rem;
  }
}

/* Project Activities (Interactive Timeline or Cards)
/* বাংলা নির্দেশনা:
১. টাইমলাইন ও কার্ড লেআউটের জন্য CSS।
২. ডেস্কটপে টাইমলাইন (বামে লাইন, ডানে কার্ড), মোবাইলে কার্ড স্ট্যাক।
৩. .activity-reveal ক্লাসে fade-in অ্যানিমেশন দিন।
*/

.project-activities-section {
  background: #f8f6f4;
  padding: 4rem 0 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  color: #651e1a;
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.2rem;
  font-family: 'Inter', Arial, sans-serif;
}

.activity-timeline {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.activity-step {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.9s cubic-bezier(.4,0,.2,1), transform 0.9s cubic-bezier(.4,0,.2,1);
  position: relative;
}

.activity-step.activity-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.activity-icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;
  filter: drop-shadow(0 8px 18px rgba(101,30,26,0.10));
  /* বাংলা নির্দেশনা: এখানে ৩ডি আইকন ইমেজ দিন */
}

.activity-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 22px rgba(101,30,26,0.13);
  padding: 1.7rem 1.3rem 1.4rem 1.3rem;
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.activity-card h3 {
  color: #651e1a;
  font-size: 1.18rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.activity-card p {
  color: #333;
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

/* Timeline vertical line (desktop only) */
.activity-timeline::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(#FFD700, #651e1a);
  border-radius: 2px;
  z-index: 0;
  opacity: 0.35;
}

.activity-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 65px;
  top: 80px;
  width: 2px;
  height: calc(100% - 80px);
  background: #FFD700;
  opacity: 0.18;
}

@media (max-width: 700px) {
  .activity-timeline {
    gap: 1.2rem;
    max-width: 98vw;
  }
  .activity-step {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .activity-card {
    align-items: center;
    padding: 1.1rem 0.7rem 1rem 0.7rem;
    width: 100%;
  }
  .activity-timeline::before,
  .activity-step:not(:last-child)::after {
    display: none;
  }
}

/* section Geographic Focus (Map Animation)
/* বাংলা নির্দেশনা:
১. ম্যাপ কন্টেইনার, শিরোনাম, লেজেন্ড ও pulse marker-এর জন্য CSS।
২. রেসপন্সিভ ও ইউজার-ফ্রেন্ডলি ডিজাইন নিশ্চিত করুন।
*/

.geo-section {
  background: #fff;
  padding: 4rem 0 3rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map-title {
  color: #651e1a;
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 1.2rem;
  font-family: 'Inter', Arial, sans-serif;
}

.map-legend {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.08rem;
  color: #651e1a;
  margin-bottom: 1.2rem;
}

.pulse-marker {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #FFD700;
  box-shadow: 0 0 0 0 #FFD700;
  animation: pulse 1.5s infinite;
  border: 2px solid #651e1a;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255,215,0,0.7);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(255,215,0,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,215,0,0);
  }
}

.map-container {
  width: 100%;
  max-width: 700px;
  height: 380px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(101,30,26,0.13);
  margin: 0 auto;
}

/* মোবাইল রেসপন্সিভ */
@media (max-width: 800px) {
  .map-container {
    max-width: 98vw;
    height: 250px;
  }
  .map-title {
    font-size: 1.25rem;
  }
}

/* section Impact & Beneficiaries
/* বাংলা নির্দেশনা:
১. ইমপ্যাক্ট ও সুবিধাভোগী সেকশনের জন্য গ্রিড ও কার্ড স্টাইলিং।
২. .reveal ক্লাসে fade-in অ্যানিমেশন দিন।
৩. মোবাইল ও ডেস্কটপে রেসপন্সিভ রাখুন।
*/

.impact-section {
  background: #fff;
  padding: 4rem 1rem;
}

.section-title {
  color: #651e1a;
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.2rem;
  font-family: 'Inter', Arial, sans-serif;
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 2rem auto;
}

.stat-card {
  background: #f8f6f4;
  padding: 2rem 1rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(101,30,26,0.08);
  text-align: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.stat-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #651e1a;
}

.stat-label {
  font-size: 1.1rem;
  color: #333;
  margin-top: 0.2rem;
}

.beneficiary-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 3rem auto;
}

.beneficiary-card {
  background: #f8f6f4;
  padding: 2rem 1rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(101,30,26,0.08);
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.beneficiary-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.beneficiary-card h3 {
  color: #651e1a;
  font-size: 1.18rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
}

.beneficiary-card ul {
  margin: 0;
  padding-left: 1.2rem;
  color: #333;
  font-size: 1.05rem;
}

@media (max-width: 768px) {
  .impact-stats, .beneficiary-list {
    grid-template-columns: 1fr;
  }
}

/* Section Project Highlights */
/* বাংলা নির্দেশনা:
১. গ্যালারির জন্য গ্রিড লেআউট, ইমেজ হোভার জুম/টিল্ট, ক্যাপশন স্টাইলিং।
২. মোবাইল ও ডেস্কটপে রেসপন্সিভ রাখুন।
*/

.highlights-section {
  background: #fff;
  padding: 4rem 1rem;
}

.section-title {
  color: #651e1a;
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2.2rem;
  font-family: 'Inter', Arial, sans-serif;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 4px 22px rgba(101,30,26,0.08);
  background: #f8f6f4;
  transition: box-shadow 0.3s;
}

.gallery-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

.gallery-item:hover .gallery-img {
  transform: scale(1.08) rotateZ(-1.5deg);
  box-shadow: 0 8px 32px rgba(101,30,26,0.18);
}

.gallery-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: rgba(101,30,26,0.85);
  color: #fff;
  font-size: 1rem;
  padding: 0.6rem 1rem;
  opacity: 0.96;
  text-align: left;
  border-radius: 0 0 15px 15px;
  pointer-events: none;
  transition: background 0.2s;
}

@media (max-width: 700px) {
  .gallery-img { height: 150px; }
  .gallery-grid { gap: 1rem; }
}

/* Section Partners & Support */
/* বাংলা নির্দেশনা: লোগো গ্রিড ও অ্যানিমেশন স্টাইলিং */
.partners-section {
  background: #f8f6f4;
  padding: 4rem 1rem;
  text-align: center;
}

.partner-logos {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 2rem auto;
}

.partner-logo {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(101,30,26,0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}

.partner-logo.reveal {
  opacity: 1;
  transform: translateY(0);
}

.partner-logo:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 8px 32px rgba(101,30,26,0.15);
}

.partner-logo img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .partner-logos {
    gap: 2rem;
    padding: 0 1rem;
  }
  .partner-logo img {
    height: 50px;
  }
}

/* Section Get Involved / Contact */
/* বাংলা নির্দেশনা:
১. এনিমেটেড CTA, কন্টাক্ট ফর্ম ও সংস্থা তথ্যের জন্য স্টাইলিং।
২. .cta-animated-এ pulse/bounce অ্যানিমেশন দিন।
৩. মোবাইল ও ডেস্কটপে রেসপন্সিভ রাখুন।
*/

.get-involved-section {
  background: #f8f6f4;
  padding: 4rem 1rem 3rem 1rem;
  text-align: center;
}

.section-title {
  color: #651e1a;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 2rem;
  font-family: 'Inter', Arial, sans-serif;
}

.cta-animated {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
}

.cta-animated span {
  font-size: 1.25rem;
  color: #651e1a;
  animation: bounce 2.1s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0);}
  50% { transform: translateY(-10px);}
}

.cta-btn {
  background: #FFD700;
  color: #651e1a;
  padding: 0.9rem 2.2rem;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(101,30,26,0.13);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  margin-top: 0.5rem;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #651e1a;
  color: #FFD700;
  transform: scale(1.06);
}

.contact-form-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: flex-start;
  flex-wrap: wrap;
}

.contact-form {
  background: #fff;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(101,30,26,0.10);
  min-width: 270px;
  flex: 1 1 320px;
  text-align: left;
}

.contact-form h3 {
  color: #651e1a;
  margin-bottom: 1.2rem;
  font-size: 1.18rem;
  font-weight: 700;
}

.contact-form label {
  display: block;
  margin-bottom: 1rem;
  color: #333;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.3rem;
  border: 1px solid #ddd;
  border-radius: 7px;
  font-size: 1rem;
  font-family: 'Inter', Arial, sans-serif;
  background: #f8f6f4;
  transition: border 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #651e1a;
  outline: none;
}

.form-message {
  margin-top: 1rem;
  color: #2E6F40;
  font-weight: 600;
}

.org-info {
  background: #fff;
  padding: 2.2rem 1.5rem 1.5rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(101,30,26,0.10);
  min-width: 220px;
  flex: 1 1 220px;
  margin-top: 1.3rem;
  text-align: left;
}

.org-info h4 {
  color: #651e1a;
  font-size: 1.15rem;
  margin-bottom: 0.7rem;
}

.org-info a {
  color: #2E6F40;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .contact-form-container {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .org-info, .contact-form {
    min-width: 0;
    width: 100%;
  }
}



/* Section Footer */
.footer-section {
  background: #651e1a;
  color: #fff;
  padding: 48px 0 18px 0;
  font-size: 1rem;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  text-align: left;
  width: 100%;
  justify-content: center;
}

.footer-logo {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: contain;
  background: #fff;
  padding: 3px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.13);
}

.footer-org-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer-org-name {
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}
.footer-org-address,
.footer-org-contact {
  font-size: 0.97rem;
  color: #f4eaea;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0.5rem 0 0.5rem 0;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 2px 8px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.footer-links a:hover,
.footer-links a:focus {
  background: #fff;
  color: #651e1a;
  outline: none;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 0.5rem;
}
.footer-social-icon img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #fff;
  padding: 4px;
  transition: box-shadow 0.2s;
}
.footer-social-icon:hover img,
.footer-social-icon:focus img {
  box-shadow: 0 2px 10px #fff5;
}

.footer-newsletter {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 0.5rem;
  width: 100%;
  max-width: 400px;
}
.footer-newsletter input[type="email"] {
  padding: 0.6rem 1rem;
  border-radius: 30px;
  border: none;
  font-size: 1rem;
  width: 70%;
  outline: none;
}
.newsletter-btn {
  background: #fff;
  color: #651e1a;
  font-weight: 700;
  border: none;
  border-radius: 30px;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.newsletter-btn:hover,
.newsletter-btn:focus {
  background: #f9f8fb;
  color: #a13e3a;
}

.footer-bottom {
  margin-top: 1.2rem;
  font-size: 0.97rem;
  color: #f4eaea;
  text-align: center;
  width: 100%;
}

/* Visually hidden for accessibility */
.visually-hidden {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 700px) {
  .footer-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.7rem;
  }
  .footer-newsletter {
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
  }
}

/* ===== back-to-top ===== */
/* Back to Top Button Styles */
.back-to-top {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  background: #651e1a;
  color: #fff;
  border: none;
  outline: none;
  border-radius: 50px;
  padding: 0.7rem 1.5rem 0.7rem 1.1rem;
  font-size: 1.15rem;
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(101,30,26,0.17);
  cursor: pointer;
  opacity: 0.92;
  transition: background 0.2s, opacity 0.2s, transform 0.18s;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.back-to-top:hover,
.back-to-top:focus {
  background: #a13e3a;
  opacity: 1;
  transform: translateY(-4px) scale(1.04);
  outline: 2px solid #fff;
}
.back-to-top-icon {
  font-size: 1.35rem;
  display: inline-block;
  vertical-align: middle;
}
.back-to-top-text {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-block;
}

/* Responsive: smaller on mobile */
@media (max-width: 600px) {
  .back-to-top {
    bottom: 16px;
    right: 16px;
    font-size: 1rem;
    padding: 0.6rem 1rem 0.6rem 0.8rem;
  }
  .back-to-top-icon { font-size: 1.1rem; }
  .back-to-top-text { font-size: 0.96rem; }
}

/* ===== Who We Are Section ===== */

/* ===== What We Do (Programs & Projects) ===== */

/* =====  Impact & Success Stories Section ===== */

/* ===== Knowledge Bank Section ===== */

/* ===== Connect With Us Section ===== */

/* ===== Footer Section ===== */


/* ===== New Section ===== */
/* ===== New Section ===== */
/* ===== New Section ===== */
/* ===== New Section ===== */