:root {
    --green: #4bac4d;
    --green-dark: #0a6a38;
    --orange: #ef7c23;
    --navy: #0b2558;
    --navy-mid: #041d3b;
    --text-dark: #111827;
    --text-muted: #6b7280;
    --card-radius: 14px;
    --rp-amber: #ef9f27;
    --amber-light: #faeeda;
    --rp-green-mid: #0f6e56;
    --rp-green-dark: #085041;
    --rp-green: #1d9e75;
    --rp-green-light: #e1f5ee;
    --rp-teal: #1d9e75;
    --rp-text: #1a1a1a;
    --rp-muted: #5f6b7a;
    --rp-border: #e2ede9;
    --rp-surface: #f4fbf8;
    --rp-white: #ffffff;
}

* {
    box-sizing: border-box;
}
body {
    font-family: "Manrope", sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 24px;
    font-weight: normal;
}

p {
    font-family: "Manrope", sans-serif;
    font-size: 15px;
    color: var(--text-dark);
    margin: 0 0 15px;
    line-height: 24px;
    font-weight: normal;
}

figure {
    display: block;
    margin: 0;
    width: 100%;
}

img {
    max-width: 100%;
}

a {
    color: #44c6ff;
    text-decoration: none;
    outline: none;
}

input,
button {
    outline: none;
}

.container {
    max-width: 1280px;
}

/* ── NAVBAR ── */
.navbar {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    padding: 0 0;
}
.navbar-brand {
    padding: 10px 0;
}
.navbar-brand img {
    width: 180px;
}
.brand-logo {
    font-family: "Manrope", sans-serif;
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1;
}
.brand-logo span.roof {
    color: var(--navy);
}
.brand-logo span.pay {
    color: var(--green);
}
.brand-tagline {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--orange);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.brand-tagline span {
    color: var(--navy);
}
.nav-link {
    font-weight: 600;
    font-size: 0.875rem;
    border-bottom: 2px solid transparent;
    color: var(--navy) !important;
}
.nav-link.active,
.nav-link:hover {
    color: var(--green-dark) !important;
    border-bottom: 2px solid var(--green-dark);
}
.btn {
    font-family: "Ubuntu", sans-serif;
}
.btn-contact {
    background: var(--navy);
    color: #fff !important;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.75rem;
    padding: 0.4rem 1.25rem;
}
.btn-contact:hover {
    background: var(--green-dark);
}

/* ── HERO ── */
.hero-section {
    background: linear-gradient(
        135deg,
        var(--navy) 0%,
        #1a2f5e 60%,
        #0f3460 100%
    );
    min-height: 88vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
}
.hero-section.inner-bnr {
    min-height: 40vh;
}
.hero-title {
    font-family: "Ubuntu", sans-serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.18;
}
.hero-title .highlight {
    color: var(--green);
}
.hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}
.hero-tagline .c-green {
    color: var(--green);
}
.hero-tagline .c-orange {
    color: var(--orange);
}
.hero-tagline .c-white {
    color: #fff;
}
.hero-desc {
    color: #c8d6f0;
    font-size: 0.95rem;
    line-height: 1.75;
    letter-spacing: 0.02rem;
}
.btn-get-started {
    background: var(--green);
    color: #fff;
    border-radius: 8px;
    font-weight: 400;
    padding: 0.7rem 1.6rem;
    border: none;
}
.btn-get-started:hover {
    background: var(--green-dark);
    color: #fff;
}
.btn-demo {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    font-weight: 400;
    padding: 0.7rem 1.4rem;
}
.btn-demo:hover {
    border-color: var(--green-dark);
    color: #fff;
    background: var(--green-dark);
}
.btn-partner {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    font-weight: 400;
    padding: 0.7rem 1.3rem;
}
.btn-partner:hover {
    border-color: var(--green-dark);
    color: #fff;
    background: var(--green-dark);
}

/* dashboard card */
.dashboard-card {
    background: #fff;
    border-radius: var(--card-radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    padding: 1.25rem 1.4rem;
    max-width: 420px;
    padding-right: 2rem;
}
.dashboard-card .card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 2px;
}
.dashboard-card .updated {
    font-size: 0.7rem;
    color: var(--text-muted);
}
.stat-box {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 10px;
    height: 100%;
    width: 100%;
    margin: 0;
}
.stat-box .label {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 2px;
}
.stat-box .value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--navy-mid);
    line-height: 1;
    padding: 6px 0;
}
.stat-box .badge-change {
    font-size: 0.62rem;
    font-weight: 600;
}
.status-healthy {
    color: var(--green);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 8px 0;
}
.chart-area {
    height: 70px;
    position: relative;
    margin-top: 0.5rem;
}
.chart-svg {
    width: 100%;
    height: 100%;
}

