* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  color: white;
  background-color: #000;
  overflow-x: hidden;
}

/* ========== NAVBAR ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

.logo img {
  height: 45px;
  width: auto;
  object-fit: contain;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #f5c71a;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

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


.menu-toggle-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1001;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle-checkbox:checked + .menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle-checkbox:checked + .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.menu-toggle-checkbox:checked + .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}


.hero {
  height: 100vh;
  min-height: 100vh;
  background: url("image/hero2.jpg") center/cover no-repeat;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 100px;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 20px;
}

.hero-logo {
  width: 25%;
  max-width: 200px;
  min-width: 80px;
  height: auto;
  margin-bottom: 10px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
}

.contact-btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: #f5c71a;
  color: #000;
  font-weight: 600;
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: #fff;
  color: #000;
}


.about {
  background-color: #1E2C3E;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 120px 80px;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 35px rgba(245, 199, 26, 0.3);
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.3;
}

.about-text h2 span {
  color: #f5c71a;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
}


.services {
  background-color: #1A2433;
  color: #fff;
  min-height: 100vh;
  padding: 100px 80px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-header {
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.services-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.services-header h2 span {
  color: #f5c71a;
}

.services-header p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  font-size: 1rem;
}

.services-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  flex-wrap: wrap;
}

.service-card {
  background-color: #2B3C50;
  border-radius: 16px;
  overflow: hidden;
  flex: 1 1 300px;
  max-width: 360px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(40, 169, 182, 0.35);
}

.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-info {
  padding: 25px 20px 35px;
}

.service-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #fff;
}

.service-info p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 0.95rem;
}

.donate {
  background: linear-gradient(180deg, rgba(30,44,62,0.98) 0%, rgba(26,36,51,0.98) 100%);
  color: #fff;
  padding: 80px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.donate-container {
  display: flex;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
  width: 100%;
}

.donate-text {
  flex: 1;
  max-width: 720px;
}

.donate-text h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.donate-text h2 span {
  color: #f5c71a;
}

.donate-text p {
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  margin-bottom: 24px;
}

.donate-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.donate-btn {
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
}

.donate-once {
  background: #f5c71a;
  color: #000;
}

.donate-monthly {
  background: transparent;
  color: #f5c71a;
  border: 2px solid rgba(245,199,26,0.9);
}

.donate-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
}

.donate-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.donate-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.45);
  object-fit: cover;
}

.reviews {
  background-color: #141C28;
  color: #fff;
  padding: 80px 40px;
}

.reviews-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
}

.reviews-header h2 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.reviews-header h2 span {
  color: #f5c71a;
}

.reviews-header p {
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}


.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}


.review-card {
  background: #213241;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 8px 26px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
}

.avatar {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: linear-gradient(135deg,#28A9B6,#1E8FA1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: inset 0 -6px 12px rgba(0,0,0,0.15);
}

.review-body h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.review-body p {
  margin: 0;
  color: rgba(255,255,255,0.9);
  line-height: 1.6;
  font-size: 0.95rem;
}

.stars {
  color: #f5c71a;
  margin-bottom: 6px;
  font-size: 0.95rem;
}


.contact {
  background-color: #1E2C3E;
  color: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 100px 40px;
}

.contact-container {
  max-width: 700px;
}

.contact h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact h2 span {
  color: #f5c71a;
}

.contact p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-info {
  margin-top: 30px;
  font-size: 1.2rem;
}

.contact-info p {
  margin: 10px 0;
  color: #fff;
}

.contact-info strong {
  color: #f5c71a;
}


.footer {
  background-color: #141C28;
  color: rgba(255, 255, 255, 0.9);
  padding: 50px 20px 15px;
  text-align: center;
}

.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 900px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.footer-logo img {
  width: 60px;
  margin-bottom: 5px;
  filter: brightness(0.9);
}

.footer-logo p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 0;
  margin: 10px 0 5px;
}

.footer-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #f5c71a;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 15px;
  padding-top: 15px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}


@media (max-width: 1024px) {
  .navbar {
    padding: 20px 50px;
  }

  .nav-links {
    gap: 25px;
  }

  .about {
    padding: 100px 50px;
  }

  .about-container {
    gap: 50px;
  }

  .services {
    padding: 80px 50px;
  }
}
.reviews-grid {
  grid-template-columns: repeat(2, 1fr);
}

.donate-container {
  flex-direction: column-reverse;
  gap: 30px;
}

.donate-image img {
  max-width: 320px;
}



@media (max-width: 900px) {
  .navbar {
    padding: 15px 40px;
  }

  .nav-links {
    gap: 20px;
    font-size: 0.9rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .about {
    padding: 100px 40px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-image img {
    max-width: 80%;
    margin-bottom: 20px;
  }

  .about-text {
    text-align: center;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }

  .about-text p {
    max-width: 100%;
    font-size: 1rem;
  }

  .services {
    padding: 80px 40px;
  }

  .services-header h2 {
    font-size: 2.2rem;
  }

  .services-container {
    gap: 30px;
  }

  .service-card {
    max-width: 100%;
  }
}


@media (max-width: 768px) {
  .navbar {
    padding: 15px 25px;
  }

  .logo img {
    height: 38px;
  }

  /* Show hamburger menu */
  .menu-toggle {
    display: flex;
  }


  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: calc(100vh - 70px);
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    gap: 0;
    padding: 30px 0;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  }

  .menu-toggle-checkbox:checked ~ nav .nav-links {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-links a {
    display: block;
    font-size: 1.1rem;
    padding: 10px 20px;
  }

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

  .hero {
    min-height: auto;
    padding: 100px 20px;
  }

  .hero-logo {
    width: 35%;
    max-width: 120px;
    margin-bottom: 15px;
  }

  .hero-content h1 {
    font-size: 2rem;
    padding: 0 15px;
  }

  .hero-content p {
    font-size: 0.95rem;
  }

  .contact-btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }

  .about {
    min-height: auto;
    padding: 80px 30px;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .services {
    min-height: auto;
    padding: 80px 30px;
  }

  .services-header h2 {
    font-size: 2rem;
  }

  .services-header p {
    font-size: 0.95rem;
  }

  .service-img {
    height: 200px;
  }

  .service-info h3 {
    font-size: 1.2rem;
  }

  .service-info p {
    font-size: 0.9rem;
  }

  .contact {
    padding: 80px 30px;
  }

  .contact h2 {
    font-size: 2rem;
  }

  .contact p {
    font-size: 0.95rem;
  }

  .contact-info {
    font-size: 1rem;
  }
}
.reviews-grid {
  grid-template-columns: 1fr;
}

