﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    color: #1f2937;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header Styles */
.header {
    background-color: #f7f3f0;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 5px 0;
    border-bottom: none;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: auto;
    height: 80px;
    /*background: #cce7d4;
    border-radius: 50%;*/
}

.logo-text {
    font-size: 20px;
    font-weight: 600;
    color: #08655a;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: #1c1e21;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover {
    color: #1f2937;
}

.dropdown-icon {
    font-size: 10px;
    transition: transform 0.2s;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown {
    position: relative;
}

.mobile-menu-btn {
    display: block;
    /* visible on mobile */
}

@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none;
        /* hide on desktop */
    }
}



/* mobile features sub menu (hidden by default) */
.va-mobile-sub {
    list-style: none;
    margin: 0;
    padding: 10px 20px 16px 56px;
    /* thoda right shift */
    display: none;
}

/* override parent li flex etc. */
.va-mobile-sub li {
    border: none;
    padding: 6px 0;
    display: block;
}

/* row layout inside */
.va-mobile-sub a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #111;
    font-size: 18px;
}

/* green round icon */
.va-sub-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    flex-shrink: 0;
}

/* label */
.va-sub-text {
    flex: 1;
}

/* right arrow */
.va-sub-arrow {
    font-size: 18px;
}

/* When Features is open */
.va-has-plus.va-open .va-mobile-sub {
    display: block;
}

.va-has-plus.va-open .va-plus {
    transform: rotate(45deg);
    /* + becomes x */
}


/* 3-dot button (desktop pe hide, mobile pe show) */
.mobile-menu-btn {
    border: none;
    background: transparent;
    padding: 6px 10px;
    cursor: pointer;
    display: none;
    /* default: desktop = hidden */
}

.mobile-menu-btn span {
    display: block;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #111;
    margin: 2px;
}

/* FULLSCREEN MOBILE MENU - SIDE DRAWER */
.va-mobile-nav {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 9999;
    width: 100%;
    max-width: 100%;
    /* full width, chahe to 320px bhi kar sakta hai */
    transform: translateX(-100%);
    /* LEFT se bahar */
    opacity: 0;
    pointer-events: none;
    transition: transform .30s ease, opacity .30s ease;
    font-family: inherit;
}

/* open state - slide IN from LEFT */
.va-mobile-nav.va-open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
}


.va-mobile-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.va-mobile-close {
    border: none;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
}

.va-mobile-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #25d366;
    font-weight: 500;
}

.va-mobile-logo img {
    height: 18px;
}

