/*** Spinner Start ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.8s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}
/*** Spinner End ***/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
}

/* CSS Variables for Colors */
:root {
  --primary-teal: #0097C1;        /* replaced with Main teal blue */
  --secondary-gray: #2E3A46;      /* replaced with Dark gray */
  --accent-yellow: #00BFD6;       /* replaced with Accent cyan */
  --base-white: #FFFFFF;          /* replaced with White */
  --text-dark: #0D1C2E;           /* replaced with Dark navy text */
  --red-accent: #dc3545;          /* kept same */

  /* Breadcrumb specific variables */
  --brand: #0097C1;               /* from main teal blue */
  --accent: #33B7D9;              /* from lighter accent teal */
  --text: #0D1C2E;                /* from dark navy text */
  --muted: #4A5A67;               /* replaced with secondary text */
  --bg: #F5F7FA;                  /* replaced with light background */
}



/* Top Information Bar */
.top-bar {
  background: var(--primary-teal);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 40px;
  color: var(--base-white);
  font-size: 14px;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-right {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 30px;
  height: 30px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--base-white);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.social-icon:hover {
  background: var(--accent-yellow);
  color: var(--secondary-gray);
  transform: translateY(-2px);
}

/* Tooltips */
.social-icon::before {
  content: attr(data-tooltip);
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--text-dark);
  color: var(--base-white);
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.social-icon:hover::before {
  opacity: 1;
}

/* Main Header */
.main-header {
  padding: 3px 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1000;
  transition: all 0.3s ease;
  margin-left: 100px;
  margin-right: 100px;
}

.main-header.sticky {
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

.logo-section {
  display: flex;
  align-items: center;
  margin-left: -55px;
}

.logo-img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.org-name {
  font-size: 24px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.world,
.organization {
  color: var(--primary-teal);
  font-weight: 700;
}

.human-rights {
  color: var(--red-accent);
  font-family: "Dancing Script", cursive;
  font-weight: 700;
  font-style: italic;
}

.donate-btn {
  background: var(--primary-teal);
  color: var(--base-white);
  padding: 12px 25px;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  /* box-shadow: 0 4px 15px rgba(3, 122, 154, 0.3); */
}

.donate-btn:hover {
  background: var(--primary-teal);
  /* box-shadow: 0 0 25px var(--accent-yellow); */
  transform: translateY(-2px);
}

/* Navigation */
.navigation {
  background: var(--primary-teal);
  position: relative;
  z-index: 999;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  position: relative;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  padding: 18px 25px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.1);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background: var(--accent-yellow);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--base-white);
  min-width: max-content;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  border-radius: 0 0 8px 8px;
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 700;
  text-transform: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
}

.dropdown-link:hover {
  background: var(--primary-teal);
  color: var(--base-white);
}

.dropdown-link:last-child {
  border-bottom: none;
  border-radius: 0 0 8px 8px;
}

/* Mobile Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--accent-yellow);
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu {
  display: none;
  background: var(--primary-teal);
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-menu.active {
  display: block;
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-link {
  display: block;
  color: var(--accent-yellow);
  text-decoration: none;
  padding: 15px 20px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 14px;
}

.mobile-dropdown {
  background: rgba(255, 255, 255, 0.1);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-dropdown.active {
  max-height: 300px;
}

.mobile-dropdown-link {
  display: block;
  padding: 12px 30px;
  color: var(--base-white);
  text-decoration: none;
  font-weight: 400;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-donate-btn {
  display: none;
  background: var(--accent-yellow);
  color: var(--primary-teal);
  padding: 12px 25px;
  margin: 15px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .org-name {
    font-size: 20px;
  }

  .donate-btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  .nav-link {
    padding: 15px 20px;
    font-size: 13px;
  }
}

@media (max-width: 992px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
    margin-left: 20px;
  }

  .donate-btn {
    display: none;
  }

  .mobile-donate-btn {
    display: block;
  }
}

@media (max-width: 768px) {
  .top-bar {
    flex-direction: column;
    height: auto;
    padding: 10px;
    gap: 10px;
  }

  .main-header {
    padding: 15px;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }

  .org-name {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .org-name {
    font-size: 16px;
  }

  .top-bar {
    font-size: 12px;
  }

  .mobile-nav-link,
  .mobile-dropdown-link {
    padding: 12px 15px;
  }

  .mobile-donate-btn {
    padding: 10px 15px;
    font-size: 14px;
  }
}

/* slider section */

.hero-slider {
  position: relative;
  width: 100%;
  height: 600px;
  
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
  display: flex;
  align-items: center;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 28, 46, 0.6);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  color: var(--base-white);
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  transform: translateY(20px);
  transition: transform 0.6s ease-out;
  transition-delay: 0.3s;
}

