:root {
    --green:#16a34a;
    --amber:#f59e0b;
    --blue:#2563eb;
    --dark:#0f172a;
    --muted:#64748b;
    --border:#e5e7eb;

    --primary-green: #008336;
    --primary-amber: #FFC302;
    --dark-green: #007733;
    --dark-bg: #1f2937;
    --light-bg: #f9fafb;
    --text-dark: #111827;
    --text-muted: #6b7280;
    --white: #ffffff;
}
/* body {
    font-family: "Outfit", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif !important;
    
} */
/* h2{
    font-size: 2rem !important;
    font-weight: 700 !important;
} */


p {
    font-family: "Lora", serif !important;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
   line-height: 1.05; 
    margin-bottom: 1rem;
}
.section-subtitle {
    font-size: 1.125rem;
    margin: 0 auto;
   
}
.section-subtitle p {
    padding-bottom: 0 !important;
     color:#4F5565;
}

/* Section background (optional but recommended) */
/* .features-main-section {
    background: #f9fafb;
} */


/* ===== HERO ===== */
.hero-section{
    padding:5rem 0;
    min-height:90vh;
    display:flex;
    align-items:center;
}

.hero-label{
    font-size:.75rem;
    letter-spacing:1.5px;
    font-weight:700;
    color:var(--muted);
}

.hero-title{
    font-size:4.5rem;
    font-weight:900;
    line-height:1.05;
    margin:.75rem 0;
}

.hero-online{
    color:var(--green);
    font-weight:700;
    margin:1.25rem 0 .5rem;
     font-size: 2rem;
}

.hero-desc{
    max-width:480px;
    color:var(--muted);
    line-height:1.6;
    margin-bottom:1.75rem;
}

.hero-actions {
    margin-top: 1.5rem;
}

.btn-main,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    border-radius: 6px;
}

.btn-main{
    background:var(--green);
    color:#fff;
    padding:.8rem 1.6rem;
    border-radius:10px;
    font-weight:600;
    text-decoration:none;
}

.btn-outline{
    border:2px solid var(--dark);
    padding:.8rem 1.6rem;
    border-radius:10px;
    font-weight:600;
    color:var(--dark);
    text-decoration:none;
}
.hero-stats {
    margin-top: 1.5rem;
}

/* Stat item */
.stat-item {
    position: relative;
    padding-right: 2rem;
}

/* Vertical divider (desktop only) */
@media (min-width: 768px) {
    .stat-item:not(:last-child)::after {
        content: "";
        position: absolute;
        right: 20px;
        top: 6px;
        height: 40px;
        width: 1px;
        background: #e5e7eb;
    }
}

/* Numbers */
.hero-stats strong {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.1;
    color: #0f172a;
}

/* Labels */
.hero-stats span {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* Green highlight */
.stat-item.highlight strong {
    color: #16a34a;
}

/* ===== DASHBOARD ===== */
.dashboard-panel{
    position:relative;
}
/*  */
/* Wrapper positioning (like image) */
.trust-row {
    position: absolute;
    top: -28px;
    right: 0;
    z-index: 20;
    width: 100%;
    max-width: 440px;
}

/* Shared card base */
.trust-card,
.compliant-card {
    background: #ffffff;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0f172a;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

/* Trusted card (NORMAL size) */
.trust-card {
    padding: 8px 14px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Stars */
.trusted-card .stars {
    display: flex;
    gap: 2px;
}

.trusted-card .stars i {
    font-size: 0.65rem;
    color: #facc15;
}

/* Large compliant card (IMAGE STYLE) */
.compliant-card-lg {
    padding: 20px 10px;       /* 🔥 BIG padding */
    font-size: 1rem;          /* 🔥 Bigger text */
    font-weight: 700;
    min-height: 68px;         /* 🔥 Taller */
    gap: 1px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

/* Shield icon style */
.compliant-card-lg .shield-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #16a34a;
}

/* Optional: slight pop like image */
.compliant-card-lg {
    transform: scale(1.1);
}


.shield-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #dcfce7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon i {
    color: #16a34a;
    font-size: 1.8rem;
}



/* Green shield circle */
.shield-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #dcfce7; /* light green */
    display: flex;
    align-items: center;
    justify-content: center;
}



.dashboard-card{
    margin-top:20px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 30px 60px rgba(0,0,0,.12);
    overflow:hidden;
}

/* Header */
.dashboard-header{
    background:#0b5d2e;
    color:#fff;
    padding:1.2rem 1.4rem;
    display:flex;
    align-items:center;
    gap:1rem;
}

.org-name{
    font-weight:700;
    font-size:.95rem;
}

.org-sub{
    font-size:.7rem;
    opacity:.9;
}

.window-controls{
    margin-left:auto;
    display:flex;
    gap:.4rem;
}

.dot{
    width:11px;height:11px;border-radius:50%;
}
.dot.red{background:#ef4444}
.dot.yellow{background:#f59e0b}
.dot.green{background:#22c55e}

/* Body */


/* Flow */
.process-flow{
    display:flex;
    align-items:center;
    margin-bottom:1.5rem;
}

.flow-step{text-align:center;font-size:.75rem;font-weight:600}

.flow-icon{
    width:56px;height:56px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff !important;
    margin-bottom:.3rem;
}

.flow-icon.blue{background:var(--blue)}
.flow-icon.green{background:var(--green)}
.flow-icon.amber{background:var(--amber)}

.flow-line{
    flex:1;
    height:3px;
    margin:0 1rem;
    background: linear-gradient(
        to right,
        #135DFB 0%,   /* blue */
        #10B981 100%  /* green */
    );
}
.flow-line_second {
    flex: 1;
    height: 3px;
    margin: 0 1rem;
    border-radius: 2px;
    background: linear-gradient(
        to right,
        #16A34A 0%,   /* green */
        #FACC15 100%  /* yellow */
    );
}


/* ===== RECENT DONATIONS (MATCH IMAGE) ===== */



.recent-donations{
     border:1px solid var(--border);
      border-radius:10px;


}

.donation-top{
    display:flex;
    justify-content:space-between;
    font-size:.85rem;
    font-weight:600;
    margin-bottom:.35rem;
}

.amount{font-weight:700}

/* Progress bar */
.progress-wrap{
    height:6px;
    background:#e5e7eb;
    border-radius:999px;
    overflow:hidden;
    margin-bottom:.35rem;
}

.progress{
    height:100%;
    border-radius:999px;
}

/* Status */
.status{
    font-size:.7rem;
    font-weight:600;
    display:flex;
    align-items:center;
    gap:.35rem;
}

/* Colors */
.green{color:var(--green)}
.green.progress{background:var(--green)}

.amber{color:var(--amber)}
.amber.progress{background:var(--amber)}

.blue{color:var(--blue)}
.blue.progress{background:var(--blue)}
/* Allow overlap */
.donation-item {
    position: relative;
}

/* Amount wrapper */
.amount-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

/* Floating yellow tick (overlapping box like image) */
.floating-check {
    position: absolute;
   right: -44px;
    top: -80px;
    width: 60px;
    height: 60px;
    background: #facc15;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Tick icon */
.floating-check i {
    font-size: 1.5rem;
    color: #0f172a;
    font-weight: 900;
}





/* ===== Dashboard Bottom Cards ===== */
.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.stat-card {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0.75rem 0.5rem;
    text-align: center;
    background: #fff;
}

.stat-card strong {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
}

.stat-card span {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 600;
}

/* Middle card highlighted (green value like image) */
.stat-card.highlight strong {
    color: #16a34a;
}


/* Features Section */
.features-main-section {
 
    padding: 5rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}


/* Card */
.feature-card-main {
    background: #ffffff;
    border: 1px solid #DBFCE7;
    border-radius: 14px;
    padding: 28px 26px;
    height: 100%;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
}

.feature-card-main:hover {
     transform: scale(1.03); /* zoom like image */
    border-color: #22c55e; /* green border */
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
}

/* Icon box */
.feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 18px;
}

/* Soft green background like image */
.feature-icon-box.green {
    background: #dcfce7;
    color: #16a34a;
}

/* Title */
.feature-card-main h4 {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #111827;
    margin-bottom: 10px;
    text-transform: capitalize !important;
   
}

/* Description */
.feature-card-main p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Section heading */
.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 14px;
}

.section-subtitle {
    font-size: 18px;
    color: #6b7280;
    max-width: 720px;
    margin: 0 auto;
}


.btn-primary {
    background: var(--primary-green);
    border: none;
    color: white;
    font-weight: 500;
    border-radius: 8px;
    /* padding: 0.75rem 2rem; */
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--dark-green);
    color: white;
   
   
}

.btn-outline-secondary {
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    background: white;
}

.btn-outline-secondary:hover {
    background: var(--text-dark);
    color: white;
}
/* price sections */

.pricing-section {
 
    background-attachment:fixed;
}


.pricing-content {
    position: relative;
    z-index: 1;
}

.pricing-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.pricing-amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-amber);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.pricing-subtitle {
    font-size: 1.25rem;
    
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
    text-align: center;
}

.pricing-feature-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #DBFCE7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
    font-size: 2rem;
}

