        :root {
            --primary-green: #2d5630;
            --light-green: #4a7c4e;
            --cream: #f5f1e8;
            --dark-text: #1a1a1a;
            --light-text: #666;
            --green: #18452c;
            --text: #24382b;
            --dark-green: #063b25;
            --main-green: #2f7c4b;
            --line-green: #8dae94;
            --white: #ffffff;
            --muted: #65746a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'DM Sans', sans-serif;
            color: var(--dark-text);
            background: var(--cream);
            overflow-x: hidden;
            margin: 0;
        }

        /* .container{
          max-width: 1220px;
        } */

        /* Navigation */
        .navbar {
            background-color: #fff;
            padding: 1rem 0;
            box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            color: var(--primary-green) !important;
        }

        .navbar-brand img {
            width: 45px;
            height: 45px;
        }

        .nav-link:hover {
            color: var(--primary-green) !important;
        }

        /* Hero Section */
        .hero-section {
            background-color: var(--cream);
            padding: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-green), var(--light-green));
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            color: var(--dark-text);
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        .hero-description {
            color: var(--dark-text);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .carousel-container{
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
}

.carousel-item img{
    aspect-ratio: 16/9;
    height: auto;
    object-fit: cover;
}

.carousel-control-prev,
.carousel-control-next{
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev{
    left: 15px;
}

.carousel-control-next{
    right: 15px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon{
    filter: invert(1);
}

.carousel-indicators{
    bottom: 10px;
    margin-bottom: 0;
}

.carousel-indicators button{
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    background: #fff;
    opacity: .6;
}

.carousel-indicators .active{
    opacity: 1;
}

@media (max-width: 991px){

    .carousel-item img{
        height: 300px;
    }

    .carousel-control-prev,
    .carousel-control-next{
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 576px){

    .carousel-item img{
        height: 220px;
    }
}
        /* About Section */
        .about-section {
            padding: 4rem 0;
            background-color: #fff;
        }

        .about-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
        }

        .about-icon i {
            color: #fff;
            font-size: 2rem;
        }

        .about-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-green);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .about-text {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--dark-text);
        }

        .about-quote {
            background-color: var(--cream);
            padding: 1.5rem;
            border-left: 4px solid var(--primary-green);
            font-style: italic;
            margin-top: 1.5rem;
            line-height: 1.8;
        }

        /* Partners Section */
        .partners-section {
            background-color: var(--cream);
            padding: 3rem 0;
        }

        .partners-title {
            text-align: center;
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-green);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2rem;
        }

        .partner-logo {
            background-color: #fff;
            padding: 1.5rem;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .partner-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.15);
        }

        .partner-logo img {
            max-width: 100%;
            max-height: 60px;
            object-fit: contain;
        }

        .project-number {
            text-align: center;
            font-size: 0.9rem;
            color: var(--dark-text);
            margin-top: 2rem;
            font-weight: 600;
        }

        /* Footer */
        .footer {
            background-color: var(--primary-green);
            color: #fff;
            padding: 3rem 0 1rem;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .footer-logo img {
            width: 50px;
            height: 50px;
        }

        .footer-brand {
            font-size: 1.3rem;
            font-weight: 700;
        }

        .footer-tagline {
            font-size: 0.85rem;
            color: rgba(255,255,255,0.8);
        }

        .footer-title {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: rgba(255,255,255,0.9);
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: #fff;
            text-decoration: underline;
        }

        .footer-contact {
            list-style: none;
            padding: 0;
        }

        .footer-contact li {
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }

        .footer-contact i {
            color: rgba(255,255,255,0.7);
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            color: #fff;
            font-size: 1.2rem;
            transition: opacity 0.3s;
        }

        .social-links a:hover {
            opacity: 0.7;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 1.5rem;
            margin-top: 2rem;
            font-size: 0.85rem;
            color: rgba(255,255,255,0.8);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }

            .carousel-item img {
                height: 300px;
            }

            .partner-logo {
                margin-bottom: 1rem;
            }
        }
        /* Abigirisha new  */

        :root {
      --green: #18452c;
      --cream: #faf7ef;
      --text: #24382b;
    }

    a {
      text-decoration: none;
    }

    .main-navbar {
      background: #fffdf8;
      border-bottom: 3px solid #245838;
      padding: 10px 55px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 32px;
      font-weight: 700;
      color: var(--green);
    }

    .tree-icon {
      font-size: 38px;
    }

    .logo-green {
      color: #7ea04b;
    }

    .nav-link {
      color: #24382b;
          font-size: 13px;
      font-weight: 600;
      position: relative;
      padding-bottom: 8px !important;
    }

    .nav-link.active::after,
    .nav-link:hover::after {
      content: "";
      width: 100%;
      height: 3px;
      background: #245838;
      position: absolute;
      bottom: 0;
      left: 0;
      border-radius: 20px;
    }

    .hero-section {
      position: relative;
      padding: 70px 0 0px;
      overflow: hidden;
    }

    .leaf-bg {
      position: absolute;
      left: -30px;
      top: 30px;
      font-size: 150px;
      color: #c8d7c0;
      opacity: 0.35;
      transform: rotate(-20deg);
    }

    .hero-title {
      font-size: 35px;
      line-height: 1.1;
      color: #183d29;
      margin-bottom: 15px;
    }

    .hero-subtitle {
      color: #356847;
      font-size: 17px;
      line-height: 1.5;
      font-weight: 700;
      margin-bottom: 5px;
      
    }

    .hero-para {
      font-size: 15px;
      line-height: 24px;
      color: #46584c;
    }

    .image-card {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(0,0,0,0.18);
    }

    .image-card img {
      width: 100%;
      height: 430px;
      object-fit: cover;
      display: block;
    }

    .image-overlay {
      position: absolute;
      bottom: 0;
      width: 100%;
      background: rgba(15,60,35,0.85);
      text-align: center;
      color: #fff;
      padding: 18px;
    }

    .image-overlay h5 {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 2px;
    }

    .image-overlay p {
      margin: 0;
      font-size: 14px;
      opacity: 0.9;
    }

    .slide-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: none;
      background: #215838;
      color: #fff;
      font-size: 18px;
      z-index: 5;
      box-shadow: 0 8px 18px rgba(0,0,0,0.2);
    }

    .slide-btn.left {
      left: -22px;
    }

    .slide-btn.right {
      right: -22px;
    }

    .dots {
      display: flex;
      justify-content: center;
      gap: 10px;
      margin-top: 20px;
    }

    .dot {
      width: 10px;
      height: 10px;
      background: #cfcfc7;
      border-radius: 50%;
    }

    .dot.active {
      background: #1c5637;
    }

    .about-box {
      padding: 0px 0 50px;
      background: linear-gradient(90deg,#dce7d1,#efead7);
      padding: 35px;
      border-radius: 18px;
      margin-top: 40px;
      box-shadow: 0 8px 22px rgba(0,0,0,0.06);
    }

    .about-icon {
      width: 78px;
      height: 78px;
      border-radius: 50%;
      background: #18452c;
      color: #b8d68f;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 34px;
      box-shadow: 0 8px 18px rgba(0,0,0,0.18);
    }

    .about-title {
      font-size: 16px;
      font-weight: 800;
      margin-bottom: 10px;
      color: #183d29;
    }

    .about-text {
      font-size: 14px;
      line-height: 1.8;
      color: #46584c;
      margin: 0;
    }

    .vertical-line {
      width: 2px;
      height: 90px;
      background: #74806e;
      margin: auto;
    }

    .partners-section {
      padding: 55px 0;
    }

    .section-heading {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 25px;
      margin-bottom: 35px;
    }

    .section-heading::before,
    .section-heading::after {
      content: "";
      width: 240px;
      height: 2px;
      background: #879888;
    }

    .section-heading h4 {
      font-size: 15px;
      font-weight: 800;
      color: #183d29;
      margin: 0;
      letter-spacing: 1px;
    }

    .partner-card {
      background: #fff;
      border-radius: 10px;
      padding: 20px;
      height: 95px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      box-shadow: 0 8px 22px rgba(0,0,0,0.1);
      text-align: center;
      transition: 0.3s;
    }

    .partner-card:hover {
      transform: translateY(-4px);
    }

    .partner-card strong {
      font-size: 20px;
      color: #245838;
    }

    .partner-card small {
      font-size: 10px;
      color: #4d5d53;
      line-height: 1.3;
    }

    .project-number {
      text-align: center;
      margin-top: 25px;
          font-size: 14px;
      font-weight: 700;
      color: #425246;
    }

    .site-footer {
      background: linear-gradient(135deg,#12371f,#0d2918);
      padding: 45px 0 18px;
      color: #fff;
    }

    .footer-logo {
      font-size: 38px;
      font-weight: 700;
      margin-bottom: 14px;
    }

    .footer-logo span {
      color: #a7ca6c;
    }

    .footer-desc {
      font-size: 14px;
      line-height: 1.8;
      color: #d9e6d8;
    }

    .footer-title {
      font-size: 15px;
      font-weight: 700;
      color: #dce9bc;
      margin-bottom: 16px;
    }

    .footer-links a {
      display: block;
      color: #d7e4d7;
      font-size: 14px;
      margin-bottom: 7px;
    }

    .contact-item {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
      color: #d7e4d7;
      font-size: 14px;
    }

    .contact-item i {
      color: #a7ca6c;
      font-size: 16px;
    }

    .social-icons {
      display: flex;
      gap: 12px;
    }

    .social-icons a {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #214d31;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.2);
      margin-top: 30px;
      padding-top: 15px;
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      color: #cdd9cd;
      gap: 20px;
    }

    @media (max-width: 991px) {
      .main-navbar {
        padding: 12px 18px;
      }

      .navbar-collapse {
        background: #fffdf8;
        padding: 15px 0;
      }

      /* .navbar-nav {
        text-align: center;
      } */

      .nav-link {
        margin: 6px 0;
      }

      .hero-section {
        padding: 50px 0 35px;
      }

      .hero-title {
        font-size: 44px;
      }

      .hero-subtitle,
      .hero-para {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
      }

      .image-card {
        margin-top: 25px;
      }

      .image-card img {
        height: 340px;
      }

      .slide-btn.left {
        left: 12px;
      }

      .slide-btn.right {
        right: 12px;
      }

      .about-box {
        text-align: center;
        padding: 30px 25px;
      }

      .about-icon {
        margin: 0 auto;
      }

      .vertical-line {
        display: none;
      }

      .section-heading::before,
      .section-heading::after {
        width: 100px;
      }

      /* .site-footer {
        text-align: center;
      } */

      /* .contact-item,
      .social-icons {
        justify-content: center;
      } */

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

    @media (max-width: 576px) {
      .main-navbar {
        padding: 10px 14px;
      }

      .navbar-brand {
        font-size: 24px;
      }

      .tree-icon {
        font-size: 28px;
      }

      .hero-section {
        padding: 35px 0 25px;
      }

      .leaf-bg {
        font-size: 85px;
        left: -25px;
        top: 20px;
      }

      .hero-title {
        font-size: 32px;
        line-height: 1.2;
      }

      .hero-subtitle {
        font-size: 15px;
      }

      .hero-para {
        font-size: 14px;
        line-height: 1.7;
      }

      .image-card img {
        height: 240px;
      }

      .slide-btn {
        display: none;
      }

      .image-overlay {
        padding: 12px;
      }

      .about-box {
        margin-top: 28px;
        padding: 24px 18px;
      }

      .about-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
      }

      .section-heading {
        gap: 10px;
      }

      .section-heading::before,
      .section-heading::after {
        width: 45px;
      }

      .section-heading h4 {
        font-size: 14px;
      }

      .partner-card {
        height: 82px;
        padding: 12px;
      }

      .partner-card strong {
        font-size: 16px;
      }

      .partner-card small {
        font-size: 9px;
      }

      .footer-logo {
        font-size: 30px;
      }

      .footer-desc,
      .footer-links a,
      .contact-item {
            font-size: 14px;
      }

      .footer-bottom {
        font-size: 10px;
      }
    }

    @media (max-width: 380px) {
      .hero-title {
        font-size: 28px;
      }

      .image-card img {
        height: 210px;
      }

      .partner-card strong {
        font-size: 14px;
      }
    }
/*NEW STYLECODE */
:root {
  --dark-green: #063b25;
  --main-green: #2f7c4b;
  --line-green: #8dae94;
  --soft-green: #dfeadb;
  --cream: #fbf6eb;
  --white: #ffffff;
  --text: #203529;
  --muted: #66766c;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--text);
}

.container{
  max-width: 1220px;
}

.page-container {
  max-width: 1220px;
  margin: 0 auto;
}

/* NAVBAR */
.alt-navbar {
  height: 72px;
  background: #fffdf7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.alt-logo {
  font-size: 29px;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1;
}

.alt-logo:hover {
  color: var(--dark-green);
}

.alt-logo .tree {
  font-size: 23px;
  margin: 0 -2px;
}

.nav-gap {
  gap: 28px;
}


/* HERO */
.hero {
  margin-top: 72px;
  height: 148px;
  background:
    linear-gradient(90deg, rgba(5, 59, 35, 0.96), rgba(5, 59, 35, 0.72), rgba(5, 59, 35, 0.3)),
    url("../img/banner/breadcrumb-image-alt-life.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero h1 {
  color: white;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 5px;
}

.hero p {
  color: #e5eee5;
  font-size: 14px;
  margin: 0;
}

/* MAIN */
.main-section {
  padding: 22px 0 32px;
  background: var(--cream);
}

.content-block {
  margin-bottom: 36px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 2px solid var(--line-green);
  padding-bottom: 7px;
  margin-bottom: 12px;
}

.section-title span {
  background: var(--main-green);
  color: white;
  border-radius: 30px;
  padding: 6px 17px;
  font-size: 14px;
  font-weight: 700;
}

.section-title h2 {
  color: var(--dark-green);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.intro-text {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 20px;
}

/* Group wrapper - the boxed green section (label + team members) */
.team-group {
  background: #f2f8ee;
  border: 1px solid #cfe3c8;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 28px;
}

.team-group:last-child {
  margin-bottom: 0;
}

.intro-text-core-team {
  background: #dcecd2;
  border-left: 5px solid var(--main-green, #4a7c3f);
  border-radius: 4px;
  color: var(--dark-green, #2e5230);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 18px;
  margin: 0 0 18px 0;
  display: block;
}

.team-group .row {
  margin: 0;
}

/* PERSON CARD */
.person-card{
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 180px 1fr;
    box-shadow: 0 7px 18px rgba(33,53,40,0.14);
    transition: 0.3s ease;
    height: 100%;
    padding: 0;
}

.person-card:hover{
    transform: translateY(-5px);
}

.person-card img{
    width: 100%;
    height: 100%;
    min-height: 250px;
    object-fit: cover;
    border-radius: 0;
}

.person-card > div{
    padding: 12px;
}

.person-card h5{
    color: var(--dark-green);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.person-card h6{
    color: var(--main-green);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #d8e3d9;
}

.person-card p{
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin: 0;
    text-align: justify;
    text-justify: inter-word;
}

/* Tablet */
@media (max-width: 991px){
    .person-card{
        grid-template-columns: 140px 1fr;
    }

    .person-card img{
        min-height: 250px;
    }
}

/* Mobile */
@media (max-width: 767px){
    .person-card{
        grid-template-columns: 1fr;
    }

    .person-card img{
        height: 280px;
        min-height: auto;
    }

    .team-group {
        padding: 14px;
    }
}

.contrib-card {
  background: var(--white, #fff);
  border-radius: 12px;
  padding: 22px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 7px 18px rgba(33, 53, 40, 0.10);
  border-left: 4px solid var(--main-green, #4a7c3f);
  transition: 0.3s ease;
  height: 100%;
}

.contrib-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(33, 53, 40, 0.16);
}

.contrib-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #dcecd2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contrib-icon i {
  font-size: 22px;
  color: var(--main-green, #4a7c3f);
}

.contrib-content h5 {
  color: var(--dark-green, #2e5230);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 4px 0;
}

.contrib-org {
  font-size: 14px;
  color: #6b7d6d;
  font-style: italic;
  line-height: 1.4;
  display: block;
}

/* Mobile */
@media (max-width: 767px) {
  .contrib-card {
    padding: 18px 16px;
  }
}

/* PARTNER CARD */
.partner-card {
  background: white;
  border-radius: 9px;
  min-height: 162px;
  padding: 24px 16px 18px;
  text-align: center;
  position: relative;
  box-shadow: 0 7px 18px rgba(33, 53, 40, 0.13);
  transition: 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
}

.partner-card h3 {
  margin: 0 0 14px;
  font-weight: 800;
  line-height: 1.05;
}

.partner-card .anr {
  color: #527fd2;
  font-size: 43px;
}

.partner-card .lyon {
  color: #0a6b8d;
  font-size: 23px;
}

.partner-card .ird {
  color: #e42f30;
  font-size: 43px;
}

.partner-card .unc {
  color: #555;
  font-size: 34px;
}

.partner-card p {
  font-size: 12.5px;
  font-weight: 700;
  margin: 0 0 5px;
}

.partner-card small {
  color: var(--muted);
  font-size: 11px;
}

.partner-card i {
  position: absolute;
  right: 13px;
  bottom: 11px;
  color: var(--main-green);
  font-size: 14px;
}

/* WEBSITE CARD */
.website-card {
  background: var(--soft-green);
  border-radius: 10px;
  padding: 17px;
  min-height: 132px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0 5px 14px rgba(33, 53, 40, 0.08);
  transition: 0.25s ease;
}

.website-card:hover {
  transform: translateY(-4px);
}

.circle-icon {
  width: 66px;
  height: 66px;
  min-width: 66px;
  border-radius: 50%;
  background: var(--dark-green);
  color: #cceeb7;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 31px;
}

.website-card h5 {
  color: var(--dark-green);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 5px;
}

.website-card p {
  color: var(--muted);
      font-size: 14px;
  margin: 0 0 6px;
}

.website-card a {
  color: var(--main-green);
      font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

/* FOOTER */
.footer {
  background: var(--dark-green);
  color: white;
  padding: 40px 0 18px;
}

.footer-logo {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-desc {
  color: #d8e6d9;
  font-size: 12.5px;
  line-height: 1.5;
}

.footer h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 13px;
}

.footer a,
.footer p {
  display: block;
  color: #d6e5d8;
  font-size: 12.5px;
  text-decoration: none;
  margin-bottom: 7px;
}

.footer a:hover {
  color: white;
}

.footer i {
  color: #9bd16a;
  margin-right: 8px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  background: #0d2f21;
  color: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.social-icons a i {
  color: white;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin-top: 28px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 11.5px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .alt-navbar {
    height: auto;
    min-height: 72px;
  }

  .nav-gap {
    gap: 8px;
    padding-top: 15px;
  }

  .nav-link.active::after {
    display: none;
  }

  .hero-content {
    padding-left: 10px;
  }

  .hero h1 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 130px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .subtitle {
    margin-left: 0;
  }
}

@media (max-width: 576px) {
  .alt-logo {
    font-size: 25px;
  }

  .section-title h2 {
    font-size: 17px;
  }

  .person-card,
  .website-card {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
/* Our Coolabration Result*/
:root {
  --dark-green: #063b25;
  --main-green: #2f7c4b;
  --line-green: #8dae94;
  --cream: #fbf6eb;
  --white: #ffffff;
  --text: #263a2d;
  --muted: #65746a;
}

* {
  box-sizing: border-box;
}

/* NAVBAR */
.custom-navbar {
  height: 82px;
  background: #fffdf7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.logo {
  color: var(--dark-green);
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
}

.logo span {
  font-size: 25px;
  margin: 0 -2px;
}

.logo:hover {
  color: var(--dark-green);
}
/* HERO */
.hero {
  margin-top: 0px;
  min-height: 210px;
  background:
    linear-gradient(90deg, rgba(5, 59, 35, 0.97), rgba(5, 59, 35, 0.75), rgba(5, 59, 35, 0.15)),
    url("../img/banner/breadcrumb-image-alt-life.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

/* .hero-content {
  max-width: 520px;
  padding-left: 38px;
} */

.hero h1 {
  color: white;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 14px;
}

.hero p {
  color: #e4eee5;
  font-size: 15px;
  line-height: 1.6;
}

.section-block {
  margin-bottom: 42px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 2px solid var(--line-green);
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.section-heading span {
  background: var(--main-green);
  color: white;
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
}

.section-heading h2 {
  color: var(--dark-green);
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.intro {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 25px;
}

/* OBJECTIVES CARDS */
.info-card {
  background: #f7f2e8;
  border-radius: 10px;
  padding: 18px;
  min-height: 160px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 7px 18px rgba(33, 53, 40, 0.12);
  transition: 0.25s ease;
}

.info-card:hover,
.work-card:hover {
  transform: translateY(-4px);
}

.info-card img {
  width: 118px;
  height: 95px;
  object-fit: cover;
  border-radius: 6px;
}

.info-card h5 {
  text-transform: uppercase;
  color: var(--dark-green);
  font-size: 14px;
  font-weight: 800;
  padding-bottom: 8px;
  margin-bottom: 10px;
  border-bottom: 2px solid #97b596;
}

/* WORK PACKAGE */
.work-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  min-height: 335px;
  position: relative;
  box-shadow: 0 7px 18px rgba(33, 53, 40, 0.13);
  transition: 0.25s ease;
}

.work-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.tag {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 800;
  z-index: 2;
}

.green {
  background: #2f7c4b;
}

.light-green {
  background: #8aa53a;
}

.orange {
  background: #e48b2b;
}

.blue {
  background: #28749a;
}

.purple {
  background: #65498b;
}


.work-body h5 {
  color: var(--dark-green);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

/* FOOTER */
.footer {
  background: var(--dark-green);
  color: white;
  padding: 42px 0 18px;
}

.footer-logo {
  font-size: 31px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  border-bottom: 1px solid #7fa364;
  padding-bottom: 8px;
  display: inline-block;
  min-width: 130px;
}

.footer p,
.footer a {
  color: #d8e6d9;
  font-size: 12.5px;
  text-decoration: none;
  display: block;
  margin-bottom: 7px;
}

.footer a:hover {
  color: white;
}

.footer i {
  color: #9bd16a;
  margin-right: 8px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  background: #0d2f21;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.social-icons a i {
  color: white;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 15px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 11.5px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .custom-navbar {
    height: auto;
    min-height: 82px;
  }

  .nav-link.active::after {
    display: none;
  }

  .hero-content {
    padding-left: 10px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .info-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 180px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .section-heading h2 {
    font-size: 19px;
  }

  .info-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-card img {
    width: 100%;
    height: 160px;
  }
}

@media (max-width: 576px) {
  .logo {
    font-size: 25px;
  }

  .hero h1 {
    font-size: 29px;
  }

  .hero p {
    font-size: 14px;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading span {
    padding: 6px 14px;
  }

  .work-card img {
    height: 180px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
/*emplaced-collectives*/
:root {
  --dark-green: #063b25;
  --main-green: #2f7c4b;
  --line-green: #8dae94;
  --soft-green: #dfeadb;
  --cream: #fbf6eb;
  --white: #ffffff;
  --text: #263a2d;
  --muted: #65746a;
  --orange: #d9822b;
  --blue: #2879b8;
}

* {
  box-sizing: border-box;
}

/* NAVBAR */
.custom-navbar {
  height: 82px;
  background: #fffdf7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.logo {
  color: var(--dark-green);
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
}

.logo span {
  font-size: 25px;
  margin: 0 -2px;
}

.logo:hover {
  color: var(--dark-green);
}


/* HERO */
.hero {
  margin-top: 0px;
  min-height: 210px;
  background:
    linear-gradient(90deg, rgba(251, 246, 235, 0.96) 0%, rgba(251, 246, 235, 0.9) 40%, rgba(251, 246, 235, 0.15) 65%),
    url("../img/banner/breadcrumb-image-alt-life.png") center/cover no-repeat;
  display: flex;
  align-items: center;
  border-top: 4px solid var(--main-green);
  border-bottom: 1px solid #d7dfd2;
}

.hero h1 {
  color: var(--dark-green);
  font-size: 43px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero p {
  color: #395246;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* MAIN */
.main-content {
  padding: 34px 0 36px;
  position: relative;
}

.section-block {
  margin-bottom: 42px;
}

.center-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 8px;
}

.center-heading span {
  height: 2px;
  background: var(--line-green);
  flex: 1;
}

.center-heading h2 {
  color: var(--dark-green);
  font-size: 22px;
  font-weight: 700;
  margin: 0;
  white-space: nowrap;
}

.center-text {
  color: var(--muted);
  text-align: center;
  font-size: 13.5px;
  margin-bottom: 24px;
}

/* COLLECTIVE CARDS */
.collective-card {
  background: white;
  border-radius: 9px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 7px 18px rgba(33, 53, 40, 0.13);
  transition: 0.25s ease;
}

.collective-card:hover {
  transform: translateY(-4px);
}

.card-label {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-green);
  color: white;
  padding: 8px 22px;
  border-radius: 0 0 25px 25px;
      font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  z-index: 2;
}

.collective-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.collective-body {
  height: 185px;
  padding: 18px 18px 8px;
}

.collective-body h5 {
  color: var(--dark-green);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 9px;
}

.collective-body p {
  text-align: justify;
  text-justify: inter-word;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
  margin: 0;
}

.card-footer-line {
  height: 115px;
  background: var(--soft-green);
  padding: 15px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--dark-green);
      font-size: 14px;
  font-weight: 600;
}

.card-footer-line div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-footer-line i {
  color: var(--main-green);
  font-size: 18px;
}

/* MAP */
.map-wrapper {
  display: grid;
  grid-template-columns: 285px 1fr;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  min-height: 330px;
  box-shadow: 0 7px 18px rgba(33, 53, 40, 0.13);
}

.map-sidebar {
  background: #fbf6eb;
  border-right: 1px solid #d7dfd2;
}

.sidebar-title {
  background: var(--dark-green);
  color: white;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.sidebar-title i {
  font-size: 28px;
}

.sidebar-title h5 {
  font-size: 17px;
  font-weight: 700;
  margin: 0;
}

.sidebar-title p {
      font-size: 14px;
  margin: 3px 0 0;
  color: #d8e6d9;
}

.territory-item {
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.territory-item i {
  font-size: 25px;
}

.green-pin {
  color: var(--main-green);
}

.orange-pin {
  color: var(--orange);
}

.blue-pin {
  color: var(--blue);
}

.territory-item h6 {
  color: var(--dark-green);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.territory-item p {
  color: var(--muted);
      font-size: 14px;
  margin: 0;
}

.map-area {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.map-area img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  filter: saturate(0.8) contrast(0.95);
}

@media (max-width: 600px) {
  .pin-marker {
    width: 22px;
    height: 22px;
  }
  .pin-number {
    font-size: 10px;
  }
  .map-popup {
    font-size: 9px;
    padding: 6px 20px 6px 8px;
    min-width: 110px;
    max-width: calc(100% - 16px);
  }
}

.map-popup {
  position: absolute;
  background: white;
  border-radius: 7px;
  padding: 10px 32px 10px 12px;
  box-shadow: 0 5px 14px rgba(0, 0, 0, 0.18);
  font-size: 11px;
  min-width: 145px;
}

.map-popup strong {
  display: block;
  color: var(--dark-green);
      font-size: 14px;
  margin-bottom: 3px;
}

.map-popup span {
  color: var(--muted);
  line-height: 1.35;
}

.map-popup i {
  position: absolute;
  right: 9px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--dark-green);
}

.popup-france {
  top: 70px;
  left: 38%;
}

.popup-colombia {
  top: 185px;
  left: 25%;
}

.popup-reunion {
  top: 200px;
  right: 18%;
}

/* FOOTER */
.footer {
  background: var(--dark-green);
  color: white;
  padding: 42px 0 18px;
}

.footer-logo {
  font-size: 31px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  border-bottom: 1px solid #7fa364;
  padding-bottom: 8px;
  display: inline-block;
  min-width: 130px;
}

.footer p,
.footer a {
  color: #d8e6d9;
  font-size: 12.5px;
  text-decoration: none;
  display: block;
  margin-bottom: 7px;
}

.footer a:hover {
  color: white;
}

.footer i {
  color: #9bd16a;
  margin-right: 8px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  background: #0d2f21;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.social-icons a i {
  color: white;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 15px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 11.5px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .custom-navbar {
    height: auto;
    min-height: 82px;
  }

  .nav-link.active::after {
    display: none;
  }

  .hero-content {
    padding-left: 10px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .map-wrapper {
    grid-template-columns: 1fr;
  }

  .map-sidebar {
    border-right: 0;
    border-bottom: 1px solid #d7dfd2;
  }

  .map-area {
    min-height: 360px;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 190px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .center-heading h2 {
    font-size: 19px;
  }

  .center-heading span {
    display: none;
  }

  .popup-france {
    top: 70px;
    left: 35%;
  }

  .popup-colombia {
    top: 190px;
    left: 12%;
  }

  .popup-reunion {
    top: 220px;
    right: 8%;
  }
}

@media (max-width: 576px) {
  .logo {
    font-size: 25px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 14px;
  }

  .collective-card img {
    height: 190px;
  }

  .card-label {
    font-size: 11px;
    padding: 7px 15px;
  }

  .map-area {
    min-height: 420px;
  }

  .map-popup {
    position: static;
    margin: 12px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
/*Interactive Map*/
:root {
  --dark-green: #063b25;
  --main-green: #2f7c4b;
  --cream: #fbf6eb;
  --white: #ffffff;
  --muted: #65746a;
  --orange: #d87d2d;
  --blue: #2b76b9;
  --soft-yellow: #f3e3bd;
}

* {
  box-sizing: border-box;
}

/* NAVBAR */
.alt-navbar {
  height: 82px;
  background: #fffdf7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.logo {
  color: var(--dark-green);
  font-size: 31px;
  font-weight: 700;
}

.logo span {
  font-size: 25px;
}

.logo:hover {
  color: var(--dark-green);
}


/* HERO */
.hero {
  margin-top: 0px;
  min-height: 210px;
  background:
    linear-gradient(90deg, rgba(5,59,35,0.96), rgba(5,59,35,0.72), rgba(5,59,35,0.12)),
    url("../img/banner/breadcrumb-image-alt-life.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero h1 {
  color: white;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero p {
  color: #e6eee7;
  font-size: 14px;
  line-height: 1.7;
}


/* WORK BANNER */
.work-banner {
  max-width: 1050px;
  margin: 0 auto 30px;
  background: var(--soft-yellow);
  border-radius: 60px;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 5px 15px rgba(84, 58, 14, 0.15);
}

.work-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #e5c878;
  color: #755915;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.work-banner h4 {
  color: var(--dark-green);
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 4px;
}

.work-banner p {
  margin: 0;
  color: #5d6158;
  font-size: 14px;
}

/* MAP LAYOUT */
.map-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 20px;
}

/* SIDEBAR */
.side-panel {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 7px 18px rgba(33, 53, 40, 0.13);
}

.panel-header {
  background: var(--dark-green);
  color: white;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--main-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.panel-header h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.panel-body {
  padding: 22px;
  border-bottom: 1px solid #d7dfd2;
}

.panel-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.filter-box,
.legend-box {
  padding: 20px 22px;
  border-bottom: 1px solid #d7dfd2;
}

.filter-box h6,
.legend-box h6 {
  color: var(--dark-green);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 14px;
}

.filter-card {
  border: 1px solid #dde5d8;
  border-radius: 10px;
  padding: 11px 12px;
  margin-bottom: 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12.5px;
  font-weight: 700;
}

.filter-card span {
  display: flex;
  align-items: center;
  gap: 9px;
}

.filter-card b {
  width: 23px;
  height: 23px;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
}

.legend-box p {
  color: #263a2d;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 13px;
}

.green {
  color: var(--main-green);
}

.orange {
  color: var(--orange);
}

.blue {
  color: var(--blue);
}

.green-bg {
  background: var(--main-green);
}

.orange-bg {
  background: var(--orange);
}

.blue-bg {
  background: var(--blue);
}

/* MAP */
.map-box {
  position: relative;
  min-height: 640px;
  border-radius: 14px;
  overflow: hidden;
  background: #b9d5d5;
  box-shadow: 0 7px 18px rgba(33, 53, 40, 0.13);
}

.map-box > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(0.95);
}

.search-box {
  position: absolute;
  top: 20px;
  left: 22px;
  z-index: 5;
  background: white;
  width: 310px;
  border-radius: 35px;
  padding: 10px 16px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
      font-size: 14px;
}

.map-buttons {
  position: absolute;
  right: 20px;
  top: 20px;
  z-index: 5;
  display: flex;
  gap: 8px;
}

.map-buttons button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  background: white;
  color: var(--dark-green);
}

.pin {
  position: absolute;
  font-size: 42px;
  z-index: 4;
}

.pin-france {
  top: 27%;
  left: 42%;
}

.pin-colombia {
  top: 55%;
  left: 14%;
}

.pin-reunion {
  top: 61%;
  right: 35%;
}

.map-card {
  position: absolute;
  z-index: 6;
  background: white;
  width: 240px;
  border-radius: 9px;
  padding: 9px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.22);
}

.map-card img {
  width: 63px;
  height: 63px;
  object-fit: cover;
  border-radius: 7px;
}

.map-card h6 {
  color: var(--dark-green);
  font-size: 12.5px;
  font-weight: 700;
  margin-bottom: 3px;
}

.map-card strong {
  font-size: 11.5px;
  display: block;
}

.map-card p {
  margin: 0;
  font-size: 10.5px;
  color: var(--muted);
}

.map-card > i {
  margin-left: auto;
  color: var(--dark-green);
}

.card-france {
  top: 27%;
  left: 48%;
}

.card-colombia {
  top: 53%;
  left: 18%;
}

.card-reunion {
  top: 63%;
  right: 4%;
}

/* HOW SECTION */
.how-section {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1.3fr;
  gap: 22px;
  align-items: center;
}

.how-title,
.how-step {
  display: flex;
  align-items: center;
  gap: 14px;
}

.how-title i {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #e5f0e8;
  color: var(--main-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}

.how-title h5 {
  color: var(--dark-green);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

.how-step {
  border-left: 1px solid #b8c7b7;
  padding-left: 22px;
}

.how-step span {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: var(--main-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.how-step p {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.45;
  margin: 0;
}

/* FOOTER */
.footer {
  background: var(--dark-green);
  padding: 42px 0 18px;
  color: white;
}

.footer-logo {
  font-size: 31px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 13px;
  border-bottom: 1px solid #7fa364;
  padding-bottom: 8px;
  display: inline-block;
  min-width: 130px;
}

.footer p,
.footer a {
  display: block;
  color: #d8e6d9;
  font-size: 12.5px;
  text-decoration: none;
  margin-bottom: 7px;
}

.footer i {
  color: #9bd16a;
  margin-right: 8px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  background: #0d2f21;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.social-icons a i {
  color: white;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  margin-top: 28px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 11.5px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .alt-navbar {
    height: auto;
    min-height: 82px;
  }

  .nav-link.active::after {
    display: none;
  }

  .hero-content {
    padding-left: 10px;
  }

  .map-layout {
    grid-template-columns: 1fr;
  }

  .map-box {
    min-height: 620px;
  }

  .how-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-step {
    border-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }

  .work-banner {
    border-radius: 20px;
    text-align: center;
    flex-direction: column;
  }

  .search-box {
    width: calc(100% - 44px);
  }

  .map-card {
    width: 220px;
  }

  .how-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .logo {
    font-size: 25px;
  }

  .hero {
    min-height: 190px;
  }

  .hero h1 {
    font-size: 29px;
  }

  .hero p {
    font-size: 14px;
  }

  .map-box {
    min-height: auto;
    padding-bottom: 10px;
  }

  .map-box > img {
    height: 260px;
  }

  .pin {
    display: none;
  }

  .map-card {
    position: static;
    width: calc(100% - 24px);
    margin: 12px;
  }

  .search-box,
  .map-buttons {
    position: static;
    margin: 12px;
  }

  .map-buttons {
    justify-content: flex-end;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
/* Collaborative Glossary*/
:root {
  --dark-green: #063b25;
  --main-green: #2f7c4b;
  --cream: #fbf6eb;
  --muted: #65746a;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}
/* NAVBAR */
.custom-navbar {
  height: 82px;
  background: #fffdf7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.logo {
  color: var(--dark-green);
  font-size: 31px;
  font-weight: 700;
}

.logo span {
  font-size: 25px;
}

.logo:hover {
  color: var(--dark-green);
}

/* HERO */
.hero {
  margin-top: 0px;
  min-height: 210px;
  background:
    linear-gradient(90deg, rgba(5, 59, 35, 0.96), rgba(5, 59, 35, 0.72), rgba(5, 59, 35, 0.12)),
    url("../img/banner/breadcrumb-image-alt-life.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero h1 {
  color: white;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: italic;
  font-weight: 700;
}

.hero p {
  color: #e6eee7;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}


.work-card {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(255, 253, 247, 0.85);
  border: 3px solid #477664;
  border-radius: 28px;
  position: relative;
  box-shadow: 0 8px 20px rgba(34, 59, 45, 0.2);
  overflow: hidden;
}

.work-card::before,
.work-card::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 260px;
  bottom: 10px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.35;
}

.work-card::before {
  left: 0;
  background-image: url("https://www.svgrepo.com/show/530635/leaf.svg");
  transform: rotate(-18deg);
}

.work-card::after {
  right: 0;
  background-image: url("https://www.svgrepo.com/show/530635/leaf.svg");
  transform: scaleX(-1) rotate(-18deg);
}

.top-icon {
  width: 120px;
  height: 120px;
  margin: -35px auto 25px;
  border-radius: 50%;
  background: #dfeadb;
  color: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 58px;
  position: relative;
  z-index: 2;
}

.top-icon::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  background: rgba(157, 185, 135, 0.25);
  z-index: -1;
}

.work-card h2 {
  color: var(--dark-green);
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}

.title-line {
  width: 260px;
  height: 2px;
  background: #7fa364;
  margin: 0 auto 30px;
}

.work-card p {
  color: #394a41;
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}

.soon-text {
  font-weight: 700;
}

/* FOOTER */
.footer {
  background: var(--dark-green);
  padding: 42px 0 18px;
  color: white;
}

.footer-logo {
  font-size: 31px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 13px;
  border-bottom: 1px solid #7fa364;
  padding-bottom: 8px;
  display: inline-block;
  min-width: 130px;
}

.footer p,
.footer a {
  display: block;
  color: #d8e6d9;
  font-size: 12.5px;
  text-decoration: none;
  margin-bottom: 7px;
}

.footer a:hover {
  color: white;
}

.footer i {
  color: #9bd16a;
  margin-right: 8px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  background: #0d2f21;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.social-icons a i {
  color: white;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  margin-top: 28px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 11.5px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .custom-navbar {
    height: auto;
    min-height: 82px;
  }

  .nav-link.active::after {
    display: none;
  }

  .hero-content {
    padding-left: 10px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .main-content {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 190px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .work-card {
    padding: 60px 25px 45px;
  }

  .work-card h2 {
    font-size: 27px;
  }

  .work-card::before,
  .work-card::after {
    width: 120px;
    height: 190px;
  }
}

@media (max-width: 576px) {
  .logo {
    font-size: 25px;
  }

  .hero h1 {
    font-size: 27px;
  }

  .hero p {
    font-size: 14px;
  }

  .main-content {
    padding: 50px 0;
  }

  .work-card {
    border-radius: 18px;
    padding: 45px 18px 35px;
  }

  .top-icon {
    width: 90px;
    height: 90px;
    font-size: 42px;
  }

  .work-card h2 {
    font-size: 23px;
  }

  .title-line {
    width: 170px;
  }

  .work-card p {
    font-size: 14px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
/* resources resources*/
:root {
  --dark-green: #063b25;
  --main-green: #2f7c4b;
  --cream: #fbf6eb;
  --white: #ffffff;
  --muted: #65746a;
  --line-green: #8dae94;
  --soft-green: #dfeadb;
  --orange: #d87d2d;
  --blue: #2b76b9;
  --purple: #7653a5;
}

* {
  box-sizing: border-box;
}
/* NAVBAR */
.custom-navbar {
  height: 82px;
  background: #fffdf7;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.logo {
  color: var(--dark-green);
  font-size: 31px;
  font-weight: 700;
}

.logo span {
  font-size: 25px;
}

.logo:hover {
  color: var(--dark-green);
}

/* HERO */
.hero {
  margin-top: 0px;
  min-height: 210px;
  background:
    linear-gradient(90deg, rgba(5,59,35,0.96), rgba(5,59,35,0.72), rgba(5,59,35,0.15)),
    url("../img/banner/breadcrumb-image-alt-life.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero h1 {
  color: white;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 14px;
}

.hero p {
  color: #e6eee7;
  font-size: 14px;
  line-height: 1.7;
}


.content-section {
  margin-bottom: 38px;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 2px solid var(--line-green);
  padding-bottom: 8px;
  margin-bottom: 12px;
}

.section-title span {
  background: var(--main-green);
  color: white;
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
}

.section-title h2 {
  color: var(--dark-green);
  font-size: 21px;
  font-weight: 700;
  margin: 0;
}

.intro-text {
  color: var(--muted);
  font-size: 13.5px;
  margin-bottom: 20px;
}

/* PUBLICATIONS */
.filter-btn {
  border: 1px solid #c9d6c5;
  background: white;
  color: #345244;
  border-radius: 20px;
  padding: 7px 14px;
      font-size: 14px;
  font-weight: 700;
}

.pub-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 7px 18px rgba(33,53,40,0.13);
  transition: 0.25s;
  height: 100%;
}

.pub-card:hover,
.event-item:hover,
.biblio-card:hover {
  transform: translateY(-4px);
}

.pub-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--main-green);
  color: white;
  border-radius: 5px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
}

.pub-tag.yellow {
  background: #b89435;
}

.pub-tag.purple {
  background: var(--purple);
}

.pub-tag.blue {
  background: var(--blue);
}

.pub-card img {
  width: 100%;
  height: 135px;
  object-fit: cover;
}

.pub-body {
  padding: 15px;
}

.pub-body h5 {
  color: var(--dark-green);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.pub-body p,
.pub-body small {
  color: var(--muted);
  font-size: 11.5px;
  display: block;
  margin-bottom: 6px;
}

.pub-footer {
  border-top: 1px solid #e4ebe1;
  margin-top: 12px;
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
      font-size: 14px;
  font-weight: 700;
}

.pub-footer span i {
  color: var(--orange);
}

.pub-footer a,
.view-link {
  color: var(--dark-green);
  text-decoration: none;
  font-weight: 700;
  font-size: 12.5px;
}

/* EVENTS */
.event-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.event-tabs button {
  border: 1px solid var(--main-green);
  background: white;
  color: var(--dark-green);
  border-radius: 18px;
  padding: 6px 13px;
      font-size: 14px;
  font-weight: 700;
}

.event-tabs button.active {
  background: var(--main-green);
  color: white;
}

.event-timeline {
  position: relative;
  padding-left: 28px;
}

.event-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 10px;
  bottom: 10px;
  width: 3px;
  background: #7fa364;
}

.event-item {
  background: white;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: 110px 1.3fr 1.8fr auto;
  gap: 20px;
  align-items: center;
  box-shadow: 0 7px 18px rgba(33,53,40,0.12);
  position: relative;
  transition: 0.25s;
}

.event-item::before {
  content: "";
  position: absolute;
  left: -24px;
  width: 14px;
  height: 14px;
  background: var(--main-green);
  border-radius: 50%;
}

.event-date {
  background: var(--soft-green);
  border-radius: 9px;
  padding: 10px;
  text-align: center;
  color: var(--dark-green);
}

.event-date span,
.event-date small {
  display: block;
  font-size: 11px;
}

.event-date strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
}

.event-item img {
  width: 135px;
  height: 70px;
  border-radius: 7px;
  object-fit: cover;
}

.badge-soft {
  background: var(--main-green);
  color: white;
  font-size: 10.5px;
  padding: 4px 8px;
  border-radius: 12px;
}

.orange-badge {
  background: var(--orange);
}

.purple-badge {
  background: var(--purple);
}

.event-info h5 {
  color: var(--dark-green);
  font-size: 15px;
  font-weight: 700;
  margin: 7px 0 3px;
}

.event-info p,
.event-desc {
  color: var(--muted);
      font-size: 14px;
  margin: 0;
}

.status {
  border-radius: 18px;
  padding: 7px 12px;
  font-size: 11.5px;
  font-weight: 700;
  white-space: nowrap;
}

.upcoming {
  background: #e9f2df;
  color: var(--main-green);
}

.completed {
  background: #e6efe8;
  color: var(--main-green);
}

/* BIBLIOGRAPHY */
.search-small {
  background: white;
  border: 1px solid #c9d6c5;
  border-radius: 20px;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 240px;
}

.search-small input {
  border: none;
  outline: none;
      font-size: 14px;
  width: 100%;
}

.biblio-card {
  background: white;
  border-radius: 10px;
  padding: 18px;
  display: flex;
  gap: 14px;
  height: 100%;
  box-shadow: 0 7px 18px rgba(33,53,40,0.12);
  transition: 0.25s;
}

.book-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: var(--dark-green);
  color: #cceeb7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}

.biblio-card span {
  background: var(--main-green);
  color: white;
  font-size: 10px;
  padding: 3px 9px;
  border-radius: 12px;
  font-weight: 700;
}

.biblio-card h5 {
  color: var(--dark-green);
  font-size: 14px;
  font-weight: 700;
  margin: 7px 0 4px;
}

.biblio-card p {
  color: var(--muted);
  font-size: 11.5px;
  margin: 0;
}

/* FOOTER */
.footer {
  background: var(--dark-green);
  padding: 42px 0 18px;
  color: white;
}

.footer-logo {
  font-size: 31px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 13px;
  border-bottom: 1px solid #7fa364;
  padding-bottom: 8px;
  display: inline-block;
  min-width: 130px;
}

.footer p,
.footer a {
  display: block;
  color: #d8e6d9;
  font-size: 12.5px;
  text-decoration: none;
  margin-bottom: 7px;
}

.footer i {
  color: #9bd16a;
  margin-right: 8px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  background: #0d2f21;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-icons a i {
  color: white;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  margin-top: 28px;
  padding-top: 15px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 11.5px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .custom-navbar {
    height: auto;
    min-height: 82px;
  }

  .nav-link.active::after {
    display: none;
  }

  .hero-content {
    padding-left: 10px;
  }

  .section-title {
    flex-wrap: wrap;
  }

  .event-item {
    grid-template-columns: 85px 120px 1fr;
  }

  .event-desc,
  .status {
    grid-column: 2 / 4;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 34px;
  }

  .filter-btn,
  .event-tabs,
  .search-small {
    margin-left: 0 !important;
    width: 100%;
  }

  .event-item {
    grid-template-columns: 1fr;
  }

  .event-desc,
  .status {
    grid-column: auto;
  }

  .event-item img {
    width: 100%;
    height: 160px;
  }

  .event-timeline {
    padding-left: 0;
  }

  .event-timeline::before,
  .event-item::before {
    display: none;
  }
}

@media (max-width: 576px) {
  .logo {
    font-size: 25px;
  }

  .hero {
    min-height: 190px;
  }

  .hero h1 {
    font-size: 29px;
  }

  .hero p {
    font-size: 14px;
  }

  .section-title h2 {
    font-size: 18px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

    :root {
  --dark-green: #063b25;
  --main-green: #2f7c4b;
  --line-green: #8dae94;
  --cream: #fbf6eb;
  --white: #ffffff;
  --text: #263a2d;
  --muted: #65746a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--cream);
  font-family:'DM Sans', sans-serif;
  color: var(--text);
}

/* NAVBAR */
.custom-navbar {
  height: 82px;
  background: #fffdf7;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.logo {
  color: var(--dark-green);
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
}

.logo span {
  font-size: 25px;
  margin: 0 -2px;
}

.logo:hover {
  color: var(--dark-green);
}

/* HERO */
.hero {
  margin-top: 0px;
  min-height: 210px;
  background:
    linear-gradient(90deg, rgba(5, 59, 35, 0.97), rgba(5, 59, 35, 0.75), rgba(5, 59, 35, 0.15)),
    url("../img/banner/breadcrumb-image-alt-life.png") center/cover no-repeat;
  display: flex;
  align-items: center;
}

.hero h1 {
  color: white;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 14px;
}

.hero p {
  color: #e4eee5;
  font-size: 15px;
  line-height: 1.6;
}

/* MAIN */
.main-content {
  padding: 28px 0 36px;
}

.section-block {
  margin-bottom: 42px;
}

.section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 2px solid var(--line-green);
  padding-bottom: 8px;
  margin-bottom: 14px;
}

.section-heading span {
  background: var(--main-green);
  color: white;
  padding: 7px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
}

.section-heading h2 {
  color: var(--dark-green);
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

.intro {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 25px;
}

/* OBJECTIVES CARDS */
.info-card {
  background: #dce7d1;
  border-radius: 10px;
  padding: 10px;
  min-height: 180px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 7px 18px rgba(33, 53, 40, 0.12);
  transition: 0.25s ease;
}

.info-card:hover,
.work-card:hover {
  transform: translateY(-4px);
}

.info-card img {
  width: 118px;
  height: 95px;
  object-fit: cover;
  border-radius: 6px;
}

.info-card h5 {
  text-transform: uppercase;
  color: var(--dark-green);
  font-size: 17px;
  font-weight: 600;
  padding-bottom: 3px;
  margin-bottom: 10px;
  border-bottom: 2px solid #97b596;
}

.info-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
}

/* WORK PACKAGE */
.work-card {
  background: white;
  border-radius: 8px;
  overflow: hidden;
  min-height: 335px;
  position: relative;
  box-shadow: 0 7px 18px rgba(33, 53, 40, 0.13);
  transition: 0.25s ease;
}

.work-card img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.tag {
  position: absolute;
  top: 0;
  left: 0;
  color: white;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 800;
  z-index: 2;
}

.light-green {
  background: #8aa53a;
}

.orange {
  background: #e48b2b;
}

.blue {
  background: #28749a;
}

.purple {
  background: #65498b;
}

.work-body {
  height: 355px;
  padding: 18px 12px;
}

.work-body h5 {
  color: var(--dark-green);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.work-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
  text-align: justify;
  text-justify: inter-word;
}

/* FOOTER */
.footer {
  background: var(--dark-green);
  color: white;
  padding: 42px 0 18px;
}

.footer-logo {
  font-size: 31px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
  border-bottom: 1px solid #7fa364;
  padding-bottom: 8px;
  display: inline-block;
  min-width: 130px;
}

.footer p,
.footer a {
  color: #d8e6d9;
  font-size: 12.5px;
  text-decoration: none;
  display: block;
  margin-bottom: 7px;
}

.footer a:hover {
  color: white;
}

.footer i {
  color: #9bd16a;
  margin-right: 8px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  background: #0d2f21;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.social-icons a i {
  color: white;
  margin: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 15px;
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  font-size: 11.5px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .custom-navbar {
    height: auto;
    min-height: 82px;
  }

  .nav-link.active::after {
    display: none;
  }

  .hero-content {
    padding-left: 25px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .info-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 180px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .section-heading h2 {
    font-size: 19px;
  }

  .info-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .info-card img {
    width: 100%;
    height: 160px;
  }
}

@media (max-width: 576px) {
  .logo {
    font-size: 25px;
  }

  .hero h1 {
    font-size: 29px;
  }

  .hero p {
    font-size: 14px;
  }

  .section-heading {
    align-items: flex-start;
  }

  .section-heading span {
    padding: 6px 14px;
  }

  .work-card img {
    height: 180px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
/* NAVBAR */
.main-navbar {
  background: #fff;
  padding: 5px 40px; /* moved little right */
}

.navbar-brand {
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  color: #000;
}

.logo-green {
  color: #3aaa35;
}

.navbar-nav {
  margin-left: auto;
}

/* .navbar-nav .nav-link {
  color: #000;
  font-weight: 500;
  padding: 10px 15px;
  text-decoration: none;
} */

/* Toggle Button */
.navbar-toggler {
  border: none;
  font-size: 28px;
  background: transparent;
  cursor: pointer;
  display: none;
  text-decoration: none;
  color: #000;
}

.navbar-toggler::before {
  content: "☰";
}

/* Close hidden in desktop */
.close-btn {
  display: none;
}

/* RESPONSIVE */
@media (max-width: 991px) {

  .main-navbar {
    padding: 12px 20px;
  }

  .navbar-toggler {
    display: block;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 310px;
    height: 100%;
    background: #fff;
    padding: 80px 20px 20px;
    transition: 0.4s ease;
    z-index: 999;
  }

  .navbar-collapse:target {
    left: 0;
  }

  /* Close Button */
  .close-btn {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    text-decoration: none;
    color: #000;
    line-height: 1;
  }

  .navbar-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-item {
    width: 100%;
  }

  .nav-link {
    display: block;
    width: 100%;
    padding: 14px 0;
  }
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  padding: 6px 12px;
  text-decoration: none;
  color: #666;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.lang-btn:hover {
  background-color: #f0f0f0;
  color: #333;
}

.lang-btn.active {
  background-color: var(--logo-green, #28a745);
  color: white;
}

.lang-divider {
  color: #ccc;
  user-select: none;
}

/* Mobile spacing */
@media (max-width: 991px) {
  .language-switcher {
    justify-content: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
  }
}

.partner-card a {
    color: #000;
    font-size: 12.5px;
    font-weight: 700;
    margin: 15px 0 0px;
}

.work-card-glossary{
   background: white;
    border-radius: 8px;
    overflow: hidden;
    min-height: 335px;
    position: relative;
    box-shadow: 0 7px 18px rgba(33, 53, 40, 0.13);
    transition: 0.25s ease;
    padding: 70px 40px 55px;
    text-align: center;
    border: 3px solid #477664;
    max-width: 980px;
    margin: 0 auto;
}

.text-content {
    margin-top: 20px;
    font-size: 15px;
    line-height: 24px;
    color: #46584c;
    text-align: justify;
    text-justify: inter-word; 
}

.text-connect{
  font-size: 16px;
  color: #477664;
  font-weight: 600;
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .collective-body {
    height: 265px;
  }
}

/* Map pin positioning and styling */
    .map-pin {
      position: absolute;
      cursor: pointer;
      z-index: 10;
      /* transition: all 0.3s ease; */
       transform: translate(-50%, -50%)
    }

    .pin-marker {
      position: relative;
      width: 10px;
      height: 10px;
      transform: translate(-50%, -50%);
    }

    .pin-number {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 20px;
      height: 20px;
      background: #dc2626;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      font-size: 8px;
      border: 3px solid white;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
      transition: all 0.3s ease;
      z-index: 2;
    }

    /* .pin-pulse {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 36px;
      height: 36px;
      background: rgba(37, 99, 235, 0.3);
      border-radius: 50%;
      animation: pulse 2s infinite;
      z-index: 1;
    } */

    @keyframes pulse {
      0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
      }
      100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
      }
    }

    /* .map-pin:hover .pin-number {
      background: #dc2626;
      transform: translate(-50%, -50%) scale(1.15);
      box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    } */

    .map-pin.active .pin-number {
      background: var(--dark-green);
      transform: translate(-50%, -50%) scale(1.2);
    }

    /* Popup styling */
    .map-popup {
      position: absolute;
      background: white;
      padding: 12px 16px;
      border-radius: 8px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.15);
      pointer-events: none;
      opacity: 0;
      transform: translateY(10px);
      transition: all 0.3s ease;
      z-index: 100;
      min-width: 180px;
    }

    .map-popup strong {
      display: block;
      color: #1f2937;
      margin-bottom: 4px;
      font-size: 14px;
    }

    .map-popup span {
      color: #6b7280;
      font-size: 14px;
    }

    .map-popup::before {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 20px;
      width: 12px;
      height: 12px;
      background: white;
      transform: rotate(45deg);
      box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    }

    .map-popup.show {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
    }
.pin-1 { top: 20%; left: 13%; }
.pin-2 { top: 50%; left: 22%; }
.pin-3 { top: 35%; left: 47%; }
.pin-4 { top: 33%; left: 49%; }
.pin-5 { top: 47%; left: 58%; }
.pin-6 { top: 90%; left: 56%; }
.pin-7 { top: 92%; left: 58%; }
.popup-1 {
    top: 6%;
    left: 10%;
}

.popup-2 {
    top: 36%;
    left: 19%;
}

.popup-3 {
    top: 21%;
    left: 44%;;
}

.popup-4 {
       top: 20%;
    left: 46%;
}

.popup-5 {
    top: 33%;
    left: 55%;
}

.popup-6 {
    top: 76%;
    left: 53%;
}

.popup-7 {
    top: 78%;
    left: 55%;
}

    /* Sidebar interaction */
    .territory-item {
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .territory-item:hover {
      background: var(--soft-green);
    }

    .territory-item.active {
      background: var(--soft-green);
    }

    .dropdown-item{
      margin-top:0 !important;
          font-size: 14px;
      font-weight: 600;
    }

.dropdown-item:hover,
.dropdown-item:focus {
  background-color: #e8f0e0;
  color: #2d5a1b;
}

.dropdown-item.active,
.dropdown-item:active {
  background-color: #e8f0e0;
  color: #2d5a1b;
}

 .wip-section {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 50px 20px;
    }
 
    .wip-card {
      background: #ffffff;
      border: 1px solid #ddd6c8;
      border-top: 5px solid #4a7c59;
      border-radius: 12px;
      padding: 50px 40px;
      max-width: 600px;
      width: 100%;
      text-align: center;
    }
 
    .wip-icon {
      width: 80px;
      height: 80px;
      background-color: #eaf3de;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 24px;
    }
 
    .wip-icon i {
      font-size: 36px;
      color: #4a7c59;
    }
 
    .wip-badge {
      background-color: #eaf3de;
      color: #3b6d11;
          font-size: 14px;
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 5px 16px;
      border-radius: 20px;
      display: inline-block;
      margin-bottom: 20px;
    }
 
    .wip-title {
      font-size: 2rem;
      font-weight: 700;
      color: #2d2d2d;
      margin-bottom: 8px;
    }
 
    .wip-subtitle {
      color: #7a6a55;
      font-size: 0.95rem;
      margin-bottom: 36px;
      line-height: 1.7;
    }
 
    .wip-progress-label {
      display: flex;
      justify-content: space-between;
      font-size: 14px;
      color: #5a4e3a;
      font-weight: 500;
      margin-bottom: 6px;
    }
 
    .progress {
      height: 8px;
      border-radius: 4px;
      background-color: #e8e0d4;
      margin-bottom: 16px;
    }
 
    .progress-bar {
      background-color: #4a7c59;
      border-radius: 4px;
      transition: width 1.4s ease;
    }
 
    .progress-bar.amber {
      background-color: #c89a2e;
    }
 
    .divider {
      border-color: #e8e0d4;
      margin: 32px 0;
    }
 
    .wip-meta {
      display: flex;
      justify-content: center;
      gap: 32px;
      flex-wrap: wrap;
    }
 
    .wip-meta-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }
 
    .wip-meta-item i {
      font-size: 20px;
      color: #4a7c59;
    }
 
    .wip-meta-item span {
          font-size: 14px;
      color: #9a8a78;
    }

    .pdf-text{
      color: #2d2d2d;
    }

    .seyfert{
      color: #dce9bc;
    }

    .seyfert:hover{
      color: #dce9bc;
    }
    
    @media (min-width: 992px) {

    .navbar .dropdown-menu{
        border: none;
        border-radius: 10px;
        padding: 8px 0;
        box-shadow: 0 10px 30px rgba(0,0,0,.12);
        min-width: 260px;
    }

    .navbar .dropdown-item{
        padding: 10px 18px;
        transition: all .3s ease;
    }

    .navbar .dropdown-item:hover{
        background: #e8f0e0;
        color: #2d5a1b;
        padding-left: 24px;
    }

    .navbar .nav-link{
        position: relative;
    }

    .navbar .nav-link::after{
        content: '';
        position: absolute;
        left: 15px;
        bottom: 5px;
        width: 0;
        height: 2px;
        background: #2d5a1b;
        transition: .3s;
    }

    .navbar .nav-link:hover::after{
        width: calc(100% - 30px);
    }
}

@media (min-width: 992px) {

    .navbar .dropdown:hover > .dropdown-menu {
        display: block !important;
    }

    .navbar .dropdown-menu {
        margin-top: 0;
    }
}
@media (max-width: 1199px) {

  .main-navbar {
    padding: 12px 20px;
  }

  .navbar-toggler {
    display: block;
  }

  .navbar-collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100%;
    background: #fff;
    padding: 80px 20px 20px;
    transition: 0.4s ease;
    z-index: 999;
  }

  .navbar-collapse:target {
    left: 0;
  }

  .navbar-nav {
        width: 100%;
        align-items: flex-start !important;
        text-align: left;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link {
        display: block;
        width: 100%;
        text-align: left;
        padding: 14px 0;
    }

    .close-btn {
        display: block !important;
        position: absolute;
        top: 15px;
        right: 20px;
        font-size: 35px;
        font-weight: bold;
        color: #000;
        text-decoration: none;
        z-index: 1001;
    }
}

.intro-text-core-team{
  color: var(--main-green);
  font-size: 18px;
    font-weight: 700;
}

.link-connection{
  text-decoration:underline;
  font-size: 16px;
    color: var(--dark-green);
    font-weight: 500;
}

.sub-section-p{
  text-align: justify;
  text-justify: inter-word;
}

.sub-topic{
  color: var(--dark-text);
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.04em;
  font-weight: 600;
}

.key-content{
  font-size: 14px;
}

/* Objectifs — Recherche Collaborative page */
.objectifs-section {
  margin-bottom: 42px;
}

.objectifs-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 32px;
}

.objectifs-heading::before,
.objectifs-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-green, #8dae94);
}

.objectifs-heading h2 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark-green, #063b25);
  white-space: nowrap;
}

.objectifs-card {
  height: 100%;
  background: #e8f0e0;
  border: 1px solid #e3e8de;
  border-top: 3px solid var(--dark-green, #063b25);
  border-radius: 6px;
  padding: 15px 15px;
  box-shadow: 0 4px 14px rgba(6, 59, 37, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.objectifs-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(6, 59, 37, 0.12);
  border-top-color: var(--main-green, #2f7c4b);
}

.objectifs-card-num {
  display: block;
      font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--main-green, #2f7c4b);
  margin-bottom: 10px;
}

.objectifs-card h5 {
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--dark-green, #063b25);
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid #e3e8de;
}

.objectifs-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted, #65746a);
  text-align: justify;
  text-justify: inter-word;
  margin: 0;
}

@media (max-width: 576px) {
  .objectifs-heading { gap: 12px; }
  .objectifs-heading::before,
  .objectifs-heading::after { display: none; }
  .objectifs-card { padding: 22px 20px; }
}

/* Nested dropdown (submenu) support for Bootstrap 5 */
.dropdown-submenu {
  position: relative;
}

.dropdown-submenu > .dropdown-menu {
  top: 0;
  left: 100%;
  margin-top: -1px;
  display: none;
}

/* Desktop: open submenu on hover */
@media (min-width: 1200px) {
  .dropdown-submenu:hover > .dropdown-menu {
    display: block;
  }
}

/* Mobile / click-toggle state */
.dropdown-submenu.show > .dropdown-menu {
  display: block;
}

.dropdown-submenu > .dropdown-toggle::after {
  transform: rotate(-90deg);
}

@media (min-width: 1200px) {
  .dropdown-submenu > .dropdown-toggle::after {
    transform: rotate(-90deg);
  }
  .dropdown-submenu > .dropdown-menu {
    left: 100%;
    right: auto;
  }
  /* flip to the left if it would overflow the viewport */
  .dropdown-submenu.dropend-flip > .dropdown-menu {
    left: auto;
    right: 100%;
  }
}

@media (max-width: 1199.98px) {
  .dropdown-submenu > .dropdown-menu {
    position: static;
    box-shadow: none;
    padding-left: 1rem;
  }
}

.hero-sub-title {
      font-size: 25px;
      font-weight: 600;
      color: #183d29;
      margin-bottom: 15px;
    }

    /* ============ TERRITORY PROFILE CARD ============ */
 
.territory-profile {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e3e8de;
  box-shadow: 0 10px 28px rgba(6, 59, 37, 0.10);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}
 
.territory-profile:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 38px rgba(6, 59, 37, 0.16);
}
 
.territory-profile > .row {
  margin: 0;
  height: 100%;
}
 
.territory-profile > .row > [class*="col-"] {
  padding: 0;
}
 
/* --- media column --- */
.profile-media {
  position: relative;
  /* min-height: 320px; */
  height: 100%;
}
 
.profile-media img {
  width: 100%;
  height: 100%;
  /* min-height: 320px; */
  object-fit: cover;
  display: block;
  background: var(--soft-green);
}
 
.profile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6,59,37,0) 45%, rgba(6,59,37,0.62) 100%);
}
 
.profile-location {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  z-index: 2;
  color: #fff;
}
 
.profile-location .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(2px);
  margin-bottom: 8px;
}
 
.profile-location h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 0;
  line-height: 1.15;
}
 
.profile-location p {
  font-size: 12.5px;
  margin: 2px 0 0;
  color: #e6f0e6;
}
 
/* --- body column --- */
.profile-details {
  padding: 10px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
 
.profile-facts {
  display: flex;
  gap: 10px;  
  flex-wrap: wrap;
}
 
.fact-chip {
  flex: 1 1 28%;
  min-width: 150px;
  background: var(--soft-green);
  border-radius: 10px;
  padding: 15px 10px;
}
 
.fact-chip-kanekes {
  flex: 1 1 28%;
  min-width: 150px;
  background: var(--soft-green);
  border-radius: 10px;
  padding: 15px 12px;
}

.fact-chip-kanekes .fact-label {
  display: block;
      font-size: 14px;
  font-weight: 700;
  color: var(--main-green);
}
 
.fact-chip-kanekes .fact-value {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1.4;
}
.fact-chip .fact-label {
  display: block;
      font-size: 14px;
  font-weight: 700;
  color: var(--main-green);
}
 
.fact-chip .fact-value {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1.4;
}
 
.fact-chip .fact-sub {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
  line-height: 1.4;
}
 
.profile-narrative {
  border-left: 3px solid var(--main-green);
  background: var(--cream);
  border-radius: 0 10px 10px 0;
  padding: 5px 15px;
}
 
.profile-narrative .narrative-label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--main-green);
  margin-bottom: 8px;
}
 
.profile-narrative p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text);
  text-align: justify;
  text-justify: inter-word;
  margin: 0;
}
 
/* --- plain supporting paragraph, no divider --- */
.profile-note {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  text-align: justify;
  text-justify: inter-word;
  margin: 0;
}
 
/* --- secondary context paragraph, top divider --- */
.profile-context {
  padding-top: 16px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  text-align: justify;
  text-justify: inter-word;
  margin: 0;
}
 
.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}
 
.tag-pill {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 13px;
  border-radius: 20px;
  background: var(--soft-green);
  color: var(--dark-green);
  border: 1px solid #cfe3c8;
}
 
.tag-pill.is-orange { background: #fbeadb; color: var(--orange); border-color: #f0d3ae; }
.tag-pill.is-blue   { background: #dcedf7; color: var(--blue);   border-color: #bcdcee; }
.tag-pill.is-purple { background: #ece4f3; color: var(--purple); border-color: #d9c8e6; }
 
/* --- responsive --- */
@media (max-width: 991px) {
  .profile-media { min-height: 260px; }
  .profile-media img { min-height: 260px; }
  .profile-details { padding: 26px 24px; }
}
 
@media (max-width: 767px) {
  .territory-profile > .row {
    flex-direction: column;
  }
  .profile-media { min-height: 220px; }
  .profile-media img { min-height: 220px; }
  .fact-chip { flex: 1 1 100%; }
}

/* =========================================================
   RELATED SITES SECTION
   Unique class names to avoid conflicts
========================================================= */


/* =========================================================
   MAIN WRAPPER
========================================================= */

.related-sites-main {
  width: 100%;
  position: relative;
}

.related-sites-container {
  width: 100%;
}


/* =========================================================
   SECTION
========================================================= */

.related-sites-section {
  width: 100%;
  padding: 90px 0 110px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.related-sites-heading {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;

  margin-bottom: 55px;
}


/* LEFT SIDE */

.related-sites-heading-left {
  flex: 1;
  min-width: 0;
}


/* EYEBROW */

.related-sites-eyebrow {
  display: inline-block;

  margin-bottom: 16px;

  font-size: 11px;
  line-height: 1;

  font-weight: 700;
  letter-spacing: 3px;

  text-transform: uppercase;

  color: #777;
}


/* MAIN TITLE */

.related-sites-title {
  margin: 0;

  font-size: clamp(40px, 5vw, 68px);
  line-height: 1;

  font-weight: 500;
  letter-spacing: -2.8px;

  color: #171717;
}


/* RIGHT SIDE */

.related-sites-heading-right {
  width: 390px;
  flex-shrink: 0;
}


/* INTRO TEXT */

.related-sites-intro {
  margin: 0;

  font-size: 15px;
  line-height: 1.8;

  color: #777;
}


/* =========================================================
   GRID
========================================================= */

.related-sites-grid {
  width: 100%;
}


/* =========================================================
   WEBSITE ITEM
========================================================= */

.related-sites-item {
  position: relative;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  width: 100%;
  min-height: 290px;

  padding: 28px;

  overflow: hidden;

  text-decoration: none;

  background: #f7f7f4;

  border: 1px solid #e7e7e2;

  transition:
    transform 0.45s ease,
    background 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease;
}


/* TOP ANIMATION LINE */

.related-sites-item::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;

  width: 0;
  height: 3px;

  background: #171717;

  transition: width 0.45s ease;
}


/* HOVER */

.related-sites-item:hover {
  transform: translateY(-8px);

  background: #ffffff;

  border-color: #d5d5d0;

  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.08);
}


/* HOVER TOP LINE */

.related-sites-item:hover::before {
  width: 100%;
}


/* =========================================================
   NUMBER
========================================================= */

.related-sites-index {
  position: relative;
  z-index: 2;

      font-size: 14px;
  line-height: 1;

  font-weight: 600;
  letter-spacing: 2px;

  color: #999;
}


/* =========================================================
   INFORMATION
========================================================= */

.related-sites-information {
  position: relative;
  z-index: 2;

  padding-top: 30px;

  padding-right: 40px;
}


/* =========================================================
   CATEGORY
========================================================= */

.related-sites-category {
  display: inline-block;

  margin-bottom: 14px;

  font-size: 10px;
  line-height: 1;

  font-weight: 700;
  letter-spacing: 1.8px;

  text-transform: uppercase;

  color: #777;
}


/* =========================================================
   WEBSITE NAME
========================================================= */

.related-sites-name {
  max-width: 90%;

  margin: 0 0 12px;

  font-size: 25px;
  line-height: 1.15;

  font-weight: 500;
  letter-spacing: -0.7px;

  color: #171717;

  transition:
    transform 0.35s ease,
    color 0.35s ease;
}


/* NAME HOVER */

.related-sites-item:hover .related-sites-name {
  transform: translateX(5px);
}


/* =========================================================
   WEBSITE DOMAIN
========================================================= */

.related-sites-domain {
  display: block;

  width: 90%;
  max-width: 90%;

  overflow: hidden;

      font-size: 14px;
  line-height: 1.5;

  text-overflow: ellipsis;
  white-space: nowrap;

  color: #999;
}


/* =========================================================
   ARROW BUTTON
========================================================= */

.related-sites-link-icon {
  position: absolute;

  right: 25px;
  bottom: 25px;

  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid #deded9;
  border-radius: 50%;

  color: #222;

  background: transparent;

  transition:
    transform 0.4s ease,
    background 0.4s ease,
    color 0.4s ease,
    border-color 0.4s ease;
}


/* ICON */

.related-sites-link-icon i {
  display: block;

  font-size: 17px;

  transition:
    transform 0.4s ease;
}


/* ARROW HOVER */

.related-sites-item:hover .related-sites-link-icon {
  background: #171717;

  border-color: #171717;

  color: #ffffff;

  transform: scale(1.05);
}


/* ICON HOVER */

.related-sites-item:hover .related-sites-link-icon i {
  transform: translate(2px, -2px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1199px) {

  .related-sites-section {
    padding: 80px 0 95px;
  }


  .related-sites-heading {
    gap: 40px;
  }


  .related-sites-title {
    font-size: clamp(38px, 5vw, 58px);
  }


  .related-sites-heading-right {
    width: 340px;
  }


  .related-sites-item {
    min-height: 280px;
  }


  .related-sites-name {
    font-size: 23px;
  }

}


/* =========================================================
   TABLET / SMALL DESKTOP
========================================================= */

@media (max-width: 991px) {

  .related-sites-section {
    padding: 70px 0 85px;
  }


  .related-sites-heading {
    align-items: flex-start;

    flex-direction: column;

    gap: 22px;

    margin-bottom: 42px;
  }


  .related-sites-heading-right {
    width: 100%;
    max-width: 560px;
  }


  .related-sites-title {
    font-size: clamp(40px, 7vw, 58px);
  }


  .related-sites-intro {
    font-size: 14px;
  }


  .related-sites-item {
    min-height: 275px;
  }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .related-sites-section {
    padding: 60px 0 75px;
  }


  .related-sites-heading {
    margin-bottom: 35px;
  }


  .related-sites-title {
    font-size: 44px;

    letter-spacing: -2px;
  }


  .related-sites-item {
    min-height: 260px;

    padding: 24px;
  }


  .related-sites-information {
    padding-top: 25px;

    padding-right: 35px;
  }


  .related-sites-name {
    font-size: 22px;
  }


  .related-sites-link-icon {
    right: 20px;
    bottom: 20px;

    width: 43px;
    height: 43px;
  }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 575px) {

  .related-sites-section {
    padding: 50px 0 65px;
  }


  .related-sites-eyebrow {
    font-size: 10px;

    letter-spacing: 2.5px;
  }


  .related-sites-title {
    font-size: 39px;

    line-height: 1.05;

    letter-spacing: -1.8px;
  }


  .related-sites-intro {
    font-size: 14px;

    line-height: 1.7;
  }


  .related-sites-item {
    min-height: 245px;

    padding: 22px;
  }


  .related-sites-index {
    font-size: 11px;
  }


  .related-sites-category {
    font-size: 9px;

    letter-spacing: 1.5px;
  }


  .related-sites-name {
    max-width: 95%;

    font-size: 21px;

    line-height: 1.2;
  }


  .related-sites-domain {
    width: 82%;
    max-width: 82%;

    font-size: 11px;
  }


  .related-sites-link-icon {
    right: 18px;
    bottom: 18px;

    width: 40px;
    height: 40px;
  }


  .related-sites-link-icon i {
    font-size: 15px;
  }

}


/* =========================================================
   EXTRA SMALL DEVICES
========================================================= */

@media (max-width: 380px) {

  .related-sites-title {
    font-size: 34px;
  }


  .related-sites-item {
    min-height: 230px;
  }


  .related-sites-name {
    font-size: 19px;
  }

}
