: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 {
  padding: 120px 0;
  background: linear-gradient(45deg, #f5f0eb 60%, #651e1a40 40%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* বাংলা: টেক্সট অ্যানিমেশন */
.hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s forwards;
  animation-delay: 0.3s;
}

.hero-title {
  font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  color: #651e1a;
  margin-bottom: 1.5rem;
}

.hero-tagline {
  font-size: 1.5rem;
  color: #3a3a3a;
  margin-bottom: 1rem;
}

.hero-cta {
  background: #d4af37;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  display: inline-block;
  transition: transform 0.3s;
}

.hero-cta:hover {
  transform: scale(1.05);
}

/* বাংলা: প্যারালাক্স ইফেক্ট */
.parallax-image {
  max-width: 100%;
  animation: float 4s ease-in-out infinite;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}
/* বাংলা: প্রজেক্ট ওভারভিউ সেকশন স্টাইল */
.project-overview {
  background-color: #f9f9f9;
  padding: 4rem 2rem;
  font-family: 'Inter', sans-serif;
  color: #3a3a3a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: start;
}

.overview-text h2 {
  color: #651e1a;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 2rem;
}

.overview-text p {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.icon-text {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.overview-icon {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.icon-text:hover .overview-icon {
  transform: scale(1.1);
}

/* Animation initial states */
.left-slide {
  opacity: 0;
  transform: translateX(-50px);
  animation-fill-mode: forwards;
}

.right-slide {
  opacity: 0;
  transform: translateX(50px);
  animation-fill-mode: forwards;
}

/* Animation keyframes */
@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .overview-grid {
    grid-template-columns: 1fr;
  }
  .left-slide, .right-slide {
    transform: translateX(0);
    opacity: 1;
    animation: none !important;
  }
}
/* বাংলা: Objectives & Goals সেকশন স্টাইল */
.objectives-goals {
  background-color: #fff;
  padding: 4rem 2rem;
  font-family: 'Inter', sans-serif;
  color: #3a3a3a;
}

.objectives-goals h2 {
  color: #651e1a;
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.objectives-list {
  list-style: none;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
}

.objective-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation-fill-mode: forwards;
}

.objective-item:nth-child(1) {
  animation-delay: 0.3s;
}

.objective-item:nth-child(2) {
  animation-delay: 0.7s;
}

.objective-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 2px rgba(101,30,26,0.3));
}

.objective-text h3 {
  color: #651e1a;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.objective-text p {
  font-size: 1.125rem;
  line-height: 1.6;
}

/* Keyframes for fade-in and slide-up */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .objective-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .objective-icon {
    margin-bottom: 1rem;
  }
}
/* বাংলা: Key Activities সেকশন স্টাইল */
.key-activities {
  background-color: #fff;
  padding: 4rem 2rem;
  font-family: 'Inter', sans-serif;
  color: #3a3a3a;
}

.key-activities h2 {
  color: #651e1a;
  font-weight: 700;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}

.accordion {
  max-width: 900px;
  margin: 0 auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(101,30,26,0.1);
  overflow: hidden;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  background: #f9f9f9;
  color: #651e1a;
  cursor: pointer;
  padding: 1.25rem 2rem;
  width: 100%;
  text-align: left;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  outline: none;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background: #651e1a10;
}

.accordion-header[aria-expanded="true"] {
  background: #651e1a20;
  box-shadow: 0 4px 15px rgba(101,30,26,0.2);
  transform: scale(1.02);
}

.accordion-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 2rem;
  background: #fff;
  font-size: 1rem;
  line-height: 1.6;
  color: #3a3a3a;
  transition: max-height 0.5s ease, padding 0.5s ease;
}

.accordion-content p {
  margin: 1rem 0;
}

/* When expanded */
.accordion-item.active .accordion-content {
  max-height: 200px; /* Adjust as needed */
  padding: 1rem 2rem;
}

/* Hover scale and shadow for interactivity */
.accordion-item:hover {
  box-shadow: 0 8px 20px rgba(101,30,26,0.15);
  transform: scale(1.01);
}

/* Responsive */
@media (max-width: 768px) {
  .accordion-header {
    font-size: 1.1rem;
    padding: 1rem 1.5rem;
  }
  .accordion-content {
    font-size: 0.95rem;
  }
}

/*-GEO-------*/
.geo-section {
  background: #f5f0eb;
  padding: 4rem 1rem;
  font-family: 'Inter', sans-serif;
}

.map-title {
  color: #651e1a;
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.map-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 2rem;
  font-weight: 600;
  color: #3a3a3a;
}

.pulse-marker {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #d4af37;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  border: 2px solid #651e1a;
}

.map-container {
  width: 100%;
  max-width: 900px;
  height: 500px;
  margin: 0 auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(101,30,26,0.15);
}

@keyframes pulse {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(2.5); opacity: 0; }
}

@media (max-width: 768px) {
  .map-container {
      height: 300px;
      max-width: 95vw;
  }
  .map-title {
      font-size: 1.8rem;
  }
}


