   :root {
      --pach-green: #14522d;
      --pach-green-dark: #0a1a0f;
      --pach-green-light: #1e7a44;
      --pach-green-soft: #f0f7f2;
      --pach-red: #d32f2f;
      --pach-red-dark: #b71c1c;
      --pach-red-soft: #fef3f2;
      --pach-gold: #f9a825;
      --pach-gold-soft: #fff8e1;
      --pach-gray: #5a6b56;
      --pach-muted: #6b7c6f;
      --pach-text: #1a231d;
      --pach-bg: #fdfdfd;
      --pach-section-alt: #f7faf8;
      --pach-border: #e8ede6;
    }

    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; scroll-padding-top: 80px; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--pach-bg);
      color: var(--pach-text);
      overflow-x: hidden;
      line-height: 1.7;
    }

    .top-bar {
      background: var(--pach-green);
      color: rgba(255,255,255,0.9);
      font-size: 0.82rem;
      padding: 9px 0;
    }
    .top-bar i { color: var(--pach-gold); }
    .top-bar a { color: rgba(255,255,255,0.9); text-decoration: none; transition: 0.2s; }
    .top-bar a:hover { color: white; }

    /* ===== MARQUEE ===== */
    .marquee-wrapper {
      width: 100%;
      overflow: hidden;
    }

    .marquee-container {
      background: #14522d;
      display: flex; 
      align-items: center;
      height: 40px; 
      overflow: hidden;
      border-radius: 0 0 8px 8px; /* Optional: adds subtle curve inside container */
    }

    .marquee-static {
      background: #0a1a0f; 
      color: #f9a825;
      padding: 0 16px; 
      font-size: 0.85rem; 
      font-weight: 700;
      white-space: nowrap; 
      flex-shrink: 0; 
      height: 100%;
      display: flex; 
      align-items: center; 
      gap: 6px;
      z-index: 2; /* Keeps text above scrolling content */
      border-right: 1px solid rgba(255,255,255,0.1);
    }

    .marquee-static i { font-size: 0.95rem; }

    .marquee-scroll-area { 
      overflow: hidden; 
      flex: 1; 
      height: 100%; 
      display: flex; 
      align-items: center;
      position: relative;
    }

    .marquee-content {
      display: flex; 
      align-items: center;
      white-space: nowrap; 
      width: max-content;
      animation: marqueeInfinite 30s linear infinite;
      font-weight: 500; 
      font-size: 0.85rem;
      color: rgba(255,255,255,0.9);
      will-change: transform;
    }

    .marquee-content:hover { 
      animation-play-state: paused; 
    }

    .marquee-item { 
      display: inline-flex; 
      align-items: center; 
      margin-right: 60px; /* Space between notices */
      flex-shrink: 0; 
    }

    .marquee-item i { 
      color: #f9a825; 
      margin-right: 8px; 
      font-size: 0.8rem; 
    }

    /* Keyframes Logic:
       Moving exactly -33.33% because we have 3 identical sets.
    */
    @keyframes marqueeInfinite {
      0% { transform: translateX(0); }
      100% { transform: translateX(-33.333%); }
    }

    /* Mobile adjustments */
    @media (max-width: 768px) {
      .marquee-static {
        padding: 0 10px;
        font-size: 0.75rem;
      }
      .marquee-item {
        margin-right: 40px;
      }
    }

    /* ===== HERO ===== */
 .hero-section { position: relative; background: white; overflow: hidden; }
    .hero-carousel-img { width: 100%; height: 500px; object-fit: cover; border-radius: 1.5rem; }
    @media (max-width: 768px) { .hero-carousel-img { height: 300px; border-radius: 1rem; } }
    .carousel-caption-custom {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%, -50%); text-align: center;
      color: white; text-shadow: 0 2px 10px rgba(0,0,0,0.5); width: 80%;
    }

    .btn-pach-green {
      background: var(--pach-green); color: white; border: none;
      padding: 12px 28px; font-weight: 600; border-radius: 50px;
      transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(20,82,45,0.2);
    }
    .btn-pach-green:hover { background: var(--pach-green-light); transform: translateY(-2px); color: white; }
    .btn-outline-pach {
      border: 2px solid var(--pach-green); background: transparent;
      color: var(--pach-green); font-weight: 600;
      padding: 10px 26px; border-radius: 50px; transition: 0.3s;
    }
    .btn-outline-pach:hover { background: var(--pach-green-soft); color: var(--pach-green-dark); }



    /* ===== CHAIRMAN ===== */
    .chairman-section { padding: 3.5rem 0; background: var(--pach-section-alt); }
    .chairman-card {
      background: white; border-radius: 24px; overflow: hidden;
      border: 1px solid var(--pach-border);
      box-shadow: 0 8px 30px rgba(0,0,0,0.04);
      display: flex; flex-direction: row; min-height: 340px;
    }
    .chairman-img-side {
      flex: 0 0 280px;
      background: linear-gradient(160deg, var(--pach-green-dark), var(--pach-green) 60%, var(--pach-green-light));
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 2rem 1.5rem; position: relative;
    }
    .chairman-img-side::before { content: ''; position: absolute; top: -40px; right: -40px; width: 140px; height: 140px; background: rgba(255,255,255,0.04); border-radius: 50%; }
    .chairman-img-side::after { content: ''; position: absolute; bottom: -30px; left: -30px; width: 100px; height: 100px; background: rgba(255,255,255,0.03); border-radius: 50%; }
    .chairman-img-circle {
      width: 160px; height: 160px; border-radius: 50%;
      object-fit: cover; border: 4px solid rgba(255,255,255,0.25);
      box-shadow: 0 8px 30px rgba(0,0,0,0.25);
      position: relative; z-index: 2; flex-shrink: 0;
    }
    .chairman-img-name { color: white; font-weight: 700; font-size: 1rem; margin-top: 1rem; text-align: center; position: relative; z-index: 2; }
    .chairman-img-post { color: rgba(255,255,255,0.7); font-size: 0.78rem; font-weight: 500; text-align: center; position: relative; z-index: 2; }
    .chairman-body { flex: 1; padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
    .chairman-label {
      font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.12em; color: var(--pach-red);
      margin-bottom: 0.6rem; display: inline-flex; align-items: center; gap: 6px;
      background: rgba(211,47,47,0.06); padding: 4px 12px; border-radius: 50px; width: fit-content;
    }
    .chairman-body h3 { font-size: 1.35rem; font-weight: 800; color: var(--pach-dark); margin-bottom: 1rem; }
    .chairman-body p { font-size: 0.93rem; color: #4a5a48; line-height: 1.85; margin-bottom: 0; }
    .chairman-signature { margin-top: 1.5rem; font-family: 'Mukta', serif; font-size: 1.2rem; font-weight: 700; color: var(--pach-green); font-style: italic; }
    @media(max-width:991px) {
      .chairman-card { flex-direction: column; min-height: auto; }
      .chairman-img-side { flex: 0 0 auto; padding: 2.5rem 1.5rem 2rem; }
      .chairman-img-circle { width: 130px; height: 130px; }
      .chairman-body { padding: 1.5rem; }
    }
    @media(max-width:575px) {
      .chairman-img-circle { width: 110px; height: 110px; }
      .chairman-body { padding: 1.5rem 1.2rem 1.8rem; }
      .chairman-body h3 { font-size: 1.15rem; }
    }

    /* ===== STATS ===== */
    .stats-wrapper { margin-top: 40px; position: relative; z-index: 10; }
    .stat-card {
      background: white; border-radius: 20px; padding: 2rem 1.5rem; text-align: center;
      border: 1px solid var(--pach-border); border-bottom: 4px solid var(--pach-gold);
      box-shadow: 0 10px 30px rgba(0,0,0,0.04); transition: all 0.35s ease; height: 100%;
    }
    .stat-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-bottom-color: var(--pach-red); }
    .stat-icon {
      width: 52px; height: 52px; background: var(--pach-green-soft); border-radius: 14px;
      display: inline-flex; align-items: center; justify-content: center;
      font-size: 1.4rem; color: var(--pach-green); margin-bottom: 1rem;
    }
    .stat-number { font-size: 1.9rem; font-weight: 800; color: var(--pach-green); line-height: 1.2; margin-bottom: 0.3rem; }
    .stat-label { font-size: 0.82rem; color: var(--pach-red); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }

    /* ===== SECTION COMMON ===== */
    .section-padding { padding: 5rem 0; }
    @media(max-width:768px) { .section-padding { padding: 3.5rem 0; } }
    .section-header { text-align: center; margin-bottom: 3.5rem; }
    .section-header .overline {
      display: inline-block; font-size: 0.75rem; font-weight: 700;
      color: var(--pach-red); text-transform: uppercase;
      letter-spacing: 0.12em; margin-bottom: 0.8rem;
      padding: 5px 14px; background: rgba(211,47,47,0.08); border-radius: 50px;
    }
    .section-title {
      font-size: clamp(1.7rem, 4vw, 2.5rem);
      font-weight: 800; line-height: 1.2; color: var(--pach-dark); margin-bottom: 0.8rem;
    }
    .section-title span { color: var(--pach-red); }
    .section-desc { font-size: 1.05rem; color: var(--pach-muted); max-width: 560px; margin: 0 auto; line-height: 1.7; }
    .heading-hero { font-weight: 700; letter-spacing: -0.03em; line-height: 1.15; font-size: clamp(2.2rem, 6vw, 3.5rem); }
    .lead-custom { font-size: clamp(0.95rem, 2.5vw, 1.1rem); color: var(--pach-muted); }

    /* ===== SEE ALL BUTTON ===== */
    .btn-see-all {
      background: transparent; color: var(--pach-green);
      border: 2px solid var(--pach-green);
      font-weight: 700; font-size: 0.88rem;
      padding: 10px 28px; border-radius: 50px;
      transition: 0.3s; text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
    }
    .btn-see-all:hover {
      background: var(--pach-green); color: white;
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(20,82,45,0.2);
    }

    /* ===== NEWS & ACTIVITIES CARDS ===== */
    .news-card {
      background: white; border: 1px solid var(--pach-border);
      border-radius: 20px; overflow: hidden;
      transition: all 0.35s ease; height: 100%;
      display: flex; flex-direction: column;
    }
    .news-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(20,82,45,0.1);
      border-color: transparent;
    }
    .news-card-img {
      width: 100%; height: 200px; object-fit: cover; display: block;
    }
    .news-card-body {
      padding: 1.5rem; flex: 1; display: flex; flex-direction: column;
    }
    .news-card-meta {
      display: flex; align-items: center; gap: 10px;
      margin-bottom: 0.8rem; flex-wrap: wrap;
    }
    .news-card-date {
      font-size: 0.75rem; font-weight: 600; color: var(--pach-muted);
      display: inline-flex; align-items: center; gap: 4px;
    }
    .news-card-tag {
      font-size: 0.68rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.06em; padding: 3px 10px; border-radius: 50px;
      background: var(--pach-green-soft); color: var(--pach-green);
    }
    .news-card-tag.red { background: rgba(211,47,47,0.08); color: var(--pach-red); }
    .news-card-tag.gold { background: var(--pach-gold-soft); color: #b8860b; }
    .news-card-title {
      font-size: 1.05rem; font-weight: 700; color: var(--pach-dark);
      margin-bottom: 0.5rem; line-height: 1.4;
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }
    .news-card-excerpt {
      font-size: 0.88rem; color: var(--pach-muted); line-height: 1.7;
      margin-bottom: 1rem; flex: 1;
      display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    }
    .news-card-link {
      color: var(--pach-green); font-weight: 600; font-size: 0.85rem;
      text-decoration: none; display: inline-flex; align-items: center; gap: 5px;
      transition: 0.2s; margin-top: auto;
    }
    .news-card-link:hover { color: var(--pach-red); gap: 9px; }

    /* ===== NOTICE CARDS ===== */
    .notice-card {
      background: white; border: 1px solid var(--pach-border);
      border-radius: 20px; padding: 1.8rem;
      transition: all 0.35s ease; height: 100%;
      display: flex; flex-direction: column;
      position: relative; overflow: hidden;
    }
    .notice-card::before {
      content: ''; position: absolute;
      top: 0; left: 0; width: 4px; height: 0;
      background: var(--pach-red);
      transition: height 0.4s ease;
    }
    .notice-card:hover::before { height: 100%; }
    .notice-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 14px 35px rgba(0,0,0,0.06);
      border-color: transparent;
    }
    .notice-icon-wrap {
      width: 48px; height: 48px; border-radius: 14px;
      background: var(--pach-red-soft);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; color: var(--pach-red);
      margin-bottom: 1rem; flex-shrink: 0;
      transition: 0.3s;
    }
    .notice-card:hover .notice-icon-wrap { background: var(--pach-red); color: white; }
    .notice-date {
      font-size: 0.72rem; font-weight: 600; color: var(--pach-muted);
      margin-bottom: 0.5rem; display: flex; align-items: center; gap: 5px;
    }
    .notice-title {
      font-size: 1rem; font-weight: 700; color: var(--pach-dark);
      margin-bottom: 0.6rem; line-height: 1.4;
      display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }
    .notice-excerpt {
      font-size: 0.85rem; color: var(--pach-muted); line-height: 1.7;
      flex: 1;
      display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
    }
    .notice-link {
      color: var(--pach-red); font-weight: 600; font-size: 0.82rem;
      text-decoration: none; display: inline-flex; align-items: center; gap: 5px;
      transition: 0.2s; margin-top: 1rem;
    }
    .notice-link:hover { gap: 9px; color: var(--pach-green-dark); }

    /* ===== GALLERY ===== */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      grid-template-rows: auto auto;
      gap: 1rem;
    }
    .gallery-item {
      border-radius: 16px; overflow: hidden;
      position: relative; cursor: pointer;
    }
    .gallery-item img {
      width: 100%; height: 100%; object-fit: cover;
      display: block; transition: transform 0.5s ease;
      min-height: 180px;
    }
    .gallery-item:hover img { transform: scale(1.08); }
    .gallery-item::after {
      content: ''; position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(10,26,15,0.5) 0%, transparent 50%);
      opacity: 0; transition: opacity 0.3s;
    }
    .gallery-item:hover::after { opacity: 1; }
    .gallery-item .gallery-overlay {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 1rem 1.2rem; z-index: 2;
      transform: translateY(10px); opacity: 0;
      transition: all 0.3s ease;
    }
    .gallery-item:hover .gallery-overlay { transform: translateY(0); opacity: 1; }
    .gallery-overlay span {
      color: white; font-size: 0.85rem; font-weight: 600;
    }
    .gallery-overlay small {
      color: rgba(255,255,255,0.7); font-size: 0.72rem;
    }
    .gallery-item.span-2-col { grid-column: span 2; }
    .gallery-item.span-2-row { grid-row: span 2; }
    .gallery-item.span-2-col img,
    .gallery-item.span-2-row img { min-height: 280px; }

    @media(max-width:991px) {
      .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .gallery-item.span-2-col { grid-column: span 2; }
      .gallery-item.span-2-row { grid-row: span 1; }
      .gallery-item.span-2-col img,
      .gallery-item.span-2-row img { min-height: 200px; }
    }
    @media(max-width:575px) {
      .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.6rem; }
      .gallery-item.span-2-col { grid-column: span 2; }
      .gallery-item img { min-height: 140px; }
      .gallery-item.span-2-col img { min-height: 160px; }
    }

    /* ===== SERVICE CARDS ===== */
    .service-card {
      background: white; border: 1px solid var(--pach-border);
      border-radius: 24px; padding: 2rem;
      height: 100%; display: flex; flex-direction: column;
      transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
      position: relative; overflow: hidden;
    }
    .service-card::after {
      content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 4px;
      background: linear-gradient(90deg, var(--pach-green), var(--pach-green-light));
      transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
    }
    .service-card:hover::after { transform: scaleX(1); }
    .service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(20,82,45,0.1); border-color: transparent; }
    .service-icon-box {
      width: 64px; height: 64px; background: var(--pach-green-soft);
      border-radius: 16px; display: flex; align-items: center; justify-content: center;
      font-size: 1.7rem; color: var(--pach-green); margin-bottom: 1.5rem; transition: 0.3s;
    }
    .service-card:hover .service-icon-box { background: var(--pach-green); color: white; }
    .service-card h4 { font-weight: 700; font-size: 1.2rem; margin-bottom: 0.8rem; color: var(--pach-dark); }
    .service-card p { color: var(--pach-muted); font-size: 0.95rem; flex-grow: 1; line-height: 1.7; }
    .service-link {
      color: var(--pach-green); font-weight: 600; font-size: 0.88rem;
      text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
      transition: 0.2s; margin-top: auto;
    }
    .service-link:hover { color: var(--pach-red); gap: 10px; }

