: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: 80%;
        margin: 0 auto;
        padding: 0 10px;
    }

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

    h1 {
        font-size: 2.5rem;
        color: var(--text-primary);
    }

    h2 {
        font-size: 2rem;
        color: var(--text-primary);
    }

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

    p {
        margin-bottom: 1rem;
        color: var(--text-secondary);
    }

    /* Buttons */
    .cta-btn {
        display: inline-block;
        padding: 17px 24px;
        text-decoration: none;
        border-radius: 40px;
        font-weight: 500;
        transition: var(--transition);
        border: none;
        cursor: pointer;
        font-size: 1rem;
        width: 30%;
        text-align: center;
    }

    .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: 1.1rem;
    }

    .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: 1.5fr 1fr;
        gap: 2.5rem;
        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);
    }

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

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

    .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: 10px 0px 30px 0px;
        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: 16px;
        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: 1px 0;
    }

    .feature-import {
        display: grid;
        grid-template-columns: 1.5fr 1fr;
        gap: 2.5rem;
        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: 20px 0;
        text-align: center;
    }
    .container-game-changer{
        background-color: #EEF4FA;
    }

    .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;
    }

    .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: #EEF4FA;
        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;
        font-size: 16px;
    }

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

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

    .cta-section p {
        font-size: 20px;
        color: #FFFFFF;
        font-weight: 600;
        margin-bottom: 2rem;
        color: rgba(255, 255, 255, 0.9);
    }

    .cta-section .cta-btn {
        background-color: white;
        color: var(--primary-color);
        z-index: 10000;
        position: relative;
    }

    .cta-section .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: 2rem;
        }

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

        .feature-import {
            grid-template-columns: 1fr;
            gap: 2rem;
            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 h2 {
            font-size: 2rem;
        }

        .hero-text h1 {
            font-size: 2.2rem;
        }

        .win-buyers h2 {
            font-size: 20px;
        }

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

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

    @media (max-width: 480px) {
        .hero-text h1 {
            font-size: 1.8rem;
        }

        .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 {
            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: 8px;
    flex-wrap: wrap;
}
.breadcrumb li {
    min-width: max-content;
    font-size: 12px;
    line-height: 18px;
}
.breadcrumb .link-ref {
    color: var(--light-blue);
    position: relative;
    font-size: 12px;
    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) {
  .buyers-main-head {
    padding: 10px !important;
  }
  .breadcrumb {
    column-gap: 4px;
    max-width: 90%;
    margin-left: 5px;
  }
  .win-buyer-rectangle {
        background-position: center;
        background-size: contain;
        height: 20px;
    }
}
.tile-card{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.tile-card>:nth-child(1){
width: 15%;
background-size: contain !important;
}
.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-importers-backed{
    width: 100%;
    height: 500px;
    background: url("https://www.volza.com/images/featuresPages/importers/feature-importer-image-2.webp");
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
}
.dicovers-importers-matched{
    width: 100%;
    height: 450px;
    background: url("https://www.volza.com/images/featuresPages/importers/feature-importer-image-3.webp");
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}
.rich-the-right-decision{
     width: 100%;
    height: 560px;
    background: url("https://www.volza.com/images/featuresPages/importers/feature-importer-image-4.webp");
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
}

.focus-only{
    width: 100%;
    height: 450px;
    background: url("https://www.volza.com/images/featuresPages/importers/feature-importer-image-5.webp");
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}

.negotiate-smarter{
    width: 100%;
    height: 450px;
    background: url("https://www.volza.com/images/featuresPages/importers/feature-importer-image-6.webp");
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
}

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

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

.streamlined-global-import{
    width: 100%;
    height: 450px;
    background: url("https://www.volza.com/images/featuresPages/importers/feature-importer-image-9.webp");
    background-repeat: no-repeat;
    background-position: right;
    background-size: contain;
}

.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/importers/feature-importer-image-1.webp");
    background-repeat: no-repeat; 
    z-index: 1;
    position: relative;
    background-position: right;
    right: 30px;
    background-size: contain;
}
.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: right;
    right: 22px;
    background-size: contain;
}
.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: 23px;
    font-weight: 600;
}
.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;
    background-size: contain;
}
.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; 
    background-size: contain;
}
.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; 
    background-size: contain;
}
.game-changer-inner-text>:nth-child(2),.game-changer-inner-text>:nth-child(3){
    font-size: 20px;
    font-weight: 400;
    color: #747373;
}
.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;
    position: relative;
}
.cta-section .win-buyer-path{
    top: -100px;
}
.cta-section .win-buyer-rectangle{
    position: relative;
    top: -15px;
}
.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; 
    position: relative;
    top: -50px;
}

.win-buyer-rectangle.right-rectangle{
    width: 80%;
    background-position: right;
    margin-top: -60px;
}
.win-buyers-container{
    display: flex;
    justify-content: space-between;
}
.win-buyers-container>:nth-child(1) , .win-buyers-container>:nth-child(3){
    width: 20%;
}