.hero-slide.active .slide-content {
  transform: translateY(0);
}

.slogan {
  display: inline-block;
  /* font-size: clamp(0.9rem, 1.8vw, 1.1rem); */
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  /* text-transform: uppercase; */
}

.slogan-1 {
  background-color: var(--primary-teal);
  color: var(--base-white);
}

.slogan-2 {
  background-color: var(--red-accent);
  color: var(--base-white);
}

.slogan-3 {
  background-color: var(--accent-yellow);
  color: var(--text-dark);
}

.slide-content h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.slide-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin-bottom: 2rem;
  max-width: 600px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.accent {
  color: var(--accent-yellow);
  font-weight: 700;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-teal);
  color: var(--base-white);
}

.btn-primary:hover {
  background-color: #025a72;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--base-white);
  border-color: var(--base-white);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slider-controls {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  z-index: 10;
}

.slider-nav {
  display: flex;
  gap: 0.75rem;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background-color: var(--base-white);
  transform: scale(1.2);
}

.slider-arrow {
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  color: var(--base-white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.slider-arrow:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .slide-overlay {
    background: rgba(0, 0, 0, 0.5);
  }

  .slide-content {
    padding: 1rem;
    text-align: center;
  }

  .btn-group {
    justify-content: center;
  }

  .slider-controls {
    bottom: 1rem;
  }
}

/* Animation for content */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Footer section */

.footer {
  background-color: var(--primary-teal);
  color: var(--base-white);
  padding: 60px 0 0px;
  position: relative;
}

.footer-wave {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 50px;
  background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 1200 120" xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="none"><path d="M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z" fill="%23037a9a" opacity=".25"/><path d="M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z" fill="%23037a9a" opacity=".5"/><path d="M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z" fill="%23037a9a"/></svg>');
  background-size: cover;
  transform: rotate(180deg);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.footer-logo {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo-container {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.logo-img {
  height: 75px;
  width: auto;
  margin-right: 15px;
}

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: var(--base-white);
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--base-white);
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--accent-yellow);
  color: var(--text-dark);
  transform: translateY(-3px);
}

.footer-links h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: var(--base-white);
}

.footer-links h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-yellow);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent-yellow);
  transform: translateX(5px);
}

.footer-contact h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: var(--base-white);
}

.footer-contact h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--accent-yellow);
}

.contact-info {
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

.contact-icon {
  margin-right: 15px;
  color: var(--base-white);
  font-size: 18px;
}

.contact-text {
  color: rgba(255, 255, 255, 0.8);
}

.contact-text a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-text a:hover {
  color: var(--accent-yellow);
}

.footer-bottom {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 20px 0;
  margin-top: 40px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-bottom a {
  color: var(--accent-yellow);
  text-decoration: none;
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--secondary-gray);
  color: var(--base-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background-color: var(--accent-yellow);
  color: var(--text-dark);
  transform: translateY(-5px);
}

@media (max-width: 576px) {
  .back-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}


@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-links,
  .footer-contact {
    margin-top: 30px;
  }
}

/* about us section */

.whro-main-section {
  background: linear-gradient(
    135deg,
    rgba(247, 247, 247, 0.9) 0%,
    rgba(255, 255, 255, 1) 100%
  );
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.whro-main-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 800" opacity="0.03"><path fill="%23037a9a" d="M400,0C179,0,0,179,0,400s179,400,400,400s400-179,400-400S621,0,400,0z M400,700c-165.7,0-300-134.3-300-300S234.3,100,400,100s300,134.3,300,300S565.7,700,400,700z"/></svg>');
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: right bottom;
  opacity: 0.1;
  z-index: 0;
}

.whro-container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.whro-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
  align-items: start;
}

