    .body {
        font-family: "Montserrat", Sans-serif;
        font-size: 12px;
    }
    #section_aboutus {
        padding-top: 130px;
        margin-top: -130px;
        -webkit-background-clip: content-box;
        background-clip: content-box;
    }
    #section_gettinginvolved {
        padding-top: 130px;
        margin-top: -130px;
        -webkit-background-clip: content-box;
        background-clip: content-box;
    }
    #section_aboutmanvir {
        -webkit-background-clip: content-box;
        background-clip: content-box;
    }
    #section_aboutkomal {
        -webkit-background-clip: content-box;
        background-clip: content-box;
    }
    #section_aboutrajneet {
        -webkit-background-clip: content-box;
        background-clip: content-box;
    }
    #section_aboutnidhi {
        -webkit-background-clip: content-box;
        background-clip: content-box;
    }
    .initials-circle {
        /* Dimensions for the circle */
        width: 50px; /* Adjust as needed */
        height: 50px; /* Must match width for a perfect circle */

        /* Make it a circle */
        border-radius: 50%;

        /* Background color (Google-style often uses a colored background) */
        background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important; 

        /* Text styling for the initials */
        color: #FFFFFF; /* White text for contrast */
        font-family: 'Roboto', sans-serif; /* Or a similar clean sans-serif font */
        font-size: 20px; /* Adjust font size based on circle size */
        font-weight: 500; /* Medium weight for readability */

         /* Center the text vertically and horizontally */
         display: flex;
        justify-content: center;
        align-items: center;

        /* Optional: Add a subtle shadow for depth */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    .black{
        background-color:black;
        color:white;
    }
    .lead a{
        color: white;
        text-decoration: none;
    }
    #myCarousel{
        margin-top:50px;
    }
    .font-helper-black{
        font-size: 1.25rem;
        font-weight: 300;
        color:black;
    }
    .font-helper-black-quote{
        font-size: 1rem;
        font-weight: 300;
        color:black;
        font-style:italic;
    }
     img.team-small {width: 200px;height: 200px;-webkit-border-radius: 50%;border-radius: 50%;-o-object-fit: cover;object-fit: cover;max-width: none; border: 2px solid white;}
    .home-testimonial{background-color: #000000; padding:20px;}
    .home-testimonial-container{transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;margin-top: 20px;margin-bottom: 0px;position: relative;top: 190px}
    .tour-item {margin-bottom:20px;}
    .testimonial-inner{position: relative; padding-top:10px}
    .testimonial-pos{position: relative;top: 24px}
    .testimonial-inner .tour-desc{border-radius: 5px;padding: 10px}
    .color-grey-3{font-family: "Montserrat", Sans-serif;font-size: 12px;color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important; }
    .testimonial-inner img.tm-people{width: 60px;height: 60px;-webkit-border-radius: 50%;border-radius: 50%;-o-object-fit: cover;object-fit: cover;max-width: none}
    .link-name{font-family: "Montserrat", Sans-serif;font-size: 14px;color: #000000}
    .link-position{font-family: "Montserrat", Sans-serif;font-size: 12px;color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important; }
    .bi-quote{font-size: 3rem; font-weight: 1000;}
    .slider {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        width: 100%;
        overflow: hidden;
        background: rgb(255, 255, 255);
        border-radius: 5px;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(7.4px);
        -webkit-backdrop-filter: blur(7.4px);
        border: 1px solid rgba(255, 255, 255, 0.4);
    }

    .slider-items {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
        animation: scrolling 20s linear infinite; /* Apply the animation */
}


    @keyframes scrolling {

        0% {
            transform: translateX(80%);
        }

        100% {
            transform: translateX(-20%);
        }
    }

    .slider-items img {
        width: 12%;
        margin: 20px;

    }
    a {
    color: white;
    text-decoration: underline;
    }

/* project.php stat dashboard cards */
.stat-card {
    background: #111;
    border: 1px solid #333;
    border-radius: 14px;
    padding: 32px 16px 24px;
    text-align: center;
    height: 100%;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.stat-card:hover {
    border-color: #c9a84c;
    transform: translateY(-3px);
}
.stat-card-num {
    font-size: 2.4rem;
    font-weight: 700;
    color: #c9a84c;
    line-height: 1;
    margin-bottom: 10px;
    word-break: break-word;
}
.stat-card-lbl {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.4;
}

/* project.php feature image */
.project-feature-img {
    width: 100%;
    min-height: 320px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

/* project.php image gallery */
.project-gallery-card {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #444;
    height: 220px;
}
.project-gallery-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #000;
    display: block;
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.5s ease, transform 0.3s ease;
}
.project-gallery-img.loaded {
    opacity: 1;
}
.project-gallery-img:hover {
    transform: scale(1.04);
}
.gallery-load-more-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    color: rgba(255,255,255,0.55);
    transition: border-color 0.2s, color 0.2s;
    user-select: none;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.gallery-load-more-card:hover {
    border-color: #c9a84c;
    color: #c9a84c;
}
.gallery-load-more-card.is-loading {
    opacity: 0.45;
    cursor: wait;
    pointer-events: none;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,0.93);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
#lb-img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}
.lb-btn {
    position: fixed;
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
    line-height: 1;
    padding: 8px;
    transition: opacity 0.15s;
}
#lb-close { top: 16px; right: 20px; font-size: 2rem; opacity: 0.75; }
#lb-close:hover { opacity: 1; }
#lb-prev, #lb-next { top: 50%; transform: translateY(-50%); font-size: 3.5rem; opacity: 0.6; }
#lb-prev:hover, #lb-next:hover { opacity: 1; }
#lb-prev { left: 4px; }
#lb-next { right: 4px; }

/* projects.php initiative cards */
.flex-equal > * {
    flex: 1;
    max-width: 50%;
}
@media (min-width: 768px) {
    .flex-md-equal > * {
        flex: 1;
        max-width: 50%;
    }
}
.diagonal-rounded-dark {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}
.diagonal-rounded-dark img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    border-radius: 100px 0 100px 0;
    border: 2px solid #212529;
    display: block;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.diagonal-rounded-dark img:hover {
    transform: scale(1.08);
    opacity: 0.9;
}
.diagonal-rounded-light {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}
.diagonal-rounded-light img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    border-radius: 100px 0 100px 0;
    border: 2px solid #f8f9fa;
    display: block;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.diagonal-rounded-light img:hover {
    transform: scale(1.08);
    opacity: 0.9;
}

/* CSS animations for dynamically inserted elements (replaces AOS for JS-rendered content) */
@keyframes anim-flip-left {
    from { transform: perspective(2500px) rotateY(-100deg); opacity: 0; }
    to   { transform: perspective(2500px) rotateY(0);        opacity: 1; }
}
@keyframes anim-zoom-in {
    from { transform: scale(0.6); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}
.anim-flip-left { animation: anim-flip-left 0.6s ease-out forwards; }
.anim-zoom-in   { animation: anim-zoom-in   0.5s ease-out forwards; }

/* HERO */
.hero {
  background: linear-gradient(120deg, #111 0%, #2a2a2a 100%);
  color: white;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  right: -60px; top: -60px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-lead {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255,255,255,0.82);
  max-width: 540px;
}
.hero-cta {
  display: inline-block;
  margin-top: 28px;
  background: var(--gold);
  color: white;
  border-radius: 30px;
  padding: 13px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s;
}
.hero-cta:hover { background: #333; color: white; }

/* STATS STRIP */
.stats-strip {
  background: var(--gold);
  padding: 24px 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.stat-lbl {
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.75;
  margin-top: 4px;
}