:root {
    --primary-color: #007BFF;
    --secondary-color: #28A745;
    --accent-color: #FFC107;
    --text-primary: #212529;
    --text-secondary: #6C757D;
    --background-light: #F8F9FA;
    --background-white: #FFFFFF;
    --border-color: #E9ECEF;
    --shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 8px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--background-white);
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 10px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 20px ;
    font-weight: 400;
}

/* Buttons */
.cta-btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 20px;
    width: 30%;
    text-align: center;
}
.bottom-book-a-live-demo-button{
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding-bottom: 10px;
}

.bottom-book-a-live-demo-button>:nth-child(1),.bottom-book-a-live-demo-button>:nth-child(3){
    width: 20%;
}
.bottom-book-a-live-demo-button>:nth-child(2){
    width: 60%;
}

.cta-btn.primary {
    background-color: var(--primary-color);
    color: white;
    width: max-content;
}

.cta-btn.primary:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.cta-btn.secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.cta-btn.secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

.cta-btn.large {
    padding: 16px 32px;
    font-size: 20px;
}

.login-btn {
    color: var(--text-primary);
    text-decoration: none;
    padding: 8px 16px;
    transition: var(--transition);
}

.login-btn:hover {
    color: var(--primary-color);
}

/* Header */
.header {
    background-color: var(--background-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 10px 0;
    background: #EEF4FA
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 2rem;
    color: #000
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-preview {
    padding: 10px 10px 10px 10px;
    width: 100%;
}

.chart-container {
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.chart-container canvas {
    width: 100%;
    height: 100%;
}

/* Win Buyers Section */
.win-buyers {
    padding: 60px 0px 0px 0px;
    background-color: #00407C;
    text-align: center;
}

.win-buyers h2 {
    font-size: 32px;
    margin-bottom: 1rem;
    color: #FFFFFF
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Three Tiles Section */
.three-tiles {
    padding: 60px 0;
    background-color: #EEF4FA
}

.tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tile-card {
    background-color: var(--background-white);
    padding: 1rem;
    border-radius: 24px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    font-size: 16px;
}

/* .tile-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
} */

.tile-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.tile-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    line-height: 1.4;
}

.tile-card p {
    font-size: 16px;
    line-height: 1.6;
}

.features {
    padding: 0px 0;
}

.feature {
    width: 100%;
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 0rem;
}

.feature-reverse .feature-visual {
    order: 2;
}

.feature-reverse .feature-content {
    order: 1;
}

.feature-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.feature-content p {
    font-size: 20px;
    color: #000;
    font-weight: 400;
    line-height: 36px
}

.feature-chart {
    padding: 2rem;
    position: relative;
}

.feature-chart canvas {
    width: 100%;
    height: 300px;
}

/* Countries Section */
.countries {
    padding: 60px 0;
    background-color: #EEF4FA;
    text-align: center;
}

.countries h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.flags-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.flag-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background-color: var(--background-white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.flag-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.flag-item img {
    width: 60px;
    height: 40px;
    border-radius: 4px;
}

.flag-item span {
    font-weight: 500;
    color: var(--text-primary);
}

/* Testimonial Section */
.testimonial {
    padding: 60px 0;
    background-color: var(--background-white);
}

.testimonial-content {
    width: 100%;
    display: flex;
    gap: 4rem;
}

.testimonial-image {
    width: 30%;
}

.testimonial-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.testimonial-text {
    padding-left: 2rem;
    width: 70%;
}

.testimonial-logo {
    margin-bottom: 1rem;
}

.logo-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.testimonial blockquote {
    margin: 0;
}

.testimonial blockquote h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.testimonial blockquote p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.testimonial cite {
    font-size: 1rem;
    color: var(--text-secondary);
    font-style: normal;
    font-weight: 500;
}

/* Reviews Section */
.reviews {
    padding: 60px 0;
    background-color: #EEF4FA;
}

.reviews h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background-color: var(--background-white);
    padding: 2rem;
    border-radius: 26px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: grid;
    gap: 10px;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.review-avatar-buyers {
    display: flex;
    justify-content: center;
    width: 100%;
}

.review-avatar-buyers img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.review-rating {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.review-content {
    text-align: center;
}

.review-content p {
    font-size: 16px;
    color: #090914;
    margin-bottom: 1.5rem;
    min-height: 100px;
}

.review-author {
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    min-height: 75px;
}

/* CTA Section */
.cta-section-buyers {
    background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%);
    color: white;
    text-align: center;
}

.cta-section-buyers h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section-buyers p {
    width: 70%;
    color: #FFFFFF;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-section-buyers .cta-btn {
    background-color: white;
    color: var(--primary-color);
}

.cta-section-buyers .cta-btn:hover {
    background-color: var(--background-light);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background-color: var(--text-primary);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: white;
}

.demo-form-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.demo-form-container input {
    padding: 12px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.demo-form-container button {
    padding: 12px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}

.demo-form-container button:hover {
    background-color: #0056b3;
}

.form-note {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.footer-logo img {
    height: 30px;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    color: white;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 5px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--background-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .header-actions .cta-btn {
        display: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 0rem;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 22px !important;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature {
        grid-template-columns: 1fr;
        gap: 1rem;
        text-align: center;
    }

    .feature-reverse .feature-content,
    .feature-reverse .feature-visual {
        order: initial;
    }

    .flags-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .testimonial-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .testimonial-text {
        padding-left: 0;
    }

    .testimonial blockquote h2 {
        font-size: 1.6rem;
    }

    .tiles-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .tile-card {
        padding: 1rem 1.5rem;
        font-size: 16px;
    }

    @media (max-width: 980px) {
        .tiles-grid {
            grid-template-columns: repeat(1, 1fr);
        }
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .cta-section-buyers h2 {
        font-size: 2rem;
    }

    .hero-text h1 {
        font-size: 22px !important
    }

    .win-buyers h2 {
        font-size: 20px !important;
        margin-bottom: 0px !important;
    }

    .countries h2 {
        font-size: 2rem;
    }

    .reviews h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 22px !important
    }

    .flags-grid {
        grid-template-columns: 1fr;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }

    .hero-actions {
        align-items: center;
    }

    .demo-form-container {
        width: 100%;
    }
}

/* Smooth animations */
@media (prefers-reduced-motion: no-preference) {

    .feature-chart,
    .review-card,
    .flag-item {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
}

/* Focus states for accessibility */
.cta-btn:focus,
.login-btn:focus,
.nav-links a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {

    .header,
    .footer,
    .cta-section-buyers {
        display: none;
    }

    .hero,
    .features,
    .countries,
    .testimonial,
    .reviews {
        page-break-inside: avoid;
    }
}

.search-container, .search-wrapper .input-wrapper {
    width: 100%;
}

.buyers-main-head {
    padding: 20px 47px;
    background: #EEF4FA
}

.buyers-screen-changes .inner-content {
    float: inline-end;
}

.d-flex {
    display: flex;
}

.buyers-screen-changes .inner-content .right-section {
    display: unset !important;
}

.date-alignment {
    display: flex;
    justify-content: end;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb {
    column-gap: 0px;
    flex-wrap: wrap;
}

.breadcrumb li {
    min-width: max-content;
    font-size: 15px;
    line-height: 18px;
}

.breadcrumb .link-ref {
    color: var(--light-blue);
    position: relative;
    font-size: 15px;
    line-height: 18px;
    min-width: max-content;
}

.breadcrumb .link-ref::after {
    content: ">";
    position: relative;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 8px;
    height: 10px;
    line-height: 1;
}

.breadcrumb li a {
    color: var(--light-blue);
}

@media screen and (max-width: 900px) {
    .breadcrumb .link-ref{
        font-size: 13px !important;
    }
    p{
        font-size: 16px !important;
        font-weight: 400 !important;
    }
    h2{
        font-size: 20px !important;
        font-weight: 600 !important;
    }
    .breadcrumb li{
        font-size: 13px !important;
    }
    .bottom-book-a-live-demo-button>:nth-child(2){
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            width: 100%;
    }

    .cta-btn.primary {
        width: max-content;
        padding: 14px 25px;
        font-size: 16px;
    }
    .dis-none-in-mobile{
        display: none;
    }
    .bottom-book-a-live-demo-button .win-buyer-rectangle {
        background-position: center;
        background-size: contain;
        height: 20px;
    }
    h2 {
        font-size: 20px !important;
    }
    .custom-height-box {
        height: 320px !important;
    }

    .features-main-container>:nth-child(n)>:nth-child(n) {
        width: 100% !important;
    }

    .feature {
        display: grid !important;
    }

    .buyers-main-head {
        padding: 10px !important;
    }

    .breadcrumb {
        column-gap: 4px;
        max-width: 100%;
        margin-left: 5px;
    }
}

.tile-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.tile-card>:nth-child(1) {
    width: 20%;
}

.tile-card>:nth-child(2) {
    width: 80%;
}

.tile-card>:nth-child(3) {
    width: 10%;
}

.tile-card>:nth-child(3) {
    width: 10%;
    background-position: right;
    text-align: -webkit-right;
}

.cta-btn .primary {
    z-index: 10;
}

.tile-card>p {
    margin-bottom: unset;
    font-weight: 500;
    color: #090914 !important;
    font-size: 16px;
}

.right-arrow {
    width: 20px;
    height: 20px;
    background: url("https://www.volza.com/images/featuresPages/buyers/right-arrow.webp");
    background-repeat: no-repeat;
}

.global-buyers {
    width: 60px;
    height: 60px;
    background: url("https://www.volza.com/images/featuresPages/buyers/globalbuyers.webp");
    background-repeat: no-repeat;
}

.discover-buyers {
    width: 60px;
    height: 60px;
    background: url("https://www.volza.com/images/featuresPages/buyers/discoverBuyers.webp");
    background-repeat: no-repeat;
}

.right-decision {
    width: 60px;
    height: 60px;
    background: url("https://www.volza.com/images/featuresPages/buyers/rightDecision.webp");
    background-repeat: no-repeat;
}

.shortlistbuyers {
    background-color: white;
    padding: 15px 50px 15px 50px;
    border-radius: 26px;
    font-weight: 600;
    color: #0073F2;
    font-size: 20px;
}

.database-dump {
    color: #FFFFFF;
    margin-top: 25px;
}

.buyer-intelligence-container {
    gap: 20px;
    display: grid;
}

.global-buyers-backed {
    width: 100%;
    height: 500px;
    background: url("https://www.volza.com/images/featuresPages/buyers/global-buyers-backed.webp");
    background-repeat: no-repeat;
    background-position: left;
}

.dicovers-buyers-matched {
    width: 100%;
    height: 450px;
    background: url("https://www.volza.com/images/featuresPages/buyers/dicover-buyers-matched.webp");
    background-repeat: no-repeat;
    background-position: right;
}

.rich-the-right-decision {
    width: 100%;
    height: 560px;
    background: url("https://www.volza.com/images/featuresPages/buyers/rich-decision-makers.webp");
    background-repeat: no-repeat;
    background-position: left;
}

.focus-only {
    width: 100%;
    height: 450px;
    background: url("https://www.volza.com/images/featuresPages/buyers/focus-only.webp");
    background-repeat: no-repeat;
    background-position: right;
}

.negotiate-smarter {
    width: 100%;
    height: 450px;
    background: url("https://www.volza.com/images/featuresPages/buyers/negotiate-smarter.webp");
    background-repeat: no-repeat;
    background-position: left;
}

.detect-buyer-risks {
    width: 100%;
    height: 450px;
    background: url("https://www.volza.com/images/featuresPages/buyers/detect-buyer-risks.webp");
    background-repeat: no-repeat;
    background-position: right;
}

.monitor-and-protect {
    width: 100%;
    height: 450px;
    background: url("https://www.volza.com/images/featuresPages/buyers/monitor-and-protect.webp");
    background-repeat: no-repeat;
    background-position: left;
}

.features-main-container>:nth-child(2n) {
    background-color: #EEF4FA;
    padding: 0 47px;
}

.features-main-container>:nth-child(n) {
    padding: 0 47px;
}

.buyer-faster-image1 {
    width: 100%;
    height: 550px;
    background: url("https://www.volza.com/images/featuresPages/buyers/buyerIntelligence.webp");
    background-repeat: no-repeat;
    z-index: 1;
    position: relative;
    background-position: center;
    right: 30px;
}

.buyer-faster-image2 {
    width: -webkit-fill-available;
    height: 450px;
    background: url("https://www.volza.com/images/featuresPages/buyers/buyerIntelligencebackground.webp");
    background-repeat: no-repeat;
    position: absolute;
    top: 290px;
    background-position: center;
}

.features-main-container>:nth-child(n)>:nth-child(n) {
    width: 48%;
}
.features-main-container>:nth-child(n)>:nth-child(2){
    width: 52%;
}

.container-buyers, .container-game-changer {
    padding: 0 47px;
}

.custom-flags {
    width: 100%;
    height: 450px;
    background: url("https://www.volza.com/images/featuresPages/buyers/flags-complete-container.webp");
    background-repeat: no-repeat;
    background-position: left;
}

.flags-container {
    display: flex;
}

.flags-container>:nth-child(1) {
    width: 40%;
}

.flags-container>:nth-child(2) {
    gap: 120px;
    display: grid;
    width: 60%;
}

.flags-container>:nth-child(2)>:nth-child(1) {
    text-align: left;
}

.countries-content>:nth-child(1) {
    text-align: left;
}

.countries-content>:nth-child(1)>:nth-child(1) {
    font-size: 32px;
    font-weight: 600;
    color: #001358;
}

.countries-content>:nth-child(1)>:nth-child(2) {
    font-size: 20px;
    margin-top: 30px;
    color: #4A4848;
}

.view-all-countries {
    text-align: left;
    font-weight: 600;
}

.view-all-countries-anchor {
    background-color: #0073F2;
    padding: 20px 60px 20px 60px;
    color: white;
    border-radius: 40px;
    font-size: 20px;
    font-weight: 600;
    width: max-content;
}

.game-changer {
    width: 100%;
    height: 500px;
    background: url("https://www.volza.com/images/featuresPages/buyers/game-changer.webp");
    background-repeat: no-repeat;
    background-position: left;
    border-radius: 20px;
    background-size: cover;
}

.game-changer-asteric {
    width: 100%;
    height: 70px;
    background: url("https://www.volza.com/images/featuresPages/buyers/game-changer-asteric.webp");
    background-repeat: no-repeat;
    background-position: left;
}

.game-changer-company {
    width: 100%;
    height: 50px;
    background: url("https://www.volza.com/images/featuresPages/buyers/username-game-changer.webp");
    background-repeat: no-repeat;
    background-position: left;
}

.game-changer-inner-text>:nth-child(2), .game-changer-inner-text>:nth-child(3) {
    font-size: 20px;
    font-weight: 400;
    color: #747373;
    line-height: 1.5;
}

.game-changer-inner-text>:nth-child(1) {
    font-size: 36px;
    font-weight: 500;
    color: #090914;
}

.user_1 {
    width: 74px;
    height: 78px;
    background: url("https://www.volza.com/images/completeSprite/globalSearch-Company-images/globalSearchCompanySprite.webp") -6px -126px / 526px 519px #f8f3f2;
    border-radius: 50%;
    border: 1px solid;
}

.user_2 {
    width: 74px;
    height: 78px;
    background: url("https://www.volza.com/images/completeSprite/globalSearch-Company-images/globalSearchCompanySprite.webp") -105px -162px / 711px 640px;
    border-radius: 50%;
    border: 1px solid;
}

.user_3 {
    width: 74px;
    height: 78px;
    background: url("https://www.volza.com/images/completeSprite/globalSearch-Company-images/globalSearchCompanySprite.webp") -203px -161px / 711px 640px;
    border-radius: 50%;
    border: 1px solid;
}

.win-buyer-right-path {
    width: 100%;
    height: 130px;
    background: url("https://www.volza.com/images/featuresPages/buyers/win-buyer-path.webp");
    background-repeat: no-repeat;
    background-position: left;
}

.win-buyer-path {
    width: 100%;
    height: 130px;
    background: url("https://www.volza.com/images/featuresPages/buyers/win-buyer-right-path.webp");
    background-repeat: no-repeat;
    background-position: left;
    margin-top: -50px;
}

.win-buyer-rectangle {
    width: 100%;
    height: 40px;
    background: url("https://www.volza.com/images/featuresPages/buyers/win-buyer-rectangle.webp");
    background-repeat: no-repeat;
    background-position: left;
}

.win-buyer-rectangle.right-rectangle {
    width: 80%;
    background-position: right;
}

.win-buyers-container {
    display: flex;
    justify-content: space-between;
}

.win-buyers-container>:nth-child(1), .win-buyers-container>:nth-child(3) {
    width: 20%;
}

.negotiate-smarter-second {
    width: 100%;
    height: 150px;
    background: url("https://www.volza.com/images/featuresPages/buyers/negotiate-smarter-second.webp");
    background-repeat: no-repeat;
    background-position: left;
    z-index: 1;
    position: absolute;
    bottom: 40px;
}

.view-all-countries-anchor:hover {
    background-color: #0056b3;
    transform: translateY(-2px);
}

.cta-btn.primary {
    z-index: 10;
}

.hero-actions .cta-btn.primary {
    width: max-content;
}

.hero-actions>:nth-child(2) {
    width: 40%;
    text-align: left;
    font-size: 14px;
}

.real-buyers {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}
@media only screen and (min-width: 1280px) and (max-width: 1440px) {
   .features-main-container>:nth-child(n){
        padding: 0 40px;
    }  
    .rich-the-right-decision{
        background-position: right;
    }
    .global-buyers-backed, .rich-the-right-decision, .dicovers-buyers-matched, .focus-only, .negotiate-smarter, .detect-buyer-risks, .monitor-and-protect, .custom-flags {
        background-size: contain;
    }
    .feature-chart{
        padding: 10px 0px 10px 0px;
    }
    .testimonial-image {
      width: 45%;
    }
    .game-changer{
      background-position: center;
    }
}

@media screen and (max-width: 1366px) and (min-width:768px) {
    .game-changer{
        background-position: center;
    }
    .features-main-container>:nth-child(n){
        padding: 0 40px;
    }
    .buyer-faster-image2 {
        top: 285px;
        right: unset;
        background-size: contain;
    }

    .tile-card {
        padding: 1rem 1rem !important;
        font-size: 16px;
    }

    .features-main-container>:nth-child(n) {
        padding: 0 30px !important;
    }

    .global-buyers-backed, .rich-the-right-decision, .dicovers-buyers-matched, .focus-only, .negotiate-smarter, .detect-buyer-risks, .monitor-and-protect, .custom-flags {
        background-size: contain;
    }

    .buyer-faster-image1 {
        right: unset !important;
        background-size: contain;
    }

    .features {
        padding: 0px !important;
    }

}

@media (max-width: 900px) {
    h2 {
        font-size: 20px !important;
    }
    .buyer-intelligence-container{
        padding: unset !important;
    }
    .buyer-intelligence-container>:nth-child(1){
        padding: 0 5px !important;
    }
    .database-dump{
        margin-top: 10px;
    }
    .shorlisted-buyers-background-mobile{
        display: flex;
        justify-content: center;
        margin-bottom: 10px;
    }
    .win-buyer-path {
        height: 40px;
        background-position: left;
        background-size: contain;
        margin-top: 10px;
    }
    .win-buyer-right-path{
        height: 48px;
        background-position: right;
        background-size: contain;
    }
    .hero-text p {
        font-size: 16px !important;
        line-height: 26px;
    }

    .tile-card>:nth-child(2) {
        width: 100% !important;
    }

    .reviews {
        padding: 30px 0 !important;
    }

    .countries-content>:nth-child(1)>:nth-child(2) {
        font-size: 16px !important;
    }

    .global-buyers-backed {
        background-image: url("https://www.volza.com/images/featuresPages/buyers/global-buyers-backed-mobile.webp") !important;
        background-repeat: no-repeat;
    }

    .container-buyers, .container-game-changer {
        padding: 0 8px;
    }

    .hero-actions .cta-btn.primary {
        width: max-content;
    }

    .hero-actions>:nth-child(2) {
        width: 100%;
        text-align: center;
    }

    .buyer-faster-image1 {
        right: 0px;
        background-size: contain;
        height: 345px;
    }

    .streamlined-global-import {
        right: 0px;
        background-size: contain;
        height: 345px;
    }

    .chart-container>:nth-child(1) {
        gap: 40px;
        display: grid;
    }

    .tile-card>:nth-child(1) {
        display: flex;
        justify-content: center;
        width: 100%;
        background-position: center;
    }

    .tile-card {
        display: grid;
        gap: 20px;
        border-radius: 24px !important;
    }

    .win-buyers-container>:nth-child(1) {
        width: 100%;
    }

    .shortlistbuyers {
        padding: 15px 12px 15px 12px;
        font-size: 16px;
        width: 100%;
        display: block;
    }

    .win-buyers {
        padding: 20px 0px 0px 0px !important;
    }

    .features-main-container>:nth-child(n) {
        padding: 15px 15px;
    }

    .global-buyers-backed, .rich-the-right-decision, .dicovers-buyers-matched, .focus-only, .negotiate-smarter, .detect-buyer-risks, .monitor-and-protect, .custom-flags {
        background-size: contain !important;
        background-position: top !important;
    }

    .global-buyers-backed {
        height: 300px !important;
    }

    .feature-content h3 {
        font-size: 20px !important;
        text-align: left !important;
    }

    .feature-content p {
        font-size: 16px !important;
        line-height: 24px !important;
        color: #747373 !important;
        text-align: center !important;
    }

    .feature-chart {
        padding: 0px !important;
    }

    .feature-content {
        order: -1 !important;
    }

    .dicovers-buyers-matched {
        height: 300px !important;
    }

    .rich-the-right-decision {
        height: 300px !important;
    }

    .focus-only {
        height: 272px !important;
    }

    .negotiate-smarter {
        height: 287px !important;
    }

    .negotiate-smarter-second {
        height: 120px !important;
        bottom: 25px !important;
        background-size: contain !important;
    }

    .detect-buyer-risks {
        height: 240px !important;
    }

    .monitor-and-protect {
        height: 282px !important;
    }

    .custom-flags {
        width: 100% !important;
        height: 382px !important;
    }

    .flags-container {
        display: grid !important;
        gap: 30px;
    }

    .flags-container>:nth-child(2) {
        width: 100% !important;
        gap: 50px !important;
        order: -1;
    }

    .countries-content>:nth-child(1)>:nth-child(1) {
        font-size: 20px !important;
    }

    .countries {
        padding: 20px 0 !important;
    }

    .flags-container>:nth-child(2)>:nth-child(1) {
        text-align: center !important;
    }

    .flags-container>:nth-child(1) {
        display: grid;
        gap: 30px;
        width: unset !important;
    }

    .view-all-countries {
        text-align: center;
        margin-bottom: 0px;
    }

    .view-all-countries-anchor {
        padding: 15px 40px 15px 40px;
        font-size: 20px;
    }

    .reviews-grid {
        width: 75em;
        flex-wrap: unset;
        justify-content: center;
        display: flex !important;
    }

    .overfl-auto {
        overflow-x: auto;
    }

    .reviews h2 {
        position: sticky;
        top: 0;
        left: 0;
        font-size: 20px !important;
    }

    .review-card {
        width: 100%;
        max-width: 90%;
        padding: 10px;
    }

    div .user_1, div .user_2, div .user_3 {
        width: 74px !important;
    }

    .cta-section-buyers h2 {
        font-size: 20px !important;
    }

    .cta-section-buyers p {
        font-size: 16px !important;
        font-weight: 400 !important;
        width: 100% !important;
    }

    .review-content p {
        min-height: 170px !important;
    }

    .three-tiles {
        padding: 20px 0 !important;
    }

    .real-buyers {
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .view-all-countries-main-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }


}
.inner-containers>:nth-child(1),.inner-containers>:nth-child(2){
    max-width: 95%;
    padding: 20px 10px 0px 10px;
}
.inner-containers>:nth-child(2){
    width: 100%;
    display: flex;
    justify-content: center;
}
.bottom-book-a-live-demo-button .win-buyer-rectangle{
    background-position: center;
}
.review-content>:nth-child(3),.review-author>:nth-child(3){
    color: #747373;
    font-weight: 500;
    font-size: 16px;
}

.review-author>:nth-child(1){
    font-size: 16px;
}

.feature-content p a {
    color: #0073F2 !important;
}

/*font changes*/
.cta-section-buyers h2 {
    font-size: 2.5rem;
    margin-bottom: 0rem;
    color: white;
}
.cta-section-buyers {
    height: 324px;
}
.cta-btn.large {
    font-size: 20px;
}

.cta-btn {
    font-weight: 600;
    font-size: 20px;
}

h1 {
    font-size: 42px !important;
    font-weight: 600 !important;
    color: var(--text-primary);
}

h2 {
    font-size: 32px !important;
    font-weight: 600 !important;
    color: var(--text-primary);
}

p {
    font-size: 20px;
    font-weight: 400;
}
.breadcrumb li{
    font-size: 15px;
}
.breadcrumb .link-ref{
    padding-right: 10px;
    font-size: 15px;
}
.view-all-countries-anchor{
    font-size: 20px;
    width: max-content
}
@media screen and (max-width: 900px) {
    .inner-containers>:nth-child(1), .inner-containers>:nth-child(2) {
        max-width: 95%;
        padding: 15px 10px 0px 10px;
    }
    .breadcrumb {
        max-width: 100% !important;
    }
    .cta-btn.primary {
        font-size: 16px !important;
    }
    .breadcrumb .link-ref{
        font-size: 13px !important;
    }
    p{
        font-size: 16px !important;
        font-weight: 400 !important;
    }
    h2{
        font-size: 20px !important;
        font-weight: 600 !important;
    }
    .breadcrumb li{
        font-size: 13px !important;
    }
    .breadcrumb .link-ref{
        font-size: 13px !important;
    }
    p{
        font-size: 16px !important;
        font-weight: 400 !important;
    }
    h2{
        font-size: 20px !important;
        font-weight: 600 !important;
    }   
}
@media screen and (max-width: 768px) {
    .inner-containers>:nth-child(1), .inner-containers>:nth-child(2) {
        max-width: 95%;
        padding: 15px 10px 0px 10px;
    }
    .hero-text h1 {
        font-size: 22px !important;
    }
    .breadcrumb .link-ref{
        font-size: 13px !important;
    }
    p{
        font-size: 16px !important;
        font-weight: 400 !important;
    }
    h2{
        font-size: 20px !important;
        font-weight: 600 !important;
    } 
}
.hero-text{
    z-index: 100;
}
.marketforExporters-adjustment .tile-card{
    justify-content: flex-start;
}