/* ===== COMPACT TEAM TREE: NO-CUT IMAGES ===== */
.team-section { padding: 4rem 0; background: white; }
.team-tree { display: flex; flex-direction: column; align-items: center; }

/* Tree Lines - Reduced height/width for tighter look */
.tree-vline { width: 2px; height: 20px; background: var(--pach-border); }
.tree-hline { height: 2px; background: var(--pach-border); width: 100%; max-width: 550px; margin: 0 auto; }
.tree-bottom-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; width: 100%; }
.tree-branch { display: flex; flex-direction: column; align-items: center; }

/* Smaller Card - 220px width */
.tree-card-wrapper {
    background: white;
    border: 1px solid var(--pach-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    width: 220px; 
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.tree-card-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(20,82,45,0.12);
    border-color: var(--pach-green);
}

/* Image container to prevent cutting */
.tree-card-img-box {
    width: 100%;
    height: 180px; /* Fixed height for consistency */
    background: #fdfdfd; 
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--pach-border);
}

.tree-card-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* ENTIRE image is visible, no cropping */
    display: block;
}

.tree-card-body {
    padding: 1rem;
    text-align: center;
}

.tree-card-name {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--pach-dark);
    margin-bottom: 0.2rem;
}

.tree-card-post {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--pach-red);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.8rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid var(--pach-border);
}

