@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Lato", sans-serif !important;
  font-weight: 900;
  overflow-x: hidden;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes highlightSection {
  0% {
    background-color: rgba(0, 168, 232, 0.1);
  }
  100% {
    background-color: transparent;
  }
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  animation: fadeInDown 0.8s ease;
}

.nav-logo {
  height: 70px;
  width: 70px;
  animation: pulse 2s ease-in-out infinite;
}

nav > div {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.desktop-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: #2d3748;
  text-decoration: none;
  font-weight: 900;
  position: relative;
  transition: all 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: #00a8e8;
}

.nav-donate {
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  font-family: nulshock, sans-serif;
  color: white;
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.nav-donate:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.nav-donate a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-donate:hover a {
  color: white;
}

.nav-donate a::after {
  display: none;
}

.dropdown-container {
  position: relative;
  display: inline-block;
}

#Our {
  width: 200%;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 12px;
  box-shadow:
    0 10px 40px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  border: 1px solid rgba(255, 255, 255, 0.3);
  overflow: hidden;
  padding: 0.5rem 0;

}

.dropdown-menu a {
  font-weight: 900;

}

.dropdown-container:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: #4a5568;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  position: relative;
  overflow: hidden;
}

.dropdown-item:hover {
  background: rgba(0, 168, 232, 0.08);
  color: #007ea7;
  border-left-color: #00a8e8;
  padding-left: 25px;
}

.dropdown-trigger::after {
  content: "▾";
  margin-left: 5px;
  font-size: 0.9em;
  opacity: 0.7;
  transition: transform 0.3s ease;
}

.dropdown-container:hover .dropdown-trigger::after {
  transform: rotate(180deg);
  color: #00a8e8;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  position: relative;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(112, 102, 102, 0.3);
  backdrop-filter: blur(5px);
  z-index: 999;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-menu-container {
  position: absolute;
  top: 70px;
  right: 20px;
  width: 90%;
  background: rgba(208, 224, 234, 0.9);
  backdrop-filter: blur(90px);
  border: 1px solid rgba(70, 15, 208, 0.3);
  border-radius: 20px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  pointer-events: none;
  box-shadow: 0 20px 60px rgba(102, 126, 234, 0.2);
}

.mobile-menu-overlay.active .mobile-menu-container {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.mobile-nav-link {
  color: #2d3748;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-nav-link:hover {
  color: #00a8e8;
  background: rgba(102, 126, 234, 0.2);
  transform: translateX(5px);
}

.mobile-dropdown-section {
  margin-bottom: 0.5rem;
  width: 100%;
}

.mobile-dropdown-section button {
  font-family: Lato, sans-serif;
}

.mobile-dropdown-toggle {
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #2d3748;
  text-align: left;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  margin-bottom: 0.5rem;
}

.mobile-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.3);
  color: #00a8e8;
}

.mobile-dropdown-toggle .arrow {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.mobile-dropdown-section.active .mobile-dropdown-toggle .arrow {
  transform: rotate(180deg);
  color: #00a8e8;
}

.mobile-dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 1rem;
}
.mobile-dropdown-content a{
  font-weight: 900;
}

.mobile-dropdown-section.active .mobile-dropdown-content {
  max-height: 300px;
}

.mobile-dropdown-content .mobile-nav-link {
  display: block;
  padding: 0.8rem 1rem;
  color: #4a5568;
  text-decoration: none;
  font-size: 0.95rem;
  border-left: 2px solid rgba(0, 168, 232, 0.3);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  border-radius: 8px;
}

.mobile-dropdown-content .mobile-nav-link:hover {
  background: rgba(0, 168, 232, 0.1);
  color: #007ea7;
  border-left-color: #00a8e8;
  transform: translateX(5px);
}

.donate-mobile {
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  color: white !important;
  text-align: center;
  font-weight: 600;
  border-radius: 12px;
  margin-top: 1rem;
  border: none !important;
}

.donate-mobile:hover {
  background: linear-gradient(135deg, #006b8f 0%, #0093cc 100%);
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 15px rgba(0, 168, 232, 0.4);
}

.our-work-header {
  margin-top: 80px;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 5%;
  background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);

  position: relative;
  overflow: hidden;
}

