* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

/* ===== NAVBAR ===== */
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #fdfcf4;
  border-bottom: 1px solid #eee;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 60px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo svg {
  width: 45px;
  height: auto;
}

.logo-text {
  color: #7D846E;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.1;
}

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

.nav-links li {
  position: relative;
}

.nav-links li a {
  display: block;
  text-decoration: none;
  font-weight: 500;
  padding: 10px 15px;
  font-size: 15px;
  color: #7D846E;
  transition: color 0.3s ease;
}

/* Hover underline */
.nav-links li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #8b7b62;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-links li:hover > a::before {
  width: 60%;
}

.nav-links li:hover > a {
  color: #8b7b62;
}

/*Navlink page active*/
        .nav-links a.active::after {
            content: "";
            width: 70%;
            height: 2px;
            background: #7D846E;
            position: absolute;
            bottom: -4px;
            right: 20px;
        }

/* Dropdown Menu */
.nav-links li ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 200px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  z-index: 999;
  animation: fadeIn 0.25s ease-in-out;
  list-style: none;
}

.nav-links li ul li {
  border-bottom: 1px solid #f0f0f0;
}

.nav-links li:hover > ul {
  display: block;
}

/* Dropdown items */
.nav-links li ul li a {
  padding: 12px 18px;
  color: #333;
  font-size: 14px;
}

.nav-links li ul li a:hover {
  background: #EEE8D0;
  color: #8b7b62;
}

/* Animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #333;
  border-radius: 2px;
}

/* MOBILE NAV */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0;
    background: #fdfcf4;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 20px 0;
    border-top: 1px solid #eee;
  }
  .nav-links.active {
    display: flex;
  }
  .hamburger {
    display: flex;
  }
}


        /* ===== SLIDER WRAPPER ===== */
        .hero-slide {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

  /* ===== HERO SLIDER ===== */
/* ===== HERO SLIDER FULL WIDTH & TALLER ===== */
  .hero-slider {
    position: relative;
    width: 100vw;
    margin: 0;
    overflow: hidden;
    background-size: cover;
    object-fit: cover;
  }
  .slides {
    position: relative;
    margin-top: 70px;
    width: 100%;
    height: 80vh; /* taller height */
    min-height: 500px;
    display: block;
    overflow: hidden;
  }
.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.9s ease, transform 1s ease;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2; /* ensures active slide is above others */
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Overlay */
.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.1); /* subtle dark overlay */
    z-index: 1; /* BELOW text but ABOVE image */
}


  /* text overlay container (per-slide) */
  .slide-text {
    position: absolute;
    z-index: 2;
    left: 60px;
    top: 50%;
    transform: translateY(-50%) translateX(-80px);
    max-width: 52%;
    color: #ffefc9;
    pointer-events: none;
    opacity: 0;
    transition: transform 0.6s cubic-bezier(.22,.9,.28,1), opacity .45s ease;
    text-shadow: 0 6px 24px rgba(0,0,0,0.55);
  }
  .slide-text h2 { font-size: 2.8rem; font-weight: 900; line-height: 1.05; margin-bottom: 8px; color: #fff; }
  .slide-text p { font-size: 1.05rem; color: #fff; opacity: .95; font-weight: 600; }

  /* When we want it shown */
  .slide-text.show { transform: translateY(-50%) translateX(0); opacity: 1; }

  /* When hiding (slide-out) */
  .slide-text.hide { transform: translateY(-50%) translateX(-80px); opacity: 0; transition: transform .5s ease, opacity .35s ease; }

  /* Thumbnails */
  .thumbnails {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background: rgba(0,0,0,0.35);
    padding: 8px 10px;
    border-radius: 8px;
    z-index: 40;
    align-items: center;
  }
  .thumb {
    width: 72px;
    height: 48px;
    overflow: hidden;
    border-radius: 6px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform .25s ease, border-color .22s ease, opacity .22s ease;
    opacity: .8;
    background: #222;
  }
  .thumb img { width:100%; height:100%; object-fit: cover; display:block; }
  .thumb.active { transform: scale(1.06); border-color: #ffefc9; opacity: 1; box-shadow: 0 6px 18px rgba(0,0,0,0.35); }


/*--campaign-section--*/
.campaign {
    position: relative;
    padding: 70px 4% 120px; /* moved section higher */
    background: white;
    overflow: hidden;
    line-height: 1.7;
}

.campaign-shape {
    position: absolute;
    top: 0;
    right: -40%;
    width: 90%;
    height: 100%;
    background: #fdfcf4;
    border-radius: 50%;
    z-index: 0;
}

.campaign-content {
    position: relative;
    max-width: 100%;
    z-index: 2;
}

.tag {
    display: inline-block;
    padding: 8px 20px;
    background: #e6e6e6;
    color: #7D846E;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
}

.campaign-title {
    margin-top: 30px;
    font-size: 42px;
    font-weight: bold;
    color: #3a3a3a;
}

.campaign-title span:first-child {
    border-bottom: 3px solid #8B7B62;
}

.campaign-title span:last-child {
    color: #8B7B62;
}

/* ⭐ UPDATED — paragraphs now fill full width professionally */
.campaign-text {
    margin: 30px 0;      /* increased vertical spacing */
    font-size: 18px;
    color: #444;
    width: 100%;
    max-width: 100%;
    line-height: 1.75;   /* better readability */
    text-align: justify;
}




/* ===== MOBILE RESPONSIVENESS ===== */
@media (max-width: 768px) {

    .campaign {
        padding: 60px 6% 100px;
    }

    .campaign-title {
        font-size: 32px;
    }

    .campaign-text {
        font-size: 16px;
    }

}

        /* ===== Foundation SECTION ===== */
        .foundation {
    position: relative;
    padding: 70px 4% 120px; /* moved section higher */
    background: white;
    overflow: hidden;
    line-height: 1.7;
        }

        .foundation-shape {
            position: absolute;
            top: 0;
            right: -40%;
            width: 90%;
            height: 100%;
            background: #3a3a3a;
            border-radius: 50%;
            z-index: 0;
        }

        .foundation-content {
            position: relative;
            max-width: 100%;
            z-index: 2;
        }

        .tag {
            display: inline-block;
            padding: 8px 20px;
            background: #e6e6e6;
            color: #7D846E;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
        }

        .foundation-title {
            margin-top: 30px;
            font-size: 42px;
            font-weight: bold;
            color: #3a3a3a;
        }

        .foundation-title span:first-child {
            border-bottom: 3px solid #8B7B62;
        }

        .foundation-title span:last-child {
            color: #8B7B62;
        }

        .foundation-text {
.foundation-text {
    margin: 30px 0;          /* same spacing as campaign */
    font-size: 18px;         /* match campaign */
    color: #444;             /* match campaign */
    width: 100%;             /* full width */
    max-width: 100%;         /* remove the 90% limit */
    line-height: 1.75;       /* same as campaign for readability */
    text-align: justify;     /* align with campaign */
}

}



/*--about section 2--*/
.about-section2 {
  position: relative;
  min-height: 100vh;
  background: #fdfcf4;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  padding: 60px 20px;
}

.about-section2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(245, 245, 240, 0.7);
  z-index: 0;
}
.about-container2 {
  position: relative;
  z-index: 1;
  padding: 10px;
  max-width: 100%;
}

.about-title2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #3a3a3a;
}

.about-text2 {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
}
 /*--core-values--*/
    .core-values-section {
      background-color: white;
      padding: 60px 10%;
    }

    h2 {
      text-align: center;
      font-size: 28px;
      color: #3a3a3a;
      margin-bottom: 50px;
      font-weight: 700;
    }

    .core-values {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      justify-items: center;
    }

    .core-box {
      background-color: white;
      border: 1px solid #e2dca4;
      border-radius: 12px;
      padding: 30px 20px;
      text-align: center;
      width: 90%;
      max-width: 260px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .core-box:hover {
      transform: translateY(-8px);
      box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    }

    .core-box i {
      font-size: 30px;
      color: #b79b1f;
      margin-bottom: 10px;
    }

    .core-box h3 {
      font-size: 18px;
      color: #222;
      margin-bottom: 10px;
    }

    .core-box p {
      font-size: 15px;
      color: #555;
      line-height: 1.5;
    }

    /* Unique box colors */
    .revelation { border-top: 4px solid #7D846E; }
    .love { border-top: 4px solid #7D846E; }
    .knowledge { border-top: 4px solid #7D846E; }
    .unity { border-top: 4px solid #7D846E; }



/* Resources Section Wrapper */
.resources-wrap {
  max-width: 1100px;
  margin: 48px auto;
  padding: 0 20px;
}

/* Section Header */
.resources-header {
  text-align: center;
  margin-bottom: 34px;
  font-size: 2.2em;;
  font-weight: bold;
  color: #3a3a3a;
}
.resources-header h1 {
  font-size: 30px;
  letter-spacing: 1px;
  color: #515151;
  margin-bottom: 8px;
  font-weight: 600;
}
.resources-header p {
  font-size: 15px;
  color: #777;
  max-width: 820px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Resources Cards */
.resources-cards {
  display: flex;
  gap: 22px;
  align-items: stretch;
  justify-content: center;
}

/* Individual Card */
.resources-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 22px rgba(22,28,36,0.08);
  border: 1px solid rgba(0,0,0,0.03);
  overflow: hidden;
  width: calc(50% - 11px);
  display: flex;
  flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease;
}
.resources-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(22,28,36,0.14);
}

/* Card Image */
.resources-card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #eee;
}
.resources-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay Icon */
.resources-media-badge {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0,0,0,0.04);
}
.resources-media-badge svg {
  width: 20px;
  height: 20px;
}

/* Card Body */
.resources-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.resources-title {
  font-size: 18px;
  font-weight: 600;
  color: #222;
}
.resources-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
  flex: 1;
}

/* Footer Link */
.resources-card-footer {
  margin-top: 6px;
}
.resources-link {
  text-decoration: none;
  font-size: 14px;
  color: #8b7b62;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Responsive */
@media (max-width: 820px) {
  .resources-cards { gap: 18px; }
  .resources-card { width: 100%; }
  .resources-card-media { height: 180px; }
  .resources-header h1 { font-size: 34px; }
}
@media (max-width: 420px) {
  .resources-card-media { height: 150px; }
  .resources-header h1 { font-size: 28px; }
}



    /* get-involved Section Container */
    .get-involved-section {
      background: white;/* soft light gray-blue background */
      padding: 80px 10%;
      text-align: center;
      border-top:1px solid #eee;
    }

    .get-involved-section h2 {
      font-size: 2.2em;
      margin-bottom: 15px;
      color: #333;
    }

    .get-involved-section p {
      color: #555;
      max-width: 750px;
      margin: 0 auto 50px;
      font-size: 1.1em;
      line-height: 1.7em;
    }

    /* Cards Container */
    .card-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 25px;
    }

    /* Individual Card */
    .card {
      background-color: #fff;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      border-radius: 10px;
      width: 300px;
      padding: 30px 25px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .card h3 {
      color: #2c3e50;
      margin-bottom: 15px;
      font-size: 1.3em;
    }

    .card p {
      color: #555;
      font-size: 1em;
      margin-bottom: 25px;
      line-height: 1.6em;
    }

    /* Buttons */
    .btn {
      display: inline-block;
      padding: 12px 25px;
      border-radius: 6px;
      background-color: #e6e6e6;
      color: #222;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .btn:hover {
      background-color: #8b7b62;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .card-container {
        flex-direction: column;
        align-items: center;
      }
    }

/*social media*/
.follow-share {
  background: #fff;
  padding: 50px 20px 60px; /* increase bottom padding for spacing */
  text-align: center;
  border-top: 1px solid #eee;
}

.follow-share h2 {
  font-size: 32px;
  font-weight: 700;
  color: #7D846E;
  margin-bottom: 10px;
}

.fs-text {
  font-size: 16px;
  margin-bottom: 25px;
  color: #444;
}

.share-social-icons a {
  font-size: 26px;
  margin: 0 12px;
  color: #8ec5f6;
  text-decoration: none;
  background: none;
  padding: 0;
  display: inline-block;
  transition: 0.3s ease;
}

.share-social-icons a:hover i {
  opacity: 0.7;
}

/* Community Form Section */
.join-community {
  background: #ffffff;
  padding: 80px 20px; /* increase top padding for separation from social section */
  display: flex;
  justify-content: center;
}

.jc-container {
  max-width: 650px;
  width: 100%;
}

/* Header */
.head-community h3 {
  color: #7D846E;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
}

.head-community .subtext {
  font-size: 16px;
  margin-bottom: 25px;
  color: #444;
}

/* FORM */
.join-form {
  background: #fff;   /* cream color */
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  border: 1px solid #eceae1;
}

.join-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #7D846E;
}

.join-form input,
.join-form select {
  width: 100%;
  padding: 12px;
  border: 1px solid #cbc8ba;
  border-radius: 6px;
  margin-bottom: 18px;
  font-size: 15px;
  background: #fdfcf4;
  transition: 0.3s;
}

/* Improved placeholder color */
.join-form input::placeholder,
.join-form select::placeholder {
  color: #9a978c;
  font-style: italic;
}

/* Focus */
.join-form input:focus,
.join-form select:focus {
  outline: none;
  border-color: #7D846E;
  background: #ffffff;
}

/* Consent box */
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}