/* About Us Section */
.whro-about-text {
  background: var(--base-white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  width: 100%; /* ✅ fixed from 130vh */
  max-width: 100%;
}

.whro-org-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.whro-org-name span {
  color: var(--primary-teal);
}

.whro-org-acronym {
  color: var(--secondary-gray);
  font-weight: 600;
}

.whro-org-location {
  display: inline-block;
  color: var(--accent-yellow);
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  background: rgba(223, 227, 5, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.whro-about-description {
  margin-bottom: 1.5rem;
  text-align: justify;
  font-size: 1.05rem;
}

.whro-mission-statement {
  font-style: italic;
  padding: 1.5rem;
  background-color: rgba(3, 122, 154, 0.05);
  border-left: 4px solid var(--primary-teal);
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
  font-size: 1.1rem;
}

.whro-additional-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  margin-bottom: 1rem;
}

.whro-additional-content.expanded {
  max-height: 1000px;
}

.whro-read-more-btn {
  background-color: var(--primary-teal);
  color: white;
  border: none;
  padding: 0.8rem 1.5rem;
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.whro-read-more-btn:hover {
  background-color: #026a86;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(3, 122, 154, 0.3);
}

.whro-read-more-btn .whro-icon {
  transition: transform 0.3s ease;
}

.whro-read-more-btn.expanded .whro-icon {
  transform: rotate(180deg);
}

/* Notice Board Section */
.whro-notice-board {
  background: var(--base-white);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  height: fit-content;
  position: sticky;
  top: 2rem;
}

.whro-notice-header {
  background: linear-gradient(135deg, var(--primary-teal) 0%, #026a86 100%);
  color: white;
  padding: 1.5rem 2rem;
  text-align: center;
  position: relative;
}

.whro-notice-header::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent-yellow);
}

.whro-notice-title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.whro-notice-container {
  height: 450px;
  overflow: hidden;
  position: relative;
  padding: 0;
}

.whro-notice-list {
  display: flex;
  flex-direction: column;
  animation: scrollUp 20s linear infinite;
  padding: 1rem 0;
}

.whro-notice-list:hover {
  animation-play-state: paused;
}

/* ✅ Fixed animation for smooth bottom-to-top infinite scroll */
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%); /* only half, since we duplicate items */
  }
}

.whro-notice-item {
  padding: 1.5rem 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.whro-notice-item:hover {
  background-color: rgba(3, 122, 154, 0.02);
  transform: translateX(5px);
  border-left: 4px solid var(--primary-teal);
}

.whro-notice-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--secondary-gray);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.whro-notice-date i {
  color: var(--primary-teal);
}

.whro-notice-item-title {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.whro-notice-description {
  color: var(--secondary-gray);
  font-size: 0.9rem;
  line-height: 1.4;
}

.whro-priority-high {
  border-left: 4px solid var(--red-accent);
}

.whro-priority-medium {
  border-left: 4px solid var(--accent-yellow);
}

.whro-priority-normal {
  border-left: 4px solid var(--primary-teal);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .whro-content-wrapper {
    grid-template-columns: 1fr 350px;
    gap: 2.5rem;
  }
}

@media (max-width: 992px) {
  .whro-content-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .whro-notice-board {
    position: static;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .whro-main-section {
    padding: 2.5rem 1rem;
  }

  .whro-about-text {
    padding: 1.5rem;
  }

  .whro-org-name {
    font-size: 1.8rem;
    text-align: center;
  }

  .whro-org-location {
    display: block;
    text-align: center;
    margin: 1rem auto;
  }

  .whro-read-more-btn {
    width: 100%;
    justify-content: center;
  }

  .whro-notice-container {
    height: auto;
    max-height: 400px;
  }

  .whro-notice-item {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .whro-about-text {
    padding: 1rem;
  }

  .whro-org-name {
    font-size: 1.6rem;
  }

  .whro-notice-item-title {
    font-size: 1rem;
  }

  .whro-notice-description {
    font-size: 0.85rem;
  }
}


/* whro Dealy News Updates */

.news-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 40px;
  font-family: "Poppins", sans-serif;
  color: var(--primary-teal);
  position: relative;
  padding-bottom: 15px;
}

.section-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-teal), var(--accent-yellow));
  border-radius: 2px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 25px;
}