/* co2 badge */
.co2-badge {
    background: var(--navy-mid);
    border-radius: 12px;
    padding: 1rem;
    color: #fff;
    text-align: center;
    min-width: 190px;
    position: absolute;
    bottom: -30px;
    right: 20px;
}
.co2-badge .co2-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: #9ab0d0;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}
.co2-badge .co2-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}
.co2-badge .co2-unit {
    font-size: 0.75rem;
    color: #9ab0d0;
}
.co2-badge .co2-period {
    font-size: 0.65rem;
    color: #9ab0d0;
}
.co2-badge .co2-tree img {
    box-shadow: rgb(93, 102, 0, 0.5) 0px 3px 27px;
    border-radius: 50%;
}
.co2-badge .trees {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green);
    margin-top: 4px;
}

/* ── STATS STRIP ── */
.stats-strip {
    position: relative;
    padding: 100px 0 40px;
    background: #f8fafc;
}

.stats-strip-div {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 25px 15px;
    position: absolute;
    top: -160px;
    left: 0;
    right: 0;
    z-index: 2;
}
.stat-item {
    display: flex;
    align-items: center;
}
.stat-item .icon-wrap {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}
.stat-item .stat-num {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 5px;
}
.stat-item .stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.6;
}
.stat-item:not(:last-child) {
    border-right: 1px solid #e5e7eb;
}
.stat-item .stat-info {
    text-align: left;
}

.why-section {
    padding: 3rem 0 2rem;
}

.about-us {
    padding: 100px 0;
}

.about-us .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-content p {
    color: #888888;
}

.about-content ul {
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.about-content ul li {
    width: 48%;
    margin-right: 2%;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
}

/* .about-content ul li::before{
  content: "\F26E";
  font-family: "bootstrap-icons";
  color: var(--green-dark);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: 0;
} */

.about-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 14px;
    height: 14px;
    background-image: url("../images/leaf.png");
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0.8);
}

.about-image {
    position: relative;
    background: url(../images/about-right-shape.svg) no-repeat top 30px right 6%;
    background-size: 18% auto;
    margin-right: 20px;
}

.about-img-1 {
    display: inline-block;
    width: 75%;
    border-radius: 30px;
    overflow: hidden;
    line-height: 0;
}

.about-img-2 {
    width: 50%;
    border-radius: 30px;
    overflow: hidden;
    line-height: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    background: #fff;
    border: 6px solid #fff;
}

.image-anime {
    position: relative;
    overflow: hidden;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.section-title h1,
.section-title h2 {
    font-size: 46px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
    font-weight: 700;
    line-height: 1.1em;
    margin-bottom: 0;
}
.section-title h3 {
    display: inline-block;
    text-align: center;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--green);
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    z-index: 2;
}
.section-title h3:before {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    position: absolute;
    left: 4px;
    top: 4px;
    background: var(--green);
    border-radius: 50%;
}

.infobar {
    padding: 50px 0 100px;
}

.cta-box {
    background-color: var(--secondary-color);
    border-radius: 30px;
    overflow: hidden;
}

.cta-box .cta-image img {
    width: 100%;
}

.cta-content {
    position: relative;
    padding: 0 60px;
}

.cta-content .phone-icon {
    width: 90px;
    height: 90px;
    position: relative;
    border-radius: 50px;
    border: 6px solid var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-color);
    position: absolute;
    left: 0;
    top: 50%;
    overflow: hidden;
    transform: translate(-70px, -50%);
}

.cta-content .phone-icon:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translate(-100%, 100%);
    transition: all 0.3s ease-out;
}

.cta-box:hover .cta-content .phone-icon:before {
    transform: translate(0);
}

.cta-content .phone-icon figure {
    text-align: center;
}

.cta-content .phone-icon figure img {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 40px;
    color: var(--primary-color);
}

.cta-content h3 span {
    color: var(--accent-color);
}

.cta-content p {
    margin-bottom: 0;
}

.reward-section {
    padding: 8rem 0 2rem;
}

.reward-section .about-content p {
    color: var(--text-dark);
}