.pricing-feature-card h5 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px !important;
    line-height: 5px !important;
    color:#111827 !important;
   
}

.pricing-feature-card p {
    color: var(--text-muted);
    margin: 0;
}

.row-bg.viewport-desktop.using-image {
    background-attachment: fixed !important;
}
/* end price sections */


/* Focus Section */
.focus-section {
    background: white;
    padding: 5rem 0;
}

.focus-card {
    text-align: center;
    padding: 2rem;
}

.focus-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #DBFCE7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
    font-size: 2rem;
}

.focus-card h5 {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: var(--text-dark);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px !important;
}

.focus-card p {
    color: var(--text-muted);
    line-height: 1.7;
}
.section-subtitle_focus {
   text-align: center;
   
}
/* end */
/* pioneerrs */

.pioneers-text p {
  
    line-height: 1.8;
    color:#fff;
    padding-bottom:0px !important;
   
}


.btn-amber {
     background: #fbbf24;
    color: var(--text-dark);
    border: none;
    font-weight: 500;
    margin-top: 30px;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.btn-amber:hover {
    background: #f3b61a;
    color: var(--text-dark);
    transition: all 0.3s ease;
   
}

.pioneer-stat-card {
    border: 1px solid #66832A;
    
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
   
}


.pioneer-stat-card:hover {
     transform: scale(1.03); /* zoom like image */
    border-color: #FFC302;
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
}

.pioneer-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-amber);
    margin-bottom: 0.5rem;
}

.pioneer-stat-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color:#fff;
}

.pioneer-stat-subtitle {
    font-size: 1rem;
    opacity: 0.8;
    color:#fff;
}

/* end pioneers */
/* why donate stock */
.why-donate-section-title {
  
    font-weight: 700 !important;
    margin-bottom: 20px;
}
.why-donate-section-subtitle {
    font-size: 1.125rem;
    margin: 0 auto;
   
}
.why-donate-section-subtitle p {
    padding-bottom: 0 !important;
     color:#4F5565;
}

.why-donate-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 1.5rem;
    height: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.why-donate-card  h4 {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #111827;
    margin-bottom: 10px;
    text-transform: capitalize !important;
}

.why-donate-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 2rem;
   
}

.why-donate-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.why-donate-card p {
    color: var(--text-muted);
    line-height: 1.7;
}
/* end */
/* what our users say */
.testimonial-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    
    text-align: center;
}


.review-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-review {
    background: white;
    border: 2px solid var(--primary-green);
    color: var(--primary-green);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.btn-review:hover {
    background: var(--primary-green);
    color: white;
}

.btn-review i.fa-star {
    color: var(--primary-green);
}

.btn-review:hover i.fa-star {
    color: white;
}
.stjr-reviews-carousel-attribution{
    display: none !important;
}
/* free-guide-wrapper */



.free-guide-visual {
    flex: 1;
}

.guide-mockup {
    background: var(--dark-green);
    border-radius: 16px;
    padding: 3rem;
    color: white;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.guide-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-amber);
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
}