/* big list items */
.va-mobile-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.va-mobile-list li {
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.va-mobile-list a {
    text-decoration: none;
    color: #111;
    font-size: 20px;
    font-weight: 400;
}

.va-plus {
    font-size: 22px;
    position: relative;
    left: 234px;
}

/* --- show only on mobile --- */
@media (max-width:768px) {
    .mobile-menu-btn {
        display: inline-flex;
    }

    .jam {
        display: none !important;
    }

    /* apne desktop nav ko hide karna ho to: */
    .nav-menu,
    .btn-outline,
    .btn-primary {
        display: none;
    }
}

@media (min-width:769px) {
    .va-mobile-nav {
        display: none;
        /* desktop pe bilkul off */
    }


}



.dropdown-menu {
    display: none;
    position: absolute;
    top: 55%;
    left: 0;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 8px 0;
    min-width: 180px;
    list-style: none;
    margin-top: 8px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 16px;
    color: #4b5563;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.2s;
}

.dropdown-menu a:hover {
    background: #f3f4f6;
}

.nav-actions {
    display: flex;
    gap: 12px;
}

/* Button Styles */
.btn-primary {
    background-color: #0a6b5d;
    color: white;
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
    display: inline-block;
    border: 1px solid #1C1E21;
    cursor: pointer;
}


.dom {
    position: relative;
    top: 4px;
    left: 5px;
}

/*.btn-primary:hover {
    background-color: #20bd5a;
}*/

.btn-secondary {
    background-color: transparent;
    color: #1f2937;
    padding: 10px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #d1d5db;
    transition: all 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #f9fafb;
}

.btn-outline {
    background-color: #ffffff;
    color: #1f2937;
    padding: 10px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #1f2937;
    transition: all 0.2s;
    display: inline-block;
}

.btn-outline:hover {
    background-color: #f9fafb;
}

.btn-outline-hero {
    background-color: #ffffff;
    color: black;
    padding: 10px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    border: 1px solid #1C1E21;
    transition: all 0.2s;
    display: inline-block;
}

/*.btn-outline-hero:hover {
    background-color: rgba(255, 255, 255, 0.1);
}*/

.btn-large {
    padding: 14px 40px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background-color: #8696a0;
    padding: 120px 0 150px;
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 520px;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 80px;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-description {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.hero-note {
    font-size: 16px;
    color: #e5e7eb;
}


/* Feature Section with Image */
.feature-section {
    padding: 100px 0;
    /*background-color: #FCF5EB;*/
}

.feature-section:nth-child(even) {
    background-color: #FCF5EB;
}

.feature-section-reverse {
    background-color: #FCF5EB;
}

.feature-section-business {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.feature-section-reverse .feature-row {
    direction: rtl;
}

.feature-section-reverse .feature-content,
.feature-section-reverse .feature-visual {
    direction: ltr;
}

.feature-content {
    max-width: 480px;
}

.section-title {
    font-size: 60px;
    font-weight: 400;
    color: #1c1e21;
    margin-bottom: 20px;
    line-height: 66px;
    letter-spacing: -.03em;
}

.section-description {
    font-size: 18px;
    color: #1c1e21;
    line-height: 25px;
    margin-bottom: 24px;
    font-weight: 400;
}

.link-arrow {
    position: relative;
    color: #0a6b5d;
    /* green text color */
    text-decoration: none;
    font-weight: 500;
}

.link-arrow::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 68%;
    height: 2px;
    background-color: #0a6b5d;
    /* green underline */
}

.dam {
    vertical-align: middle;
    padding: 0 9px;
}

.dam1 {
    vertical-align: middle;
    padding: 0 9px;
}

.link-arrow:hover {
    color: #0a6b5d;
}

.rest:hover {
    color: #0a6b5d !important;
}


.dom2 {
    filter: brightness(0) invert(1);
    vertical-align: middle;
}

.dam1 {
    filter: brightness(0) invert(1);
}

.roj {
    color: #0a6b5d;
}

.rest {
    color: white !important;
}

.section3 {
    background-color: #111B21;
}


.image-wrapper {
    position: relative;
    display: inline-block;
}

.image-wrapper .bg-img {
    position: absolute;
    top: -13px;
    left: 0;
    max-width: 100%;
    object-fit: cover;
    /* optional: makes background image lighter */
}

.image-wrapper .feature-img {
    position: relative;
    z-index: 1;
    bottom: -90px;
}

.link-arrow {
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.2s;
}

.link-arrow:hover {
    transform: translateX(4px);
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-img {
    max-width: 85%;
    height: auto !important;

}

/* Features Grid Section */
.features-grid {
    padding: 80px 0;
    background-color: #ffffff;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: left;
    padding: 0;
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;

    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 12px;
}

.feature-description {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: #25D366;
    padding: 80px 0;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background-color: white;
    color: #25D366;
}

.cta-section .btn-primary:hover {
    background-color: #f9fafb;
}

/* Stay Updated Section */
.stay-updated-section {
    background-color: #d4f4dd;
    padding: 80px 0;
}

.stay-updated-header {
    text-align: left;
    margin-bottom: 48px;
}

.stay-updated-title {
    font-size: 48px;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.stay-updated-description {
    font-size: 18px;
    color: #4b5563;
    max-width: 600px;
}

.blog-cards {
    display: flex;
    gap: 32px;
    margin-bottom: 32px;
    overflow: hidden;
}

.blog-cards .blog-card {
    min-width: calc(50% - 16px);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .blog-cards .blog-card {
        min-width: 100%;
    }

    .image-wrapper .feature-img {
        position: relative;
        z-index: 1;
        bottom: -24px !important;
    }

    .feature-img {
        max-width: 57% !important;
        height: auto;
    }

    .image-wrapper .bg-img {
        position: absolute;
        top: -19px;
        left: 0;
        max-width: 46% !important;
        object-fit: cover;
    }
}

.blog-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 32px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.blog-card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card-icon img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.blog-card-title {
    font-size: 20px;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-description {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-card-link {
    color: #1f2937;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid #d1d5db;
    padding: 10px 20px;
    border-radius: 24px;
    display: inline-block;
    transition: all 0.2s;
}

.blog-card-link:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

.blog-navigation {
    display: flex;
    gap: 12px;
    justify-content: flex-start;
}

.blog-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    background-color: #ffffff;
    color: #1f2937;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-nav-btn:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
}

.blog-nav-prev {
    padding-right: 2px;
}

.blog-nav-next {
    padding-left: 2px;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #9ca3af;
    padding: 48px 0 32px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-logo-img {
    width: auto;
    height: 80px;
   
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.footer-download-btn {
    background-color: #0a6b5d;
    color: white;
    padding: 10px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-download-btn:hover {
    background-color: #20bd5a;
}

.download-icon {
    font-size: 16px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0px !important;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-copyright {
    font-size: 12px;
    color: #fff;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: #ffffff;
}

.separator {
    color: #6b7280;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #0a6b5d;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.2s;
}

.social-link:hover {
    background-color: #4b5563;
}

.social-icon {
    color: white;
    font-size: 16px;
}

.footer-language {
    position: relative;
}

.language-selector {
    background-color: transparent;
    border: 1px solid #4b5563;
    color: #ffffff;
    padding: 8px 32px 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" height="20" viewBox="0 0 24 24" width="20" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
}

.language-selector:hover {
    border-color: #6b7280;
}

.language-selector option {
    background-color: #1f2937;
    color: #ffffff;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .hero-content,
    .feature-row {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-text,
    .feature-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .feature-section-reverse .feature-row {
        direction: ltr;
    }

    .hero-title {
        font-size: 48px;
    }

    .section-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .zokr {
        padding: 58px !important;
    }

    .carousel-track {
        display: flex;
        gap: 29px;
        width: 432px;
    }

    .updates-container {
        display: block !important;
    }

    .card-title {
        font-size: 16px;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .section-title {
        font-size: 32px;
    }

    .section-description {
        font-size: 16px;
    }

    .cta-title {
        font-size: 36px;
    }

    .feature-section {
        padding: 60px 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-left {
        flex-direction: column;
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-top {
        flex-direction: column;
        gap: 20px;
    }

    .stay-updated-title {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .section-title {
        font-size: 28px;
    }

    .cta-title {
        font-size: 28px;
    }

    .stay-updated-title {
        font-size: 28px;
    }

    .stay-updated-section {
        padding: 60px 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-social {
        justify-content: center;
    }
}





/* SECTION BACKGROUND & LAYOUT */
.stay-updated-section {
    background: #eafbe7;
    /* pale green like screenshot */
    padding: 56px 0;
}

.stay-updated-section .container {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    /* left header (large) and right slider */
    gap: 40px;
    align-items: start;
    width: 100%;
    box-sizing: border-box;
}

/* LEFT HEADER - large type like screenshot */
.stay-updated-section .stay-updated-header {
    padding: 8px 16px;
}

.stay-updated-section .stay-updated-title {
    font-size: 72px;
    /* large heading */
    line-height: 0.95;
    margin: 0 0 18px 0;
    color: #0b2a1a;
    /* dark green/near-black */
    font-weight: 600;
    font-family: "Helvetica Neue", Arial, sans-serif;
}

.stay-updated-section .stay-updated-description {
    max-width: 420px;
    margin: 0;
    color: #0b2a1a;
    opacity: .9;
    font-size: 16px;
}

/* RIGHT SIDE - slider area */
.stay-updated-section .blog-cards {
    display: flex;
    gap: 24px;
    overflow: hidden;
    align-items: stretch;
    position: relative;
    /* we will apply transform on this container via JS */
    will-change: transform;
}

/* Card look matching screenshot */
.stay-updated-section .blog-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 18px rgba(8, 20, 12, 0.06);
    padding: 34px;
    box-sizing: border-box;
    flex: 0 0 calc(50% - 12px);
    /* two cards visible on desktop (50% each minus gap) */
    max-width: calc(50% - 12px);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* card icon */
.stay-updated-section .blog-card .blog-card-icon img {
    width: 28px;
    height: 28px;
    display: inline-block;
    margin-bottom: 18px;
}

/* card title & description */
.stay-updated-section .blog-card-title {
    font-size: 28px;
    margin: 0 0 12px 0;
    color: #0b2a1a;
    line-height: 1.05;
}

.stay-updated-section .blog-card-description {
    color: #364133;
    opacity: 0.9;
    font-size: 15px;
    margin: 0 0 22px 0;
    flex: 1 1 auto;
}

/* Read more button simple style to match screenshot */
.stay-updated-section .blog-card-link {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: #0b2a1a;
    font-weight: 500;
}

/* NAV BUTTONS - positioned bottom-left (outside grid  area visually like screenshot) */
.stay-updated-section .blog-navigation {
    grid-column: 1 / -1;
    /* place under both columns to allow buttons to sit left */
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-start;
    margin-top: 28px;
}

/* circle buttons */
.stay-updated-section .blog-nav-btn {
    background: transparent;
    border: 2px solid rgba(0, 0, 0, 0.12);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-clip: padding-box;
}

/* subtle hover */
.stay-updated-section .blog-nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(8, 20, 12, 0.06);
}

/* RESPONSIVE: 1 card on mobile, stack header above slider */
@media (max-width: 1000px) {
    .stay-updated-section .container {
        grid-template-columns: 1fr;
        /* stack */
        padding: 0 16px;
    }

    .stay-updated-section .stay-updated-title {
        font-size: 42px;
    }

    .stay-updated-section .blog-cards {
        gap: 16px;
    }

    .stay-updated-section .blog-card {
        flex: 0 0 100%;
        max-width: 100%;
        min-height: 320px;
        padding: 22px;
    }

    .stay-updated-section .blog-navigation {
        margin-top: 16px;
        justify-content: flex-start;
    }
}

/* small tweak to ensure the slider transform is smooth */
.stay-updated-section .blog-cards {
    transition: transform 0.5s cubic-bezier(.22, .9, .36, 1);
}





.minttop-section {
    padding: 40px 0;
    background-color: #FCF5EB;
}

.ras {
    color: white !important;
}






/* Slider layout */
.stay-updated-section .blog-cards {
    display: flex;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease-in-out;
}

/* Har slide me 2 cards dikhane ke liye */
.stay-updated-section .blog-card {
    min-width: 50%;
    /* 2 cards ek view me */
    flex-shrink: 0;
}

/* Navigation buttons */
.blog-navigation {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.blog-nav-btn {
    border: none;
    padding: 8px 12px;
    cursor: pointer;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    background: #f2f2f2;
}

.blog-nav-btn:hover {
    background: #ddd;
}

/* Slider container */
.stay-updated-section .blog-cards {
    display: flex;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease-in-out;
}

/* 2 cards ek slide me */
.stay-updated-section .blog-card {
    min-width: 50%;
    /* 2 cards visible */
    flex-shrink: 0;
}





:root {
    --bg: #0e181a;
    --text: #cfd7d7;
    --title: #ffffff;
    --max-width: 1200px;
}

.privacy-wrapper {
    background-image: url("/mnt/data/A_digital_graphic_presentation_displays_WhatsApp's.png");
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 80px 20px 100px;
}

.privacy-inner {
    max-width: var(--max-width);
    margin: auto;
    text-align: center;
}

.privacy-heading {
    color: var(--title);
    font-size: clamp(28px, 4.5vw, 60px);
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 70px;
}

.privacy-points {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.privacy-box {
    flex: 1 1 0;
    max-width: 350px;
    margin: auto;
    padding: 10px 20px;
}

.privacy-title {
    color: var(--title);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.privacy-desc {
    font-size: 14px;
    color: var(--text);
    line-height: 1.6;
}

@media(max-width:880px) {
    .privacy-points {
        flex-direction: column;
        align-items: center;
    }

    .privacy-heading {
        font-size: clamp(26px, 7vw, 42px);
        margin-bottom: 40px;
    }
}










.up-sec {
    padding: 60px;
    display: flex;
    justify-content: center;
    background-color: #111b21;
    font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

.up-wrap {
    max-width: 1280px;
    width: 100%;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* LEFT SIDE */
.up-left {
    flex: 0 0 32%;
    display: flex;
    flex-direction: column;
}

.up-title {
    font-size: 58px;
    font-weight: 400;
    margin: 0;
    color: #ffffff;
    line-height: 1.02;
}

.up-sub {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.5;
    margin-top: 14px;
    max-width: 360px;
}

.up-ctrl {
    margin-top: 135px;
    display: flex;
    gap: 16px;
}

.up-btn-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    background: #fff9f9;
    transition: 0.15s;
}

.up-btn-circle:hover {
    background: #0a6b5d;
    color: #fff;
}

/* RIGHT SIDE (CAROUSEL) */
.up-right {
    flex: 1;
    overflow: hidden;
    position: relative;
}

/* carousel track: horizontal flex area */
.up-track {
    display: flex;
    gap: 25px;
    transition: transform 0.45s ease;
    padding-bottom: 8px;
    will-change: transform;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
}

/* hide native scrollbar but keep still usable */
.up-track::-webkit-scrollbar {
    height: 8px;
}

.up-track::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.12);
    border-radius: 8px;
}

.up-track {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.12) transparent;
}

/* ---- Card design replaced to match your image ---- */
.up-card {
    flex: 0 0 calc(65% - 15px);
    /* 2 cards visible approx */
    min-width: 360px;
    border-radius: 20px;
    background: transparent;
    padding: 0;
    min-height: 320px;
    display: flex;
    align-items: flex-start;
    position: relative;
    box-shadow: none;
}

.up-card .up-card-inner {
    width: 100%;
    border-radius: 20px;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* dark rounded top area (phone preview background) */
.up-card .up-media-wrap {
    border-radius: 18px;
    padding: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

/* phone / preview inside the dark area */
.up-card .up-media {
    width: 100%;
    max-width: 420px;
    height: 240px;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35) inset;
}

/* white overlapping bottom panel */
.up-card .up-bottom {
    background: #ffffff;
    border-radius: 16px;
    padding: 22px 28px;
    margin-top: -36px;
    /* overlap */
    box-shadow: 0 10px 20px rgba(13, 23, 24, 0.12);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.up-card .up-bottom-left {
    width: 50%;
    color: #0b1415;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.up-card .up-bottom-right {
    width: 50%;
    color: #3b4a54;
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
}

/* small-screen adjustments */
@media (max-width: 1024px) {
    .up-wrap {
        gap: 24px;
    }

    .up-left {
        flex-basis: 36%;
    }

    .up-card {
        min-width: 320px;
        flex: 0 0 70%;
    }

    .up-card .up-media {
        max-width: 360px;
        height: 200px;
    }

    .up-ctrl {
        margin-top: 36px;
    }
}

@media (max-width: 760px) {
    .up-wrap {
        flex-direction: column;
    }

    .up-left {
        order: 2;
        padding-top: 12px;
    }

    .up-right {
        order: 1;
        width: 100%;
    }

    .up-card {
        flex: 0 0 86%;
        min-width: 86%;
    }

    .up-ctrl {
        margin-top: 18px;
    }
}

/* Hide horizontal scrollbar but keep scrolling behavior (mouse/drag/JS) */
.up-track {
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

/* Chrome, Safari, Opera */
.up-track::-webkit-scrollbar {
    width: 0;
    height: 0;
}







.help-sec {
    padding: 72px 24px 80px;
    display: flex;
    justify-content: center;
    background: #111b21;
}

.help-wrap {
    width: 100%;
    max-width: 1120px;
}

.help-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 32px;
}

.help-title {
    font-size: 48px;
    line-height: 1.15;
    font-weight: 500;
    margin: 0;
    color: white;
}

.help-title span {
    color: #0a6b5d;
}

.help-link {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 2px solid #0a6b5d;
    padding-bottom: 2px;
    margin-top: 10px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.help-link:hover {
    opacity: .9;
}

.help-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.help-item {
    background: #0b141a;
    border-radius: 25px;
    padding: 20px 24px 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: .18s ease;
    border: 1px solid #33463F;
}

.help-item-text {
    font-size: 16px;
    font-weight: 400;
    color: white;
}

.help-arrow-wrap {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 18px;
    color: #e9edef;
    background: #1c1e21
}

.help-item:hover {
    background: #0a6b5d;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.45);
}

.help-item:hover .help-arrow-wrap {
    border-color: #ffffff;
    color: white;
}

@media (max-width:768px) {
    .help-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .help-title {
        font-size: 36px;
    }

    .help-item {
        border-radius: 18px;
    }
}










.disc-section {
    padding: 80px 40px;
    display: flex;
    justify-content: center;
    background-color: #111b21;
}

.disc-wrap {
    max-width: 1300px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

/* ---------------- LEFT TEXT ---------------- */

.disc-left {
    width: 32%;
}

.disc-title {
    font-size: 52px;
    font-weight: 500;
    margin: 0;
    line-height: 1.1;
    color: white;
}

.disc-title span {
    color: #0a6b5d;
}

.disc-sub {
    font-size: 15px;
    color: #c8d2d8;
    margin: 18px 0 32px;
}

/* NAV BUTTONS */
.disc-controls {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.disc-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    background: transparent;
    color: #e9edef;
    transition: .2s;
}

.disc-btn:hover {
    background: #1f2c33;
    border-color: #25d366;
    color: #25d366;
}

/* ---------------- RIGHT SCROLLER ---------------- */

.disc-right {
    width: 68%;
    overflow: hidden;
}

.disc-track {
    display: flex;
    gap: 28px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 6px;
}

.disc-track::-webkit-scrollbar {
    height: 0;
}

/* CARD */
.disc-card {
    min-width: 300px;
    max-width: 300px;
}

.disc-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 22px;
}

.disc-card-title {
    font-size: 22px;
    margin: 14px 0 6px;
    color: white;
}

.disc-link {
    font-size: 14px;
    color: #25d366;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.disc-link i {
    font-size: 12px;
}



.ag-main {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 16px 30px;
}

.ag-box {
    max-width: 640px;
    width: 100%;
}

.ag-logo {
    width: auto;
    height: 200px;
}

.ag-heading {
    font-size: 40px;
    line-height: 1.25;
    font-weight: 400;
    margin: 0;
}

@media (max-width:600px) {
    .ag-heading {
        font-size: 32px;
    }
}



.rojs {
    color: #0a6b5d !important;
}