@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600&family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');

:root {
    --nri-emerald: #00983a;
    --nri-gold: #c5a059;
    --nri-gold-dark: #a68342;
    --nri-white: #ffffff;
}

.hero-section {
    position: relative;
    height: 100vh;
    min-height: 500px;
    background-color: var(--nri-emerald);
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow: hidden;
}

/* Background Image Animation */
.carousel-bg-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: contain;
    background-position: center;
    transition: transform 12s ease-out;
    z-index: 1;
}

.carousel-item.active .carousel-bg-img {
    transform: scale(1.1);
}

/* THE SECRET SAUCE: The Gradient Mask */
/* This makes the left side dark enough for text, but leaves the right side visible */
.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, 
        rgb(10, 10, 10) 0%, 
        rgba(15, 15, 15, 0.8) 30%, 
        rgba(6, 44, 33, 0) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    height: 100vh;
    display: flex;
    align-items: center;
}

/* Content Reveal Animation */
.hero-content-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.5s;
}

.carousel-item.active .hero-content-reveal {
    opacity: 1;
    transform: translateY(0);
}

.accent-line {
    width: 60px;
    height: 4px;
    background: var(--nri-gold);
    margin-bottom: 20px;
}

.hero-main-title {
    font-family: 'Cinzel', serif; /* Prestigious Font */
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    color: var(--nri-white);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
}

.gold-gradient-text {
    background: linear-gradient(to right, #f8e4be, var(--nri-gold), #a68342);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin-bottom: 40px;
    font-weight: 300;
    line-height: 1.8;
}

/* Professional Buttons */
.btn-nri-primary {
    display: inline-block;
    padding: 18px 35px;
    background: var(--nri-gold);
    color: var(--nri-emerald) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
    border: none;
    margin-right: 15px;
}

.btn-nri-primary:hover {
    background: var(--nri-white);
    transform: translateY(-3px);
}

.btn-nri-outline {
    display: inline-block;
    padding: 16px 35px;
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--nri-white) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-nri-outline:hover {
    border-color: var(--nri-gold);
    color: var(--nri-gold) !important;
}

/* Scroll Hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 40px;
    right: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--nri-gold);
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 80px;
    background: rgba(197, 160, 89, 0.3);
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
}

.scroll-line::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 30%;
    background: var(--nri-gold);
    animation: scrollMove 2s infinite;
}

@keyframes scrollMove {
    0% { top: -30%; }
    100% { top: 100%; }
}

.hero-scroll-hint span {
    font-size: 10px;
    letter-spacing: 3px;
    writing-mode: vertical-rl;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .hero-overlay {
        background: rgba(6, 44, 33, 0.85); /* Darker on mobile */
    }
    .hero-main-title { font-size: 2.5rem; }
    .hero-action-area { display: flex; flex-direction: column; gap: 15px; }
    .btn-nri-primary, .btn-nri-outline { margin-right: 0; width: 100%; text-align: center; }
}


















/* about  */
:root {
    --nri-emerald: #00983a;
    --nri-gold: #c5a059;
    --nri-gold-light: #e0c28d;
    --text-muted: #5a5a5a;
}