.guide-logo {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.guide-title {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.guide-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.guide-cta-text {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.free-guide-content {
    flex: 1;
    background: white;
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 99px rgba(0,0,0,0.1)
}

.signup-badge {
    background: #f0fdf4;
    color: var(--primary-green);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.guide-headline {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.guide-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.guide-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.guide-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.guide-features li i {
    color: var(--primary-green);
    font-size: 1.25rem;
}

.guide-disclaimer {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-top: 1rem;
    text-align: center;
}
/* end  */
/* faq */
.faq-section-title {
    font-size: 2rem !important;
    font-weight: 700 !important;
   line-height: 1.05; 
    margin-bottom: 1rem;
}

/* Each accordion item */
.toggles.accordion .toggle {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: #fff;
}

/* Accordion header */
.toggles.accordion .toggle-title {
    margin: 0;
}

/* Accordion button */
.toggles.accordion .toggle-title .toggle-heading {
    display: flex;
    align-items: center;
    gap: 10px;
  
    border: none;
    font-weight: 500;
    color: var(--text-dark);
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    font-size: 1rem;
}

/* Active (open) state */
.toggles.accordion .toggle.open .toggle-heading {
    background: #ffffff;
    color: var(--primary-green);
}

/* Remove focus outline */
.toggles.accordion .toggle-heading:focus {
    outline: none;
    box-shadow: none;
}

/* Icon styling */
.toggles.accordion .toggle-heading i {
    font-size: 16px;
}

/* Accordion body */
.toggles.accordion .inner-toggle-wrap {
    padding: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* Smooth open animation */
.toggles.accordion .toggle > div {
    transition: max-height 0.3s ease;
}

.inner-toggle-wrap p {
    padding-left: 1.5rem;
    margin: 0;
}

div[data-style*="minimal"] .toggle h3 i{


   border:none !important

}


/* end faq */
/* security */

.security-feature-card {
    padding: 2rem;
}

.security-icon {
    width: 80px;
    height: 80px;
   
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-green);
    font-size: 2.5rem;
}

.security-feature-card h5 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.security-feature-card p {
    color: var(--text-muted);
    font-size: 0.875rem;
    margin: 0;
}
 /* Hero Section */
    .hero-section {
        padding: 3rem 0;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
        text-align: center;
    }
    
    .hero-label {
        text-align: center;
    }
    
    .dashboard-panel {
        margin-top: 2rem;
    }
    
    .trusted-badge,
    .compliant-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 1rem;
        display: inline-block;
    }
    
    /* Online Section */
    .online-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .online-description {
        text-align: center;
    }
    
    .online-buttons {
        justify-content: center;
    }
    
    .dashboard-panel-2 {
        margin-top: 2rem;
    }
    
    /* Statistics */
    .stat-main {
        font-size: 2.5rem;
    }
    
    /* Section Titles */
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Pricing */
    .pricing-amount {
        font-size: 3rem !important;
    }
    
    .pricing-title {
        font-size: 2.5rem;
    }
    
    /* Pioneers */
    .pioneers-title {
        font-size: 2.5rem;
    }
    
    .pioneers-subtitle {
        font-size: 1.25rem;
    }
    
    .pioneer-stat-number {
        font-size: 3rem;
    }
    
    /* Free Guide */
    .free-guide-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .guide-headline {
        font-size: 2rem;
    }

 .ms-n5{
    margin-left: 8px !important;
}
.counter_diver{
    margin-top:20px;
    border: 1px solid var(--border);
}
    
/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: white;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-content {
    padding-right: 2rem;
}

.hero-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin: 0;
}

/* Dashboard Panel */
.dashboard-panel {
    position: relative;
}

.trusted-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: white;
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.trusted-badge i {
    color: var(--primary-amber);
    font-size: 0.75rem;
}

.compliant-badge {
    position: absolute;
    top: 40px;
    right: 0;
    background: white;
    border: 2px solid var(--primary-green);
    border-radius: 50px;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.compliant-badge i {
    color: var(--primary-green);
}

.dashboard-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-top: -28px;
}

.dashboard-header {
    background: var(--dark-green);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dashboard-header i {
    font-size: 1.5rem;
}

.org-name {
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.org-subtitle {
    font-size: 0.875rem;
    opacity: 0.9;
}

.window-controls {
    margin-left: auto;
    display: flex;
    gap: 0.5rem;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.red { background: #ef4444; }
.control-dot.yellow { background: #f59e0b; }
.control-dot.green { background: #10b981; }

.dashboard-body {
    padding: 2rem;
    background-color: #FAFAFB;
}

/* Desktop (default) */
.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem 1rem;      /* optional padding around text */
    border-radius: 8px;        /* optional rounded corners */
    /* subtle background if needed */
   
}

.flow-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Keep your existing colors */
.flow-icon.blue { background: #3b82f6; }
.flow-icon.green { background: var(--primary-green); }
.flow-icon.amber { background: var(--primary-amber); }

.flow-line {
    flex: 1;
    height: 3px; /* horizontal line on desktop */
   
    margin: 0 1rem;
     background: linear-gradient(
        to right,
        #135DFB 0%,   /* blue */
        #10B981 100%  /* green */
    );
}

.flow-line_second {
    flex: 1;
    height: 3px;
    margin: 0 1rem;
    border-radius: 2px;
    background: linear-gradient(
        to right,
        #16A34A 0%,   /* green */
        #FACC15 100%  /* yellow */
    );
}

/* Tablet & Mobile */
@media (max-width: 768px) {
    .process-flow {
        flex-direction: column;
    }

    .flow-line {
        width: 3px;      /* vertical line */
        height: 32px;
        margin: 0.5rem 0;
         background: linear-gradient(
        to right,
        #135DFB 0%,   /* blue */
        #10B981 100%  /* green */
    );
    }
    .flow-line_second {
    flex: 1;
    height: 3px;
    margin: 0 1rem;
    border-radius: 2px;
    background: linear-gradient(
        to right,
        #16A34A 0%,   /* green */
        #FACC15 100%  /* yellow */
    );
}

    .flow-step {
        margin-bottom: 0.5rem;
    }
}


/* Keep flow-step styling as before */
.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0.5rem 1rem;
    border-radius: 8px;
   
}

/* Flow icons */
.flow-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Set background colors */
.flow-icon.blue { background: #DBEBFD; }
.flow-icon.green { background: #DBFCE7; }      /* stock green */
.flow-icon.amber { background: #FEF9C2; }      /* nonprofit orange */

/* Set icon color to white */
.flow-icon.blue i {
    color: #135DFB;   /* Donor icon */
}
.flow-icon.green i {
    color: #18AF50;   /* Stock icon */
}

.flow-icon.amber i {
    color: #D08700;   /* Nonprofit icon */
}

.dashboard-logo {
    text-align: center;
    margin: 1rem 0;
    font-size: 1.2rem;
}
.dashboard-logo img {
    width: 160px !important;        /* set desired default width */
    height: auto;        /* maintain aspect ratio */
    max-width: 100%;     /* responsive on smaller screens */
    display: block;      /* remove inline spacing */
    margin: 0 auto;      /* center horizontally if needed */
}
/* Optional: adjust size on mobile */
@media (max-width: 768px) {
    .dashboard-logo img {
        width: 100px !important;    /* smaller width on mobile */
    }
}

.recent-donations h6 {
    font-weight: 700 !important;
    color: var(--text-dark);
   
    background-color: #F9FAFB;
    padding: 0.75rem 1.25rem;
}

/* Online Section */
.online-section {
    background: white;
    padding: 5rem 0;
}

.online-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

.online-description {
    font-size: 1.125rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.online-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-green);
    border: none;
    color: white;
    font-weight: 500;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--dark-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.btn-outline-secondary {
    border: 2px solid var(--text-dark);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    background: white;
}

.btn-outline-secondary:hover {
    background: var(--text-dark);
    color: white;
}

.dashboard-panel-2 {
    background: #f9fafb;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.donation-list {
    margin-bottom: 2rem;
}

.donation-item {
     background: #fff;
    padding: 1.5rem;
    border-bottom:1px solid var(--border);
    /* box-shadow: 0 2px 8px rgba(0,0,0,0.05); */
}
.donation-item:hover {
    background: #F9FAFB;
    /* transform: translateY(-2px); */
}

.donation-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
}

.donation-time {
    margin-left: auto;
    color: var(--text-muted);
    font-weight: 400;
}

.donation-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.donation-stock {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.donation-amount {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.progress-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 0.3s ease;
}

.stats-row {
    display: flex;
    gap: 1rem;
}

.stat-box {
    flex: 1;
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Statistics Section */
.stats-section {
    background: white;
    padding: 4rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

.stat-divider {
    position: relative;
    padding-right: 2rem;
}

.stat-divider::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: #e5e7eb;
}

.stat-main {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-sub {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dashboard-card-boader{
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .75rem .9rem;
    margin-bottom: .75rem;
    background-color: #fff;
}

/* Large screens (desktops) */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

/* Medium screens (tablets) */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
     .dashboard-card-boader {
        padding: 0.6rem 0.7rem;
        border-radius: 8px;
        background-color: #fff;
    }
}

/* Small screens (mobiles) */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
     .dashboard-card-boader {
        padding: 0.5rem 0.6rem;
        border-radius: 6px;
        margin-bottom: 0.5rem;
        background-color: #fff;
    }
}

/* Extra small (very small mobile) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .dashboard-card-boader {
        padding: 0.4rem 0.5rem;
        border-radius: 4px;
        margin-bottom: 0.4rem;
        background-color: #fff;
    }
}

body[data-fancy-form-rcs="1"] .fancy-select-wrap {
    width: 100% !important;
}
.quick-donation-card {
    max-width: 720px;
    margin: 3rem auto;
    padding: 1.5rem 1.75rem;
    background: #ffffff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.quick-donation-card h3 {
    margin: 0;
    font-size: 1.25rem !important;
    font-weight: 600;
    color: #111827;
    text-transform:capitalize !important;
}

.quick-donation-card p {
    margin: 4px 0 1rem;
    font-size: 0.9rem;
    color: #6B7280;
}

.donation-form {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.donation-form select {
    flex: 1;
    height: 44px;
    padding: 0 1rem;
    font-size: 0.9rem;
    color: #374151;
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    outline: none;
}

.donation-form select:focus {
    border-color: #16A34A;
    background: #ffffff;
}
.donate-btn {
    height: 44px;
    padding: 0 1.25rem;
    background: #3D5A3E;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    cursor: pointer;

    display: inline-flex;          /* 🔑 */
    align-items: center;           /* vertical center */
    justify-content: center;
    gap: 8px;

    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;           /* 🔑 prevent line break */
}

.donate-btn .arrow {
    display: inline-flex;
    font-size: 1.1rem;
    line-height: 1;
}

.donate-btn:hover {
    background: #3D5A3E;
}


/* main container */
.select2-container {
    width: 100% !important;
}

/* clickable area */
.select2-container .select2-choice {
    
    background: #F3F4F6;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    overflow: hidden; /* 🔑 REQUIRED */
}

/* selected text */
.select2-container .select2-choice > .select2-chosen {
    display: block;
    margin-right: 34px; /* space for arrow */
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

/* arrow */
.select2-container .select2-choice .select2-arrow {
    right: 10px;
}
.select2-container {
    width: 100% !important;
    min-width: 100% !important;
}

@media (max-width: 640px) {
    .donation-form {
        flex-direction: column;
    }

    .donate-btn,
    .donation-form select {
        width: 100%;
    }
}

.container-wrap, 
.project-title{

  padding-bottom:0px !important;
}


.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.final-cta-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    color: #fff;
}

.final-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn_amber_inline {
     background: #FFFFFF;
    color: var(--text-dark);
    border: none;
    font-weight: 500;
    margin-top: 30px;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn_amber_inline:hover {
    background: #FFFFFF;
    color: var(--text-dark);
    transition: all 0.3s ease;
   
}

#footer-outer, #nectar_fullscreen_rows > #footer-outer.wpb_row .full-page-inner-wrap{
 
  background-color:#032E15 !important;
}

#footer-outer ol, ul {
    padding-left: 0 !important;
}

#footer-outer .widget h4, #sidebar h4 {
      color: #fff;
    font-weight: 700 !important;
    font-size: 1rem !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

#footer-outer ul li a {
    text-decoration: none !important;
}
#footer-outer .row {
    padding: 20px 0 !important;
   
}
.material #footer-outer #footer-widgets .col ul li {
    padding: 0px 0 !important;
    border: none;
}
#footer-outer .widget{
    margin-bottom: 0px !important;
}

#footer-outer[data-copyright-line="true"] #copyright{
    padding: 10px !important;
}
/* .active2{
    display: none !important;
} */

/* faq */

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}


.accordion-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}


.accordion-button {
    border: 1px solid #e5e7eb;
    font-weight: 600;
    color: var(--text-dark);
    padding: 1rem 1rem;
}

.accordion-button:not(.collapsed) {
    border: none !important;
    box-shadow: none;
    background-color: #fff;
      color: var(--text-dark);
}


.accordion-item:has(.accordion-collapse.show) {
    border: 1px solid #e5e7eb;
}


.accordion-collapse.show {
    border-top: 0px solid #e5e7eb;
}

.accordion-body {
    padding: 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}
/* end faq */

@media (max-width: 991px) {

    .dashboard-stats {
        gap: 0.6rem;
    }

    .stat-card {
        padding: 0.85rem 0.6rem;
    }

    .stat-card strong {
        font-size: 1.35rem;
    }

    .stat-card span {
        font-size: 0.75rem;
    }
}
@media (max-width: 767px) {

    .dashboard-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }

    .stat-card {
        padding: 0.9rem 0.6rem;
    }

    /* 🔥 ONLY highlight card full width */
    .stat-card.highlight {
        grid-column: 1 / -1;
        max-width: 100%;
    }

    .stat-card strong {
        font-size: 1.4rem;
    }
}
@media (max-width: 480px) {

    .dashboard-stats {
        grid-template-columns: 1fr;
    }

    .stat-card {
        padding: 1rem;
    }

    /* Highlight still full width */
    .stat-card.highlight {
        grid-column: auto;
    }

}

/* for review sections  */

    #reviewCarouselWidget {
      width: 100%;  /* Full width */
      margin: auto;
      overflow: hidden;
      padding: 30px 0;
    }

    /* Desktop: Continuous animation for the reviews */
    .stjr-widget {
      display: flex;
      animation: scroll 20s linear infinite;
    }

    /* Review box styling */
    .review {
      flex: 0 0 33.333%; /* Show 3 reviews at a time on desktop */
      background: #fff;
      padding: 25px;
      box-sizing: border-box;
      border-radius: 12px;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
      margin-right: 20px;
      height: 300px;
    }

    /* Rating styling */
    .rating {
      margin-bottom: 15px;
      font-size: 28px; /* Larger star size */
      color: #FDB927; /* Correct star color */
    }

    .star {
      color: #FDB927;
    }

    /* Reviewer name styling */
    h3 {
      font-size: 20px !important;
      margin: 12px 0 6px;
      font-weight: 600;
      color: #333;
      text-transform: capitalize !important;
margin-top:-10px !important;
    }

    /* Organization styling */
    .organization {
      font-size: 14px;
      color: #777;
      margin-bottom: 8px;
    }

    /* Review text styling */
    .review-text {
      font-size: 14px;
      color: #333;
      line-height: 1.5;
      height: 130px;
      overflow: hidden;
    }

    /* Keyframes for continuous scroll (desktop) */
    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-33.333%); }
    }

    /* Responsive Design for mobile view */
    @media screen and (max-width: 768px) {
      .stjr-widget {
        flex-wrap: nowrap;
        animation: none;
        transition: transform 0.5s ease;
      }

      /* Show 1 review at a time on mobile */
      .review {
        flex: 0 0 100%; /* Show 1 review at a time */
        margin-right: 10px;
        padding: 20px;
        height: auto;
      }

      /* Adjust the margin between reviews in mobile view */
      .stjr-widget {
        gap: 10px;  /* Less gap between reviews on mobile */
      }

      #reviewCarouselWidget {
        padding: 30px 0;
      }
    }

    /* For even smaller mobile screens (e.g., under 480px) */
    @media screen and (max-width: 480px) {
      .review {
        flex: 0 0 100%; /* Show 1 review at a time */
        margin-right: 5px;
      }

      /* Reduce padding for even smaller screens */
      .review {
        padding: 15px;
      }
    }