.dis-none{
    display: none;
}
.negotiate-smarter-second{
    width: 100%;
    height: 150px;
    background: url("https://www.volza.com/images/featuresPages/importers/feature-importer-image-6-1.webp");
    background-repeat: no-repeat;
    background-position: left; 
    z-index: 1;
    position: absolute;
    bottom: 40px;
    left: -57px;
}
.risk-heat-map{
    width: 100%;
    height: 231px;
    background: url("https://www.volza.com/images/featuresPages/importers/feature-importer-image-8-1.webp");
    background-repeat: no-repeat;
    background-position: left; 
    z-index: 1;
    position: absolute;
    bottom: 40px;
    top: 284px;
    background-size: contain;
}
.green-ellipse{
    width: 30%;
    height: 200px;
    background: url("https://www.volza.com/images/featuresPages/importers/ellipse-125.webp");
    background-repeat: no-repeat;
    background-position: left; 
    position: absolute;
    bottom: 62px;
    left: 422px;
    z-index: -1 !important;
    display: flex !important;
    background-size: contain;
}

.filter-table-image{
    width: 100%;
    height: 334px;
    background: url("https://www.volza.com/images/featuresPages/importers/feature-importer-image-2-1.webp");
    background-repeat: no-repeat;
    background-position: left; 
    position: absolute;
    bottom: 106px;
    left: 97px;
    background-size: contain;
}

.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: center;
    font-size: 14px;
}
.real-buyers{
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}
@media screen and (max-width: 1366px) and (min-width:768px) {
    .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-importers-backed, .rich-the-right-decision,.dicovers-importers-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;
        margin-top: -100px !important;
    }
    .features{
        padding: 0px !important;
    }
    .mt-130px{
    margin-top: unset !important;
    }
    .ml-320px{
        margin-left: -50px !important;
    }
    .container{
        max-width: 95% !important;
    }

}

@media (max-width: 900px) {
    .countries-content>:nth-child(1)>:nth-child(2){
        font-size: 16px !important;
    }
    .cta-section .container{
        max-width: 90% !important;
    }
    .database-dump{
        margin-top: 10px;
    }
    .cta-section p{
        margin-bottom: 10px;
    }
    .cta-section,.win-buyers{
        height: unset !important;
    }
   .container-buyers, .container-game-changer{
    padding: 0 8px;
   }
   .hero-actions .cta-btn.primary{
    width: max-content;
   }
   .hero-actions>:nth-child(2){
    width: 70%;
   }
   .buyer-faster-image1, .streamlined-global-import{
    right: 0px;
    background-size: contain;
    height: 345px;
   }
   .filter-table-image{
    right: 0px;
    background-size: contain;
    height: 160px;
    left: 40px;
    bottom: 78px;
    width:auto !important;
   }
   .chart-container>:nth-child(1){
    gap: 40px;
    display: grid;
   }
   .tile-card>:nth-child(1){
     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: 30px 0px 30px 0px !important;
    }
    .features-main-container>:nth-child(n){
        padding: 24px 15px;
    }
    .global-importers-backed, .rich-the-right-decision,.dicovers-importers-matched,.focus-only,.negotiate-smarter,.detect-buyer-risks,.monitor-and-protect,.custom-flags{
        background-size: contain !important;
        background-position: center !important;
    }
    .global-importers-backed{
        height: 320px !important;
    }
    .feature-content h3{
        font-size: 20px !important;
    }
    .feature-content p{
      font-size: 16px !important;
      line-height: 24px !important;
      color: #747373 !important;
    }
    .feature-chart{
        padding: 0px !important;
    }
    .feature-content{
        order: -1 !important;
    }
    .dicovers-importers-matched{
        height: 300px !important;
    }
    .rich-the-right-decision{
        height: 300px !important;
    }
    .focus-only{
        height: 272px !important;
    }
    .negotiate-smarter{
        height: 287px !important;
    }
    .risk-heat-map{
        height: 135px !important;
        bottom: -25px !important;
        background-size: contain !important;
        top: 163px;
    }
    .negotiate-smarter-second{
        height: 215px !important;
        bottom: -72px !important;
        background-size: contain !important;
        left: -53px;
    }

    .detect-buyer-risks{
        height: 290px !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: 70px;
        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 h2{
        font-size: 20px !important;
    }
    .cta-section p{
        font-size: 16px !important; 
        font-weight: 400 !important;
    }
    .cta-btn.primary{
        width: 100% !important;
    }
    .review-content p{
        min-height: 170px !important;
    }
    .three-tiles{
        padding: 20px 0;
    }
    .real-buyers{
        display: flex;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
    .view-all-countries-main-container{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .green-ellipse{
        bottom: -40px;
        left: 186px !important;
        right: 48px !important;
  }
  .mt-130px{
    margin-top: unset !important;
  }
  .ml-320px{
    margin-left: unset !important;
  }
    
}

 .mt-130px {
        margin-top: -130px;
    }
    .ml-130px{
        margin-left: -130px;
    }
    .ml-320px{
        margin-left: -200px;
    }
@media (max-width: 1600px) and (min-width:1400px) {
    .ml-320px{
        margin-left: -150px !important;
    }
}

.width-fit-content {
    width: fit-content !important;
}
    
.ml-18px {
    margin-left: 33px;
}
.title{
    color: #747373;
    font-weight: 500;
    font-size: 16px;
}
.mb-20px{
    margin-bottom: 15px;
}

.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: 36px !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) {
    .buyer-intelligence-container{
        padding: 24px;
    }
  .platform-categories{
    height: unset !important;
  }
    .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;
}
.platform-cta-bottom{
  height: 300px;
}
.marketforExporters-adjustment .tile-card{
    justify-content: unset;
    gap: 20px;
}