.tree-card-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--pach-green);
    text-decoration: none;
    background: var(--pach-green-soft);
    padding: 6px 14px;
    border-radius: 50px;
    transition: 0.25s;
}

.tree-card-phone:hover {
    background: var(--pach-green);
    color: white;
}

.card-top-highlight { border: 2px solid var(--pach-green); }

@media(max-width:768px) {
    .tree-hline { display: none; }
    .tree-bottom-row { flex-direction: column; align-items: center; gap: 0; }
}
 .remit-section { padding: 3.5rem 0; background: var(--pach-section-alt); overflow: hidden; }
    .remit-track-wrapper {
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    }
    .remit-track { display: flex; gap: 2.5rem; width: max-content; animation: remitScroll 22s linear infinite; }
    @keyframes remitScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
    .remit-card {
      background: white; padding: 1.3rem 1.8rem; border-radius: 14px;
      border: 1px solid var(--pach-border); display: flex; align-items: center; gap: 1rem;
      white-space: nowrap; transition: 0.3s; box-shadow: 0 2px 8px rgba(0,0,0,0.02);
    }
    .remit-card:hover { border-color: var(--pach-green); box-shadow: 0 6px 20px rgba(0,0,0,0.06); }
    .remit-card i { font-size: 1.6rem; color: var(--pach-green); }
    .remit-card h6 { font-weight: 700; font-size: 0.92rem; margin-bottom: 0; color: var(--pach-dark); }
    .remit-card small { color: var(--pach-muted); font-size: 0.78rem; }

        /* ===== Contact ===== */
  .contact-section-fixed {
    padding: 5rem 0 !important;
    background-color: #ffffff !important;
    position: relative !important;
    clip-path: none !important;
    transform: none !important;
  }

  .contact-item-lock {
    display: flex !important;
    align-items: center !important;
    gap: 1rem !important;
    padding: 0.5rem 0 !important;
  }

  .contact-icon-lock {
    width: 50px !important;
    height: 50px !important;
    background-color: #fef2f2 !important; /* Light red background */
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.2rem !important;
    flex-shrink: 0 !important;
  }

  /* Red color utility for icons if not using text-danger */
  .text-danger { color: #dc3545 !important; }

  .map-container-parent { z-index: 1; }

  .map-toggle-controls {
      position: absolute;
      top: 15px;
      right: 15px;
      z-index: 10;
      background: white;
      padding: 5px;
      border-radius: 12px;
      display: flex;
      gap: 5px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .map-btn {
      border: none;
      background: none;
      padding: 6px 12px;
      font-size: 0.8rem;
      font-weight: 600;
      border-radius: 8px;
      transition: all 0.3s ease;
      display: flex;
      align-items: center;
      gap: 6px;
      color: #666;
  }

  .map-btn.active {
      background: #dc3545; /* Changed active toggle to red */
      color: white !important;
  }

  .map-wrapper-lock {
    height: 450px !important;
    border-radius: 24px !important;
    overflow: hidden !important;
    border: 1px solid #EEF2EE !important;
  }

  .map-wrapper-lock iframe {
    width: 100% !important;
    height: 100% !important;
    border: 0 !important;
  }

  .map-dark-mode iframe {
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%) !important;
  }

  @media (max-width: 991px) {
    .map-wrapper-lock { height: 350px !important; margin-top: 2rem !important; }
  }


    /* ===== IMPACT & TESTIMONIAL ===== */

    /* ===== CTA ===== */
   .cta-block {
      background: linear-gradient(135deg, var(--pach-green), var(--pach-green-light) 50%, var(--pach-green));
      background-size: 200% 200%; animation: gradientShift 6s ease infinite;
      border-radius: 28px; padding: 4rem 2rem; color: white; position: relative; overflow: hidden;
      clip-path: none !important;
      transform: none !important;
    }
    @keyframes gradientShift { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
    .cta-block::before { content: ''; position: absolute; top: -80px; right: -80px; width: 250px; height: 250px; background: rgba(255,255,255,0.06); border-radius: 50%; }
    .cta-block::after { content: ''; position: absolute; bottom: -60px; left: -60px; width: 180px; height: 180px; background: rgba(255,255,255,0.04); border-radius: 50%; }

    .btn-cta-outline-light {
      border: 2px solid rgba(255,255,255,0.5) !important; 
      color: white !important; 
      font-weight: 600;
      padding: 12px 30px; 
      border-radius: 50px; 
      font-size: 0.95rem;
      transition: 0.3s; 
      background: transparent;
      text-decoration: none; 
      display: inline-flex; 
      align-items: center;
    }
    .btn-cta-outline-light:hover { 
      border-color: white !important; 
      background: rgba(255,255,255,0.1) !important; 
      color: white !important; 
      transform: translateY(-3px);
    }
    
    .fw-800 { font-weight: 800; }
    /* ===== FOOTER ===== */
    .footer-main { background: rgb(243, 242, 242); color: #a8b8ad; padding: 5rem 0 0; }
    .footer-brand-name { font-size: 1.5rem; font-weight: 800; color: white; display: flex; align-items: center; gap: 10px; }
    .footer-logo-img { height: 40px; width: auto; object-fit: contain; }
    .footer-desc { font-size: 0.9rem; line-height: 1.8; margin-top: 1rem; color: #8a9a8f; }
    .footer-title {
      font-size: 1rem; font-weight: 700; color: var(--pach-gold); margin-bottom: 1.5rem;
      padding-bottom: 0.8rem; border-bottom: 3px solid var(--pach-red); display: inline-block;
    }
    .footer-link {
      color: #8a9a8f; text-decoration: none; display: flex; align-items: center; gap: 8px;
      margin-bottom: 0.7rem; font-size: 0.88rem; transition: 0.25s; padding: 2px 0;
    }
    .footer-link:hover { color: var(--pach-gold); transform: translateX(6px); }
    .footer-link i { font-size: 0.7rem; color: var(--pach-gold); opacity: 0.5; }
    .footer-social {
      width: 42px; height: 42px; background: rgba(255,255,255,0.06);
      border-radius: 12px; border: 1px solid rgba(255,255,255,0.08);
      display: inline-flex; align-items: center; justify-content: center;
      color: #8a9a8f; font-size: 1rem; transition: 0.3s; text-decoration: none;
      position: relative; overflow: visible;
    }
    .footer-social .social-tooltip {
      position: absolute; bottom: calc(100% + 10px); left: 50%;
      transform: translateX(-50%) translateY(6px);
      background: var(--pach-dark); color: white; font-size: 0.72rem; font-weight: 600;
      padding: 5px 12px; border-radius: 8px; white-space: nowrap;
      opacity: 0; visibility: hidden; transition: all 0.25s ease;
      pointer-events: none; box-shadow: 0 4px 12px rgba(0,0,0,0.2); z-index: 10;
    }
    .footer-social .social-tooltip::after {
      content: ''; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
      border: 5px solid transparent; border-top-color: var(--pach-dark);
    }
    .footer-social:hover .social-tooltip { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    .footer-social::before {
      content: ''; position: absolute; inset: -4px; border-radius: 16px;
      background: transparent; transition: 0.3s; z-index: -1;
    }
    .footer-social:hover::before { background: rgba(249,168,37,0.15); }
    .footer-social:hover { background: var(--pach-red); color: white; border-color: transparent; transform: translateY(-3px); }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 1.5rem 0; margin-top: 4rem; }

    .scroll-top {
      position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px;
      background: var(--pach-green); color: white; border: none; border-radius: 14px;
      display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
      z-index: 999; opacity: 0; visibility: hidden; transition: 0.3s; cursor: pointer;
      box-shadow: 0 6px 18px rgba(20,82,45,0.3);
    }
    .scroll-top.visible { opacity: 1; visibility: visible; }
    .scroll-top:hover { background: var(--pach-red); transform: translateY(-3px); }

    .text-green { color: var(--pach-green) !important; }
    .text-red { color: var(--pach-red) !important; }
    .text-gold { color: var(--pach-gold) !important; }
    .bg-green-soft { background: var(--pach-green-soft) !important; }
    .fw-800 { font-weight: 800 !important; }

    /* ===== LIGHTBOX ===== */
    .gallery-lightbox {
      position: fixed; inset: 0; background: rgba(0,0,0,0.92);
      z-index: 9999; display: none; align-items: center; justify-content: center;
      opacity: 0; transition: opacity 0.3s;
    }
    .gallery-lightbox.active { display: flex; opacity: 1; }
    .gallery-lightbox img {
      max-width: 90vw; max-height: 85vh; border-radius: 12px;
      object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }
    .gallery-lightbox-close {
      position: absolute; top: 20px; right: 24px;
      width: 44px; height: 44px; background: rgba(255,255,255,0.1);
      border: none; border-radius: 50%; color: white; font-size: 1.4rem;
      cursor: pointer; transition: 0.2s;
      display: flex; align-items: center; justify-content: center;
    }
    .gallery-lightbox-close:hover { background: var(--pach-red); }

#datetime, .nepali-date, .separator-line, .lang-btn, #location, #mail, #contact {
        transform: skewX(25deg);
    }
    .lang-btn {
        background: white;
        border: 1.5px solid green;
        border-radius: 20px;
        padding: 4px 12px;
        font-size: 1rem;
        color: green;
        cursor: pointer;
        margin-right: 8px;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .lang-btn:hover {
        background-color: rgba(199, 36, 84, 1);
        color: white;
    }

    /* Google Translate Clean-up */
    .geog-te-banner-frame.skiptranslate, body > .skiptranslate {
        display: none !important;
    }
    body { top: 0px !important; }  
       
#btn-back-to-top {
  position: fixed;
  bottom: 50px;
  right: 30px;
  display: none; 
  z-index: 1000;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--pach-green, #028F45);
  border: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

#btn-back-to-top:hover {
  background-color: var(--pach-red, #d32f2f);
  transform: translateY(-5px);
}

#btn-back-to-top i {
  color: white;
  font-size: 1.2rem;
}    