/* end for rview sections */
/* ===============================
   Mobile responsiveness only
================================ */
@media (max-width: 767px) {

    .row_col_wrap_12.col.span_12.dark.left {
        flex-direction: column;
    }

    .row_col_wrap_12.col.span_12.dark.left > .vc_col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    /* Fix big vertical gaps ONLY in this section */
    .row_col_wrap_12.col.span_12.dark.left 
    .divider-wrap .divider {
        height: 32px !important;
    }

    /* Image scaling */
    .row_col_wrap_12.col.span_12.dark.left 
    img {
        max-width: 100%;
        height: auto;
    }

    /* Optional: center content on mobile */
    .row_col_wrap_12.col.span_12.dark.left 
    .free-guide-content {
        text-align: center;
    }

    .row_col_wrap_12.col.span_12.dark.left 
    .guide-features {
        display: inline-block;
        text-align: left;
    }

    /* Button full-width only here */
    .row_col_wrap_12.col.span_12.dark.left 
    .btn-lg {
        width: 100%;
    }

       .row_col_wrap_12.col.span_12.dark.left .guide-headline {
        font-size: 1.6rem; /* ~25–26px */
        line-height: 1.3;
    }

     h2 {
        font-size: 1.5rem; /* mobile */
    }
        .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }


    /* hero section */
    .hero_section_mobile {
        display: block !important;
    }
    .hero_section_destop{
        display: none;
    }
}
/* Small mobile */
@media (max-width: 480px) {
    .row_col_wrap_12.col.span_12.dark.left .guide-headline {
        font-size: 1.4rem; /* ~22px */
    }
      h2 {
        font-size: 1.3rem; /* small mobile */
    }
        .accordion-button {
        padding: 1rem;
        font-size: 0.9rem;
    }
      /* hero section */
    .hero_section_mobile {
        display: block !important;
    }
    .hero_section_destop{
        display: none;
    }
}