.our-work-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.our-work-header::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.our-work-header > div:first-child {
  max-width: 600px;
  z-index: 2;
  animation: slideInLeft 1s ease;
}

.our-work-header h1 {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.voice {
  color: black;
}

.our-work-header p {
  font-size: 1.2rem;
  color: #f0f0f0;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.btns {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.btn-2,
.btn-3 {
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: none;
  text-decoration: none;
}

.btn-2 {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-2:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

.btn-3 {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  backdrop-filter: blur(10px);
}

.btn-3:hover {
  background: white;
  color: #00a8e8;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

.section-nav {
  background: white;
  padding: 1rem 5%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 90px;
  z-index: 100;
}

.section-nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  justify-content: center;
}

.section-nav-link {
  text-decoration: none;
  color: #4a5568;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-nav-link:hover {
  color: #00a8e8;
  background: rgba(0, 168, 232, 0.1);
}

.section-nav-link.active {
  color: white;
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  box-shadow: 0 4px 15px rgba(0, 168, 232, 0.3);
}

.work-section {
  padding: 6rem 5%;
  background: white;
}

.work-section:nth-child(even) {
  background: #f8fafc;
}

.work-section:target {
  animation: highlightSection 1s ease;
}

.section-title {
  text-align: center;
  font-size: 1.8rem;
  color: #00a8e8;
  margin-bottom: 1rem;
  font-weight: 900;
}

.section-subtitle {
  text-align: center;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.advocacy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.advocacy-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.advocacy-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 168, 232, 0.2);
}

.card-image {
  width: 100%;
  height: 250px;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #718096;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.advocacy-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  color: #00a8e8;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card-content p {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.card-stats {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.stat {
  background: rgba(0, 168, 232, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 10px;
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #007ea7;
}

.stat-label {
  font-size: 0.8rem;
  color: #4a5568;
}

.gallery-container {
  max-width: 1000px;
  margin: 3rem auto;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.slider {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  height: 500px;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #718096;
  font-size: 3rem;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 2rem;
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 1rem;
  pointer-events: none;
}

.slider-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  color: #00a8e8;
  pointer-events: all;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slider-btn:hover {
  background: white;
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 168, 232, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #00a8e8;
  transform: scale(1.2);
}

.impact-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.impact-stat {
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  padding: 2rem;
  border-radius: 20px;
  text-align: center;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 168, 232, 0.2);
  transition: all 0.3s ease;
}

.impact-stat:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 168, 232, 0.3);
}

.impact-stat i {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.impact-stat .number {
  font-size: 3rem;
  font-weight: 800;
  display: block;
  margin-bottom: 0.5rem;
}

.impact-stat .label {
  font-size: 1rem;
  opacity: 0.9;
}

.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.story-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 5px solid #00a8e8;
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 168, 232, 0.2);
}

.story-quote {
  font-size: 3rem;
  color: #00a8e8;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.story-content {
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.story-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #718096;
}

.author-info h4 {
  color: #00a8e8;
  margin-bottom: 0.2rem;
}

.author-info p {
  color: #718096;
  font-size: 0.9rem;
}

#footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 4rem 5% 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.brand-section .footer-logo {
  font-size: 1.8rem;
  color: #00a8e8;
  margin-bottom: 1.5rem;
  font-weight: 900;
}

.foot-yaga {
  display: flex;
  gap: 1rem;
}

.foot-logo {
  height: 40px;
  width: 40px;
  animation: pulse 2s ease-in-out infinite;
  margin-top: -5px;
}

.mission-text {
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 900;
}

.social-section {
  margin-top: 2rem;
}

.social-title {
  color: #94a3b8;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.social-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: white;
}