.news-card {
  background: var(--base-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}

.news-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-hover-shadow);
}

.card-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.card-content {
  padding: 20px;
}

.card-date {
  display: flex;
  align-items: center;
  color: var(--secondary-gray);
  font-size: 14px;
  margin-bottom: 10px;
}

.card-date::before {
  content: "📅";
  margin-right: 8px;
  font-size: 12px;
}

.card-title {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--text-dark);
  line-height: 1.4;
}

.card-excerpt {
  color: var(--secondary-gray);
  font-size: 14px;
  margin-bottom: 20px;
  display: -webkit-box;

  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  display: inline-block;
  padding: 8px 16px;
  color: var(--primary-teal);
  border: 1px solid var(--primary-teal);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
}

.read-more:hover {
  background-color: var(--primary-teal);
  color: var(--base-white);
}

.read-more::after {
  content: " →";
  transition: var(--transition);
}

.read-more:hover::after {
  transform: translateX(3px);
}

@media (min-width: 600px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1200px) {
  .news-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
    margin: 0 auto;
    max-width: 1300px;
    width: 100%;
  }
}

/* Video Section */

/*:root {*/
/*  --primary-teal: #037a9a;*/
/*  --secondary-gray: rgb(84, 84, 84);*/
/*  --accent-yellow: rgb(223, 227, 5);*/
/*  --base-white: rgb(255, 255, 255);*/
/*  --text-dark: #333;*/
/*  --navy-blue: #1a365d;*/
/*  --soft-gray: #f8f9fa;*/
/*}*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--base-white);
}

.video-section {
  padding: 80px 20px;
  background: linear-gradient(
    135deg,
    var(--soft-gray) 0%,
    var(--base-white) 100%
  );
  position: relative;
}

.video-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.container {
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-family: "Poppins", sans-serif;
  color: var(--primary-teal);
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-teal), var(--accent-yellow));
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--secondary-gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 50px;
}

.video-card {
  background: var(--base-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(3, 122, 154, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 1px solid rgba(3, 122, 154, 0.08);
}

.video-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(3, 122, 154, 0.15);
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  overflow: hidden;
  border-radius: 12px 12px 0 0;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  transition: transform 0.4s ease;
}

.video-card:hover .video-wrapper iframe {
  transform: scale(1.05);
}

.video-info {
  padding: 25px;
}

.video-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy-blue);
  margin-bottom: 10px;
  line-height: 1.4;
}

.video-description {
  font-size: 0.95rem;
  color: var(--secondary-gray);
  line-height: 1.6;
  margin-bottom: 15px;
}

.video-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--primary-teal);
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background: rgba(3, 122, 154, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.video-card:hover .play-overlay {
  opacity: 1;
}

.play-icon {
  width: 0;
  height: 0;
  border-left: 20px solid var(--base-white);
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  margin-left: 4px;
}

/* Mobile Carousel */
@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .video-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding-bottom: 20px;
    margin-top: 30px;
  }

  .video-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }

  .video-grid::-webkit-scrollbar {
    height: 6px;
  }

  .video-grid::-webkit-scrollbar-track {
    background: var(--soft-gray);
    border-radius: 3px;
  }

  .video-grid::-webkit-scrollbar-thumb {
    background: var(--primary-teal);
    border-radius: 3px;
  }

  .video-section {
    padding: 60px 15px;
  }
}