@media screen and (max-width: 1366px) {
  
    #header-outer nav ul.sf-menu > li#menu-item-6887 {
    margin-right: 1px !important;
}

}

@media only screen and (max-width: 991px) {
      #header-outer nav ul.sf-menu > li#menu-item-6887 {
    margin-right: 1px !important;
}

}
/* hero sections for mobile */
 /* Stockdonator Card */
 .hero_section_mobile {
    display: none;
}
.stock-card {
    max-width: 420px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    padding: 32px 28px;
    background: #fff;
    text-align: center;
}

.brand-title {

    font-weight: 700;
    letter-spacing: 1px;
}
.brand-green {
    color: #0a8f3d;
    font-style: normal; /* remove italic */
    font-weight: 700;
}

.brand-dark {
    color: #111; /* black */
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px;
    border-radius: 30px;
    border: 1px solid #d9f2e3;
    font-size: 14px;
    margin: 16px 0;
    background: #fff;
}

.rating-badge .stars {
    display: flex;
    gap: 3px;
}

.rating-badge .stars i {
    color: #f5b301;
    font-size: 14px;
}

.rating-badge span {
    font-weight: 600;
    color: #333;
}
.stock-card .btn-success-custom {
    border-radius: 30px !important;
      background: #0a8f3d;
    border-radius: 50px;
    padding: 12px 22px;
    font-weight: 600;
    border: none;
    color:#fff;
}
/* .btn-success-custom {
    background: #0a8f3d;
    border-radius: 50px;
    padding: 12px 22px;
    font-weight: 600;
    border: none;
    color:#fff;
} */

.btn-success-custom:hover {
    background: #087a35;
     color:#fff;
}

.stats {
    border-top: 1px solid #e9ecef;
    margin-top: 24px;
    padding-top: 20px;
}

.stat-value {
    font-weight: 700;
    font-size: 22px;
}

.stat-label {
    font-size: 14px;
    color: #6c757d;
}

/* Salient + Bootstrap fix */
.stock-card .row {
    margin-left: 0;
    margin-right: 0;
}

.stock-card .col-6 {
    padding-left: 0;
    padding-right: 0;
}
.mini-footer_title{
    font-size: 20px !important;
}

/* end hero sections for mobile */
.free_guid_shadow{
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
    border-radius: 30px;
}

/* how to accept sections */
.how_to_accept_sections{
    background-color: linear-gradient(90deg, #f9fbe7 0%, #eefbe8 100%);
}
   .wpb_wrapper .vc_custom_heading.badge-top {
    display: inline-block !important;
    background: #DEFAE7;
    color: #05642F;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
    width: auto !important;
}
.badge-top::before {
    content: "\f559"; /* fa-award */
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* required for fas */
    font-size: 13px;
     margin-right: 8px; 
}

.hero_how_accept.wpb_wrapper .vc_custom_heading  h1 {
            font-weight: 800;
            font-size: 42px;
            line-height: 1.2;
        }

     
        .hero-accept_title .highlight-text {
        color: #16a34a; /* Your green color */
    }

   
        
        .hero-accept_title {
             font-weight: 700 !important;
            font-size: 40px !important;
            line-height: 1.2 !important;
            text-transform:capitalize !important;
            font-style:normal !important;
        }

        .nonprofit{
             font-size: 26px !important;
        }

        
        .stat-box {
            background: #fff;
            border-radius: 10px;
            padding: 15px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }

        .stat-box strong {
            display: block;
            font-size: 25px;
            color: #16a34a;
        }
        .orange_color{
          color: #C89200 !important;  
        }

    .btn-primary-custom {
            background: #16a34a;
            border: none;
            padding: 12px 24px;
            font-weight: 600;
            color:#fff !important;
        }

        .btn-outline-custom {
            border: 2px solid #D6D3DD;
            padding: .8rem 1.6rem;
            border-radius: 10px;
            font-weight: 600;
            color: var(--dark);
            text-decoration: none;
        }
        .support-bar {
       
        border: 2px solid #FFEE88;
        border-radius: 8px;
        padding: 10px 15px;
        font-size: 13px;
        margin-top: 20px;
}


.action-image-card {
  position: relative !important;
  border-radius: 16px;
    border: 10px solid #FFFFFF;
 
 
}

 .floating-badge {
    position: absolute;
    bottom: 20px;
    left: 19px;
    background: #fff;
    padding: 10px 14px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
}
.rating-badge {
  position: absolute;
  bottom: -3px;
  right: -4px;
  background: #16a34a;
  border: 2px solid #16a34a;
  color: #fff;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 14px;
  width: 290px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: flex !important;
  flex-direction: column !important;
}

.rating-badge > div {
  display: block !important;
}

.rating_star {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  margin-left: -156px;
}

.rating-text {
  font-size: 14px;
  line-height: 1.4;
}


.start_5_min{
    font-size: 18px;
    color: #02923C;
}
.joint_inductry{
    font-size: 12px;
    color:#4A5565;
}
  

/* 9.15. Icon */
i[class*="fa-"], 
span[class*="fa-"] {

   top: 0px !important; 
 
}
/* Center ONLY badge-top-learn (WPBakery-safe) */
.vc_custom_heading.badge-top-learn {
    display: flex !important;   /* must be block-level */
    width: fit-content !important;

    align-items: center;
    justify-content: center;

    margin-left: auto !important;
    margin-right: auto !important;

    background: #DEFAE7;
    color: #05642F;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
}

/* Icon */
.vc_custom_heading.badge-top-learn::before {
    content: "\f559";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 13px;
    margin-right: 8px;
}


/* Card */
.feature-card-main_accept {
    background: #ffffff;
    border: 2px solid #DBFCE7;
    border-radius: 14px;
    padding: 28px 26px;
    height: 100%;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
}

.feature-card-main_accept:hover {
     transform: scale(1.03); /* zoom like image */
    border-color: #22c55e; /* green border */
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
}


.feature-card-main_accept_orange {
    background: #ffffff;
    border: 2px solid #FDFBBB;
    border-radius: 14px;
    padding: 28px 26px;
    height: 100%;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.25s ease;
}

.feature-card-main_accept_orange:hover {
     transform: scale(1.03); /* zoom like image */
    border-color: #E5A200; /* orange border */
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
}




/* Icon box */
.feature-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 18px;
}