.reward-section .about-content ul li {
    font-weight: 400;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-dark);
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.color-warm {
    color: #e09345;
}
.testimonial-box img {
    margin: 0 auto;
}
.testimonialtext {
    font-size: 1.1rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 2rem;
    line-height: 1.8rem;
}
/* ── FEATURES ── */
.features-section {
    padding: 2.5rem 0;
    background: #f9fafb;
}
.section-title {
    font-family: "Manrope", sans-serif;
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 800;
    color: var(--navy-mid);
}
.section-title .green {
    color: var(--green);
}
.flow-steps {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin: 1rem 0 2.5rem;
}
.flow-step {
    font-weight: 600;
    font-size: 1.2rem;
    background: #3c875b;
    background: linear-gradient(to right, #3c875b 0%, #2c4c43 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.flow-arrow {
    color: #5e9765;
    margin: 0 15px;
}

.flow-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.flow-step,
.flow-arrow {
    opacity: 0;
    transform: translateX(-50px);
}

.flow-steps.animate .flow-step,
.flow-steps.animate .flow-arrow {
    animation: slideRight 0.8s ease forwards;
}

.flow-steps.animate .flow-step:nth-child(1) { animation-delay: 0s; }
.flow-steps.animate .flow-arrow:nth-child(2) { animation-delay: 0.2s; }
.flow-steps.animate .flow-step:nth-child(3) { animation-delay: 0.4s; }
.flow-steps.animate .flow-arrow:nth-child(4) { animation-delay: 0.6s; }
.flow-steps.animate .flow-step:nth-child(5) { animation-delay: 0.8s; }
.flow-steps.animate .flow-arrow:nth-child(6) { animation-delay: 1s; }
.flow-steps.animate .flow-step:nth-child(7) { animation-delay: 1.2s; }
.flow-steps.animate .flow-arrow:nth-child(8) { animation-delay: 1.4s; }
.flow-steps.animate .flow-step:nth-child(9) { animation-delay: 1.6s; }

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media(max-width:576px){
    .bc-label{
        font-size:13px;
    }
}

.feature-card {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 1.5rem 1.25rem;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
    height: 100%;
}
.feature-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}
.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 0.9rem;
}
.feature-card h6 {
    font-weight: 800;
    font-size: 0.875rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}
.feature-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* ── CTA BAND ── */
.cta-band {
    position: relative;
}
/* .cta-band::before {
  content: "";
  position: absolute;
  left: -40px;
  top: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
} */
.cta-band-div {
    /* background: linear-gradient(135deg, var(--navy) 0%, #1a3a6e 100%); */
    background: url("../images/bottom_bnr.jpg") left bottom no-repeat;
    padding: 4rem 1rem;
    border-radius: 25px;
}
.cta-band-title {
    font-family: "Ubuntu", sans-serif;
    font-size: clamp(1.4rem, 3vw, 1.5rem);
    font-weight: 400;
    color: #fff;
}
.cta-band-title .green {
    color: var(--green);
}
.cta-band-title .orange {
    color: var(--orange);
}
.cta-band-sub {
    color: #9ab0d0;
    font-size: 0.95rem;
}
.btn-start-free {
    background: var(--green);
    color: #fff;
    border-radius: 8px;
    font-weight: 400;
    padding: 0.7rem 1.6rem;
    border: none;
}
.btn-start-free:hover {
    background: var(--green-dark);
    color: #fff;
}
.btn-schedule {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    font-weight: 400;
    padding: 0.7rem 1.4rem;
}
.btn-schedule:hover {
    border-color: #fff;
    color: #fff;
}

/* phone mockup in CTA */
.phone-mockup {
    width: 200px;
    position: absolute;
    top: -78px;
    right: 30px;
    z-index: 10;
}

.phone-frame {
    width: 100%;
    display: block;
    max-height: 372px;
    box-shadow:
        rgba(0, 0, 0, 0.1) 0px 6px 30px,
        rgba(0, 0, 0, 0.2) 0px 6px 10px;
    border-radius: 35px;
    background: #999897;
}

.phone-screen {
    position: absolute;
    top: 22px;
    left: 14px;
    right: 14px;
    bottom: 22px;
    border-radius: 18px;
    overflow: hidden;
    padding: 10px;
}

/* Content Styling */

.phone-screen .ph-title {
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--navy);
}

.phone-screen .ph-sub {
    font-size: 0.5rem;
    color: var(--text-muted);
}

.phone-screen .ph-kwh {
    font-size: 1rem;
    font-weight: 800;
    color: var(--navy);
}

.phone-screen .ph-green {
    color: var(--green);
    font-size: 0.5rem;
    font-weight: 700;
}

.phone-screen .ph-badge {
    background: var(--green);
    color: #fff;
    border-radius: 6px;
    padding: 2px 6px;
    font-size: 0.5rem;
    font-weight: 700;
    display: inline-block;
    margin-top: 4px;
}

/* ── PARTNERS ── */
.partners-section {
    padding: 3rem 0;
    background: #fff;
}
.partner-title {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}
.partner-logo {
    font-weight: 800;
    font-size: 1.1rem;
    color: #374151;
    opacity: 0.75;
    transition: opacity 0.2s;
}
.partner-logo:hover {
    opacity: 1;
}
.partner-logo.adani {
    color: #1a56db;
}
.partner-logo.tata {
    color: #0f2d6e;
}
.partner-logo.waaree {
    color: #2d8a3e;
}
.partner-logo.vikram {
    color: #1a56db;
}
.partner-logo.renew {
    color: #1a56db;
}
.partner-logo.utl {
    color: #0f2d6e;
}

/* ── TRUST FOOTER ── */
.trust-section {
    background: linear-gradient(0deg, #0b2558 0%, #096b38 100%);
    padding: 4rem 0;
}
.trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    /* border: 2px solid rgba(255, 255, 255, 0.2); */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto 0.75rem;
}
.trust-title {
    font-family: "Ubuntu", sans-serif;
    font-weight: 400;
    font-size: 1rem;
    color: #fff;
    margin-bottom: 0.3rem;
}
.trust-desc {
    font-size: 0.75rem;
    color: #c9c9c9;
    line-height: 1.5;
}