@media (max-width: 480px) {
  .video-card {
    flex: 0 0 260px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .video-info {
    padding: 20px;
  }
}

/* Accessibility improvements */
.video-card:focus-within {
  outline: 2px solid var(--primary-teal);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .video-card {
    transition: none;
  }

  .video-wrapper iframe {
    transition: none;
  }
}

/* Loading animation */
.video-card {
  animation: fadeInUp 0.6s ease forwards;
}

.video-card:nth-child(2) {
  animation-delay: 0.1s;
}

.video-card:nth-child(3) {
  animation-delay: 0.2s;
}

.video-card:nth-child(4) {
  animation-delay: 0.3s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Human Right */

.hr-section {
  margin: 0 auto;
  padding: 80px 35px;
  background-color: var(--hr-base-white);
}

.hr-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.hr-section-title {
   text-align: center;
  margin-bottom: 40px;
  font-family: "Poppins", sans-serif;
  color: var(--primary-teal);
  position: relative;
  padding-bottom: 15px;
}

.hr-section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-teal), var(--accent-yellow));
  border-radius: 2px;
}

.hr-section-subtitle {
  font-size: 1.1rem;
  color: var(--hr-secondary-gray);
  max-width: 600px;
  margin: 0 auto;
  margin-top: 25px;
}

.hr-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.hr-card {
  background: var(--hr-base-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(3, 122, 154, 0.08);
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(3, 122, 154, 0.1);
  position: relative;
}

.hr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(3, 122, 154, 0.15);
}

.hr-card-image-container {
  height: 200px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--hr-primary-teal),
    rgba(3, 122, 154, 0.8)
  );
}

.hr-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.hr-card:hover .hr-card-image {
  transform: scale(1.08);
}

.hr-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 122, 154, 0.2);
  transition: opacity 0.3s ease;
}

.hr-card:hover .hr-image-overlay {
  opacity: 0.1;
}

.hr-card-content {
  padding: 25px;
}

.hr-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--hr-text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.hr-card-description {
  color: var(--hr-secondary-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

.hr-view-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgb(3, 121, 153);
  color: #ffffff;
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.hr-view-more-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.hr-view-more-btn:hover::before {
  left: 100%;
}

.hr-view-more-btn:hover {
  background: #025a6e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(3, 122, 154, 0.3);
}

.hr-btn-arrow {
  transition: transform 0.3s ease;
}

.hr-view-more-btn:hover .hr-btn-arrow {
  transform: translateX(3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hr-section {
    padding: 60px 15px;
  }

  .hr-section-title {
    font-size: 2.2rem;
  }

  .hr-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }

  .hr-card-content {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hr-section-title {
    font-size: 1.9rem;
  }

  .hr-card-image-container {
    height: 160px;
  }
}

/* Loading animation for images */
.hr-card-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    var(--hr-primary-teal),
    rgba(3, 122, 154, 0.8)
  );
  z-index: 1;
}

.hr-card-image-container.loaded::before {
  display: none;
}

/* Bread crumb */

/* Breadcrumb */

.whro-breadcrumb {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
}

/* Structure & Layout */

/* Overlay */
.whro-breadcrumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(3, 122, 154, 0.1) 0%,
    rgba(0, 169, 165, 0.15) 50%,
    rgba(223, 227, 5, 0.05) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Symbol */
.whro-breadcrumb::after {
  content: "🕊️";
  position: absolute;
  top: 1rem;
  right: 2rem;
  font-size: 1.5rem;
  opacity: 0.6;
  z-index: 1;
  pointer-events: none;
}

/* Breadcrumb List */
.whro-breadcrumb__list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0 2rem; /* ✅ fluid padding instead of fixed 40rem */
  gap: 0.5rem;
  font-size: clamp(0.85rem, 1vw, 1rem);
  line-height: 1.5;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
  z-index: 2;
  top: 70px;
}