/* বাংলা নির্দেশনা: বেনিফিশিয়ারি সেকশন স্টাইল */
.beneficiaries-section {
  padding: 4rem 1rem;
  background: #f9f9f9;
  font-family: 'Inter', sans-serif;
}

.section-title {
  color: #651e1a;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.infographic-container {
  display: flex;
  justify-content: space-around;
  max-width: 1200px;
  margin: 0 auto;
}

.infographic-item {
  text-align: center;
  padding: 1.5rem;
  flex-basis: 30%;
}

.icon {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 1rem;
}

.counter {
  font-size: 2.5rem;
  font-weight: 700;
  color: #651e1a;
  margin: 1rem 0;
}

/* অ্যানিমেশন */
@keyframes count-up {
  from { transform: translateY(20px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* বাংলা: পার্টনারস সেকশন স্টাইল */
.partners-section {
  padding: 4rem 1rem;
  background: #f9f9f9;
}

.section-title {
  color: #651e1a;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
}

.partners-carousel {
  display: grid;
  grid-auto-flow: column;
  gap: 3rem;
  justify-content: center;
  overflow-x: auto;
  padding: 1rem 0;
}

.partner-logo {
  width: 180px;
  padding: 1rem;
  transition: all 0.3s ease;
}

.partner-logo img {
  width: 100%;
  height: auto;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

/* হোভার এফেক্ট */
.partner-logo:hover {
  transform: scale(1.05);
}

.partner-logo:hover img {
  filter: grayscale(0%);
  box-shadow: 0 8px 20px rgba(101,30,26,0.15);
}

/* পালস অ্যানিমেশন */
@keyframes logo-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.08); }
  100% { transform: scale(1); }
}

.partner-logo:hover {
  animation: logo-pulse 1.5s infinite;
}

/* মোবাইল রেসপন্সিভ */
@media (max-width: 768px) {
  .partners-carousel {
    justify-content: start;
    padding: 1rem;
  }
  
  .partner-logo {
    width: 120px;
  }
}




/* Section 10: Footer */
/* ===== Footer Section ===== */
.footer {
  background: #651e1a;
  color: #fff;
  padding: 0;
  margin-top: 40px;
  position: relative;
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: space-between;
  padding: 50px 0 30px 0;
}
.footer-col {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  margin-bottom: 20px;
}
.footer-logo {
  height: 48px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 10px;
  padding: 5px;
}
.footer-brand-summary {
  font-size: 1rem;
  margin-bottom: 18px;
  color: #fff;
  opacity: 0.95;
}
.footer-cta {
  margin-top: 10px;
}
.cta-btn {
  display: inline-block;
  background: #f4a460;
  color: #fff;
  padding: 10px 26px;
  border-radius: 22px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 6px;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(101,30,26,0.08);
}
.cta-btn:hover,
.cta-btn:focus {
  background: #fff;
  color: #651e1a;
  transform: translateY(-2px) scale(1.04);
}
.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 10px 0;
}
.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 1rem;
}
.footer-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: #f4a460;
}
.footer-contact i {
  margin-right: 8px;
  color: #f4a460;
  min-width: 18px;
}
.footer-contact a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact a:hover {
  color: #f4a460;
}
.footer-social {
  margin-top: 10px;
}
.footer-social a {
  color: #fff;
  margin-right: 12px;
  font-size: 1.3rem;
  transition: color 0.2s;
}
.footer-social a:hover {
  color: #f4a460;
}
.footer-newsletter {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.footer-newsletter input[type="email"] {
  padding: 8px 12px;
  border: none;
  border-radius: 18px;
  font-size: 1rem;
  min-width: 140px;
  outline: none;
}
.footer-newsletter button {
  background: #f4a460;
  color: #fff;
  border: none;
  border-radius: 18px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.footer-newsletter button:hover,
.footer-newsletter button:focus {
  background: #fff;
  color: #651e1a;
  transform: translateY(-2px) scale(1.04);
}
.newsletter-success {
  color: #228b22;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
}
.footer-bottom {
  background: #4a1411;
  color: #fff;
  padding: 12px 0;
  font-size: 0.96rem;
}
.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom a {
  color: #f4a460;
  text-decoration: none;
  margin: 0 6px;
  font-size: 0.98rem;
  transition: color 0.2s;
}
.footer-bottom a:hover {
  color: #fff;
}
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #f4a460;
  color: #651e1a;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(101,30,26,0.16);
  z-index: 999;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  opacity: 0.8;
}
.back-to-top:hover,
.back-to-top:focus {
  background: #651e1a;
  color: #fff;
  opacity: 1;
}
@media (max-width: 900px) {
  .footer-grid {
    flex-direction: column;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 36px 0 18px 0;
  }
  .footer-bottom-flex {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}


/* ===== New Section ===== */
/* ===== New Section ===== */
/* ===== New Section ===== */
/* ===== New Section ===== */