:root {
    --primary-color: #e52d27;
    --secondary-color: #1a73e8;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fd;
    --white: #ffffff;
}
.container{
    width:auto !important;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif !important;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Header Styles */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0rem 10px !important;
}

.logo img {
    width: 250px;
    height: 100px;
    object-fit: contain;
}

nav.desktop-nav {
    display: flex;
    gap: 1.5rem;
}

@media (max-width: 767px) {
    nav.desktop-nav {
        display: none;
    }
}

.desktop-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

    .desktop-nav a:hover {
        background: var(--bg-light);
    }

.btn-demo {
    background-color: #ef4444;
    color: #fff;
    padding: 0.6rem 1.6rem;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-decoration: none !important;
}

    .btn-demo:hover, .btn-demo:focus {
        background-color: #dc2626 !important;
        outline: none !important;
    }

nav.desktop-nav a {
    font-weight: 600;
    font-size: 1rem;
    color: #374151;
    padding: 0.5rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

    nav.desktop-nav a:hover, nav.desktop-nav a:focus {
        background-color: #fef2f2;
        outline: none;
        color: #b91c1c;
    }

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0;
    background: url('Group 1000000830.png');
    background-repeat: round;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.hero-section h1 {
    font-size: 43px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    line-height: 1.2;
}

.hero-section p {
    font-size: 20px;
    color: var(--black);
    margin-bottom: 2rem;
    max-width: 1120px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    margin: 3rem 0;
    max-width: 100%;
}

    .hero-image img {
        width: 100%;
        max-width: 1060px;
        height: auto;
        border-radius: 1rem;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    /* Retailers Section */
    .retailers-section {
        padding: 3rem 0;
        text-align: center;
        background: var(--white);
    }

        .retailers-section hr {
            border: none;
            height: 1px;
            background: #eee;
            margin: 2rem auto;
            width: 80%;
        }

    .retailers-heading {
        font-size: 33px !important;
        font-weight: 600;
        margin-bottom: 4rem !important;
        color: var(--text-dark);
        margin-top: 6%;
    }

    .retailers-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 3rem;
        flex-wrap: wrap;
        margin: 2rem 0;
    }

        .retailers-logos img {
            height: 64px;
            opacity: 1;
            transition: opacity 0.3s ease;
        }


    /* Features Section */
    .features-section {
        padding: 2rem 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: 35px;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 1rem;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
        max-width: 1285px;
        margin: 0 auto;
    }

    .feature-card {
        background: var(--bg-light);
        padding: 2rem;
        border-radius: 1rem;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }

    .feature-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
        color: var(--primary-color);
    }

    .feature-card h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .feature-card p {
        color: var(--text-light);
        margin-bottom: 1.5rem;
        line-height: 1.6;
    }

    .feature-quote-link {
        color: #01966B;
        text-decoration: none;
        font-weight: 600;
    }

        .feature-quote-link:hover {
            text-decoration: underline;
        }

    /* Why Choose Section */
    .why-choose-section {
        padding: 2rem 0;
        background: var(--white);
        text-align: center;
    }

    .whychooseimage {
        background: url('Group 1000000833.png') no-repeat center top;
        background-size: contain;
        padding: 150px 20px 50px;
        text-align: center;
        height: 544px;
    }

    .stats-container {
        margin-top: 238px;
    }

    .stat-item {
        background: #fff;
        box-shadow: 0 0 10px rgba(255, 0, 0, 0.1);
        border-radius: 12px;
        padding: 25px 40px;
        min-width: 200px;
        border: 1px solid #E81D25;
    }

    .stat-number {
        color: #E60000;
        font-size: 28px;
        font-weight: 700;
        display: block;
        margin-bottom: 8px;
    }

    .stat-label {
        font-size: 16px;
        color: #333;
        padding-bottom: 5px;
    }

    @media (max-width: 768px) {
        .stats-container {
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .stat-item {
            width: 90%;
        }

        .whychooseimage {
            background-size: cover;
            padding-top: 120px;
        }
    }

    /* Organizations Section */
    .organizations-section {
        padding: 3rem 0;
        background: var(--bg-light);
        text-align: center;
    }

    .organizations-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 4rem;
        flex-wrap: wrap;
        margin: 2rem 0;
    }

        .organizations-logos img {
            height: 117px;
            opacity: 1;
            transition: opacity 0.3s ease;
        }

    /* Testimonials Section */
    .testimonials-section {
        max-width: 1300px;
        margin: 0 auto;
        text-align: center;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .section-label {
        color: #E81D25;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .section-title {
        font-size: 32px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 60px;
    }

    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        align-items: start;
    }

    .testimonial-card {
        background: white;
        border-radius: 15px;
        padding: 9px;
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
        border: 2px solid #A1A1FF;
        transition: all 0.3s ease;
        position: relative;
        text-align: left;
    }

        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

    .testimonial-content {
        display: flex;
        gap: 20px;
        align-items: flex-start;
    }

    .client-image {
        height: 340px;
        object-fit: cover;
        flex-shrink: 0;
        border: 3px solid #f8f9fa;
    }

    .testimonial-text {
        flex: 1;
    }

    .quote-icon {
        margin-bottom: 14px;
    }

    .testimonial-message {
        color: #555;
        line-height: 1.6;
        margin-bottom: -9px;
        font-size: 15px;
    }

    .rating {
        display: flex;
        gap: 3px;
        margin-bottom: 15px;
    }

    .star {
        color: #ff6b35;
        font-size: 40px;
    }

    .client-info {
        margin-bottom: 15px;
    }

    .client-name {
        font-weight: 700;
        color: #2c3e50;
        font-size: 16px;
        margin-bottom: 5px;
    }

    .client-position {
        color: #7f8c8d;
        font-size: 13px;
    }

    .company-logo {
        height: 40px;
        width: auto;
        opacity: 0.8;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .section-title {
            font-size: 28px;
        }

        .testimonials-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }

        .testimonial-card {
            padding: 25px;
        }

        .testimonial-content {
            flex-direction: column;
            text-align: center;
        }

        .client-image {
            align-self: center;
            margin-bottom: 15px;
        }

        .testimonial-text {
            text-align: left;
        }
    }

    @media (max-width: 480px) {
        body {
            padding: 20px 15px;
        }

        .section-title {
            font-size: 24px;
        }

        .testimonial-card {
            padding: 20px;
        }

        .client-image {
            width: 60px;
            height: 60px;
        }

        .testimonial-message {
            font-size: 14px;
        }
    }

    /* CTA Section */
    .cta-section {
        padding: 0px 20px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .CTA-action {
        max-width: 1000px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        padding: 4rem;
    }

    .cta-heading {
        font-size: 40px;
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 20px;
        letter-spacing: -0.02em;
        animation: slideInUp 0.8s ease-out;
    }

    .cta-subtitle {
        font-size: 20px;
        color: #5a6c7d;
        margin-bottom: 40px;
        max-width: 872px;
        margin-left: auto;
        margin-right: auto;
        animation: slideInUp 0.8s ease-out 0.2s both;
    }

    .cta-button {
        display: inline-block;
        background: #E81D25;
        color: white;
        padding: 16px 32px;
        border: none;
        border-radius: 50px;
        font-size: 1rem;
        font-weight: 600;
        text-decoration: none;
        cursor: pointer;
        transition: all 0.3s ease;
        animation: slideInUp 0.8s ease-out 0.4s both;
        position: relative;
        overflow: hidden;
    }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.5s;
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
        }

            .cta-button:hover::before {
                left: 100%;
            }

        .cta-button:active {
            transform: translateY(0);
        }

    @keyframes slideInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    @media (max-width: 768px) {
        .cta-section {
            padding: 60px 20px;
        }

        .cta-heading {
            font-size: 2rem;
        }

        .cta-subtitle {
            font-size: 1rem;
            margin-bottom: 30px;
        }

        .cta-button {
            padding: 14px 28px;
            font-size: 0.95rem;
        }
    }

    @media (max-width: 480px) {
        .cta-heading {
            font-size: 1.75rem;
        }

        .cta-button {
            padding: 12px 24px;
            font-size: 0.9rem;
        }
    }

    /* Modal Styles */
    .modal-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 10000;
        align-items: center;
        justify-content: center;
    }

    .modal-content-custom {
        background: var(--white);
        border-radius: 1rem;
        width: 90%;
        max-width: 600px;
        max-height: 80%;
        overflow: hidden;
    }

        .modal-content-custom iframe {
            width: 100%;
            height: 500px;
            border: none;
        }

    .modal-close {
        position: absolute;
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
        cursor: pointer;
        color: var(--text-light);
        z-index: 1;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .desktop-nav {
            display: none;
        }

        .mobile-menu-btn {
            display: block;
        }

        .hero-section h1 {
            font-size: 2rem;
        }

        .hero-section p {
            font-size: 1rem;
        }

        .section-title {
            font-size: 2rem;
        }

        .testimonial-container {
            flex-direction: column;
            text-align: center;
        }

        .btn-demo {
            background: #E52D27;
        }

        .testimonial-image {
            flex: none;
        }

        .stats-container {
            gap: 2rem;
        }

        .retailers-logos,
        .organizations-logos {
            gap: 1.5rem;
        }

            .retailers-logos img,
            .organizations-logos img {
                height: 30px;
            }
    }

    .modal-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9999;
        animation: fadeIn 0.3s ease-in-out;
    }

    /* Modal content */
    .modal-content-custom {
        width: 80%;
        max-width: 700px;
        height: 80%;
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 0 15px rgba(0,0,0,0.5);
        animation: slideUp 0.4s ease;
    }

        .modal-content-custom iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    @keyframes slideUp {
        from {
            transform: translateY(100px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .modal-close {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
        color: #333;
        z-index: 10000;
    }
/* Footer */
footer {
    background: #111827;
    color: #d1d5db;
    padding: 3rem 1.5rem;
    margin-top: 40px;
}

    footer .container {
        max-width: 1300px;
        margin-left: auto;
        margin-right: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 11rem;
    }

    footer h3 {
        color: #ef4444;
        font-weight: 700;
        margin-bottom: 1.5rem;
        font-size: 1.5rem;
    }

    footer form {
        max-width: 480px;
    }

    footer label {
        display: block;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #f9fafb;
    }

    footer input,
    footer textarea {
        width: 100%;
        background: #1f2937;
        border: none;
        border-radius: 8px;
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
        color: #f9fafb;
        font-size: 1rem;
        font-family: inherit;
        transition: background-color 0.3s ease;
    }

        footer input::placeholder,
        footer textarea::placeholder {
            color: #9ca3af;
        }

        footer input:focus,
        footer textarea:focus {
            background-color: #374151;
            outline: none;
        }

    footer textarea {
        resize: vertical;
        min-height: 100px;
    }

    footer .btn-submit {
        background-color: #ef4444;
        color: white;
        border: none;
        padding: 1rem 1.75rem;
        border-radius: 8px;
        font-weight: 700;
        font-size: 1rem;
        width: 100%;
        transition: background-color 0.3s ease;
    }

        footer .btn-submit:hover,
        footer .btn-submit:focus {
            background-color: #b91c1c;
            outline: none;
        }
.quote-link {
    margin-right: 33px;
    text-decoration: none !important;
    color: inherit !important;
}
@media (min-width: 1200px) and (max-width: 1400px) {
    .hero-container {
        max-width: 1186px !important;
    }

    .features-grid {
        max-width: 1090px !important;
    }
    .organizations-logos img {
        height: 114px !important;
    }
    .testimonials-section {
        max-width: 1100px;
    }
}