/* Breadcrumb Items */
.whro-breadcrumb__item {
  display: flex;
  align-items: center;
  white-space: nowrap;
  position: relative;
}

/* Separator */
.whro-breadcrumb__item:not(:first-child)::before {
  content: "›";
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0.75rem;
  font-size: 1.1em;
  font-weight: 300;
  user-select: none;
}

/* Link */
.whro-breadcrumb__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  color: white;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

/* Home Icon */
.whro-breadcrumb__icon {
  width: 1em;
  height: 1em;
  fill: currentColor;
  flex-shrink: 0;
}

/* Hover */
.whro-breadcrumb__link:hover {
  background-color: rgba(255, 255, 255, 0.25);
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.4);
}

/* Focus */
.whro-breadcrumb__link:focus-visible {
  outline: 2px solid var(--hr-accent-yellow);
  outline-offset: 2px;
  background-color: rgba(255, 255, 255, 0.25);
  color: white;
}

/* Active */
.whro-breadcrumb__link:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Current Page */
.whro-breadcrumb__current {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  color: white;
  font-weight: 600;
  background-color: rgba(223, 227, 5, 0.2);
  border-radius: 14px;
  border: 1px solid rgba(223, 227, 5, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* =======================
   Responsive Styles
======================= */
@media (max-width: 1024px) {
  .whro-breadcrumb__list {
    padding: 0 1.5rem;
  }
}

@media (max-width: 640px) {
  .whro-breadcrumb {
    padding: 1.5rem 0;
    min-height: 100px;
  }

  .whro-breadcrumb__list {
    padding: 0 1rem;
    scroll-padding: 1rem;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 112px;
    margin-left: 64px;
  }

  .whro-breadcrumb__link,
  .whro-breadcrumb__current {
    padding: 0.375rem 0.75rem;
  }
}

/* High Contrast */
@media (prefers-contrast: high) {
  .whro-breadcrumb__link {
    border-color: currentColor;
  }
  .whro-breadcrumb__current {
    border-color: currentColor;
  }
}

/* Print */
@media print {
  .whro-breadcrumb {
    border-bottom: 1px solid #000;
    background: transparent;
  }
  .whro-breadcrumb__link {
    color: #000 !important;
    text-decoration: underline;
  }
}

/* JOUN NOW FORM SECTION */

.form-container {
  max-width: 750px;
  margin: 15px auto;
  background-color: var(--base-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 75px;
}

.form-header {
  background: linear-gradient(rgba(3, 122, 154, 0.8), rgba(3, 122, 154, 0.9)),
    url("https://images.unsplash.com/photo-1521791136064-7986c2920216?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: var(--base-white);
  padding: 25px;
  text-align: center;
}

.form-header h2 {
  font-size: 1.8rem;
  margin-bottom: 6px;
  font-weight: 700;
}

.form-header p {
  font-size: 0.95rem;
  opacity: 0.9;
}

.form-body {
  padding: 25px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px 12px;
}

.form-group {
  flex: 1 0 calc(50% - 16px);
  margin: 0 8px 12px;
  min-width: 200px;
}

.form-group.full-width {
  flex: 1 0 calc(100% - 16px);
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: var(--secondary-gray);
  font-size: 0.9rem;
}

label.required:after {
  content: " *";
  color: var(--red-accent);
}

input,
select,
textarea {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.9);
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px rgba(3, 122, 154, 0.2);
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--primary-teal);
}

textarea {
  min-height: 80px;
  resize: vertical;
}

.file-upload {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}

.file-upload-input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload-label {
  display: block;
  padding: 8px 10px;
  background-color: rgba(255, 255, 255, 0.9);
  border: 1px dashed var(--secondary-gray);
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.file-upload-label:hover {
  border-color: var(--primary-teal);
  background-color: rgba(3, 122, 154, 0.05);
}

.file-upload-name {
  margin-top: 3px;
  font-size: 0.8rem;
  color: var(--secondary-gray);
}

.radio-group {
  display: flex;
  gap: 12px;
  margin-top: 5px;
}

.radio-option {
  display: flex;
  align-items: center;
}

.radio-option input {
  width: auto;
  margin-right: 6px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-top: 10px;
}

.checkbox-group input {
  width: auto;
  margin-right: 8px;
  margin-top: 2px;
}

.checkbox-group label {
  margin-bottom: 0;
  font-size: 0.85rem;
}

.error-message {
  color: var(--red-accent);
  font-size: 0.75rem;
  margin-top: 3px;
  display: none;
}

.submit-btn {
  display: block;
  width: 100%;
  max-width: 250px;
  margin: 20px auto 0;
  padding: 10px;
  background: linear-gradient(135deg, var(--primary-teal), #0294b5);
  color: var(--base-white);
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(3, 122, 154, 0.3);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(3, 122, 154, 0.4);
  background: linear-gradient(135deg, #0294b5, var(--primary-teal));
}

.submit-btn:active {
  transform: translateY(1px);
}

@media (max-width: 768px) {
  .form-header {
    padding: 20px 12px;
  }

  .form-header h2 {
    font-size: 1.5rem;
  }

  .form-body {
    padding: 20px 12px;
  }

  .form-group {
    flex: 1 0 calc(100% - 16px);
  }

  .radio-group {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  body {
    padding: 10px;
  }

  .form-container {
    margin: 10px auto;
  }

  .form-header {
    padding: 18px 10px;
  }

  .form-header h2 {
    font-size: 1.3rem;
  }

  .submit-btn {
    max-width: 100%;
  }
}

/* Contact Us */

.ngo-contact-container {
  max-width: 1200px;
  margin: 40px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.ngo-contact-form {
  flex: 1;
  min-width: 400px;
  max-width: 600px;
  background-color: rgba(3, 122, 154, 0.05);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.ngo-contact-form h2 {
  color: var(--primary-teal);
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.ngo-form-group {
  margin-bottom: 20px;
}

.ngo-form-row {
  display: flex;
  gap: 20px;
}

.ngo-form-row .ngo-form-group {
  flex: 1;
  min-width: 0;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary-gray);
  font-size: 0.95rem;
}

label.required:after {
  content: " *";
  color: var(--red-accent);
}

input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: var(--base-white);
}

textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  background-color: var(--base-white);
  min-height: 150px;
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 3px rgba(3, 122, 154, 0.2);
}

.ngo-submit-btn {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--primary-teal);
  color: var(--base-white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 10px rgba(3, 122, 154, 0.3);
  width: 100%;
}

.ngo-submit-btn:hover {
  background-color: #026a86;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(3, 122, 154, 0.4);
}

.ngo-submit-btn:active {
  transform: translateY(0);
}

.ngo-contact-details {
  flex: 1;
  min-width: 400px;
  max-width: 500px;
  background-color: var(--base-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.ngo-contact-details h2 {
  color: var(--primary-teal);
  font-size: 2rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.ngo-contact-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.ngo-contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.ngo-contact-item h3 {
  color: var(--primary-teal);
  font-size: 1.2rem;
  margin-bottom: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}

.ngo-contact-item h3 i {
  color: var(--accent-yellow);
}

.ngo-contact-item p {
  color: var(--secondary-gray);
  line-height: 1.7;
  margin-left: 28px;
}

.ngo-error-message {
  color: var(--red-accent);
  font-size: 0.8rem;
  margin-top: 5px;
  display: none;
}

@media (max-width: 900px) {
  .ngo-contact-container {
    flex-direction: column;
    align-items: center;
  }

  .ngo-contact-form,
  .ngo-contact-details {
    width: 100%;
    max-width: 600px;
    min-width: auto;
  }
}

@media (max-width: 480px) {
  body {
    padding: 0px;
  }

  .ngo-contact-form,
  .ngo-contact-details {
    padding: 25px;
  }

  .ngo-contact-form h2,
  .ngo-contact-details h2 {
    font-size: 1.7rem;
    margin-bottom: 20px;
  }

  .ngo-form-row {
    flex-direction: column;
    gap: 0;
  }
}