.donate-actions {
  justify-content: center;
}

.donate-text {
  text-align: center;
}


@media (max-width: 600px) {
  .footer-links {
    flex-direction: column;
    gap: 10px;
  }

  .footer-logo img {
    width: 50px;
  }

  .footer-logo p {
    font-size: 1rem;
  }
}


@media (max-width: 480px) {
  .navbar {
    padding: 12px 20px;
  }

  .logo img {
    height: 32px;
  }

  .nav-links {
    width: 80%;
    top: 60px;
    height: calc(100vh - 60px);
  }

  .nav-links a {
    font-size: 1rem;
  }

  .hero {
    padding: 80px 15px;
  }

  .hero-logo {
    width: 40%;
    max-width: 100px;
  }

  .hero-content h1 {
    font-size: 1.6rem;
    padding: 0 10px;
  }

  .hero-content p {
    font-size: 0.85rem;
    padding: 0 10px;
  }

  .contact-btn {
    padding: 9px 20px;
    font-size: 0.85rem;
  }

  .about {
    padding: 60px 20px;
  }

  .about-image img {
    max-width: 90%;
  }

  .about-text h2 {
    font-size: 1.7rem;
  }

  .about-text p {
    font-size: 0.9rem;
  }

  .services {
    padding: 60px 20px;
  }

  .services-header h2 {
    font-size: 1.7rem;
  }

  .services-header p {
    font-size: 0.9rem;
  }

  .service-card {
    flex: 1 1 100%;
  }

  .service-img {
    height: 180px;
  }

  .service-info {
    padding: 20px 15px 25px;
  }

  .service-info h3 {
    font-size: 1.1rem;
  }

  .service-info p {
    font-size: 0.85rem;
  }

  .contact {
    padding: 60px 20px;
  }

  .contact h2 {
    font-size: 1.7rem;
  }

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

  .contact-info {
    font-size: 0.9rem;
  }

  .footer {
    padding: 40px 15px 15px;
  }

  .footer-logo img {
    width: 45px;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .footer-bottom p {
    font-size: 0.75rem;
  }
}