.consent label {
  font-size: 14px;
  color: #444;
}

/* Button */
.submit-btn {
  width: 100%;
  background: #6b745e;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  background: #6b745e;
}

/* SUCCESS BOX */
.success-box {
  background: #FDFCF4;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #dedede;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
}

.success-box h4 {
  color: #7D846E;
  margin-bottom: 10px;
  font-size: 22px;
}

/* Telegram Button */
.telegram-btn {
  display: inline-block;
  margin-top: 12px;
  background: #1c93d1;
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.telegram-btn:hover {
  background: #187bb1;
}

/* ===== FOOTER ===== */
footer {
  background: #7D846E;
  color: #fff;
  padding: 60px 20px 30px;
  font-size: 15px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.footer-left, .footer-right {
  flex: 1 1 250px;
}

.footer-left h3, .footer-right h3 {
  color: #FFD54F;
  font-size: 18px;
  margin-bottom: 15px;
}

.footer-left p {
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-right ul {
  list-style: none;
}

.footer-right ul li {
  margin-bottom: 10px;
}

.footer-right ul li a {
  color: #fdfcf4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-right ul li a:hover {
  color: #FFD54F;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 20px;
}

.footer-social-icons {
  margin-bottom: 15px;
}

.footer-social-icons a {
  color: #fff;
  font-size: 20px;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.footer-social-icons a:hover {
  color: #FFD54F;
}

/* RESPONSIVE FOOTER */
@media (max-width: 768px) {
  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
  .footer-left, .footer-right {
    flex: 1 1 100%;
  }
}