/* Soft green background like image */
.feature-icon-box.green {
    background: #00AE42;
    color: #fff;
}

.feature-icon-box.orange {
    background: #DB9400;
    color: #fff;
}

/* Title */
.feature-card-main_accept h4 {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #111827;
    margin-bottom: 10px;
    text-transform: capitalize !important;
   
}
.feature-card-main_accept_orange h4 {
    font-size: 18px !important;
    font-weight: 400 !important;
    color: #111827;
    margin-bottom: 10px;
    text-transform: capitalize !important;
   
}

/* Description */
.feature-card-main_accept p {
    font-size: 15px;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 0;
}



/* end how to accept sections */

/* gor guide sections */
/* Tablet & Mobile */
@media (max-width: 767px) {

    /* Stack the two columns vertically */
    .row_col_wrap_12_inner.col.span_12.left {
        display: flex;
        flex-direction: column;
        align-items: center; /* optional: center horizontally */
    }

    .row_col_wrap_12_inner.col.span_12.left > .vc_col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
        margin-bottom: 20px; /* small gap between columns */
    }

    /* Reduce big divider heights for mobile */
    .row_col_wrap_12_inner.col.span_12.left .divider-wrap .divider {
        height: 30px !important; /* adjust as needed */
    }

    /* Make images responsive */
    .row_col_wrap_12_inner.col.span_12.left img.img-with-animation {
        width: 100%;
        height: auto;
        max-width: 342px; /* optional: original max */
    }

    /* Center the free-guide content */
    .row_col_wrap_12_inner.col.span_12.left .free-guide-content {
        text-align: center;
        padding: 0 15px; /* optional: add side padding */
    }

    /* Features list alignment */
    .row_col_wrap_12_inner.col.span_12.left .guide-features {
        display: inline-block;
        text-align: left;
        padding-left: 0;
    }

    /* Make button full width */
    .row_col_wrap_12_inner.col.span_12.left .btn-lg {
        width: 100%;
        max-width: 300px; /* optional: limit very wide buttons */
        display: block;
        margin: 0 auto;
    }

    /* Headline sizing */
    .row_col_wrap_12_inner.col.span_12.left .guide-headline {
        font-size: 1.6rem; /* ~25-26px */
        line-height: 1.3;
    }

    /* Smaller H2 on mobile */
    .row_col_wrap_12_inner.col.span_12.left h2 {
        font-size: 1.5rem;
    }
    .btn-amber{
        font-size: 14px;
    }
     .rating-badge{
        font-size: 11px;;
    }
}

/* Small mobile */
@media (max-width: 480px) {

    .row_col_wrap_12_inner.col.span_12.left .guide-headline {
        font-size: 1.4rem; /* ~22px */
    }

    .row_col_wrap_12_inner.col.span_12.left h2 {
        font-size: 1.3rem;
    }

    .row_col_wrap_12_inner.col.span_12.left .btn-lg {
        max-width: 100%; /* full width on small mobile */
    }

    /* Reduce divider height further on small mobile */
    .row_col_wrap_12_inner.col.span_12.left .divider-wrap .divider {
        height: 20px !important;
    }
      .btn-amber{
        font-size: 14px;
    }
    .rating-badge{
        font-size: 11px;;
    }
}

/*  stock-steps-section   */

.stock-steps-section {
  /* background: linear-gradient(135deg, #0b8a3c, #0aa14b); */
  /* padding: 80px 0; */
  color: #fff;
}
.stock-steps-section h5{
    color: #475662;
    letter-spacing: -0.02em;
}

/* Badge */
.process-badge {
  background: rgba(255,255,255,0.15);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 13px;
  display: inline-block;
  margin-bottom: 15px;
}

/* Heading */
.stock-steps-section .section-title {
  font-size: 42px;
  font-weight: 800;
   color: #fff;
   font-style:normal;
}
.stock-steps-section .section-title span {
  color: #ffd200;
}
.section-subtitle {
  max-width: 700px;
  margin: 15px auto 0;
 color: #fff;

}

/* Card */
.step-wrapper {
  position: relative;
}
.step-card {
  background: rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  text-align: left;
  transition: all 0.35s ease;
   border: 2px solid #41B26D;
}

/* Hover */
.step-card:hover {
 
  background: rgba(255,255,255,0.15);
 
}

/* Step Number */
.step-number {
  position: absolute;
  top: -18px;
  left: 24px;
  background: #ffd200;
  color: #000;
  font-weight: 700;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Arrow */
.step-card .step-arrow {
  position: absolute;
  right: -9px; /* adjust distance */
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: #ffd200;
}

/* Hide arrow on mobile */
@media (max-width: 991px) {
  .step-card .step-arrow {
    display: none;
  }
}


/* Icon */
.step-icon {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}
.step-icon i {
  font-size: 34px;
  color: #ffd200;
}

/* Text */
.step-card h5 {
  font-weight: 600;
}
.step-card p {
  font-size: 14px;
  opacity: 0.9;
}

/* Checklist */
.step-card ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  margin-left: 0px;
}
.step-card ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 10px;
}
.step-card ul li span {
  width: 18px;
  height: 18px;
  
  border: 1px solid #ffd200;
  color: #ffd200;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  margin-right: 10px;
}

/* Mobile */
@media (max-width: 991px) {
  .step-arrow {
    display: none;
  }
}
.white_text{
    color:#fff;
}

 .wpb_wrapper .vc_custom_heading.industry-leading {
    display: inline-block !important;
    background: #FEF9C2;
    color: #894B00;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 15px;
    width: auto !important;
}
.industry-leading::before {
    content: "\f559"; /* fa-award */
    font-family: "Font Awesome 5 Free";
    font-weight: 900; /* required for fas */
    font-size: 13px;
     margin-right: 8px; 
}