.about-section {
    background: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.upper-title {
    color: var(--nri-gold);
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
    margin-bottom: 10px;
    display: block;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-size: 2.8rem;
    color: var(--nri-emerald);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-desc {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* Feature styling for Consultant vibe */
.feature-box {
    display: flex;
    align-items: center;
    background: #f9fbf9;
    padding: 15px;
    margin-bottom: 15px;
    border-left: 3px solid var(--nri-gold);
    transition: 0.3s ease;
}

.feature-box:hover {
    background: #f1f4f1;
    transform: translateX(10px);
}

.icon-circle {
    min-width: 50px;
    height: 50px;
    background: var(--nri-emerald);
    color: var(--nri-gold);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    font-size: 1.3rem;
}

.feature-text h5 {
    color: var(--nri-emerald);
    margin-bottom: 2px;
    font-weight: 700;
}

.feature-text p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.btn-nri-gold {
    background: var(--nri-gold);
    color: white !important;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-nri-gold:hover {
    background: var(--nri-emerald);
}

/* Image stack styling */
.about-image-stack {
    position: relative;
}

.main-img-wrapper img {
    border-radius: 0;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -10px;
    background: var(--nri-emerald);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.experience-badge .number {
    font-size: 2.5rem;
    color: var(--nri-gold);
    font-family: 'Cinzel', serif;
}

















/* mission vission  */
:root {
    --nri-emerald: #00983a;
    --nri-gold: #c5a059;
    --nri-emerald-light: #0a4d3a;
    --white: #ffffff;
}

.mission-vision-section {
    background: #f4f7f6; /* Soft neutral background */
    position: relative;
}

.mv-card {
    padding: 3rem;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(6, 44, 33, 0.15);
}

/* Background Accents */
.mission-card::before {
    content: "MISSION";
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(6, 44, 33, 0.03);
    z-index: 0;
}

.vision-card::before {
    content: "VISION";
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(6, 44, 33, 0.03);
    z-index: 0;
}

.mv-icon-wrapper {
    width: 70px;
    height: 70px;
    background: var(--nri-emerald);
    color: var(--nri-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.mv-content {
    position: relative;
    z-index: 1;
}

.mv-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--nri-emerald);
    margin-bottom: 1.5rem;
}

.mv-text {
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.mv-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

@media (min-width: 768px) {
    .mv-list {
        grid-template-columns: 1fr 1fr;
    }
}

.mv-list li {
    font-size: 0.9rem;
    color: var(--nri-emerald);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.mv-list li i {
    color: var(--nri-gold);
    font-size: 0.8rem;
}

.vision-quote {
    border-left: 4px solid var(--nri-gold);
    padding-left: 20px;
    font-style: italic;
    color: var(--nri-emerald);
    font-weight: 500;
}

.text-gold {
    color: var(--nri-gold);
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    .mv-card {
        padding: 2rem;
    }
    .mv-title {
        font-size: 1.8rem;
    }
}












/* services  */

:root {
    --nri-emerald: #00983a;
    --nri-gold: #c5a059;
    --nri-light-bg: #f8faf9;
    --text-dark: #1a1a1a;
    --text-muted: #666666;
}

.services-section {
    background-color: var(--nri-light-bg);
}

.upper-title {
    color: var(--nri-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.85rem;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--nri-emerald);
    font-size: 2.5rem;
}

.title-divider {
    width: 60px;
    height: 3px;
    background: var(--nri-gold);
}

/* Service Card Design */
.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.4s ease;
    z-index: 1;
}

.service-card::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 0;
    background: var(--nri-emerald);
    transition: all 0.4s ease;
    z-index: -1;
}

.service-card:hover::after {
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 44, 33, 0.1);
}

/* Icon Styling */
.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(197, 160, 89, 0.1);
    color: var(--nri-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 25px;
    transition: 0.4s;
}

.service-card:hover .service-icon {
    background: var(--nri-gold);
    color: var(--white);
}

/* Text Content */
.service-body h4 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--nri-emerald);
    transition: 0.4s;
}

.service-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
    transition: 0.4s;
}

.service-card:hover h4, 
.service-card:hover p {
    color: #ffffff;
}

/* CTA Button */
.view-details {
    color: var(--nri-gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}

.view-details i {
    font-size: 0.75rem;
}

.service-card:hover .view-details {
    color: #ffffff;
    gap: 12px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .service-card { padding: 30px 20px; }
}







/* member  */
:root {
    --nri-emerald: #00983a;
    --nri-gold: #c5a059;
    --nri-darker: #041d16;
}

.membership-section {
    background: #ffffff;
}

.membership-wrapper {
    background: var(--nri-emerald);
    background: linear-gradient(135deg, var(--nri-emerald) 0%, var(--nri-darker) 100%);
    border-radius: 0; /* Professional sharp edges */
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(6, 44, 33, 0.2);
}

/* Background Decoration */
.membership-wrapper::after {
    content: "\f192"; /* FontAwesome Icon */
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    bottom: -50px;
    right: -20px;
    font-size: 20rem;
    color: rgba(197, 160, 89, 0.03);
}

.membership-title {
    font-family: 'Cinzel', serif;
    color: var(--nri-gold);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    line-height: 1.2;
    margin-bottom: 20px;
}

.membership-text {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Benefit List */
.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    color: #ffffff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
}

.benefit-list li i {
    color: var(--nri-gold);
    font-size: 1.2rem;
}

/* The Action Card */
.join-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(197, 160, 89, 0.3);
    padding: 40px 30px;
    color: #fff;
    transition: 0.4s;
}

.join-card:hover {
    border-color: var(--nri-gold);
    background: rgba(255, 255, 255, 0.08);
}

.card-icon {
    font-size: 3rem;
    color: var(--nri-gold);
    margin-bottom: 20px;
}

.join-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price-tag {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Button */
.btn-join-now {
    display: block;
    background: var(--nri-gold);
    color: var(--nri-emerald) !important;
    text-decoration: none;
    padding: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-join-now:hover {
    background: #ffffff;
    transform: translateY(-5px);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .membership-wrapper {
        margin: 0 15px;
        border-radius: 20px; /* Softer look for mobile containers */
    }
    .membership-title { text-align: center; }
    .benefit-list { margin-bottom: 40px; }
}



















/* testimonials */
:root {
    --nri-emerald: #00983a;
    --nri-gold: #c5a059;
    --white: #ffffff;
}

.testimonials-section {
    background-color: #f9fbfb;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 44, 33, 0.08);
    border-color: var(--nri-gold);
}

.quote-icon {
    color: var(--nri-gold);
    font-size: 1.5rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    margin-bottom: 30px;
}

/* Client Detail Styling */
.client-info {
    border-top: 1px solid #eee;
    padding-top: 20px;
    display: flex;
    align-items: center;
}

.client-details h5 {
    font-family: 'Cinzel', serif;
    color: var(--nri-emerald);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.client-location {
    font-size: 0.8rem;
    color: var(--nri-gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 20px;
    }
}























:root {
    --nri-emerald: #00983a;
    --nri-gold: #c5a059;
    --nri-dark: #041d16;
}

.contact-section {
    background-color: #f8f9fa;
}

.contact-main-wrapper {
    background: #fff;
    overflow: hidden;
}

/* Info Column Styling */
.contact-info-column {
    background: linear-gradient(135deg, var(--nri-emerald) 0%, var(--nri-dark) 100%);
    position: relative;
    z-index: 1;
}

.info-icon {
    min-width: 45px;
    height: 45px;
    background: rgba(197, 160, 89, 0.15);
    color: var(--nri-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.1rem;
}

.info-text h5 {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.social-links a {
    color: white;
    margin-right: 20px;
    font-size: 1.2rem;
    transition: 0.3s;
    opacity: 0.7;
}

.social-links a:hover {
    color: var(--nri-gold);
    opacity: 1;
}

/* Form Styling */
.form-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--nri-emerald);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.custom-input {
    border: 1px solid #e1e1e1;
    border-radius: 0;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: 0.3s;
}

.custom-input:focus {
    border-color: var(--nri-gold);
    box-shadow: none;
    outline: none;
}

.btn-submit-consultation {
    width: 100%;
    background: var(--nri-emerald);
    color: white;
    padding: 16px;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.4s;
    cursor: pointer;
}

.btn-submit-consultation:hover {
    background: var(--nri-gold);
    transform: translateY(-3px);
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .contact-main-wrapper {
        margin: 0 10px;
        border-radius: 15px;
    }
}




























/* services  */
:root {
    --legal-emerald: #042119;
    --legal-gold: #c5a059;
    --legal-white: #ffffff;
}

.legal-hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    background-color: var(--legal-emerald);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.legal-bg-image {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.6);
}

.legal-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    /*background: linear-gradient(90deg, rgb(0 152 58) 0%, rgb(0 148 57) 50%, rgb(0 152 58) 100%);*/
        background: linear-gradient(135deg, var(--nri-emerald), var(--nri-dark));
        
    z-index: 2;
}

.legal-content {
    position: relative;
    z-index: 3;
}

/* Breadcrumb Styling */
.legal-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 20px;
}

.legal-breadcrumb .breadcrumb-item, 
.legal-breadcrumb .breadcrumb-item a {
    color: var(--legal-gold);
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-breadcrumb .breadcrumb-item.active {
    color: var(--legal-white);
    opacity: 0.7;
}

.legal-upper {
    color: var(--legal-gold);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.legal-title {
    font-family: 'Cinzel', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--legal-white);
    line-height: 1.1;
    margin-bottom: 25px;
}

.text-gold { color: var(--legal-gold); }

.legal-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    max-width: 650px;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Buttons */
.btn-legal-primary {
    display: inline-block;
    padding: 16px 35px;
    background: var(--legal-gold);
    color: var(--legal-emerald) !important;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 20px;
    transition: 0.3s;
}

.btn-legal-outline {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid var(--legal-gold);
    color: var(--legal-gold) !important;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
}

.btn-legal-primary:hover, .btn-legal-outline:hover {
    background: var(--legal-white);
    color: var(--legal-emerald) !important;
    border-color: var(--legal-white);
}

/* Expertise Ribbon */
.expertise-ribbon {
    /* position: absolute; */
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(197, 160, 89, 0.3);
    padding: 20px 0;
    z-index: 4;
    background-color: #041d16;
}

.ribbon-text {
    color: var(--legal-gold);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.border-gold-transparent {
    border-color: rgba(197, 160, 89, 0.2) !important;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .legal-hero { height: auto; padding: 120px 0 60px; }
    .legal-overlay { background: linear-gradient(90deg, rgb(0 152 58) 0%, rgb(0 148 57) 50%, rgb(0 152 58) 100%);}
    .legal-actions a { display: block; margin: 0 0 15px 0; text-align: center; }
}



:root {
    --nri-emerald: #00983a;
    --nri-gold: #c5a059;
    --nri-soft-grey: #f8f9fa;
}

.legal-content-section {
    background-color: #ffffff;
}

/* Header Styling */
.upper-title {
    color: var(--nri-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    font-size: 0.85rem;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--nri-emerald);
    font-size: 2.8rem;
    line-height: 1.2;
}

.section-desc {
    color: #666;
    line-height: 1.8;
    border-left: 3px solid var(--nri-gold);
    padding-left: 20px;
}

/* Info Card Styling */
.legal-info-card {
    background: var(--nri-soft-grey);
    padding: 40px;
    height: 100%;
    position: relative;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.legal-info-card:hover {
    background: #ffffff;
    border-color: var(--nri-gold);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    transform: translateY(-5px);
}

.card-count {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    color: rgba(6, 44, 33, 0.05);
    position: absolute;
    top: 20px;
    right: 30px;
    font-weight: 900;
    transition: 0.3s;
}

.legal-info-card:hover .card-count {
    color: var(--nri-gold);
    opacity: 0.2;
}

.card-body h3 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--nri-emerald);
    margin-bottom: 20px;
}

.card-body p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

/* Bullet List */
.legal-bullet-list {
    list-style: none;
    padding: 0;
}

.legal-bullet-list li {
    font-weight: 600;
    color: var(--nri-emerald);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.legal-bullet-list li i {
    color: var(--nri-gold);
    margin-right: 10px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .section-title { font-size: 2.2rem; }
    .legal-info-card { padding: 30px 20px; }
}

:root {
    --nri-emerald: #00983a;
    --nri-gold: #c5a059;
    --nri-white: #ffffff;
    --nri-light-gray: #f8fbf9;
}

.directory-section { background-color: var(--nri-light-gray); }

/* Provider Card Styling */
.provider-card {
    background: var(--nri-white);
    border: 1px solid rgba(0,0,0,0.05);
    padding: 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.provider-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(6, 44, 33, 0.1);
    border-color: var(--nri-gold);
}

.provider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.provider-avatar {
    width: 60px;
    height: 60px;
    background: var(--nri-emerald);
    color: var(--nri-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.badge-verified {
    background: #e7f5ef;
    color: #27ae60;
    padding: 5px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.provider-name {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: var(--nri-emerald);
    margin-bottom: 5px;
}

.provider-specialty {
    color: var(--nri-gold);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.provider-exp {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 20px;
}

/* Masking/Blur Effect */
.masked-details {
    background: #fdfdfd;
    padding: 15px;
    border: 1px dashed #ddd;
    border-radius: 5px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
}

.blurred-text {
    filter: blur(5px);
    user-select: none; /* Prevents copying the text */
    opacity: 0.6;
}

/* Unlock Button */
.btn-unlock-contact {
    width: 100%;
    margin-top: 20px;
    padding: 12px;
    background: var(--nri-emerald);
    color: var(--nri-gold);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.btn-unlock-contact:hover {
    background: var(--nri-gold);
    color: var(--nri-emerald);
}

/* Modal Styling */
.bg-emerald { background: var(--nri-emerald); }
.font-cinzel { font-family: 'Cinzel', serif; }

.custom-field {
    border-radius: 0;
    border: 1px solid #ddd;
    padding: 12px;
}

.btn-submit-unlock {
    background: var(--nri-gold);
    color: white;
    border: none;
    padding: 15px;
    font-weight: 700;
    text-transform: uppercase;
}
:root {
    --nri-emerald: #00983a;
    --nri-dark: #041d16;
    --nri-gold: #c5a059;
}

/* Roadmap Styling */
.bg-emerald { background: linear-gradient(135deg, var(--nri-emerald), var(--nri-dark)); }

.roadmap-tracker {
    position: relative;
    padding-left: 50px;
}

.roadmap-tracker::before {
    content: '';
    position: absolute;
    left: 17px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: rgba(197, 160, 89, 0.3);
}

.roadmap-item {
    position: relative;
    margin-bottom: 40px;
}

.roadmap-dot {
    position: absolute;
    left: -50px;
    width: 36px;
    height: 36px;
    background: var(--nri-gold);
    color: var(--nri-emerald);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(197, 160, 89, 0.1);
}

.roadmap-text h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.25rem;
    color: var(--nri-gold);
}

.trust-icons-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    background: rgba(255,255,255,0.05);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(197, 160, 89, 0.2);
}

/* FAQ Styling */
.custom-faq .accordion-item {
    border: none;
    margin-bottom: 15px;
    background: #f8f9fa;
}

.custom-faq .accordion-button {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
    color: var(--nri-emerald);
    background: #f8f9fa;
    padding: 20px;
    box-shadow: none;
}

.custom-faq .accordion-button:not(.collapsed) {
    color: var(--nri-gold);
    background: #ffffff;
    border-bottom: 2px solid var(--nri-gold);
}

.custom-faq .accordion-body {
    line-height: 1.8;
    color: #555;
    background: #fff;
    font-size: 0.95rem;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .roadmap-tracker { padding-left: 40px; }
    .roadmap-dot { left: -42px; width: 30px; height: 30px; font-size: 0.8rem; }
}
































/* team  */

/* Team Section Styles */
.team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 4px solid transparent;
}

.team-card:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid #C5A059; /* Gold color */
}

.team-img-wrapper {
    position: relative;
    height: 320px;
    overflow: hidden;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background: rgba(10, 56, 48, 0.9); /* Emerald Overlay */
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    color: #fff;
    font-size: 1.2rem;
}

.team-info {
    padding: 25px;
    text-align: center;
}

.team-info h5 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    color: #0A3830;
    margin-bottom: 5px;
}

.designation {
    color: #C5A059;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    display: block;
}

.team-bio-short {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .team-img-wrapper {
        height: 280px;
    }
}
















/* partners  */
/* Partner Card UI */
.mou-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.mou-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.15); /* Gold tinted shadow */
}

.mou-logo-wrapper {
    position: relative;
    height: 195px;
    background: #fdfdfd;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
    border-bottom: 1px solid #f5f5f5;
}

.mou-logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.mou-card:hover .mou-logo {
    filter: grayscale(0%);
    opacity: 1;
}

.mou-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #0A3830; /* Emerald */
    color: #C5A059; /* Gold */
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.mou-content {
    padding: 10px 30px;
}

.mou-title {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: #0A3830;
    margin-bottom: 10px;
}

.mou-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.mou-footer {
    border-top: 1px solid #f5f5f5;
    padding-top: 15px;
}

.mou-status {
    font-size: 0.8rem;
    color: #C5A059;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}