@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

:root {
    --mint-primary: #7CC5A1;
    --mint-accent: #5BB08C;
    --mint-very-light-bg: #F1FAF5;
    --mint-dark: #539174;
    --scaffold-background: #FCFFFE;
    --surface: #FFFFFF;
    --text-primary: #1A2E26;
    --text-secondary: #566D64;
    --text-on-mint: #FFFFFF;
    --border: #E2E9E6;
    --error: #B33A3A;
    --info: #2E8D9C;
    --success: #5BB08C;
    --warning: #E8A547;
    --divider: #E2E9E6;
    --shadow: rgba(26, 46, 38, 0.08);
    --disabled: #CDD7D2;
    --input-background: #F8FBFA;
    --footer-bg: #1A2E26;
}

.text-success {
    color: var(--success) !important;
}


body {
    background-color: var(--scaffold-background);
    color: var(--text-primary);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.bg-white {
    background-color: var(--surface) !important;
}

.bg-light {
    background-color: var(--mint-very-light-bg) !important;
}

.text-muted {
    color: var(--text-secondary) !important;
}

.text-dark {
    color: var(--text-primary) !important;
}

.border-bottom {
    border-bottom-color: var(--border) !important;
}

.card {
    background-color: var(--surface) !important;
    border-color: var(--border) !important;
    color: var(--text-primary) !important;
}

.dropdown-menu {
    background-color: var(--surface) !important;
    border-color: var(--border) !important;
}

.dropdown-item {
    color: var(--text-primary) !important;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus {
    background-color: var(--mint-very-light-bg) !important;
    color: var(--mint-dark) !important;
}

.nav-icon i {
    font-size: 10px;

}

.navbar {
    background-color: var(--surface) !important;
    border-bottom: 1px solid var(--border) !important;
}

.navbar-logo {
    height: 60px;
    width: auto;
}

.brand-icon {
    width: 36px;
    height: 36px;
    background: var(--text-primary);
}

.brand-icon span {
    font-size: 13px;
}

.brand-name {
    font-size: 15px;
    color: var(--text-primary);
}

.brand-sub {
    font-size: 9px;
    letter-spacing: 0.03em;
    color: var(--text-secondary);
}

.custom-nav .nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.custom-nav .nav-link:hover,
.custom-nav .nav-link.active {
    color: var(--mint-accent);
}

.nav-item:hover .dropdown-menu {
    display: block;
}

.btn-login {
    background: var(--mint-accent) !important;
    border: 1px solid var(--mint-accent);
    /* color: var(--text-on-mint); */
    transition: all 0.3s ease;
    color: white !important;
    /* background-color: #1A2E26; */
}

.btn-login:hover {
    background: var(--mint-dark);
    border-color: var(--mint-dark);
    color: var(--text-on-mint);
}

.btn-demo {
    background: transparent;
    border: 1px solid var(--mint-accent);
    color: var(--mint-accent);
    transition: all 0.3s ease;
}

.btn-demo:hover {
    background: var(--mint-accent);
    border-color: var(--mint-accent);
    color: var(--text-on-mint);
}

/* hero section */
.hero-section {
    background: var(--mint-very-light-bg);
    margin-top: 100px !important;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

.hero-title span {
    color: var(--mint-dark);
}

.hero-text {
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    /* max-width: 500px; */
}

/* Buttons */

.hero-buttons {
    margin-top: 35px;
    display: flex;
    gap: 15px;
}

.btn-primary-custom {
    background: var(--mint-primary);
    color: var(--text-on-mint);
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.btn-primary-custom:hover {
    background: var(--mint-dark);
}

.btn-outline-custom {

    border: 1px solid var(--mint-primary) !important;
    color: var(--mint-dark);
    padding: 8px 15px;
    /* border-radius: 12px; */
    text-decoration: none;
    font-weight: 600;
}

.btn-outline-custom:hover {
    background: var(--mint-primary) !important;
    color: white;
}

/* Right Side */
.hero-card {
    background: var(--surface);
    border-radius: 25px;
    padding: 35px;
    box-shadow: 0 20px 40px var(--shadow);
}

.quality-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--input-background);
    padding: 20px;
    border-radius: 18px;
}

.icon-box {
    width: 55px;
    height: 55px;
    background: var(--mint-primary);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    font-size: 25px;
}

.quality-card h4 {
    color: var(--text-primary);
    margin: 0;
}

.quality-card p {
    color: var(--text-secondary);
    margin: 5px 0 0;
}

.dashboard-box {
    margin-top: 25px;
    padding: 25px;
    border-radius: 18px;
    background: var(--mint-very-light-bg);
}

.dashboard-box h5 {
    color: var(--text-primary);
}

.progress {
    height: 12px;
    background: var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.progress-bar {
    width: 85%;
    height: 100%;
    background: var(--mint-accent);
}

.dashboard-box span {
    display: block;
    margin-top: 10px;
    color: var(--text-secondary);
}

.hero-list i {
    margin-right: 10px !important;
    color: var(--mint-accent) !important;
}
.product-logo-img {
    width: 150px;   
    height: auto;
    max-width: 100%;
    display: block;
    margin: auto;
}

/* solutions */

.solution-section {
    background: var(--mint-very-light-bg);
}

.solution-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 25px var(--shadow);
    transition: .3s;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-6px);
    border-color: var(--mint-accent);
}

.solution-header {
    background: var(--mint-primary);
    color: var(--text-on-mint);
    text-align: center;
    padding: 18px 15px;
}

.solution-header h3 {
    margin: 0;
    font-size: 1.7rem;
    font-weight: 700;
}

.solution-header p {
    margin: 6px 0 0;
    font-size: .95rem;
    opacity: .95;
}

.solution-list {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.solution-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: .95rem;
}

.solution-list i {
    width: 38px;
    height: 38px;
    background: var(--mint-very-light-bg);
    color: var(--mint-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vs-divider-wrapper {
    position: relative;
}

.vs-divider-wrapper::before {
    content: '';
    position: absolute !important;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-color: rgb(175, 173, 173) !important;
    z-index: 1;
}

/* VS Circle */
.vs-circle {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--mint-dark, #00b48a);
    color: var(--text-on-mint, #ffffff);
    border: 6px solid var(--surface, #ffffff);
    font-size: 22px;
    box-shadow: 0 8px 20px var(--shadow, rgba(0, 0, 0, 0.15));
}

/* solution end */
.ecosystem-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 4px 14px var(--shadow);
}

.card-badge {
    width: 28px;
    height: 28px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: var(--mint-primary);
    color: var(--text-on-mint);
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-title {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    min-height: 38px;
}

.card-subtitle {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-top: 2px;
}

.card-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 18px;
    border-radius: 10px;
    background: var(--mint-very-light-bg);
    border: 1.5px solid var(--mint-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon i {
    font-size: 26px;
    color: var(--mint-dark);
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-block;
}

.card-list li {
    position: relative;
    padding-left: 14px;
    font-size: 12.5px;
    color: var(--text-secondary);
    line-height: 1.85;
    text-align: left;
    /* bullet hamesha item text ke start par rahega */
}

.card-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--mint-accent);
}

/* spotlight */
.spotlight-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 6px 18px var(--shadow);
}

/* .spotlight-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
} */

.spotlight-logo {
    font-size: 30px;
    /* color: var(--mint-dark); */
}
.product-card{
    gap: 180px;
}
.product-logo img{
     width: 80px;   /* 80px, 100px ya 110px rakh sakte hain */
    height: auto;
    max-width: 100%;
    display: block;
}
.spotlight-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.spotlight-tagline {
    font-size: 12.5px;
    color: var(--text-secondary);
    margin: 0;
}

.device-mockup img {
    width: 100%;
    border-radius: 6px;
    display: block;
}

.feature-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 8px;
}

.feature-list li {
    font-size: 12.5px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-list li i {
    color: var(--mint-accent);
    font-size: 13px;
    flex-shrink: 0;
}

.perfect-for-row {
    border-top: 1px solid var(--divider);
    padding-top: 18px;
}

.perfect-for-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.perfect-for-item i {
    font-size: 20px;
    color: var(--mint-dark);
}

.perfect-for-item span {
    font-size: 10.5px;
    color: var(--text-secondary);
    line-height: 1.3;
}

.spotlight-btn {
    background: var(--mint-primary);
    color: var(--text-on-mint);
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 8px;
    white-space: nowrap;
}

.spotlight-btn:hover {
    background: var(--mint-dark);
    color: var(--text-on-mint);
}

/* analytical section */
.analytics-section {
    background: var(--surface);
    padding: 3rem 0;
}

.analytics-section .section-title {
    color: var(--text-primary);
}

.analytics-section .section-subtitle {
    color: var(--text-secondary);
}

.analytics-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.analytics-check-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-primary);
    padding: 6px 0;
}

.analytics-check-list li i {
    color: var(--mint-accent);
    font-size: 14px;
}

.dashboard-scroll {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.dash-card {
    flex: 0 0 150px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    box-shadow: 0 4px 12px var(--shadow);
    padding: 12px;
}

.dash-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dash-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 6px;
    display: block;
    background: var(--mint-very-light-bg);
}

/* tech start */
.tech-stack-section {
    background: var(--surface);
    padding: 2.5rem 0;
}

.tech-stack-box {
    border: 1.5px dashed var(--border);
    border-radius: 12px;
    padding: 1.5rem 1rem 1.75rem;
    background: var(--scaffold-background);
}

.tech-stack-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.tech-item {
    border-left: 1px solid var(--divider);
}

.tech-item:first-child {
    border-left: none;
}

.tech-icon-wrap {
    width: 44px;
    height: 44px;
    margin: 0 auto 0.75rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mint-very-light-bg);
}