.icon-circle_d {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }


  .image-badge {
  position: absolute;
  bottom: 0rem;
  right: -1rem;
  background: #fff;
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: 1px solid #DCFCE7;
  text-align: center;
  z-index: 10;
}

/* Responsive text sizing */
@media (max-width: 576px) {
  .image-badge h4 {
    font-size: 1.25rem;
  }
  .image-badge {
    padding: 10px 14px;
    bottom: 0.75rem;
    right: 0.75rem;
  }
}
.image-badge h4{
    font-size: 2rem !important;
}

.footer-cta .badge-start {
      background: rgba(255,255,255,0.15);
      /* padding: 6px 14px; */
      border-radius: 50px;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color:#fff;
    }

    .highlight {
      color: #ffcc00;
    }

    .footer-input {
      max-width: 280px;
    }

    .footer-features li {
      font-size: 14px;
      color: #e9fbe9;
    }

    @media (max-width: 576px) {
      .footer-cta {
        /* padding: 60px 20px; */
        text-align: center;
      }
    }
    .btn-inline-border{
          border:2px solid #fff;
          color: #fff;

    }
    .btn-inline-border:hover{
          border:2px solid #fff;
          color: #fff;

    }
 
 .footer-cta .row-bg.viewport-desktop.using-image {
    background-attachment: scroll !important;
}
.vc_custom_heading.sub_title_capital {
    font-size: 20px !important;
    text-transform:uppercase !important;
    font-weight: 600 !important;
    color:#007E35;
}


.vc_custom_heading.sub_sub_title {
    display: flex !important;   /* must be block-level */
    width: fit-content !important;

    align-items: center;
    justify-content: center;

    margin-left: auto !important;
    margin-right: auto !important;

    background: #DEFAE7;
    color: #05642F;
    font-weight: 600 !important;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px !important;
}
/* how its works */
 .howitwork-card {
  border-radius: 16px;
  padding: 50px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);

  /* Animation base state */
  opacity: 0.85;
  transform: translateX(-20px) scale(1);
  transition: 
    transform 0.4s ease,
    opacity 0.4s ease,
    box-shadow 0.4s ease;
}

/* Hover animation */
.howitwork-card:hover {
  opacity: 1;
  transform: translateX(0) scale(1.03);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  cursor: pointer;
}

