 .container {
        max-width: 1200px;
        margin: 40px auto;
        padding: 0 20px;
    }

    .row {
        display: flex;
        gap: 20px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .card {
        width: 32%;
        background: #fff;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0,0,0,0.08);
        transition: 0.3s;
    }

    .card:hover {
        transform: translateY(-8px);
    }

    .card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

    .card-content {
        padding: 15px;
        text-align: center;
    }

    .card-content h3 {
        margin: 10px 0;
        font-size: 18px;
        color: #2d2d4d;
    }

    .card-content p {
        font-size: 14px;
        color: #555;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .card {
            width: 100%;
        }
    }

 .section {
        text-align: center;
        padding: 50px 20px;
    }

    .section h2 {
        color: #ff6a00;
        font-size: 28px;
        margin-bottom: 10px;
    }

    .section p {
        max-width: 700px;
        margin: 0 auto 40px;
        color: #666;
        line-height: 1.6;
    }

    .cards {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .card {
        background: #fff;
        border: 2px dashed #ff6a00;
        border-radius: 12px;
        padding: 25px;
        width: 300px;
        text-align: left;
        position: relative;
        transition: 0.3s;
    }

    .card:hover {
        transform: translateY(-5px);
    }

    .icon {
        width: 60px;
        height: 60px;
        background: #ff6a00;
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .card h3 {
        margin: 10px 0;
        font-size: 18px;
    }

    .card p {
        font-size: 14px;
        color: #555;
        line-height: 1.5;
    }

    .number {
        position: absolute;
        bottom: 15px;
        right: 15px;
        font-size: 18px;
        color: #999;
        font-weight: bold;
    }

    @media(max-width: 768px) {
        .cards {
            flex-direction: column;
            align-items: center;
        }
    }
      .relief-section {
        text-align: center;
        padding: 40px 20px;
        background: #e9e9e9;
    }

    .relief-section .subtitle {
        color: #ff6a00;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .relief-section h1 {
        font-size: 32px;
        color: #2d2d4d;
        margin-bottom: 15px;
    }

    .relief-section p {
        max-width: 700px;
        margin: 0 auto;
        color: #555;
        font-size: 16px;
        line-height: 1.6;
    }

    @media (max-width: 768px) {
        .relief-section h1 {
            font-size: 24px;
        }
        .relief-section p {
            font-size: 14px;
        }
    }
*{
    margin: 0;
    padding: 0;
}
/* Top Banner */
    .top-banner {
      background: #DA0000;
      padding: 10px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
    }
/* marquee wrapper */
.marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

/* scrolling text */
.marquee-content {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 12s linear infinite;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

/* animation */
@keyframes scrollText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.top-banner marquee {
  flex: 1;
}
    .top-banner span{
        color: #fff;
        font-weight: 700;
    }
    .heart{
        width: 30px;
        padding: 0px;
    }
    .top-banner button {
  border: 2px solid #fff;
  padding: 10px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-weight: 600;

  /* 3 Straight Colors */
  background: linear-gradient(
    to bottom,
    #239F40 33.33%,   /* green */
    #FFFFFF 33.33% 66.66%, /* white */
    #DA0000 33.33%   /* red */
  );

  color: #000; 
}
    /* Navbar */
/* NAVBAR BACKGROUND ANIMATION */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  position: relative;
  color: #000;

  /* Iran Flag Gradient */
  background: linear-gradient(
    to right,
    #239F40,
    #FFFFFF,
    #DA0000
  );
  background-size: 300% 100%;

  animation: iranFlagMove 6s linear infinite;
}

/* Animation */
@keyframes iranFlagMove {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 100% 0%;
  }
}

.logo {
  width: 120px;
}

/* Links */
.nav-links {
  display: flex;
  gap: 20px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.btn {
      background: transparent linear-gradient(270deg, #fd987c, #ffdb6b) 0 0 no-repeat padding-box;
      padding: 8px 16px;
      border-radius: 20px;
      color: black;
      font-weight: 500;
    }

/* Hamburger */
.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    right: 0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .nav-links a, .nav-links .btn {
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }
}

.hero{
  background-image: url('img/banner3.jpeg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.field__item {
  padding: 20px;
  background: #f5f7fa;
}

.content__wrapper {
  max-width: 800px;
  margin: auto;
}

.alert__wrapper {
  background: #ffffff;
  border-left: 5px solid #239F40;
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.alert__wrapper:hover {
  transform: translateY(-3px);
}

.alert__type {
  display: inline-block;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.alert__type--news_update {
  background: #ff6b5a;
  color: #fff;
}

.alert__title {
  font-size: 30px;
  line-height: 39px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.alert__description p {
  font-size: 17px;
  line-height: 27px;
  color: #555;
  margin-bottom: 10px;
}

.alert__description a {
  color: #e74c3c;
  text-decoration: none;
  font-weight: 500;
}

.alert__description a:hover {
  text-decoration: underline;
}

.alert__morelink {
  margin-top: 10px;
}

.alert__morelink a {
  display: inline-block;
  padding: 8px 15px;
  background: #e74c3c;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.alert__morelink a:hover {
  background: #c0392b;
}
/* Section */
.services {
  background-image: url('img/background-new-image.jpg');
  padding: 60px 20px;
}

/* Container */
.container {
  max-width: 1100px;
  margin: auto;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* Box */
.service-box {
  background: transparent;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  border-bottom: 2px solid hsla(0, 0%, 100%, .4) !important;
  border-right: 2px solid hsla(0, 0%, 100%, .4) !important;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
/* HEADER */
.main-header {
  background: #e00909;
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

/* NAV CONTAINER */
.nav-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  font-size: 22px;
  font-weight: bold;
  color: #2e7d32;
}

/* MENU */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-menu li a {
  text-decoration: none;
  font-size: 14px;
  color: #fff;
  font-weight: 500;
  transition: 0.3s;
}

/* HOVER EFFECT */
.nav-menu li a:hover {
  color: #fff;
}

/* DONATE BUTTON */
.donate-btn {
  font-weight: 700;
  color: #000 !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .nav-menu {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .nav-container {
    flex-direction: column;
    gap: 10px;
  }
}
/* Numbers */
.service-box h2 {
  font-size: 28px;
  color: #fff;
  margin-bottom: 8px;
}

/* Text */
.service-box p {
  font-size: 14px;
  color: #fff;
}

/* Icons */
.icon {
  font-size: 30px;
  display: block;
  margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
 .section {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
  }

  /* Background Image */
  .section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Yellow Card */
  .content-box {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    background: #DA0000;
    padding: 40px;
    max-width: 420px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  }

  .content-box small {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
    color: #fff;
  }

  .content-box h1 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
  }

  .content-box p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #fff;
  }

  .content-box button {
    background: #4FC76A;
    border: none;
    padding: 10px 18px;
    font-weight: bold;
    cursor: pointer;
    color: #fff;
  }

  /* Responsive */
  @media(max-width: 768px) {
    .section {
      height: auto;
    }

    .section img {
      height: 300px;
    }

    .content-box {
      position: static;
      transform: none;
      margin: 20px;
    }
  }
/* Section */
.get-involved {
  padding: 70px 20px;
  text-align: center;
  background: linear-gradient(135deg, #f9fbfd, #eef3f8);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #111;
  position: relative;
}
.net-btn {
  padding: 8px 12px;
  margin: 5px;
  border: 1px solid #ccc;
  background: #eee;
  cursor: pointer;
}

.net-btn.active {
  background: #355f8c;
  color: #fff;
}
.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #ff4d4d;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* Grid */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: 0.4s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.card:hover {
  transform: translateY(-10px) scale(1.02);
}

/* Image */
.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: 0.5s;
}

.card:hover img {
  transform: scale(1.1);
}

/* Overlay */
.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  z-index: 1;
}

/* Content */
.card-content {
  position: absolute;
  bottom: 0;
  padding: 20px;
  color: #fff;
  z-index: 2;
  text-align: left;
}

.card-content h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.card-content p {
  font-size: 14px;
  opacity: 0.9;
}

/* Hover Button Effect */
.card-content::after {
  content: "Explore →";
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  opacity: 0;
  transform: translateY(10px);
  transition: 0.3s;
}

.card:hover .card-content::after {
  opacity: 1;
  transform: translateY(0);
}

/* Remove link style */
.card a {
  text-decoration: none;
  color: inherit;
}

/* Responsive */
@media (max-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}
/* Section */
.subscribe-section {
  background: #000;
  padding: 60px 20px;
  color: #fff;
}

/* Layout */
.container {
  max-width: 1100px;
  margin: auto;
}

.subscribe-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Text */
.subscribe-text h2 {
  font-size: 28px;
  font-weight: 600;
}

/* Form */
.subscribe-form form {
  display: flex;
  background: #fff;
  border-radius: 50px;
  overflow: hidden;
  max-width: 500px;
}

/* Input */
.subscribe-form input {
  border: none;
  padding: 14px 20px;
  flex: 1;
  font-size: 14px;
  outline: none;
}

/* Button */
.subscribe-form button {
  border: none;
  padding: 14px 23px;
  background: #4FC76A;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

/* Hover */
.subscribe-form button:hover {
  background: #e60023;
}

/* Message */
.response-msg {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #ccc;
}

/* Responsive */
@media (max-width: 768px) {
  .subscribe-row {
    flex-direction: column;
    text-align: center;
  }

  .subscribe-form form {
    margin-top: 20px;
    width: 100%;
  }
}

/* Footer */
.main-footer {
  background: #0d0d0d;
  color: #fff;
  padding: 60px 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Columns */
.footer-col h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-col p {
  font-size: 14px;
  margin: 5px 0;
  color: #bbb;
}

.small-text {
  font-size: 12px;
  color: #777;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #bbb;
  font-size: 14px;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ff4d4d;
}

/* Button */
.footer-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  background: #fff;
  color: #111;
  border-radius: 20px;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s;
}

.footer-btn:hover {
  background: #ff4d4d;
  color: #fff;
}

/* Social Icons */
.social-icons {
  margin-top: 15px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  background: #222;
  color: #fff;
  padding: 8px 10px;
  border-radius: 50%;
  font-size: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ff4d4d;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.bottom-footer {
  background: #000;
  color: #ccc;
  padding: 30px 20px;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* Grid */
.footer-bottom-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Logo */
.footer-logo a {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  margin-bottom: 10px;
  display: inline-block;
}

/* Disclaimer */
.footer-disclaimer {
  font-size: 13px;
  max-width: 800px;
  margin: 10px auto;
  line-height: 1.6;
}

/* Links */
.footer-links {
  margin: 10px 0;
}

.footer-links a {
  color: #bbb;
  text-decoration: none;
  font-size: 13px;
  margin: 0 5px;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #ff4d4d;
}


/* Responsive */
@media (max-width: 600px) {
  .footer-disclaimer {
    font-size: 12px;
  }
}
   .contact {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(135deg, #ff4d4d, #ff0000);
  color: #fff;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(255, 0, 0, 0.4);
  transition: 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hover Effect */
.contact:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 25px rgba(255, 0, 0, 0.6);
}

/* Pulse Animation */
.contact::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: rgba(255, 0, 0, 0.4);
  z-index: -1;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  70% {
    transform: scale(1.4);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.boy{
    width: 50px;
}

    @media(max-width: 900px) {
      .hero {
        flex-direction: column;
        text-align: center;
      }

    }
    .trap{
      display: none;
    }
@media only screen and (max-width: 476px){
    /*.top-banner button {*/
    /*    display: none;*/
    /*}*/
    .top-banner span {
        font-size: 10px;
    }
    .top-banner {
        padding: 0px;
    }
    .donation-section h1 {
      color: #DA0000 !important;
    }
    .trap{
      display: block;
    }
    .hero {
         /*padding: 0px !important; */
        background-image: none;
    }
    .alert__title {
        text-align: justify;
    }
    .alert__description p {
        text-align: justify;
    }
    .alert__wrapper {
        padding: 10px;
    }
    .main-footer {
        padding: 20px;
    }
    .footer-grid {
        text-align: start;
    }
}
.donation-section {
  text-align: center;
  padding: 40px 20px;
}

.donation-section h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #fff;
}

.donation-card {
  background: #f2f2f2;
  max-width: 400px;
  margin: auto;
  padding: 20px;
  border-radius: 10px;
}

/* Toggle */
.toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.toggle button {
  flex: 1;
  padding: 10px;
  border: 1px solid #ccc;
  background: #eee;
  cursor: pointer;
}

.toggle .active {
  border: 2px solid #2c5c8a;
  background: #dbe7f3;
}

/* Grid */
.amount-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 15px;
}

.amount-grid button {
  padding: 12px;
  border: 1px solid #ccc;
  background: #eee;
  cursor: pointer;
}

.amount-grid .active {
  border: 2px solid #2c5c8a;
  background: #dbe7f3;
}

/* Custom */
.custom-amount {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  padding: 10px;
  margin-bottom: 15px;
  background: #fff;
}

.custom-amount input {
  border: none;
  outline: none;
  flex: 1;
}

/* Button */
.give-btn {
  width: 100%;
  padding: 12px;
  background: #355f8c;
  color: #fff;
  border: none;
  cursor: pointer;
}