.testimonial-section {
    background: #ffffff;
    padding: 10rem 0 4rem;
}

.testimonial-small {
    padding: 1rem 0 3rem;
}

/* CARD */
.testimonial-box {
    background: #ffffff;
    border-radius: var(--card-radius);
    padding: 3rem;
    border: 1px solid #e8edf3;
    max-width: 650px;
    margin: auto;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.06);
}

/* TEXT */
.testimonial-box .quote {
    font-size: 0.95rem;
    color: #344054;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-box .stars {
    color: #f59e0b;
    font-size: 0.95rem;
    margin-top: 0.75rem;
    letter-spacing: 2px;
}

.testimonial-box .reviewer {
    font-size: 0.8rem;
    color: #667085;
    margin-top: 0.3rem;
}

/* Avatar */
.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e8edf3;
}

.reviewer-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #101828;
}

.reviewer-role {
    font-size: 0.75rem;
    color: #667085;
}

/* INDICATORS */
.carousel-indicators {
    display: flex;
    align-items: center;
    position: relative;
    margin-top: 20px;
}

.carousel-indicators button {
    width: 10px !important;
    height: 10px !important;
    margin: 0 10px !important;
    border-radius: 50%;
    background-color: #625e58 !important;
    opacity: 1;
    position: relative;
    transition: 0.3s;
    border: none;
}

/* Active dot */
.carousel-indicators .active {
    background-color: var(--navy) !important;
}

/* Outer ring */
.carousel-indicators .active::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid var(--navy);
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

/* ── BOTTOM CTA BAR ── */
.bottom-bar {
    background: var(--navy);
    border-top: 1px solid #0e3261;
    padding: 1rem 0;
}
.bottom-bar-text {
    font-family: "Ubuntu", sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffffd6;
}
.btn-whatsapp {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    font-weight: 400;
    padding: 0.6rem 1.3rem;
    font-size: 0.875rem;
}
.btn-whatsapp:hover {
    background: #128c4a;
    color: #fff;
}
.btn-call {
    background: var(--orange);
    color: #fff;
    border-radius: 8px;
    font-weight: 400;
    padding: 0.6rem 1.3rem;
    border: none;
    font-size: 0.875rem;
}
.btn-call:hover {
    background: #d9730d;
    color: #fff;
}

/* icon bg helpers */
.bg-sun {
    background: #fff8ed;
    color: #f59e0b;
}
.bg-leaf {
    background: #ecfdf5;
    color: #059669;
}
.bg-chart {
    background: #eff6ff;
    color: #2563eb;
}
.bg-shield {
    background: #f5f3ff;
    color: #7c3aed;
}
.bg-gift {
    background: #fff7ed;
    color: var(--orange);
}
.bg-wrench {
    background: #e0f2fe;
    color: #0284c7;
}
.bg-people {
    background: #fdf2f8;
    color: #db2777;
}

/* about us */

/* ── MISSION ── */
.mission-section {
    padding: 5rem 0;
    background: #f9fafb;
}
.section-chip {
    display: inline-block;
    background: #ecfdf5;
    color: var(--green-dark);
    border-radius: 50px;
    padding: 3px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}
.section-title {
    font-family: "Ubuntu", sans-serif;
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 500;
    color: var(--navy);
}
.section-title .green {
    color: var(--green-dark);
}
.section-title .orange {
    color: var(--orange);
}
.mission-card {
    background: #fff;
    border-radius: var(--card-radius);
    padding: 2rem;
    border: 1px solid #e5e7eb;
    height: 100%;
    transition:
        box-shadow 0.2s,
        transform 0.2s;
}
.mission-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
    transform: translateY(-4px);
}
.mission-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}
.mission-card h5 {
    font-weight: 800;
    font-size: 1rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}
.mission-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin: 0;
}

/* form */

.app {
    max-width: 950px;
    margin: 30px auto;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid #eef0f5;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.register-step-tabs {
    flex-shrink: 0;
}

/* REGISTER FORM HEADER */

.register-wrap .app {
    max-width: 1100px;
    margin: auto;
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(13, 27, 62, 0.12);
    overflow: hidden;
}