.tech-icon-wrap i {
    font-size: 20px;
}

.tech-icon-wrap.icon-frontend i {
    color: #3aa1d6;
}

.tech-icon-wrap.icon-backend i {
    color: var(--mint-dark);
}

.tech-icon-wrap.icon-database i {
    color: #4a7fc9;
}

.tech-icon-wrap.icon-ai i {
    color: var(--mint-accent);
}

.tech-icon-wrap.icon-cloud i {
    color: #3aa1d6;
}

.tech-icon-wrap.icon-auth i {
    color: var(--text-primary);
}

.tech-icon-wrap.icon-reporting i {
    color: var(--warning);
}

.tech-icon-wrap.icon-notifications i {
    color: #3aa1d6;
}

.tech-label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.tech-sub {
    font-size: 11px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

/* overview */
.overview-section {
    background: var(--mint-very-light-bg);
    padding: 2.5rem 0;
}

.overview-card {
    background: var(--surface);
    border-radius: 14px;
    box-shadow: 0 4px 16px var(--shadow);
    padding: 1.75rem 1.5rem;
    height: 100%;
}

.overview-heading {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* ---- Key Benefits card ---- */
.benefit-photo {
    width: 100%;
    height: 100%;
    min-height: 190px;
    object-fit: cover;
    border-radius: 10px;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    color: var(--text-primary);
    padding: 4px 0;
}

.benefit-list li i {
    color: var(--mint-accent);
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

/* ---- Who Uses card ---- */
.user-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.user-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    color: var(--text-primary);
    padding: 8px 0;
}

.user-list li i {
    color: var(--mint-dark);
    font-size: 16px;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

/* ---- Customer Journey card ---- */
.journey-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.journey-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 60px;
}

.journey-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--mint-very-light-bg);
    border: 1.5px solid var(--mint-primary);
}

