: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;
}

/* -------------------------------------------------------- Hero Section-------------------------------------------------------- -- */
/* হিরো সেকশন স্টাইল */
/* Hero Section Styles */
.hero-section {
  background: 
    linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.92)),
    url('images/3D\ Community\ Empowerment\ Visualization.png') no-repeat center center;
  background-size: cover;
  padding: 4rem 1rem;
  min-height: 90vh;
  display: flex;
  align-items: center;
  color: #651e1a;
  position: relative;
  box-sizing: border-box;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-text {
  z-index: 2;
}

.hero-text h1 {
  font-family: 'DM Sans', sans-serif;
  color: #651e1a;
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.2s;
}

.hero-text p {
  font-size: 1.25rem;
  color: #3d1c18;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.4s;
}

.cta-btn {
  background: #651e1a;
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 18px rgba(101, 30, 26, 0.08);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.6s;
  letter-spacing: 0.5px;
}

.cta-btn:hover, .cta-btn:focus {
  background: #8b2a24;
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 8px 24px rgba(101, 30, 26, 0.16);
  outline: none;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards 0.8s;
}

.hero-visual img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.10);
  object-fit: cover;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px);}
  to { opacity: 1; transform: translateY(0);}
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .hero-visual {
    order: -1;
    margin-bottom: 2rem;
  }
  .hero-text h1 {
    font-size: 2.1rem;
  }
}

@media (max-width: 600px) {
  .hero-section {
    padding: 2.5rem 0.5rem;
    min-height: 70vh;
  }
  .hero-text h1 {
    font-size: 1.3rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
}

/* -------------------------------------------------------- Organizational Structure Grid Section-------------------------------------------------------- -- */
/* বাংলা নির্দেশনা:
- গ্রিড সেকশনকে রেস্পন্সিভ ও মার্জিনসহ ডিজাইন করুন
- কার্ডে শ্যাডো, হোভার ইফেক্ট ও আইকন সাইজ ঠিক রাখুন
- সংখ্যা কাউন্টার ও শিরোনাম স্টাইল করুন
*/

.structure-grid-section {
  background: #f5f0e6;
  padding: 4rem 0 3rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #651e1a;
  margin-bottom: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.structure-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.structure-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(101,30,26,0.10);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.35s cubic-bezier(.4,1.4,.5,1), box-shadow 0.35s;
  position: relative;
  min-height: 370px;
}

.structure-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px rgba(101,30,26,0.16);
}

.structure-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 1.3rem;
  display: block;
}

.structure-card h3 {
  font-size: 1.4rem;
  color: #651e1a;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.structure-number {
  font-size: 1.1rem;
  color: #d4af37;
  margin-bottom: 1.1rem;
}

.count {
  font-size: 2.2rem;
  color: #651e1a;
  font-weight: 700;
  margin-right: 0.2em;
  vertical-align: middle;
}

.structure-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: 0.5rem;
}

.structure-card ul li {
  color: #4a4a4a;
  font-size: 1rem;
  margin-bottom: 0.4rem;
  line-height: 1.5;
  position: relative;
  padding-left: 1.2em;
}

.structure-card ul li::before {
  content: "•";
  color: #d4af37;
  position: absolute;
  left: 0;
  font-size: 1.2em;
  line-height: 1;
}

@media (max-width: 900px) {
  .structure-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .structure-card {
    min-height: 340px;
  }
}

@media (max-width: 600px) {
  .structure-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 0.7rem;
  }
  .structure-card {
    min-height: 0;
    padding: 2rem 1rem 1.5rem 1rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
}

/*------------------------------------------- Program Objectives Section ------------------------------------------------------------------*/

/* বাংলা নির্দেশনা:
- Objectives সেকশনকে গ্রিড লেআউট ও রেস্পন্সিভ করুন
- কার্ডে শ্যাডো, হোভার ইফেক্ট ও আইকন সাইজ ঠিক রাখুন
- শিরোনাম ও টেক্সট স্টাইল করুন
*/