.register-card-header, .app .header {
    background: linear-gradient(135deg, #0d1b3e, #1c3f8f);
    color: #fff;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
}

.register-wrap .logo {
    font-size: 22px;
    letter-spacing: 0.5px;
}

.register-wrap .progress {
    height: 6px;
    background: #eef2ff;
}

.progress-bar {
    background: linear-gradient(90deg, #2ecc71, #27ae60);
    transition: width 0.4s ease;
}

.register-step-tabs {
    background: #f8faff;
    border-bottom: 1px solid #eef1f7;
    justify-content: space-around;
}

.step-tab {
    padding: 12px 18px;
    font-weight: 500;
    font-size: 0.85rem;
    color: #6b7280;
    border-bottom: none;
    position: relative;
    transition: all 0.25s ease;
}

.step-tab.active {
    color: #0d1b3e;
    font-weight: 600;
}

.step-tab.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 3px;
    border-radius: 10px;
    background: linear-gradient(90deg, #2ecc71, #27ae60);
}

.register-card-content {
    padding: 30px;
    background: linear-gradient(180deg, #ffffff, #fbfcff);
}

.card-box {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 18px;
    /* box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06); */
    border: 1px solid rgba(226, 232, 240, 0.7);
    transition: all 0.2s ease;
}

/* .card-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(15, 23, 42, 0.10);
} */

.step-panel h6 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 10px;
}

.register-wrap .form-control,
.register-wrap .form-select {
    border-radius: 10px;
    padding: 11px 12px;
    font-size: 0.85rem;
    border: 1px solid #e5e7eb;
    transition: all 0.2s ease;
}

.register-wrap .form-control:focus,
.register-wrap .form-select:focus {
    border-color: #2ecc71;
    box-shadow: 0 0 0 4px rgba(46, 204, 113, 0.15);
}

.register-wrap .btn-success {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    border: none;
    border-radius: 12px;
    padding: 10px 18px;
}

.register-wrap .btn-success:hover {
    filter: brightness(1.05);
}

.register-wrap .btn-outline-success {
    border-radius: 10px;
}

.register-card-footer {
    background: #fff;
    border-top: 1px solid #eef1f7;
    padding: 16px 24px;
}

.rating-input {
    display: flex;
    gap: 6px;
    font-size: 26px;
}

.rating-input .star {
    font-size: 20px;
    color: #e5e7eb;
    cursor: pointer;
    transition: all 0.2s ease;
}

.rating-input .star.active {
    color: #fbbf24;
    transform: scale(1.1);
}

.register-wrap .alert {
    border-radius: 12px;
}

.stats-strip-div {
    background: #ffffff;
    border-radius: 16px;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.hidden {
    display: none;
}

.login-page-wrap {
    background: #f8fafc;
    overflow: hidden;
}

.login-left-panel {
    position: relative;
    background: url("../images/about-3.jpg") center center/cover no-repeat;
    min-height: 100vh;
    padding: 60px;
    align-items: center;
}

.login-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgb(4 27 53), rgb(36 106 80 / 70%));
}

.login-left-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 560px;
    color: #fff;
}

.login-brand img {
    height: 60px;
    border-radius: 12px;
    background: #fff;
    padding: 8px;
}

.login-tag {
    display: inline-block;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    font-size: 13px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.login-left-text h1 {
    font-size: 56px;
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 24px;
    color: #fff;
}

.login-left-text h1 span {
    color: var(--green);
}

.login-left-text p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.82);
    max-width: 500px;
}

.login-info-grid {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.info-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.info-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    border-radius: 16px;
    background: var(--green-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
}

.info-card h5 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.info-card p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

.login-right-panel {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.login-form-card {
    width: 100%;
    max-width: 480px;
    background: #fff;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.mobile-logo {
    text-align: center;
    margin-bottom: 20px;
}

.mobile-logo img {
    height: 60px;
}

.login-header {
    text-align: center;
    margin-bottom: 35px;
}

.login-header h2 {
    font-family: "Ubuntu", sans-serif;
    font-size: clamp(2rem, 4vw, 2rem);
    font-weight: 500;
    color: #0b2558;
    margin-bottom: 10px;
}

.login-header p {
    color: #6b7280;
    margin: 0;
    font-size: 15px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    color: #0f172a;
}

.input-box {
    position: relative;
}

.input-box .input-icon {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 16px;
}

.input-box input {
    width: 100%;
    border: 1px solid #dbe2ea;
    border-radius: 16px;
    padding: 0.65rem 0.9rem 0.65rem 2.5rem;
    outline: none;
    transition: 0.3s;
    font-size: 14px;
    background: #f9fbfd;
    border-radius: 5px;
}

.input-box input:focus {
    border-color: #0a6b38;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(10, 107, 56, 0.08);
}

.login-options {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.forgot-link {
    color: #0a6b38;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.login-btn {
    width: 100%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    font-weight: 500;
    padding: 0.7rem 1.4rem;
    background: var(--navy-mid);
}

.login-btn:hover {
    background: var(--green-dark);
    color: #fff;
}

.divider {
    text-align: center;
    position: relative;
    margin: 28px 0;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e5e7eb;
}

.divider span {
    position: relative;
    background: #fff;
    padding: 0 14px;
    font-size: 13px;
    color: #94a3b8;
}

.social-btn {
    width: 100%;
    height: 56px;
    border: 1px solid #dbe2ea;
    border-radius: 16px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 600;
}

.social-btn img {
    width: 18px;
}

.register-link {
    text-align: center;
    margin-top: 28px;
    font-size: 14px;
    color: #64748b;
}

.register-link a {
    color: #0a6b38;
    text-decoration: none;
    font-weight: 700;
}

.login-left-text h1 {
    font-family: "Ubuntu", sans-serif;
    font-size: clamp(2rem, 4vw, 2.6rem);
    margin-bottom: 12px;
    font-weight: 400;
}

.login-left-text p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.82);
}

.login-info-grid {
    margin-top: 22px;
    gap: 10px;
}

.info-card {
    padding: 12px 14px;
    border-radius: 14px;
    gap: 12px;
}

.info-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 10px;
    font-size: 15px;
}