.journey-circle i {
    font-size: 16px;
    color: var(--mint-dark);
}

.journey-circle.success {
    background: var(--mint-primary);
    border-color: var(--mint-primary);
}

.journey-circle.success i {
    color: var(--text-on-mint);
}

.journey-label {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-secondary);
    text-align: center;
    white-space: nowrap;
}

.journey-arrow {
    color: var(--border);
    font-size: 13px;
    margin-top: -22px;
}

.journey-connector {
    display: flex;
    justify-content: flex-end;
    padding-right: 26px;
    margin: 4px 0;
}

.journey-connector i {
    color: var(--border);
    font-size: 14px;
}

/* ================= CTA SECTION ================= */
.cta-section {
    background-color: #16382b;
    padding: 1rem 0;
    overflow: hidden;
}

.cta-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
}

.cta-title {
    color: #ffffff;
    font-weight: 700;
    font-size: 26px;
}

.cta-subtitle {
    color: #d7e4de;
    font-size: 14px;
    max-width: 480px;
}

.cta-btn {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
}

.cta-btn-primary {
    background: var(--info);
    color: #ffffff;
    border: none;
}

.cta-btn-primary:hover {
    background: #256e7a;
    color: #ffffff;
}

.cta-btn-mint {
    background: var(--mint-primary);
    color: var(--text-on-mint);
    border: none;
}

