* {
  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: fixed;
  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;
}

.login2 {
  border: 1px solid black;
  padding: 7px;
  color: #3bb105;
  border-radius: 5px;
}

.login2:hover {
  background: linear-gradient(to right, #93d972, #277005);
  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: 50px;
}
.menu-child {
  width: 100%;
  display: flex;
  gap: 15px;
  justify-content: space-evenly;
}
.menu-list2 {
  width: 75%;
  /* 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: rgb(208, 176, 13);
}
.main-menu a {
  text-decoration: none;
  /* color: black; */
  font-weight: 600;
}
.dn {
  border: 1px solid #403d3d;
  padding: 7px;
  color: c;
  border-radius: 5px;
}
.login {
  border: 1px solid black;
  padding: 7px;
  color: #3bb105;
  border-radius: 5px;
}

.login:hover {
  background: linear-gradient(to right, #93d972, #277005);
  color: white;
}
.top-about {
  width: 100%;
  position: relative;
  padding-top: 80px;
}

.top-img {
  width: 100%;
  height: 500px;
  color: white;
  filter: brightness(50%);
  /* object-fit: contain; */
}
.overlay h1 {
  font-size: 42px;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: Roboto Slab;
  color: white;
}
.overlay .breadcrumb {
  font-size: 16px;
  opacity: 0.9;
  font-family: Roboto Slab;

  color: white;
}

.breadcrumb span {
  font-family: Roboto Slab;
  font-size: 20px;
}
.overlay .breadcrumb .home-icon {
  margin-right: 5px;
}
.overlay {
  position: absolute;
  top: 50%;
  left: 15%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 18px;
}

/* TOP CONTACT BAR */
.top-contact {
  background: var(--bg);
  margin: 18px 0;
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.top-contact .container {
  display: flex;
  gap: 80px;
  align-items: center;
  padding: 18px 22px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: center;
  border: 1px solid lightblue;
  padding: 20px;
  border-radius: 5px;
  background-color: rgb(183, 227, 241);
  width: 100%;
}

.contact-item .icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #eef6fb;
  display: grid;
  place-items: center;
  font-size: 20px;
  color: var(--accent);
}
.txt-bold {
  font-weight: 700;
  color: var(--accent);
  font-size: 14px;
}
.txt-muted {
  font-size: 13px;
  color: var(--muted);
}

/* MAIN GRID */
.contact-main {
  padding: 18px 0;
}
.grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 28px;
  align-items: center;
}

/* FORM CARD */
.contact-form-wrap {
  border: 1px solid lightblue;
  background: linear-gradient(to right, #7bb6f9, #8f97a1);
  padding: 28px;
  border-radius: 10px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e6eef4;
  border-radius: 6px;
  margin-bottom: 14px;
  font-size: 14px;
  color: #16324a;
  background: #fff;
}
.contact-form textarea {
  resize: vertical;
}
.btn-send {
  display: inline-block;
  background: linear-gradient(to right, #7bb6f9, #023a7a);
  color: black;
  padding: 12px 20px;
  border-radius: 8px;
  border: 0;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(11, 59, 111, 0.12);
}
.btn-send:hover {
  background: white;
  color: blue;
}

/* MAP WRAP */
.map-wrap {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* small helper */
.sr-only {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Responsive */
@media (max-width: 1000px) {
  .grid {
    grid-template-columns: 1fr;
  }
  .map-wrap iframe {
    height: 320px;
  }
  .top-contact .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .contact-item {
    padding-right: 0;
    border-right: none;
  }
}

.ft-wrap {
  padding: 10px;
  background: linear-gradient(
    180deg,
    rgba(15, 16, 23, 0.98) 0%,
    rgba(12, 13, 18, 0.98) 100%
  );
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.01);
  position: relative;
  margin-top: 70px;
}

/* inner layout */
.ft-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 420px 260px;
  gap: 65px;
  align-items: start;
}

/* column common */
.ft-col {
  padding: 6px 0;
}

/* ABOUT column */
.ft-about .ft-title {
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 18px;
}
.ft-about .ft-text {
  color: #9da1a9;
  max-width: 320px;
  margin-bottom: 18px;
}
.ft-subscribe {
  display: flex;
  gap: 8px;
  align-items: center;
  max-width: 360px;
}
.ft-input {
  flex: 1;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.03);
  background: rgba(255, 255, 255, 0.02);
  color: #dfe3e8;
  font-size: 14px;
  outline: none;
}
.ft-send {
  width: 54px;
  height: 44px;
  border-radius: 8px;
  background: #eaa53a;
  border: none;
  color: #111;
  font-weight: 700;
  cursor: pointer;
}
.sr-only {
  position: absolute;
  left: -9999px;
}

/* social icons */
.ft-social {
  margin-top: 22px;
  display: flex;
  gap: 12px;
}
.ft-social .s {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  color: #cfd3d8;
  text-decoration: none;
  transition: all 0.18s ease;
}
.ft-social .s svg {
  width: 16px;
  height: 16px;
  fill: #cbd0d6;
  opacity: 0.95;
}
.ft-social .s:hover {
  background: rgba(234, 165, 58, 0.12);
  transform: translateY(-3px);
}

/* middle contact card */
.contact-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 20px 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.02);
}
.logo-wrap {
  text-align: center;
  margin-bottom: 12px;
}
.logo {
  height: 38px;
  display: inline-block;
  object-fit: contain;
}