.info-card h5 {
    font-size: 13px;
    margin-bottom: 1px;
    font-weight: 500;
    letter-spacing: 0.05rem;
}

.info-card p {
    font-size: 10.5px;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.05rem;
}

.stats-strip.stats-login {
    padding: 40px 0;
}
.stats-login .stats-strip-div {
    position: relative;
    top: 0;
}
.register-wrap {
    background: #f8fafc;
}

body.page-register .navbar.sticky-top {
    z-index: 1030;
}

body.page-register .register-wrap {
    position: relative;
    z-index: 1;
}

/* certificate */

.page-wrap {
    background: #fffcf6;
    border: 3px solid #bbb;
    padding: 28px;
    width: 1000px;
}

/* Gold outer border */
.gold-outer {
    border: 6px solid #c8a84b;
    padding: 6px;
}

/* Thin inner gold border */
.gold-inner {
    border: 2px solid #c8a84b;
    padding: 10px;
    position: relative;
    overflow: hidden;
}

/* ── WATERMARK ── */
.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-20deg);
    font-family: "Bebas Neue", sans-serif;
    font-size: 92px;
    font-weight: 400;
    color: rgb(205 208 223 / 60%);
    white-space: nowrap;
    line-height: 1.35;
    text-align: center;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

/* all content above watermark */
.page-wrap .content {
    position: relative;
    z-index: 1;
}

/* ── TOP ROW ── */
.top-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
}
.top-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: flex-start;
    width: 100%;
    padding: 10px 20px;
}

/* Left Logo */
.roofpay-logo {
    display: flex;
    flex-direction: column;
    gap: 1px;
    justify-self: start;
}

/* Center Emblem */
.emblem-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* Right Badge */
.mii-badge {
    justify-self: end;
}

.gov-india {
    font-size: 14px;
    margin-top: 4px;
}

img {
    display: block;
}

.ashoka-img {
    width: 72px;
    height: auto;
}
.satyamev {
    font-size: 10px;
    color: #1c1c1c;
    font-family: "Manrope", sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}
.gov-india {
    font-size: 11px;
    text-transform: uppercase;
    color: #1c1c1c;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    margin-top: 0px;
}

/* Make in India badge */
.mii-badge {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

/* ── MINISTRY LINE ── */
.ministry-line {
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #222;
    margin-bottom: 18px;
    line-height: normal;
}

/* ── GOLD DIVIDER ── */
.divider {
    border: none;
    height: 1.5px;
    background: linear-gradient(
        to right,
        transparent,
        #c8a84b 20%,
        #c8a84b 80%,
        transparent
    );
    margin-bottom: 20px;
}

/* ── CERTIFICATE OF APPRECIATION ── */
.cert-title {
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-size: 50px;
    font-weight: 500;
    color: #026232;
    text-transform: uppercase;
    line-height: normal;
    margin-bottom: 10px;
}

.cert-subtitle {
    text-align: center;
    font-family: "Oswald", sans-serif;
    font-size: 35px;
    font-weight: 500;
    text-transform: uppercase;
    color: #152149;
    margin-bottom: 50px;
}

/* ── RECIPIENT NAME ── */
.recipient {
    text-align: center;
    font-family: "Manrope", sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #152149;
    margin-bottom: 34px;
}

/* ── FOOTER ── */
.footer-crt {
    display: grid;
    grid-template-columns: 90px 1fr 1fr;
    align-items: end;
    gap: 24px;
}
.sig-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}
.sig-line {
    width: 100%;
    height: 1.5px;
    background: #222;
}
.sig-label {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #0f1f39;
}