.cta-btn-mint:hover {
    background: var(--mint-dark);
    color: var(--text-on-mint);
}

.cta-btn-outline {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

/* ================= FOOTER SECTION ================= */
.site-footer {
    background: var(--footer-bg);
    padding: 3rem 0 0;
    color: #b7c3bd;
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.footer-logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}



.footer-brand-name {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}

.footer-brand-tagline {
    font-size: 11.5px;
    color: #8fa39a;
    margin-bottom: 1rem;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    text-decoration: none;
}

.footer-socials a:hover {
    background: var(--mint-primary);
    color: var(--text-on-mint);
}

.footer-heading {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #b7c3bd;
    font-size: 12.5px;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--mint-primary);
}

.footer-newsletter-text {
    font-size: 12px;
    color: #8fa39a;
    margin-bottom: 1rem;
}

.footer-newsletter-form {
    display: flex;
    gap: 0;
}

.footer-newsletter-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 12.5px;
    padding: 9px 12px;
    border-radius: 6px 0 0 6px;
    flex: 1;
    min-width: 0;
}

.footer-newsletter-input::placeholder {
    color: #8fa39a;
}

.footer-newsletter-input:focus {
    outline: none;
    box-shadow: none;
    background: rgba(255, 255, 255, 0.12);
}

.footer-newsletter-btn {
    background: var(--mint-primary);
    color: var(--text-on-mint);
    font-size: 12.5px;
    font-weight: 600;
    border: none;
    padding: 9px 16px;
    border-radius: 0 6px 6px 0;
    white-space: nowrap;
}

.footer-newsletter-btn:hover {
    background: var(--mint-dark);
    color: var(--text-on-mint);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 2rem;
    padding: 1rem 0;
}

.footer-copyright {
    font-size: 11.5px;
    color: #8fa39a;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.25rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    font-size: 11.5px;
    color: #8fa39a;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--mint-primary);
}

@media (max-width: 767px) {
    .footer-bottom-links {
        justify-content: flex-start;
    }

    .feature-list {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-img {
        max-width: 100%;
        height: 70vh;
        object-fit: cover;
    }
}

@media (max-width: 991.98px) {
    .step-wrapper:not(:last-child)::after {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .step-item::after {
        display: none;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-img {
        width: 100%;
        height: auto;
    }

    .tech-item {
        border-left: none;
        border-top: 1px solid var(--divider);
        padding-top: 1.25rem;
        margin-top: 1.25rem;
    }

    .tech-item:nth-child(-n+2) {
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }

    @media (max-width:430px) {
        .hero-title {
            font-size: 30px !important;
        }
    }
}