.social-icon.facebook {
  background: linear-gradient(135deg, #1877f2 0%, #0d5cb6 100%);
}

.social-icon.instagram {
  background: linear-gradient(135deg, #e4405f 0%, #c13584 100%);
}

.social-icon.twitter {
  background: linear-gradient(135deg, #1da1f2 0%, #0d8bd9 100%);
}

.social-icon.whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.social-icon.youtube {
  background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.social-icon.linkedin {
  background: linear-gradient(135deg, #0077b5 0%, #005582 100%);
}

.social-icon:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  width: 100%;
}

.contact-item:hover {
  background: rgba(0, 168, 232, 0.1);
  border-color: rgba(0, 168, 232, 0.3);
  transform: translateX(5px);
}

.contact-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.contact-details h3 {
  color: #e2e8f0;
  font-size: 1.2rem;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-details p {
  font-size: 0.9rem;
}

.contact-note {
  color: #94a3b8;
  font-size: 0.85rem;
  margin-top: 5px;
}

.copyright {
  text-align: center;
}

.copyright h6 {
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 400;
  margin-bottom: 10px;
}

.tagline {
  color: #00a8e8;
  font-size: 0.8rem;
  margin-top: 5px;
}

.line-2 {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  margin: 2rem 0;
}

.logo-container {
  font-size: 4rem;
  animation: scaleIn 1s ease 0.5s both;
}

.logo-container img {
  height: 500px;
  width: 500px;
  max-height: 500px;
  object-fit: contain;
  transition: all 0.3s ease;
}

@media (max-width: 1025px) {
  .desktop-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .yaga {
    font-size: 1.5rem;
    margin: 0;
  }

  .our-work-header {
    flex-direction: column;
    text-align: center;
    padding: 3rem 5%;
  }

  .our-work-header h1 {
    font-size: 2.5rem;
  }

  .btns {
    justify-content: center;
  }

  nav > div {
    gap: 1rem;
  }

  nav a {
    font-size: 0.9rem;
  }

  .footer {
    display: grid;
  }

  .yaga-1 {
    margin-bottom: 4rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .social-icons {
    justify-content: center;
  }

  .contact-details h3 {
    font-size: 1rem;
  }

  .contact-details p {
    font-size: 0.6rem;
  }

  .contact-item {
    padding: 12px;
  }

  .mobile-menu-container {
    top: 80px;
    right: 10px;
    width: calc(100% - 20px);
    max-width: 400px;
  }

  .mobile-dropdown-section {
    display: block;
  }
}

@media (min-width: 300px) and (max-width: 440px) {
  .our-work-header h1 {
    font-size: 1.8rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .copyright h6 {
    font-size: 0.6rem;
  }

  .tagline {
    font-size: 0.6rem;
  }
}

@media (max-width: 768px) {
  .section-nav-container {
    flex-direction: column;
    gap: 0.5rem;
  }

  .section-nav-link {
    justify-content: center;
    text-align: center;
  }

  .section-title {
    font-size: 2.5rem;
  }

  .impact-stats {
    grid-template-columns: 1fr;
  }

  .slide {
    height: 300px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .advocacy-grid {
    grid-template-columns: 1fr;
  }

  .logo-container img {
    height: 300px;
    width: 300px;
    max-height: 300px;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .card-stats {
    flex-direction: column;
  }
}

@media (min-width: 1025px) {
  .mobile-menu-overlay {
    display: none !important;
  }

  .hamburger {
    display: none;
  }

  .desktop-menu {
    display: flex;
  }

  .mobile-dropdown-section {
    display: none !important;
  }

  .dropdown-container {
    display: inline-block;
  }
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #007ea7 0%, #00a8e8 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.loading-screen.active {
  opacity: 1;
  visibility: visible;
}

.loading-content {
  text-align: center;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease 0.3s forwards;
}

.loading-logo {
  margin-bottom: 2rem;
  animation: float 3s ease-in-out infinite;
}

.loading-logo img {
  filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
}

.loading-spinner {
  width: 60px;
  height: 60px;
  border: 5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: white;
  margin: 0 auto 1.5rem;
  animation: loading 1s ease-in-out infinite;
}

.loading-text {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Loading screen specific animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Loading dots animation */
.loading-text::after {
  content: "";
  animation: dots 1.5s steps(4, end) infinite;
}

@keyframes dots {
  0%,
  20% {
    content: ".";
  }
  40% {
    content: "..";
  }
  60%,
  100% {
    content: "...";
  }
}