/* QR code svg */
.qr-wrap {
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

/* about us */

.why-section {
    padding: 5rem 0;
    background: #fff;
}
.why-card {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #f9fafb;
    border-radius: var(--card-radius);
    padding: 1.4rem;
    border: 1px solid #e5e7eb;
    height: 100%;
    transition: box-shadow 0.2s;
}
.why-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
}
.why-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}
.why-card h6 {
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--navy);
    margin-bottom: 4px;
}
.why-card p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* CTA */
.about-cta {
    background: var(--navy);
    font-family: "Manrope", sans-serif;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.about-cta::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(46, 204, 90, 0.06);
}
.about-cta h2 {
    font-family: "Ubuntu", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 600;
    color: #fff;
}
.about-cta h2 .green {
    color: var(--green);
}
.about-cta p {
    color: #7a9abf;
    font-size: 0.95rem;
}
.about-cta .btn-green {
    background: var(--green);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    padding: 0.65rem 1.75rem;
}
.about-cta .btn-green:hover {
    background: var(--green-dark);
    color: #fff;
}
.about-cta .btn-ow {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    border-radius: 8px;
    font-weight: 500;
    padding: 0.65rem 1.75rem;
}
.about-cta .btn-ow:hover {
    border-color: #fff;
    color: #fff;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(46, 204, 90, 0.15);
    color: var(--green);
    border: 1px solid rgba(46, 204, 90, 0.3);
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.about-section {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8fcff 0%, #ffffff 100%);
}

/* Tag */
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #2f9e44;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

/* Paragraph */
.about-text {
    font-size: 15px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

/* Image */
.about-image {
    overflow: hidden;
    border-radius: 30px;
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    transition: 0.5s;
}

.about-image:hover img {
    transform: scale(1.06);
}

/* Cards */
.mcard {
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
}

.mcard:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

/* Icon */
.mcard .icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}
.bg-bs {
    background: #eff6ff;
    color: #2563eb;
}
.bg-gs {
    background: #ecfdf5;
    color: #059669;
}
/* Card title */
.mcard h4 {
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

/* Card text */
.mcard p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

/* Button */
.btn-energy {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 28px;
    border-radius: 50px;
    background: #2f9e44;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    font-size: 14px;
}

.btn-energy:hover {
    background: #248232;
    transform: translateY(-2px);
}

/* services */

/* ── PROCESS STRIP ── */
.process-strip{
    padding:20px 0;
    background:#f8fafc;
    border-top:1px solid #e5e7eb;
    border-bottom:1px solid #e5e7eb;
}

.process-wrap{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.process-item{
    display:flex;
    align-items:center;
    gap:10px;
    padding:10px 18px;
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    color:#374151;
    transition:.3s;
    position:relative;
}

.process-item:not(:last-child)::after{
    content:"→";
    position:absolute;
    right:-20px;
    color:#22c55e;
    font-weight:700;
}

.step-dot{
    width:28px;
    height:28px;
    border-radius:50%;
    background:#22c55e;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    font-weight:700;
}

.process-item:hover{
    border-color:#22c55e;
    transform:translateY(-2px);
    box-shadow:0 6px 16px rgba(34,197,94,.12);
}

.process-item.active{
    background:#22c55e;
    color:#fff;
    border-color:#22c55e;
}

.process-item.active .step-dot{
    background:#fff;
    color:#22c55e;
}

@media(max-width:768px){

    .process-wrap{
        flex-direction:column;
        align-items:stretch;
    }

    .process-item{
        justify-content:center;
    }

    .process-item::after{
        display:none;
    }
}

/* ── SECTION TITLES ── */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--rp-green);
    margin-bottom: 0.5rem;
}
.section-title {
    font-family: "Ubuntu", sans-serif;
    font-size: clamp(1.7rem, 3.5vw, 2.5rem);
    font-weight: 400;
    color: var(--rp-text);
    line-height: 1.2;
}
.section-desc {
    color: var(--rp-muted);
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.7;
}

/* ── SERVICE CARDS ── */
.services-grid {
    padding: 5rem 0;
}
.service-card {
    background: rgb(255, 255, 255);
    border-width: 1px;
    border-style: solid;
    border-color: rgb(229, 231, 235);
    border-image: initial;
    border-radius: 14px;
    padding: 24px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--rp-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.service-card:hover {
    border-color: #9fe1cb;
    box-shadow: 0 12px 32px rgba(15, 110, 86, 0.12);
    transform: translateY(-4px);
}
.service-card:hover::before {
    transform: scaleX(1);
}
.service-icon {
    width: 52px;
    height: 52px;
    background: var(--rp-green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--rp-green);
    margin-bottom: 1.25rem;
}
.service-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--rp-text);
    margin-bottom: 0.6rem;
}
.service-card p {
    font-size: 0.9rem;
    color: var(--rp-muted);
    line-height: 1.65;
    margin: 0;
}
.service-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 3px 10px;
    border-radius: 100px;
    background: var(--rp-green-light);
    color: var(--rp-green-dark);
    margin-bottom: 1rem;
}

/* ── REWARDS SECTION ── */
.rewards-section {
    padding: 5rem 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}
.rewards-section::before {
    content: '';
    position: absolute;
    top: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(46,204,90,.05);
}
.reward-card {
    background: var(--rp-white);
    border: 1px solid var(--rp-border);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.2s;
    height: 100%;
}
.reward-card:hover {
    box-shadow: 0 6px 20px rgba(15, 110, 86, 0.1);
    border-color: #9fe1cb;
}
.reward-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}
.reward-icon-wrap.green {
    background: var(--rp-green-light);
    color: var(--rp-green);
}
.reward-icon-wrap.amber {
    background: var(--rp-amber-light);
    color: #854f0b;
}
.reward-icon-wrap.blue {
    background: #e6f1fb;
    color: #185fa5;
}
.reward-icon-wrap.pink {
    background: #fbeaf0;
    color: #993556;
}
.reward-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}
.reward-card p {
    font-size: 0.84rem;
    color: var(--rp-muted);
    margin: 0;
    line-height: 1.6;
}

