* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  line-height: 27px;
}
body{
  overflow-x: hidden;
}
nav {
  width: 100%;
  padding: 15px;
  background-color: white;
  z-index: 5;
  position: fixed;
  text-transform: uppercase;
}
.mb {
  display: none;
  position: sticky;
  top: 0;
  z-index: 12;
  text-transform: uppercase;
}
.mb-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  position: fixed;
  background-color: white;
  gap: 30px;
  padding: 7px;
}
.mb-logo {
  display: flex;
  justify-content: space-around;
  gap: 5px;
}
.mb-logo img {
  height: 40px;
}
.mb-logo a {
  text-decoration: none;
  display: flex;
}
.dn2 {
  border: 1px solid #f27868;
  padding: 7px;
  color: #f27868;
  border-radius: 5px;
}
.login2 {
  border: 1px solid black;
  padding: 7px;
  color: black;
  border-radius: 5px;
}

.dn2:hover {
  background: linear-gradient(to right, rgb(217, 195, 245), rgb(196, 108, 244));
  color: black;
}
.login2:hover {
  background: linear-gradient(to right, rgb(217, 195, 245), rgb(196, 108, 244));
  color: black;
}
.menu-list li a {
  text-decoration: none;
  color: black;
}
.menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: absolute;
  background-color: white;
}
.menu-btn {
  position: relative;
  background-color: white;
}
.main-menu {
  width: 100%;

  display: flex;
  gap: 20px;
  /* background-color: antiquewhite; */
  align-items: center;
  gap: 15px;
  justify-content: space-evenly;
}

.main-menu img {
  width: 100%;
  height: 40px;
}
.menu-child {
  width: 100%;
  display: flex;
  gap: 15px;
  justify-content: space-evenly;
}
.menu-list2 {
  width: 70%;
  /* background-color: aqua; */
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-evenly;
}
.menu-list2 li {
  list-style: none;
}
.menu-list2 a {
  text-decoration: none;
  color: black;
  font-weight: 600;
  font-size: 14px;
}
.menu-list2 a:hover {
  color: #f27868;
}
.main-menu a {
  text-decoration: none;
  /* color: black; */
  font-weight: 600;
}
.dn {
  border: 1px solid #f27868;
  padding: 7px;
  color: #f27868;
  border-radius: 5px;
}
.login {
  border: 1px solid black;
  padding: 7px;
  color: black;
  border-radius: 5px;
}

.dn:hover {
  background: linear-gradient(to right, rgb(217, 195, 245), rgb(196, 108, 244));
  color: black;
}
.login:hover {
  background: linear-gradient(to right, rgb(217, 195, 245), rgb(196, 108, 244));
  color: black;
}
swiper-container {
  width: 100%;
  height: 100%;
}

swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero {
  width: 100%;
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: left;
  padding: 0 20px;
  overflow: hidden;
  margin-top: 80px;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.137);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: Roboto Slab;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #ddd;
  font-family: Roboto Slab;
}

.buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 12px 25px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn.primary {
  background: linear-gradient(to right, #f27868, #df3721);
  color: gainsboro;
}

.btn.primary:hover {
  background: white;
  color: blueviolet;
}

.btn.secondary {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn.secondary:hover {
  background: #fff;
  color: #333;
}
.intro {
  padding: 30px 20px;
  width: 55%;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 70px;
}

.intro h2 {
  font-size: 28px;
  font-weight: bold;
  font-family: Roboto Slab;
}

.intro h2 span {
  background: linear-gradient(to right, rgb(152, 88, 211), blueviolet);
  background-clip: text;
  color: transparent;
  font-family: Roboto Slab;
}

.cards {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 30px;
}

.card {
  width: 300px;
  border: 1px solid #eee;
  padding: 15px;
  border-radius: 8px;
  /* background: #fff; */
  text-align: left;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);

  overflow: hidden;
}

.card-img {
  width: 100%;
  border-radius: 5px;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
.card:hover .card-img {
  animation: flip2 0.6s linear 1;
}
@keyframes flip2 {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.card h3 {
  font-size: 18px;
  margin: 10px 0 5px;
}

.card .tagline {
  background: linear-gradient(to right, #f27868, #df3721);
  background-clip: text;
  color: transparent;
  font-weight: bold;
  margin-bottom: 10px;
}
.card p {
  font-weight: 500;
}
.causes {
  max-width: 1200px;
  margin: 40px auto;
  padding: 20px;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.header h2 {
  font-size: 28px;
  font-weight: bold;
  font-family: Roboto Slab;
}

.header h2 span {
  color: #000;
  font-family: Roboto Slab;
}

.header h2 {
  background: linear-gradient(to right, rgb(152, 88, 211), blueviolet);
  background-clip: text;
  color: transparent;
}

.btn2 {
  border: 2px solid #f27868;
  padding: 10px 20px;
  cursor: pointer;
  background: linear-gradient(to right, #f27868, #df3721);
  background-clip: text;
  color: transparent;
  font-weight: bold;
  text-decoration: none;
  border-radius: 10px;
}
.btn2:hover {
  background: linear-gradient(to right, rgb(217, 195, 245), rgb(196, 108, 244));
  color: black;
}

.cause-container {
  display: flex;
  gap: 20px;
  /* flex-wrap: wrap; */
}

.cause-card {
  background: #fff;
  border: 1px solid #eee;
  width: 32%;
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.img1 {
  position: relative;
}

.img1 > img {
  width: 100%;
  height: auto;
}
.cause-dn {
  width: 100%;
  background-color: hwb(0 0% 100% / 0.603);
  position: absolute;
  top: 0;
  height: 200px;
  transform: translateY(-100%);
  transition: transform 0.5s ease-in-out;
}
.cause-btn {
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dn3 {
  text-decoration: none;
  color: #f27868;
  border: 1px solid #f27868;
  padding: 5px;
  border-radius: 5px;
}
.dn3:hover {
  background-color: #f27868;
  color: white;
}
.img1:hover .cause-dn {
  transform: translateY(0);
}
.cause-content {
  padding: 20px;
}

.cause-content h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.cause-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.progress {
  position: relative;
  background: #f2f2f2;
  height: 8px;
  border-radius: 4px;
  margin: 20px 0 10px;
}

.bar {
  background: #f27868;
  height: 100%;
  border-radius: 4px;
}

.percent {
  position: absolute;
  top: -20px;
  right: 0;
  background: #fff;
  border: 2px solid green;
  color: green;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 50%;
}

.goal {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
}

.goal span {
  color: green;
  font-weight: bold;
}
.about {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  text-align: center;
}

.about h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 5px;
  font-family: Roboto Slab;
}

.about h2 span {
  background: linear-gradient(to right, rgb(152, 88, 211), blueviolet);
  background-clip: text;
  color: transparent;
}

.about-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  text-align: left;
  margin-top: 70px;
}

.about-left {
  flex: 1;
}

.about-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
}

.about-item img {
  width: 160px;
  height: 140px;
  object-fit: cover;
  margin-right: 20px;
  border-radius: 5px;
}

.about-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 8px;
}

.about-item p {
  font-size: 14px;
  color: #666;
  line-height: 27px;
}

.about-right {
  flex: 1;
}

.about-right p {
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
  line-height: 27px;
}

.highlight {
  background: linear-gradient(to right, #f27868, #df3721);
  background-clip: text;
  color: transparent;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.about-right ul {
  list-style: none;
  padding: 0;
}

.about-right ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

.about-right ul li::before {
  content: "✔ ";
  color: green;
  font-weight: bold;
}
.stats-section {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 60px 20px;
  /* background: rgba(0, 0, 50, 0.6); */
  /* background-image: url("https://wordpress.vecurosoft.com/techbiz/wp-content/uploads/2022/08/counter-bg-1-1.jpg"); */
  margin-top: 70px;
}

.stat-box {
  text-align: center;
  color: white;
  transition: transform 0.6s ease;
}
.stat-box:hover {
  transform: scale(1.1);
}

.icon2 {
  background: blueviolet;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 6px;
  font-size: 28px;
  margin-bottom: 10px;
}

.stat-box h2 {
  font-size: 36px;
  margin: 5px 0;
  font-weight: bold;
}

.stat-box p {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: Roboto Slab;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
  position: relative;
  margin-top: 70px;
  text-transform: uppercase;
  background: linear-gradient(to right, rgb(152, 88, 211), blueviolet);
  background-clip: text;
  color: transparent;
  font-family: Roboto Slab;
}

.news-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.news-card {
  width: 300px;
  border: 1px solid #eee;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease;
  background-color: #fff;
}
.news-img {
  transform-style: preserve-3d;
  transition: transform 0.6s;
}
.news-card:hover {
  transform: translateY(-5px);
}
.news-card:hover .news-img {
  animation: flip 0.6s linear 1;
}
@keyframes flip {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1.1);
  }
}
.news-image {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #f27868;
  color: white;
  padding: 5px 12px;
  font-weight: bold;
  font-size: 14px;
  border-radius: 2px;
}

.news-content {
  padding: 20px;
  position: relative;
}

.news-date {
  font-size: 14px;
  color: #999;
  margin-bottom: 10px;
}

.news-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.news-description {
  color: #666;
  font-size: 14px;
}

.slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  /* background: #fff; */
  box-shadow: 0 0 5px 5px ghostwhite;
  margin-top: 100px;
}

.slide-track {
  display: flex;
  width: calc(250px * 10);
  animation: scroll 20s linear infinite;
}

.slide {
  width: 250px;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.slide h3 {
  font-weight: bold;
  font-size: 18px;
  font-family: Roboto Slab;
}
.slide p {
  font-family: Roboto Slab;
}

.blue {
  color: blue;
}
.green {
  color: seagreen;
}
.red {
  color: red;
}
.yellow {
  color: goldenrod;
}
.purple {
  color: purple;
}
.orange {
  color: orange;
}
.teal {
  color: teal;
}
.pink {
  color: deeppink;
}
.brown {
  color: brown;
}
.gray {
  color: gray;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.site-footer {
  background: #2c2c2c;
  color: #ccc;
  padding: 60px 20px;
  margin-top: 70px;
  overflow: hidden;
}

.footer-main {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1 1 220px;
  margin: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-title {
  font-size: 1.4rem;
  background: linear-gradient(to right, #f27868, #df3721);
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
  font-family: Roboto Slab;
}

.footer-section.about2 p {
  line-height: 30px;
  font-family: Roboto Slab;
}

.footer-section.about2 .read-more {
  background: linear-gradient(to right, rgb(152, 88, 211), blueviolet);
  background-clip: text;
  color: transparent;
  text-decoration: none;
  margin-top: 10px;
  display: inline-block;
}

.footer-section.links ul {
  list-style: none;
}

.footer-section.links ul li {
  margin-bottom: 10px;
}

.footer-section.links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
  font-family: Roboto Slab;
}

.footer-section.links ul li a:hover {
  color: blueviolet;
}

.office-worldwide .map-container {
  width: 100%;
  height: auto;
}

.office-worldwide .map-container img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-bottom {
  border-top: 1px solid #444;
  margin-top: 40px;
  padding-top: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #888;
}

.social-icons a {
  margin-left: 15px;
  color: #ccc;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: blueviolet;
}

@media (max-width: 768px) {
  nav {
    display: none;
  }
  .mb {
    display: block;
  }
  .menu-list {
    left: -21px;
    padding: 10px;
  }
  .cards {
    flex-direction: column;
  }
  .header {
    flex-direction: column;
    gap: 15px;
  }
  .cause-container {
    flex-direction: column;
  }
  .cause-card {
    width: 100%;
    overflow: hidden;
  }
  .about-container {
    flex-direction: column;
  }
  .intro {
    width: 95%;
  }
  .office-worldwide .map-container {
    width: 75%;
  }
}
@media (max-width: 1130px) {
  .menu-list2 {
    gap: 40px;
  }
}
@media (max-width: 1000px) {
  .menu-list2 {
    gap: 10px;
    width: 60%;
  }
}
@media (max-width: 1000px) {
  .mb-main {
    gap: 2px;
  }
}

@media (max-width: 450px) {
  .mb-logo img {
    height: 30px;
  }
   .mb-logo a{
          align-items: center;
    font-size: 12px;
  }
}
html, body {
  width: 100%;
  overflow-x: hidden;
}

/* Make all images responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