/* contact items */
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 6px;
}
.ci {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #bfc5cc;
}
.ci-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  display: grid;
  place-items: center;
  font-size: 18px;
}
.ci-icon.circle {
  background: #eaa53a;
  color: #111;
}
.ci-text .ci-line {
  font-weight: 600;
  color: #d9dce0;
}
.ci-text .ci-sub {
  font-size: 13px;
  color: #9da1a9;
  margin-top: 2px;
}
.ci-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.02);
  margin: 8px 0;
}

/* phone area */
.ci.phone .ci-phone {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-top: 4px;
}
.ci.phone .ci-label {
  font-size: 12px;
  color: #9da1a9;
}

/* right column - explore & map */
.ft-right .ft-title {
  color: #fff;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 18px;
}
.ft-links {
  list-style: none;
  margin-bottom: 18px;
}
.ft-links li {
  margin-bottom: 12px;
}
.ft-links a {
  color: #bfc5cc;
  text-decoration: none;
  font-weight: 600;
}
.ft-links a:hover {
  color: #fff;
}

/* map styling */
.ft-map iframe {
  border: 0;
  display: block;
  width: 100%;
  margin-top: 50px;
  filter: brightness(70%);
}

/* COPYRIGHT */
.ft-copy {
  max-width: 1200px;
  margin: 26px auto 0;
  color: #80848d;
  text-align: center;
  padding: 18px 0 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.01);
  font-size: 14px;
}

/* decorative faint pattern (optional) */
.ft-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 320px;
  background-image: radial-gradient(
    circle at 20px 20px,
    rgba(255, 255, 255, 0.01) 1px,
    transparent 1px
  );
  opacity: 0.04;
  pointer-events: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .ft-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .ft-right .ft-title {
    margin-top: 6px;
  }
  .contact-card {
    order: 2;
  }
}
@media (max-width: 520px) {
  .ft-inner {
    gap: 12px;
  }
  .logo {
    height: 32px;
  }
}

@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%;
  }
  .vertical-text {
    display: none;
  }
  @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;
    }
    .mb-logo {
      gap: 30px;
    }
  }
  @media (max-width: 320px) {
    .container {
      padding: 1rem;
    }
    .blog-section {
      padding: 0px;
    }
  }

  @media (max-width: 768px) {
    .hero {
      flex-direction: column;
      /* padding: 30px; */
      height: auto;
      margin-top: 60px;
      padding-bottom: 20px;
    }

    .hero-content {
      max-width: 100%;
      text-align: center;
      order: 2;
      margin-top: 20px;
    }

    .hero-image {
      width: 100%;
      height: auto;
      order: 1;
    }

    .hero-image img {
      width: 100%;
      height: auto;
      border-radius: 8px;
    }

    .subtitle {
      font-size: 14px;
    }

    .h1 {
      font-size: 32px;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .btn {
      font-size: 14px;
      padding: 10px 20px;
    }

    .trend-text {
      display: none;
    }

    swiper-slide {
      background: #dfe4dc;
    }
    .feature-item {
      flex: 1 1 125px;
    }
  }
}
/* Remove mobile side gap */
html,
body {
  width: 100%;
  overflow-x: hidden;
}

/* Make all images responsive */
img {
  max-width: 100%;
  height: auto;
  display: block;
}