/* ── HOW IT WORKS ── */
.hiw-section {
    padding: 6rem 0;
    background: radial-gradient(circle at top left, rgba(46, 204, 113, 0.08), transparent 45%);
}

.hiw-quote {
    padding: 1.5rem;
    border-left: 4px solid #22c55e;
    background: #fff;
    border-radius: 12px;
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    font-style: italic;
}

/* STEP CARD */
.hiw-card {
    display: flex;
    gap: 1rem;
    padding: 1.2rem 1.4rem;
    margin-bottom: 1rem;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    transition: all 0.25s ease;
    align-items: flex-start;
}

/* hover effect */
.hiw-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
    border-color: #d1fae5;
}

/* ICON */
.hiw-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: #f3f4f6;
    color: #22c55e;
    flex-shrink: 0;
}

/* NUMBER BADGE (ONLY USE IF YOU SWITCH BACK TO NUMBERS) */
.hiw-num {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    box-shadow: 0 10px 20px rgba(46,204,113,0.25);
    flex-shrink: 0;
}

/* TEXT */
.hiw-card h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

.hiw-card p {
    margin-top: 4px;
    font-size: 0.88rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 0;
}

/* ── FAQ ── */
.faq-section { padding: 4rem 0; }
.accordion-button {
  font-weight: 700; font-size: .9rem; color: var(--navy);
  background: #fff; border-radius: 10px !important;
}
.accordion-button:not(.collapsed) { color: var(--green-dark); background: #f0fdf4; box-shadow: none; }
.accordion-button::after { filter: none; }
.accordion-item { border: 1px solid #e5e7eb; border-radius: 10px !important; margin-bottom: .6rem; overflow: hidden; }
.accordion-body { font-size: .875rem; color: var(--text-muted); line-height: 1.75; }

/* ── TESTIMONIALS ── */
.testimonials-section {
    padding: 5rem 0;
}
.testi-card {
    background: var(--rp-white);
    border: 1px solid var(--rp-border);
    border-radius: 16px;
    padding: 1.75rem;
    height: 100%;
}
.stars {
    color: var(--rp-amber);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}
.testi-card blockquote {
    font-size: 0.9rem;
    color: var(--rp-text);
    line-height: 1.7;
    margin: 0 0 1.25rem;
    font-style: italic;
}
.testi-avatar {
    width: 40px;
    height: 40px;
    background: var(--rp-green-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--rp-green-dark);
    flex-shrink: 0;
}
.testi-name {
    font-size: 0.9rem;
    font-weight: 700;
}
.testi-role {
    font-size: 0.78rem;
    color: var(--rp-muted);
}

/* ── CTA BANNER ── */
.cta-section {
    background: linear-gradient(135deg, #04342c, #1d9e75);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    top: -200px;
    right: -100px;
}
.cta-section h2 {
    font-family: "Ubuntu", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #fff;
    font-weight: 400;
    margin-bottom: 0.75rem;
}
.cta-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 2rem;
}
.cta-actions {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-white {
    background: #fff;
    color: var(--rp-green-dark);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.btn-white:hover {
    background: #e8f8f3;
    color: var(--rp-green-dark);
    transform: translateY(-1px);
}
.btn-ghost-white {
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.75rem 1.75rem;
    border-radius: 10px;
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}
.btn-primary-rp {
    background: var(--rp-amber);
    color: #1a1a1a;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.7rem 1.6rem;
    border-radius: 10px;
    border: none;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.2s;
}
.btn-primary-rp:hover {
    background: #d4891f;
    color: #1a1a1a;
    transform: translateY(-1px);
}

/* contact us */
.contact-section{
    background:#f8fafc;
}

.contact-info-card,
.contact-form-card{
    background:#fff;
    padding:40px;
    border-radius:24px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

/* .contact-info-card.clh{
    padding:20px;
} */

.contact-image img{
    width:100%;
    object-fit:cover;
}

.contact-info-card .icon-box{
    width:55px;
    height:55px;
    background:rgba(34,197,94,.1);
    color:#16a34a;
    border-radius:15px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.contact-form-card .form-control{
    padding: 13px 15px;
    border-radius:8px;
    border:1px solid #e5e7eb;
}

.contact-form-card textarea.form-control{
    height:auto;
}

.contact-form-card .form-control:focus{
    border-color:#22c55e;
    box-shadow:0 0 0 .2rem rgba(34,197,94,.15);
}

.contact-form-card .form-label{
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-form-card .btn-success{
    border-radius:6px;
    padding:8px 20px;
}

.contact-item{
    padding:16px;
    border-radius:16px;
    transition:.3s;
}

.contact-item:hover{
    background:#f8fafc;
}