.howitwork-card:nth-child(1) { transition-delay: 0.05s; }
.howitwork-card:nth-child(2) { transition-delay: 0.1s; }
.howitwork-card:nth-child(3) { transition-delay: 0.15s; }
.howitwork-card:nth-child(4) { transition-delay: 0.2s; }
    .step-number {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      color: #fff;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .border-green { border-left: 6px solid #28a745; }
    .border-orange { border-left: 6px solid #f0ad4e; }
    .border-blue { border-left: 6px solid #0d6efd; }
    .border-purple { border-left: 6px solid #8e44ad; }

    .bg-green { background: #28a745; }
    .bg-orange { background: #f0ad4e; }
    .bg-blue { background: #0d6efd; }
    .bg-purple { background: #8e44ad; }

    .cta-box {
      background: #f4fbf6;
      border-radius: 16px;
      padding: 32px;
      text-align: center;
    }
    .simple_sections{
        text-align: center;
        font-size: 30px;
        line-height: 25px;
        font-weight: 600;
        text-transform:uppercase;
    }
    .green_color{
          color: #05642F;
    }
    .light_green_color{
        color: #F4B100;
    }

    .simple_section_div {
  border: 1px solid #e5e7eb;   /* border */
  border-radius: 12px;        /* rounded corners */
  background-color: #ffffff;  /* card background */
  padding: 40px 30px;         /* inner spacing */
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  /* max-width: 900px; */
  margin: 0 auto;             /* center horizontally */
}

/* end how its works */


/* ================================
   Base Card Styles
================================ */

.feature-card-main_howitwork,
.feature-card-main_howitwork_orange,.feature-card-main_howitwork_gray {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-radius: 14px;
    padding: 34px 26px;
    height: 100%;
    box-shadow: 0 12px 28px rgba(107, 114, 128, 0.18); /* grey shadow */
    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

/* ================================
   Green Card (Default)
================================ */

.feature-card-main_howitwork {
    border: 2px solid #dcfce7;
}

/* Green hover */
.feature-card-main_howitwork:hover {
    border-color: #22c55e;
    /* box-shadow: 0 22px 50px rgba(245, 158, 11, 0.28); */
    transform: scale(1.03);
}

/* Top-right hover shape (green) */
.feature-card-main_howitwork::after {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 180px;
    height: 180px;
    background: #dcfce7;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.feature-card-main_howitwork:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* ================================
   Orange Card
================================ */

.feature-card-main_howitwork_orange {
    border: 2px solid #fef3c7;
}

/* Orange hover */
.feature-card-main_howitwork_orange:hover {
    border-color: #f59e0b;
    transform: scale(1.03);
}
.feature-card-main_howitwork_gray {
    border: 2px solid #F5E8FE;
}

.feature-card-main_howitwork_gray:hover {
    border-color: #F5E8FE;
     border: 2px solid #7c1dbd !important;
   transform: scale(1.03);
   
}


/* Top-right hover shape (orange) */
.feature-card-main_howitwork_orange::after {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 180px;
    height: 180px;
    background: #fef3c7;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}


/* Top-right hover shape (gray) */
.feature-card-main_howitwork_gray::after {
    content: "";
    position: absolute;
    top: -70px;
    right: -70px;
    width: 180px;
    height: 180px;
    background: #F5E8FE;
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.6);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.feature-card-main_howitwork_orange:hover::after {
    opacity: 1;
    transform: scale(1);
}

.feature-card-main_howitwork_gray:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* ================================
   Icon Box
================================ */

.feature-icon-box-howitwork {
    width: 44px;
    height: 44px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 18px;
    z-index: 1;
    position: relative;
}

/* Icon colors */
.feature-icon-box-howitwork.green {
    background: #DBFCE7;
    color: #05642F;
}

.feature-icon-box-howitwork.orange {
    background:#FEF9C2;
    color: #D08803;
}

.feature-icon-box-howitwork.gray {
    background:#F5E8FE;
    color: #990DFD;
}

/* ================================
   Title & Text
================================ */


/* Title */
.feature-card-main_howitwork h4 {
    font-size: 24px !important;
    font-weight: 600 !important;
    color: #008236;
    margin-bottom: 10px;
    text-transform: capitalize !important;
   
}
.feature-card-main_howitwork_orange h4 {
     font-size: 24px !important;
    font-weight: 600 !important;
    color: #008236;
    margin-bottom: 10px;
    text-transform: capitalize !important;
   
}
.feature-card-main_howitwork_gray h4 {
     font-size: 24px !important;
    font-weight: 600 !important;
    color: #008236;
    margin-bottom: 10px;
    text-transform: capitalize !important;
   
}




.feature-card-main_howitwork p,
.feature-card-main_howitwork_orange,.feature-card-main_howitwork_gray p {
    font-size: 20px !important;
    color: #374151;
    line-height: 1.65;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}
.nectar-highlighted-text em:before, .nectar_icon_wrap[data-style="soft-bg"][data-color="accent-color"] .nectar_icon:before, .nectar_icon_wrap[data-style="shadow-bg"][data-color="accent-color"] .nectar_icon:after, .pricing-table[data-style="default"] .pricing-column.highlight.accent-color h3, .pricing-table[data-style="flat-alternative"] .pricing-column.highlight h3 .highlight-reason, .pricing-table[data-style="flat-alternative"] .pricing-column.accent-color:before, [data-style="list_featured_first_row"] .meta-category a:before, .tabbed > ul li .active-tab, .tabbed > ul li .active-tab:hover, .tabbed[data-style="vertical_modern"][data-color-scheme="accent-color"] .wpb_tabs_nav li .active-tab, .tabbed[data-style*="minimal"] > ul li a:after, .tabbed[data-style="minimal_alt"] .magic-line, .tabbed[data-style*="material"][data-color-scheme="accent-color"] ul:after, .nectar-scrolling-tabs[data-color-scheme="accent-color"] .scrolling-tab-nav .line, .wpb_row .nectar-post-grid-filters[data-active-color="accent-color"] a:after, #ajax-content-wrap [data-stored-style="vs"] .tabbed[data-color-scheme="accent-color"] .wpb_tabs_nav li a:before, .testimonial_slider[data-style="multiple_visible"][data-color*="accent-color"] .flickity-page-dots .dot.is-selected:before, .testimonial_slider[data-style="multiple_visible"][data-color*="accent-color"] blockquote.is-selected p, .nectar_video_lightbox.nectar-button[data-color="default-accent-color"], .nectar_video_lightbox.nectar-button[data-color="transparent-accent-color"]:hover, .nectar-cta[data-color="accent-color"]:not([data-style="material"]) .link_wrap, .flex-direction-nav a, .carousel-prev:hover, .carousel-next:hover, .nectar-flickity[data-controls*="arrows_overlaid"][data-control-color="accent-color"] .flickity-prev-next-button:hover:before, .nectar-flickity[data-controls="default"][data-control-color="accent-color"] .flickity-page-dots .dot:before, .nectar-flickity[data-controls="touch_total"][data-control-color="accent-color"] .visualized-total span, body [class^="icon-"].icon-3x.alt-style.accent-color, body [class*=" icon-"].icon-3x.alt-style.accent-color, [class*=" icon-"], .col:hover > [class^="icon-"].icon-3x:not(.alt-style).accent-color.hovered, .col:hover > [class*=" icon-"].icon-3x:not(.alt-style).accent-color.hovered, .col:not(.post-area):not(.span_12):not(#sidebar):hover [class^="icon-"].icon-3x:not(.alt-style).accent-color.hovered, .col:not(.post-area):not(.span_12):not(#sidebar):hover a [class*=" icon-"].icon-3x:not(.alt-style).accent-color.hovered, .toggle.open h3 a, div[data-style="minimal"] .toggle.open h3 i:after, div[data-style="minimal"] .toggle:hover h3 i:after, div[data-style="minimal"] .toggle.open h3 i:before, div[data-style="minimal"] .toggle:hover h3 i:before, div[data-style="minimal_small"] .toggle.accent-color > h3:after, .main-content .widget_calendar caption, #footer-outer .widget_calendar caption, .post .more-link span:hover, .post.format-quote .post-content .quote-inner, .post.format-link .post-content .link-inner, .nectar-post-grid-wrap[data-load-more-color="accent-color"] .load-more:hover, .format-status .post-content .status-inner, .nectar-post-grid-item.nectar-new-item .inner:before, input[type=submit]:hover, input[type="button"]:hover, body[data-form-submit="regular"] input[type=submit], body[data-form-submit="regular"] button[type=submit], body[data-form-submit="regular"] .container-wrap .span_12.light input[type=submit]:hover, body[data-form-submit="regular"] .container-wrap .span_12.light button[type=submit]:hover, .woocommerce div.product .woocommerce-tabs ul.tabs li.active, .woocommerce #content div.product .woocommerce-tabs ul.tabs li.active, .woocommerce-page div.product .woocommerce-tabs ul.tabs li.active, .woocommerce-page #content div.product .woocommerce-tabs ul.tabs li.active, #slide-out-widget-area, #slide-out-widget-area-bg.fullscreen, #slide-out-widget-area-bg.fullscreen-split, #slide-out-widget-area-bg.fullscreen-alt .bg-inner, body.material #slide-out-widget-area-bg.slide-out-from-right, .widget .material .widget .tagcloud a:before, .nectar-hor-list-item[data-hover-effect="full_border"][data-color="accent-color"] .nectar-list-item-btn:hover {
    background-color:#2f4f3a !important
}

.row_head_text {
    background: #fff !important;
    color: #000 !important;
    font-size: 24px;
    padding-bottom: 6px
}
#ViewAdd_userInfo_popup{
    color:#000 !important;
}
#ViewAdd_userInfo_popup {
  
    border: 0px solid #000000 !important;
   
}

body .modal-backdrop {
    z-index: 1 !important;
}

body .modal {
    z-index: 510 !important;
}

#popupClose {
  
    right: 0px !important;
    top: 0px !important;
   
}

.custom_popup #myModal {

    border: 0px solid #000 !important;
     width: 500px !important;
  
}

.custom_popup #myModal input[type='button'], .custom_buttom input[type='button'] {
    background: #2F4F3A!important;
    color: #fff;
}
#footer-widgets .active2, #footer-widgets .active1{
    display: none !important;
}

.select2-container .select2-choice {
    background-color: #f5f5f5 !important; /* light gray */
    border-color: #ccc !important;
    
}
.select2-container .select2-choice:hover {
    background-color: #f5f5f5 !important;
    
}

/* Dropdown option hover */
.select2-results .select2-highlighted {
    background-color: #3D5A3E !important;  /* gray */
    color: #fff !important;
}

/* Selected item */
.select2-results .select2-selected {
    background-color: #ddd !important;
}

.select2-container .select2-choice>.select2-chosen {
    
    line-height: 16px !important;
    padding-left: 3px;
}

.select2-container .select2-choice {
   
     margin-top: 0px !important; 
}

.quform-theme-light .quform-field-captcha, .quform-theme-light .quform-field-date, .quform-theme-light .quform-field-email, .quform-theme-light .quform-field-multiselect, .quform-theme-light .quform-field-password, .quform-theme-light .quform-field-select, .quform-theme-light .quform-field-text, .quform-theme-light .quform-field-textarea, .quform-theme-light .quform-field-time, .quform-theme-light .select2-container--quform .select2-selection, .quform-theme-light.quform-timepicker.k-list-container.k-popup{
        border: 1px solid #ddd !important;
}

.quform-page-23_199 .quform-page-title-description {
    display: none !important;
}
.quform-element-23_227 {
    display: none !important;
}
.quform-element-23_250{
    display: none;
}
.quform-page-23_33 br {
    display: none !important;
}
