/* ===== Brand Colors ===== */
    :root {
      --green: #17562D;
      --brown: #944824;
      --teal: #2BBBC6;
      --orange: #C56B3A;
      --gold: #ED9622;
    }

    body {
      font-family: 'Poppins', sans-serif;
      line-height: 1.7;

    }
.green {
  color: #17562D; 
  font-weight: bold;
}




    h1,
    h2,
    h3,
    h4 {
      font-family: 'Playfair Display', serif;
      font-weight: 700;
    }

    .dream-text {
      font-family: 'Dancing Script', cursive;
      font-size: 2rem;
      color: var(--gold);
    }


    /* journey */

    section .p-4 {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    section .p-4:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }



    /* ===== Preloader ===== */
    #preloader {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: #fff;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .spinner-border {
      color: var(--green);
      width: 3rem;
      height: 3rem;
    }

    /* Header */
    .navbar {
      box-shadow: 0 8px 24px rgba(15, 30, 46, .06)
    }

    .navbar .nav-link {
      font-weight: 500;
      color: var(--ink)
    }

    .navbar .nav-link.active,
    .navbar .nav-link:hover {
      color: var(--green)
    }

    .btn-brand {
      background: var(--green);
      color: #fff;
      border-radius: 999px;
      padding: .65rem 1.2rem;
      /* font-weight: 500 */
    }

    /* ===== Hero ===== */
    /* Hero Section */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    /* Fullscreen Video */
    .hero .video-background {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      overflow: hidden;
    }

    .hero .video-background iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100vw;
      height: 100vh;
      pointer-events: none;
    }

    /* .belief-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.belief-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
} */
    .icon-wrap {
      font-size: 2rem;
      color: var(--gold);
      /* brand accent */
      margin-bottom: 15px;
    }

    .beliefs-section {
      position: relative;
      background: #f8f8f8;
    }

    .belief-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .belief-item {
      display: flex;
      align-items: flex-start;
      gap: 15px;
      background: #fff;
      border-radius: 12px;
      padding: 15px 20px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .belief-item i {
      font-size: 24px;
      flex-shrink: 0;
    }

    .belief-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }

    .beliefs-section .img-col img {

      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);

    }

    /* Aspect Ratio Fix */
    @media (min-aspect-ratio: 16/9) {
      .hero .video-background iframe {
        height: 56.25vw;
      }
    }

    @media (max-aspect-ratio: 16/9) {
      .hero .video-background iframe {
        width: 177.78vh;
      }
    }

    /* Dark Overlay */
    .hero .overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.45);
      z-index: 1;
    }

    /* Text Content */
    .hero .hero-content {
      position: relative;
      z-index: 2;
      top: 50%;
      transform: translateY(-50%);
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .hero p {
      font-size: 1.25rem;
      margin-bottom: 30px;
    }

    .hero-btn {
      background: #17562D;
      /* your brand green */
      color: #fff;
      border-radius: 50px;
      padding: 12px 32px;
      font-weight: 500;
      text-decoration: none;
      transition: background 0.3s;
    }

    .hero-btn:hover {
      background: #0f3d20;
    }

    .hero-cta {
      background: var(--green);
      color: #fff;
    }

    .rounded {
      height: 500px;
      border-radius: 40px !important;
      /* box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25); */
      opacity: 0.8;
    }

    /* ===== Sections ===== */
    section {
      padding: 70px 0;
      scroll-margin-top: 100px;
    }

    /* section:nth-child(even) {
      background: #f8f9fa;
    } */

    .icon-list li {
      margin-bottom: 10px;
    }

    .icon-list i {
      color: var(--green);
      margin-right: 10px;
    }

    /* ===== Tour dream ===== */

    .dream-hero {
      position: relative;
      background: url('./images/river.avif') center/cover no-repeat;
      color: #fff;
      padding: 120px 20px;
      background-color:  #f8f8f8;
      margin-top: 20px;
    }

    .dream-hero .overlay {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.55);
    }

    .dream-title {
      font-size: 3rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      margin-bottom: 20px;
      position: relative;
      z-index: 1;
    }

    .dream-text {
      font-size: 1.5rem;
      font-style: italic;
      margin-bottom: 15px;
      position: relative;
      z-index: 1;
    }

    .dream-subtext {
      font-size: .9rem;
      max-width: 700px;
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    @keyframes slideInLeft {
      0% {
        opacity: 0;
        transform: translateX(-80px);
      }

      100% {
        opacity: 1;
        transform: translateX(0);
      }
    }

    .slide-in {
      opacity: 0;
      animation: slideInLeft 1s ease forwards;
    }

    .slide-in.delay {
      animation-delay: 0.5s;
      /* second paragraph comes slightly later */
    }

    #impact .impact-box {
      background: #fff;
      border-radius: 20px;
      padding: 25px 20px;
      transition: all 0.3s ease;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    #impact .impact-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
    }

    #impact .icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      background: var(--brand, #ED9622);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 15px auto;
      font-size: 28px;
      color: #fff;
      box-shadow: 0 4px 12px rgba(0, 98, 65, 0.4);
      transition: all 0.3s ease;
    }

    #impact .impact-box:hover .icon {
      background: #DAA520;
      transform: scale(1.1) rotate(5deg);
    }

    /* ===== CTA ===== */
    .cta {
      background: var(--orange);
      color: #fff;
      text-align: center;
      padding: 80px 20px;
    }

    .cta .btn {
      background: var(--green);
      border: none;
      font-weight: 500;
      padding: 12px 30px;
      color: #fff;
    }

    .cta .btn:hover {
      background: var(--teal);
    }

    /* commitment */
    .card {
      border: none;
      border-radius: 0.75rem;
      box-shadow: var(--shadow-sm);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    .card-body h5 {
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .card-body p {
      font-size: 0.95rem;
    }

    /* Commitment Icon Circle */
    .card .icon {
      width: 60px;
      height: 60px;
      margin: 0 auto 1rem;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--commitment-text);
      font-size: 1.5rem;
    }

    /* Individual Card Color Variants */
    .card.nurture .icon {
      background: var(--commitment-nurture);
    }

    .card.showcase .icon {
      background: var(--commitment-showcase);
    }

    .card.unity .icon {
      background: var(--commitment-unity);
    }

    .card.growth .icon {
      background: var(--commitment-growth);
    }

    .card.knowledge .icon {
      background: var(--commitment-knowledge);
    }

    /* ===== Footer ===== */
    footer {
      background: #222;
      color: #ccc;
      padding: 40px 0;
      text-align: center;
    }

    footer a {
      color: var(--teal);
      margin: 0 10px;
    }

    footer a:hover {
      color: var(--gold);
    }

    /* ===== Animations ===== */
    [data-aos] {
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.8s ease-in-out;
    }

    [data-aos].aos-animate {
      opacity: 1;
      transform: translateY(0);
    }

    #who-we-are-hero {
      position: relative;
      color: #fff;
      /* might change based on background */
      background: url('path/to/large-image.jpg') center/cover no-repeat;
      padding: 80px 0;
    }

    #who-we-are-hero .overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
    }

    #who-we-are-hero .container {
      position: relative;
      z-index: 1;
    }

    .who-we-are-hero .accent {
      color: var(--gold);
      /* example: gold / brand color */
    }

    .who-we-are-hero .img-col img {
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .who-we-are-hero h2 {
      font-size: 2.8rem;
      font-family: 'Playfair Display', serif;
      /* or your brand display font */
    }

    .who-we-are-hero p {
      font-size: 1.125rem;
      line-height: 1.6;
    }

    .btn-primary {
      background-color: #DAA520;
      border: none;
      padding: 0.75rem 1.5rem;
      font-size: 1rem;
    }

    /* Timeline Container */
    .timeline {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px 0;
    }

    /* Vertical line */
    .timeline::after {
      content: '';
      position: absolute;
      width: 4px;
      background: #e0e0e0;
      top: 0;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }

    /* Timeline Item */
    .timeline-item {
      padding: 20px;
      position: relative;
      width: 50%;
    }

    .timeline-item.left {
      left: 0;
      text-align: right;
    }

    .timeline-item.right {
      left: 50%;
      text-align: left;
    }

    /* Connector icons */
    .timeline-item .icon {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 22px;
      position: absolute;
      top: 15px;
      right: -30px;
      /* default for left */
      z-index: 1;
    }

    .timeline-item.right .icon {
      left: -30px;
      right: auto;
    }

    /* Content box */
    .timeline-item .content {
      padding: 20px;
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
      display: inline-block;
      max-width: 320px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .timeline::after {
        left: 20px;
      }

      .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 25px;
        text-align: left !important;
      }

      .timeline-item .icon {
        left: 0 !important;
        right: auto;
      }
    }

    .our-commitment-section .commitment-item {
      background: #fff;
      padding: 2rem 1.5rem;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .our-commitment-section .commitment-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    }

    .our-commitment-section .commitment-icon {
      font-size: 2.5rem;
      margin-bottom: 1rem;
    }

    .our-commitment-section h4 {
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .our-commitment-section p {
      font-size: 0.95rem;
      color: #555;
    }

    /* what we belive */
    @keyframes slideDown {
      0% {
        opacity: 0;
        transform: translateY(-50px);
      }

      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .slide-down {
      opacity: 0;
      animation: slideDown 1s ease forwards;
    }

    .slide-down.delay {
      animation-delay: 0.5s;
      /* stagger effect for the second paragraph */
    }

    section {
      background: linear-gradient(to bottom right, #f9fafb, #f3f4f6);
      /* padding: 80px 20px; */
    }

    .wheel-container {
      position: relative;
      width: 384px;
      height: 384px;
    }

    .wheel-container svg path {
      transition: 0.3s ease;
      cursor: pointer;
    }

    .wheel-container svg path:hover {
      filter: brightness(1.1);
    }

    text {
      font-weight: 600;
      font-size: 12px;
    }

    .center-content {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
    }

    .center-content h3 {
      font-size: 1.25rem;
      font-weight: bold;
      color: #1f2937;
      margin-bottom: 5px;
    }

    .center-content p {
      font-size: 1rem;
      font-weight: 600;
      color: #4b5563;
    }
     .contact-section {
            padding: 100px 0;
        }

        .contact-heading {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--green);
        }

        .contact-text {
            font-size: 1.1rem;
            max-width: 650px;
            margin: 0 auto 3rem;
            color: #666;
        }

        /* Contact Card */
        .contact-card {
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            padding: 40px;
            transition: transform 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        /* Form Controls */
        .form-control {
            border-radius: 12px;
            padding: 14px 16px;
            border: 1px solid #7fc267;
            transition: 0.3s;
        }

        .form-control:focus {
            border-color: var(--teal);
            box-shadow: 0 0 0 0.2rem rgba(43, 187, 198, 0.25);
        }



        .btn-brand:hover {
            background: #fff;
            color: #000;
            transform: scale(1.05);
        }

        /* Contact Info Styling */
        .contact-info h5 {
            font-weight: 600;
            color: var(--green);
            margin-bottom: 1rem;
        }

        .contact-info p {
            margin-bottom: 0.7rem;
            font-size: 0.95rem;
        }

        .contact-info a {
            color: var(--teal);
            text-decoration: none;
            transition: 0.3s;
        }

        .contact-info a:hover {
            color: var(--orange);
        }

        /* Divider */
        .divider {
            width: 50px;
            height: 4px;
            background: var(--gold);
            border-radius: 2px;
            margin: 15px auto 30px;
        }

        /* Map */
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            margin-top: 60px;
        }

        .icon-box {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--teal);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .contact-info p {
            font-size: 0.95rem;
            color: #444;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin-right: 10px;
            border-radius: 50%;
            font-size: 18px;
            background: var(--green);
            color: #fff;
            transition: 0.3s;
        }

        .social-icons a:hover {
            background: var(--gold);
            transform: scale(1.1);
        }

        /* ===== Footer ===== */
        footer {
            background: #222;
            color: #ccc;
            padding: 40px 0;
            text-align: center;
        }

        footer a {
            color: var(--teal);
            margin: 0 10px;
        }

        footer a:hover {
            color: var(--gold);
        }
     .contact-section {
            padding: 100px 0;
        }

        .contact-heading {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--green);
        }

        .contact-text {
            font-size: 1.1rem;
            max-width: 650px;
            margin: 0 auto 3rem;
            color: #666;
        }

        /* Contact Card */
        .contact-card {
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            padding: 40px;
            transition: transform 0.3s ease;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
        }

        /* Form Controls */
        .form-control {
            border-radius: 12px;
            padding: 14px 16px;
            border: 1px solid #7fc267;
            transition: 0.3s;
        }

        .form-control:focus {
            border-color: var(--teal);
            box-shadow: 0 0 0 0.2rem rgba(43, 187, 198, 0.25);
        }



        .btn-brand:hover {
            background: #fff;
            color: #000;
            transform: scale(1.05);
        }

        /* Contact Info Styling */
        .contact-info h5 {
            font-weight: 600;
            color: var(--green);
            margin-bottom: 1rem;
        }

        .contact-info p {
            margin-bottom: 0.7rem;
            font-size: 0.95rem;
        }

        .contact-info a {
            color: var(--teal);
            text-decoration: none;
            transition: 0.3s;
        }

        .contact-info a:hover {
            color: var(--orange);
        }

        /* Divider */
        .divider {
            width: 50px;
            height: 4px;
            background: var(--gold);
            border-radius: 2px;
            margin: 15px auto 30px;
        }

        /* Map */
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            margin-top: 60px;
        }

        .icon-box {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--teal);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }

        .contact-info p {
            font-size: 0.95rem;
            color: #444;
        }

        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            margin-right: 10px;
            border-radius: 50%;
            font-size: 18px;
            background: var(--green);
            color: #fff;
            transition: 0.3s;
        }

        .social-icons a:hover {
            background: var(--gold);
            transform: scale(1.1);
        }

        /* ===== Footer ===== */
        footer {
            background: #222;
            color: #ccc;
            padding: 40px 0;
            text-align: center;
        }

        footer a {
            color: var(--teal);
            margin: 0 10px;
        }

        footer a:hover {
            color: var(--gold);
        }
   

  .blog-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
    /* opacity: 0.7; */
  }

  .blog-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 1rem;
  }

  .blog-text {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 2rem;
  }

  /* .blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.25rem;
} */
  .blog-grid figure {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
  }

  /* .blog-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform .3s ease;
} */
  .blog-grid figure:hover img {
    transform: scale(1.08);
  }

  .blog-grid figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: #fff;
    padding: .75rem 1rem;
    font-size: .9rem;
    opacity: 0;
    transition: opacity .3s ease;
  }

  .blog-grid figure:hover figcaption {
    opacity: 1;
  }

  .blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.5rem;
  }

  .blog-grid img {
    width: 100%;
    height: 260px;
    /* keeps a consistent size */
    object-fit: cover;
    /* keeps the image nicely cropped */
    border-radius: 12px;
    /* smooth rounded corners */
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    /* soft modern shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .blog-grid img:hover {
    transform: scale(1.04);
    /* subtle zoom-in */
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    /* slightly stronger shadow */
  }

  /* .blog-grid img:nth-child(even) {
    transform: rotate(2deg);
  } */



  .quote-box {
    background: #0fa62512;
    padding: 2.5rem;
    border-left: 5px solid #00573d;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgb(52 123 66 / 76%);
    color: #000;
  }

  /* media queries */

  .beliefs-section {
  min-height: 760px;   /* desktop */
}

@media (max-width: 768px) {
  .beliefs-section {
    min-height: 770px; /* tablets */
  }
}

@media (max-width: 576px) {
  .beliefs-section {
    min-height: 200px; /* phones */
  }
  .text-col {
    padding-left: 16px;
    padding-right: 16px;
  }
  
  section {
    padding: 40px 15px; /* top/bottom = 40px, left/right = 15px */
  }
  .who-we-are-hero h2{
    font-size: 1.5rem;
  }
  .para{
    font-size: 13px !important;
  }
  .hero h1{
    font-size: 2rem;
  }
  .hero p{
    font-size: 15px;
  }
}
/* @media (max-width: 576px) {

} */