.objectives-section {
  background: #fff;
  padding: 4rem 0 3rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #651e1a;
  margin-bottom: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.objectives-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.objective-card {
  background: #f5f0e6;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(101,30,26,0.08);
  padding: 2.2rem 1.2rem 2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.35s cubic-bezier(.4,1.4,.5,1), box-shadow 0.35s;
  min-height: 320px;
  text-align: center;
}

.objective-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(101,30,26,0.14);
}

.objective-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.1rem;
  display: block;
}

.objective-card h3 {
  font-size: 1.2rem;
  color: #651e1a;
  margin-bottom: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.objective-card p {
  color: #4a4a4a;
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .objectives-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .objective-card {
    min-height: 260px;
  }
}

@media (max-width: 600px) {
  .objectives-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 0.7rem;
  }
  .objective-card {
    min-height: 0;
    padding: 1.5rem 0.8rem 1.2rem 0.8rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
}

/*------------------------------------------- Target Beneficiaries Section------------------------------------------------------------------*/
/* বাংলা নির্দেশনা:
- গ্রিড সেকশনকে রেস্পন্সিভ ও মার্জিনসহ ডিজাইন করুন
- কার্ডে শ্যাডো, হোভার ইফেক্ট ও আইকন সাইজ ঠিক রাখুন
- শিরোনাম ও টেক্সট স্টাইল করুন
*/

.beneficiaries-section {
  background: #f5f0e6;
  padding: 4rem 0 3rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #651e1a;
  margin-bottom: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.beneficiaries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.beneficiary-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(101,30,26,0.08);
  padding: 2.2rem 1.2rem 2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.35s cubic-bezier(.4,1.4,.5,1), box-shadow 0.35s;
  min-height: 320px;
  text-align: center;
}

.beneficiary-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(101,30,26,0.14);
}

.beneficiary-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.1rem;
  display: block;
}

.beneficiary-card h3 {
  font-size: 1.2rem;
  color: #651e1a;
  margin-bottom: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.beneficiary-card p {
  color: #4a4a4a;
  font-size: 1rem;
  margin: 0;
  line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 992px) {
  .beneficiaries-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .beneficiary-card {
    min-height: 260px;
  }
}

@media (max-width: 600px) {
  .beneficiaries-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 0.7rem;
  }
  .beneficiary-card {
    min-height: 0;
    padding: 1.5rem 0.8rem 1.2rem 0.8rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
}

/* ------------------------------------------- Program Coordination Timeline----------------------------------------------------------------- */
/* বাংলা নির্দেশনা:
- টাইমলাইন সেকশনকে রেস্পন্সিভ ও ভিজ্যুয়াল টাইমলাইন স্টাইল দিন
- আইকন ও কনটেন্ট সুন্দরভাবে অ্যালাইন করুন
- টাইমলাইন পয়েন্ট ও লাইন স্টাইল করুন
*/

.timeline-section {
  background: #fff;
  padding: 4rem 0 3rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #651e1a;
  margin-bottom: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  width: 4px;
  height: 100%;
  background: #d4af37;
  border-radius: 2px;
  z-index: 0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 2.5rem;
  min-height: 110px;
}

.timeline-icon {
  position: relative;
  z-index: 2;
  width: 64px;
  height: 64px;
  background: #f5f0e6;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(101,30,26,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 2rem;
  border: 2px solid #d4af37;
  flex-shrink: 0;
}

.timeline-icon img {
  width: 36px;
  height: 36px;
}

.timeline-content {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(101,30,26,0.06);
  padding: 1.2rem 1.5rem 1.2rem 1.5rem;
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
}

.timeline-content h3 {
  font-size: 1.2rem;
  color: #651e1a;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.timeline-content p {
  color: #4a4a4a;
  font-size: 1rem;
  margin-bottom: 0.7rem;
  line-height: 1.5;
}

.timeline-date {
  font-size: 0.95rem;
  color: #d4af37;
  font-weight: 600;
  letter-spacing: 0.5px;
}

@media (max-width: 700px) {
  .timeline {
    padding: 0 0.3rem;
  }
  .timeline-item {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 2rem;
  }
  .timeline-icon {
    margin-bottom: 0.7rem;
    margin-right: 0;
  }
  .timeline-content {
    padding: 1rem 0.8rem 1rem 0.8rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .timeline::before {
    left: 24px;
  }
}
/* ------------------------------------------- Success Stories Carousel------------------------------------------------------------------ */
/* বাংলা নির্দেশনা:
- ক্যারোসেল ট্র্যাককে ফ্লেক্স ও ওভারফ্লো হিডেন করুন
- স্লাইডে শ্যাডো, রাউন্ডেড ইমেজ ও কনটেন্ট স্টাইল করুন
- ন্যাভিগেশন বাটন ও ডটস স্টাইল করুন
*/

.success-carousel-section {
  background: #fff;
  padding: 4rem 0 3rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #651e1a;
  margin-bottom: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.carousel-container {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.carousel-track {
  display: flex;
  overflow: hidden;
  width: 100%;
  min-height: 320px;
  position: relative;
}

.carousel-slide {
  min-width: 100%;
  transition: transform 0.7s cubic-bezier(.4,1.4,.5,1), opacity 0.7s;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #f5f0e6;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(101,30,26,0.10);
  padding: 2.2rem 1.2rem 2rem 1.2rem;
  position: absolute;
  left: 0;
  top: 0;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
  z-index: 2;
  transform: scale(1);
}

.story-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.2rem;
  border: 3px solid #d4af37;
  box-shadow: 0 2px 12px rgba(101,30,26,0.08);
}

.story-content {
  text-align: center;
}

.story-text {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 1.2rem;
  font-style: italic;
  line-height: 1.6;
}

.story-meta {
  font-size: 1rem;
  color: #651e1a;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.carousel-btn {
  background: #651e1a;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 1rem;
  opacity: 0.85;
}

.carousel-btn:hover {
  background: #d4af37;
  color: #651e1a;
}

.carousel-btn.prev { order: 0; }
.carousel-btn.next { order: 2; }

.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  gap: 0.7rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d4af37;
  opacity: 0.5;
  cursor: pointer;
  transition: opacity 0.25s;
}

.carousel-dot.active {
  opacity: 1;
  background: #651e1a;
}

@media (max-width: 700px) {
  .carousel-container {
    max-width: 98vw;
  }
  .carousel-slide {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
}

@media (max-width: 500px) {
  .carousel-slide {
    min-width: 100%;
    padding: 0.8rem 0.2rem 1rem 0.2rem;
  }
  .story-photo {
    width: 60px;
    height: 60px;
  }
  .section-title {
    font-size: 1.3rem;
  }
}

/* ------------------------------------------- Team & Leadership Section----------------------------------------------------------------- */
/* Team & Leadership Section Styles */
.team-section {
  background: #f5f0e6;
  padding: 4rem 0 3rem 0;
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  color: #651e1a;
  margin-bottom: 2.5rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* প্রথম রোতে ৩টি কার্ড, দ্বিতীয় রোতে ৬টি কার্ড অটো-র‍্যাপ হবে */
.team-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(101,30,26,0.10);
  padding: 2.2rem 1.2rem 2rem 1.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.35s cubic-bezier(.4,1.4,.5,1), box-shadow 0.35s;
  min-height: 340px;
}

.team-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px rgba(101,30,26,0.14);
}

.team-photo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: fill;
  margin-bottom: 1.2rem;
  border: 3px solid #d4af37;
  box-shadow: 0 2px 12px rgba(101,30,26,0.08);
}

.team-name {
  font-size: 1.2rem;
  color: #651e1a;
  margin-bottom: 0.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.team-role {
  color: #d4af37;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.team-bio {
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .team-grid {
    max-width: 1000px;
    gap: 2rem;
  }
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .team-card {
    min-height: 260px;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0 0.7rem;
  }
  .team-card {
    min-height: 0;
    padding: 1.5rem 0.8rem 1.2rem 0.8rem;
  }
  .section-title {
    font-size: 1.5rem;
  }
}

/* Fade-in Animation (JS Intersection Observer support) */
.team-card { opacity: 0; transform: translateY(40px) scale(0.98); }
.team-card.fade-in { opacity: 1 !important; transform: translateY(0) scale(1) !important; transition: all 0.8s cubic-bezier(.4,1.4,.5,1); }





































/* Section 10: 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 ===== */