﻿:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background: #ffffff;
    --light-background: #f3f4f6;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
}

.herosec {
    margin: 0 auto;
    padding: 0 1rem;
    padding-top: 3%;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    background: var(--background);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

/* Create spacing logic */
.logo,
.nav-menu,
.nav-actions {
    flex: 1;
}

/* Center the menu */
.nav-menu {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

    /* Menu item styling */
    .nav-menu a {
        text-decoration: none;
        color: var(--text-color);
        font-weight: 500;
        transition: color 0.3s;
    }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

/* Right aligned actions */
.nav-actions {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

    /* Button styling */
    .nav-actions .btn {
        padding: 0.5rem 1rem;
        border-radius: 10rem;
        text-decoration: none;
        font-weight: 500;
    }

    .nav-actions .btn-primary {
        background-color: var(--primary-color);
        color: white;
    }

    .nav-actions .btn-outline {
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        background: transparent;
    }

        .nav-actions .btn-outline:hover {
            background-color: var(--primary-color);
            color: white;
        }


.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.logo svg {
    color: var(--primary-color);
}

/* Menu Wrapper */
.menu-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Desktop Menu */
.desktop-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
    margin: 0;
    align-items: center;
}

    .desktop-menu a {
        text-decoration: none;
        color: var(--text-color);
        font-weight: 500;
        transition: color 0.3s;
    }

        .desktop-menu a:hover {
            color: var(--primary-color);
        }

    .desktop-menu .try-btn a {
        padding: 0.5rem 1rem;
        background-color: var(--primary-color);
        color: white;
        border-radius: 10rem;
        text-decoration: none;
    }

        .desktop-menu .try-btn a:hover {
            background-color: #2563EB;
        }

    .desktop-menu .dropdown a {
        padding: 0.5rem 1rem;
        border: 2px solid var(--primary-color);
        color: var(--primary-color);
        border-radius: 10rem;
        text-decoration: none;
    }

        .desktop-menu .dropdown a:hover {
            background-color: var(--primary-color);
            color: white;
        }

/* Burger Icon */
.burger-icon {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

    .burger-icon .bar {
        height: 3px;
        width: 100%;
        background-color: var(--text-color);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

/* Mobile Nav */
.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 1rem;
    position: absolute;
    top: 100%;
    right: 1rem;
    background: var(--background);
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    width: 200px;
}

    .mobile-nav.active {
        display: flex;
    }

    .mobile-nav a {
        text-decoration: none;
        color: var(--text-color);
        font-weight: 500;
        transition: color 0.3s;
    }

        .mobile-nav a:hover {
            color: var(--primary-color);
        }

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .mobile-auth-buttons a {
        padding: 0.5rem 1rem;
        background-color: var(--primary-color);
        color: white;
        border-radius: 5px;
        text-decoration: none;
    }

        .mobile-auth-buttons a.btn-outline {
            background-color: transparent;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
        }

            .mobile-auth-buttons a.btn-outline:hover {
                background-color: var(--primary-color);
                color: white;
            }

/* Responsive Behavior */
@media (max-width: 995px) {
    .desktop-menu {
        display: none;
    }

    .burger-icon {
        display: flex;
    }

    .mobile-nav {
        display: none;
    }

        .mobile-nav.active {
            display: flex;
        }
}

.glow-image {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: 0 0 70px rgb(0 123 255 / 19%);
    transition: box-shadow 0.4s ease-out, transform 0.2s ease-out;
}

    .glow-image:hover {
        box-shadow: 0 0 70px rgba(116, 184, 187, 1);
        transform: scale(1.02);
    }


.btn {
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    border: none;
}

    .btn-primary:hover {
        background: var(--secondary-color);
    }

.btn-outline {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

    .btn-outline:hover {
        background: var(--primary-color);
        color: white;
    }

/* Hero Section */
.hero {
    padding: 0 0 4rem 0;
    background: linear-gradient(358deg, #ffffff 0%, #e7f3ff 100%);
    text-align: center;
}

    .hero h1 {
        margin-bottom: 1.5rem;
        color: #111827;
        font-weight: bold;
    }

    .hero p {
        font-size: 1.25rem;
        color: #353c46;
        max-width: 600px;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    justify-content:center;
}

.feature-card {
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

    .feature-card:hover {
        transform: translateY(-5px);
    }

    .feature-card i {
        font-size: 2rem;
        color: var(--primary-color);
    }

.productfeatures-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
    justify-content: center;
}

.productcenter-row {
    justify-content: center;
}

.productfeature-card {
    flex: 1 1 250px;
    max-width: 300px;
    padding: 2rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;

}

/* Contact Form */
.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        font-weight: 500;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 0.75rem;
        border: 1px solid var(--border-color);
        border-radius: 1rem;
        font-family: inherit;
    }

    .form-group textarea {
        height: 100px;
        resize: vertical;
    }

/* Footer */
.footer {
    background-color: #0A1628;
    color: #ffffff;
    padding: 4rem 2rem 1rem;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

/* Brand section */
.footer-section.brand {
    flex: 1;
    max-width: 400px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

    .logo img {
        width: 24px;
        height: 24px;
    }

    .logo span {
        font-size: 1.5rem;
        font-weight: 601;
        color: #000000;
    }

.description {
    color: #A0AEC0;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #A0AEC0;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.contact-info img {
    width: 20px;
    height: 20px;
}

/* Links section */
.footer-section.links {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}


.footer-column h3 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-column ul {
    list-style: none;
    display: contents;
}

    .footer-column ul li {
        margin-bottom: 0.75rem;
    }

        .footer-column ul li a {
            color: #A0AEC0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.2s ease;
        }

            .footer-column ul li a:hover {
                color: #4B89FF;
            }

/* Footer bottom */
.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(160, 174, 192, 0.2);
    text-align: center;
}

    .footer-bottom p {
        color: #A0AEC0;
        font-size: 0.9rem;
    }


    /* Responsive design */
    @media (max-width: 1024px) {
        .footer-content {
            flex-direction: column;
            gap: 3rem;
        }

        .footer-section.brand {
            max-width: 100%;
        }

        .footer-section.links {
            flex-wrap: wrap;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }
    }

    @media (max-width: 640px) {
        .footer {
            padding: 3rem 1rem 1rem;
        }

        .footer-section.links {
            flex-direction: column;
            gap: 2rem;
        }

        .footer-column {
            width: 100%;
        }
    }

    /* Modal */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
    }

    .modal-content {
        background: white;
        margin: 15% auto;
        padding: 2rem;
        border-radius: 1rem;
        max-width: 600px;
        position: relative;
    }

    .close {
        position: absolute;
        right: 1rem;
        top: 1rem;
        font-size: 1.5rem;
        cursor: pointer;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .nav-links, .auth-buttons {
            display: none;
        }

        .mobile-menu {
            display: block;
        }

        .hero h1 {
            font-size: 2rem;
        }
    }

    /* Mobile Menu Button */
.mobile-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    list-style: none;
    padding: 0;
    margin: 0;
}


        .mobile-menu span {
            display: block;
            width: 25px;
            height: 3px;
            background: var(--text-color);
            margin: 5px 0;
            transition: all 0.3s;
        }

    /* Animations */
    @keyframes fadeIn {
        from {
            opacity: 0;
        }

        to {
            opacity: 1;
        }
    }

    .feature-card {
        animation: fadeIn 0.5s ease-in-out;
    }


    #why-choose h2,
    #why-choose .section-desc {
        text-align: center;
    }

    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
        justify-content: center;
        margin-top: 3rem;
        width: 100%;
        padding: 0 1rem;
    }


    .feature-card {
        background-color: white;
        border-radius: 1rem;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
        padding: 1.75rem;
        text-align: left;
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        align-items: start;
    }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

    .icon-container {
        background-color: transparent;
        padding: 0;
        border-radius: 9999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        width: 3rem;
        height: 3rem;
    }


    .feature-card i {
        font-size: 1.5rem;
        color: #2563eb;
    }

    h3 {
        font-size: 1.3rem;
        font-weight: 600;
        margin-bottom: 0.5rem;
        color: #111827;
    }

    p {
        font-size: 0.95rem;
        font-weight: 425;
        color: #4B5563;
        line-height: 1.5;
        margin: 0;
    }


    .cardround {
        background-color: #eff6ff;
        padding: 0.75rem;
        border-radius: 9999px;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cardicon {
        color: #2563EB;
        font-size: 1.5rem;
    }

    .cardheading {
        margin-top: 1.5rem;
        text-align:left;
    }

.cardparagraph {
    margin-top: 1.0rem;
    text-align: left;
}

.feature-icon {
    font-size: 1.5rem;
    color: inherit;
}

    /* About Section */
    .about {
        padding: 5rem 5%;
        background: #f9fafb;
    }

    .about-image img {
        width: 100%;
        border-radius: 1rem;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }

    .about-content h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
        color: var(--text-dark);
    }

    .about-content p {
        margin-bottom: 1.5rem;
        color: var(--text-light);
        line-height: 1.8;
    }

    .about-container,
    .registration-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        max-width: 1400px;
        margin: 0 auto;
        align-items: center;
        padding: 2rem 0;
    }


    /* Registration Section */
    .registration {
        padding: 5rem 5%;
        background: var(--background-light);
    }

    .registration-content {
        padding: 3rem;
        background: var(--primary-color);
        color: white;
    }

        .registration-content img {
            width: 100%;
            border-radius: 1rem;
            margin-top: 2rem;
        }

    .registration-form {
        padding: 3rem;
        background: white;
        border-radius: 1rem;
    }

    .plan-option {
        position: relative;
    }

        .plan-option input[type="radio"] {
            position: absolute;
            opacity: 0;
        }

        .plan-option label {
            display: block;
            padding: 2rem;
            background: white;
            border: 2px solid #e2e8f0;
            border-radius: 1rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .plan-option input[type="radio"]:checked + label {
            border-color: var(--primary-color);
            background: var(--background-blue);
            box-shadow: 0 4px 6px rgba(37, 99, 235, 0.1);
        }

        .plan-option h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .plan-option ul {
            list-style: none;
            padding: 0;
        }

            .plan-option ul li {
                margin-bottom: 0.5rem;
                color: var(--text-light);
                font-size: 0.9rem;
                display: flex;
                align-items: center;
            }

                .plan-option ul li::before {
                    content: '✓';
                    color: var(--success-color);
                    margin-right: 0.5rem;
                    font-weight: bold;
                }

.form-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.form-group {
    flex: 1;
}

        .form-group.full-width {
            grid-column: 1 / -1;
        }

        .form-group input,
        .form-group select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #e2e8f0;
            border-radius: 1rem;
            font-family: 'Inter', sans-serif;
            transition: all 0.3s ease;
            background: white;
            color: var(--text-dark);
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
        }

        .form-group select {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 1em;
            padding-right: 2.5rem;
        }

        .form-group input:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
        }
@media (max-width: 935px) {
    .form-row {
        flex-direction: column;
    }

    .form-group {
        width: 100%;
    }

    .mob{
        padding-left:5px;
        padding-right:5px;
    }
}
    img {
        max-width: 100%;
        height: auto;
    }

    .submit-btn {
        width: 54%;
        padding: 1rem;
        font-size: 1.1rem;
        background: #2563EB;
        color: white;
        border: none;
        border-radius: 1rem;
        cursor: pointer;
        transition: transform 0.3s ease, background 0.3s ease;
        margin-top: 2rem;
        font-weight: 500;
    }

    .button-container {
        text-align: center;
        margin-top: 20px;
    }


    .submit-btn:hover {
        transform: scale(1.01);
        transform: translateY(-4px);
    }


    @media (max-width: 1024px) {
        .about-container,
        .registration-container {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .subscription-plans {
            grid-template-columns: 1fr 1fr;
        }
    }

    @media (max-width: 768px) {
        .about-content h2,
        .registration-content h2 {
            font-size: 2rem;
        }

        .about-content p,
        .registration-content p {
            font-size: 1rem;
            line-height: 1.6;
        }

        .subscription-plans {
            grid-template-columns: 1fr;
        }
    }

    @media (max-width: 480px) {
        .about-content h2,
        .registration-content h2 {
            font-size: 1.8rem;
        }

        .about-container,
        .registration-container {
            width: 95%;
            padding: 1rem 0;
        }

        .registration-content,
        .registration-form {
            padding: 2rem 1rem;
        }
    }

    .registration-form form {
        flex-direction: column;
        align-items: center;
    }

    .subscription-plans {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin: 2rem 0;
    }

    .plan-radio {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 1.1rem;
        color: #333;
        cursor: pointer;
        transition: color 0.3s ease;
    }

        .plan-radio input[type="radio"] {
            accent-color: var(--primary-color);
            cursor: pointer;
        }

        .plan-radio:hover {
            color: var(--primary-dark);
        }

    .radio-group {
        display: flex;
        gap: 1.5rem;
        align-items: center;
        flex-wrap: wrap;
    }

        .radio-group .plan-radio {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.1rem;
            color: var(--text-color);
            cursor: pointer;
        }

    textarea {
        width: 100%;
        max-width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        resize: vertical;
    }

    .auth-buttons {
        display: flex;
        gap: 15px;
        align-items: center;
    }

    .btn-outline {
        padding: 12px 25px;
        border: 2px solid #007bff;
        color: #007bff;
        background-color: white;
        font-weight: bold;
        border-radius: 1rem;
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: all 0.3s ease;
    }

        .btn-outline:hover {
            color: white;
            background-color: #007bff;
            border-color: #007bff;
        }

    /* The dropdown content (hidden by default) */
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: white;
        min-width: 200px;
        border: 1px solid #ddd;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
        z-index: 1;
        border-radius: 1rem;
        top: 100%;
        right: 0;
        padding: 10px 0;
        animation: slideIn 0.3s ease-out;
    }


    /* Slide-in animation */
    @keyframes slideIn {
        0% {
            opacity: 0;
            transform: translateY(-10px);
        }

        100% {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Show dropdown when hovering over the Login button */
    .dropdown:hover .dropdown-content {
        display: block;
    }

    /* Style the individual items in the dropdown */
    .dropdown-content a {
        padding: 12px 20px;
        color: #007bff;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 10px;
        border-bottom: 1px solid #f1f1f1;
        transition: background-color 0.3s ease;
        font-family: 'Inter', sans-serif;
    }

        .dropdown-content a:hover {
            background-color: #007bff;
            color: white;
        }

    /* Button to start for free with smooth hover */
    .btn-primary {
        padding: 12px 25px;
        background-color: #007bff;
        color: white;
        border: none;
        font-weight: bold;
        border-radius: 1rem;
        font-family: 'Inter', sans-serif;
        font-size: 16px;
        transition: all 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

        .btn-primary:hover {
            background-color: #0056b3;
            box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
        }


    /*admin*/
    .form-label {
        font-family: 'Inter', sans-serif !important;
    }

    .cta-buttons {
        text-align: center;
        margin-top: 8%;
    }

    .input-container {
        position: relative;
        margin-bottom: 20px;
    }

        .input-container input {
            width: 100%;
            padding: 12px 10px;
            padding-top: 20px;
            border: 1px solid #ccc;
            border-radius: 1rem;
            outline: none;
        }

            .input-container input:focus {
                outline: none;
                border: 1px solid #ccc;
            }

        .input-container label {
            position: absolute;
            top: 15px;
            left: 10px;
            font-size: 15px;
            font-weight: lighter;
            color: #6c757d;
            transition: 0.3s ease all;
        }

        .input-container input:focus + label,
        .input-container input:not(:placeholder-shown) + label {
            top: -15px;
            font-size: 12px;
            color: #007bff;
            font-weight: 500;
        }

    .switch {
        position: relative;
        display: inline-block;
        width: 50px;
        height: 28px;
    }

        .switch input {
            opacity: 0;
            width: 0;
            height: 0;
        }

    .slider {
        position: absolute;
        cursor: pointer;
        background-color: #ccc;
        border-radius: 1rem;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        transition: .4s;
    }

        .slider:before {
            content: "";
            height: 20px;
            width: 20px;
            position: absolute;
            left: 4px;
            bottom: 4px;
            background-color: white;
            border-radius: 50%;
            transition: .4s;
        }

    input:checked + .slider {
        background-color: #2563EB;
    }

        input:checked + .slider:before {
            transform: translateX(22px);
        }


    /*floating button*/
    .floating-btn {
        position: fixed;
        bottom: 20px;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background-color: #2563eb;
        color: white;
        border: none;
        z-index: 999;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

        .floating-btn:hover {
            background-color: #1e4ed8;
        }

        .floating-btn.left {
            left: 20px;
        }

        .floating-btn.right {
            right: 20px;
        }

    /* Chat Modal */
    .chat-modal {
        display: none;
        position: fixed;
        right: 20px;
        bottom: 80px;
        z-index: 1050;
        background: #fff;
        border-radius: 1rem;
        padding: 20px;
        width: 320px;
        max-width: 90vw;
        box-shadow: 0 8px 24px rgba(0,0,0,0.2);
        animation: slideUp 0.3s ease-out;
    }

    @keyframes slideUp {
        from {
            transform: translateY(20px);
            opacity: 0;
        }

        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    .chat-modal-content {
        position: relative;
        font-family: 'Inter', sans-serif;
    }

    .chat-modal.show {
        animation: slideUp 0.3s ease-out;
    }

    .chat-modal-content h5 {
        margin-bottom: 15px;
        font-weight: 600;
        color: #2563eb;
    }

    .close-chat {
        position: absolute;
        top: 8px;
        right: 10px;
        font-size: 20px;
        color: #666;
        cursor: pointer;
    }

        .close-chat:hover {
            color: #000;
        }

    /* Chat form inputs */
    .chat-modal-content .form-control {
        border-radius: 1rem;
        margin-bottom: 12px;
        font-size: 14px;
        padding: 10px;
        border: 1px solid #ddd;
    }

    .chat-modal-content textarea.form-control {
        resize: vertical;
    }

    .chat-modal-content .btn {
        width: 100%;
        font-weight: 600;
        border-radius: 1rem;
    }

    @media (max-width: 576px) {
        .floating-btn {
            width: 44px;
            height: 44px;
            font-size: 18px;
        }

        .chat-modal {
            right: 10px;
            left: 10px;
            width: auto;
            bottom: 70px;
        }

        .chat-modal-content h5 {
            font-size: 1rem;
        }
    }

.products-showcase {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0px;
}

.feature-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
    padding: 5%;
    border-radius: 1rem;
    box-shadow: 0 0 0 3px rgb(245, 245, 245);
    gap: 2rem;
}

    .feature-block.reverse {
        flex-direction: row-reverse;
    }

.feature-text, .feature-image {
    flex: 1 1 500px;
}

    .feature-image img {
        width: 100%;
        max-width: 500px;
        border-radius: 1rem;
        display: block;
        margin: 0 auto;
    }
    .feature-text ul {
        text-align: left;
        padding-left: 1.5rem;
        margin-top: 1rem;
    }
@media screen and (max-width: 768px) {
.feature-block,
    .feature-block.reverse {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .feature-text {
        flex: 0 0 0px;
    }

    .feature-text ul {
        text-align: left;
        margin: 1rem auto;
        padding-left: 1.5rem;
        display: inline-block;
    }

    .feature-image img {
        margin-top: 1rem;
        max-width: 100%;
        height: auto;
    }
}


    .product-block {
        display: flex;
        align-items: stretch;
        justify-content: space-between;
        margin-bottom: 80px;
        flex-wrap: nowrap;
    }

        .product-block.reverse {
            flex-direction: row-reverse;
        }

    .product-img,
    .product-text {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

        .product-img img {
            width: 100%;
            max-width: 420px;
            height: auto;
            border-radius: 1rem;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }

    .product-text {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

    @media (max-width: 768px) {
        .product-block {
            flex-direction: column !important;
            align-items: center;
            text-align: center;
            padding-left: 15px;
            padding-right: 15px;
            padding-top: 0px;
            gap: 10px;
        }

        .product-text {
            align-items: center;
            text-align: left;
        }
    }

    .blob-wrapper {
        filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.25));
    }

    /*review slider*/
    .testimonials {
        width: 100%;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
    }

    .subtitle {
        display: inline-block;
        background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-weight: 600;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }

    .section-header h2 {
        font-size: 2.5rem;
        color: #1e293b;
        margin-bottom: 16px;
        font-weight: 700;
    }

    .section-desc {
        color: #64748b;
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto;
    }

    /* Slider Container */
    .review-slider-container {
        position: relative;
        max-width: 1000px;
        margin: 0 auto;
        overflow: hidden;
        padding: 20px;
    }

    /* Slider */
    .review-slider {
        display: flex;
        transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 30px;
    }

    /* Review Card */
    .review-card {
        flex: 0 0 100%;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(10px);
        border-radius: 24px;
        padding: 40px;
        text-align: center;
        position: relative;
        border: 1px solid rgba(255, 255, 255, 0.5);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
        }

    /* Profile Image */
    .profile-img {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
        border-radius: 50%;
        overflow: hidden;
        border: 3px solid #fff;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

        .profile-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    /* Quote Icon */
    .quote-icon {
        position: absolute;
        top: -15px;
        right: 40px;
        width: 40px;
        height: 40px;
        background: linear-gradient(135deg, #2563eb 0%, #4f46e5 100%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1rem;
    }

    /* Review Text */
    .review-text {
        color: #334155;
        font-size: 1.1rem;
        line-height: 1.7;
        margin: 20px 0;
        position: relative;
    }

    /* Star Rating */
    .user-rating {
        margin: 20px 0;
    }

        .user-rating i {
            color: #fbbf24;
            font-size: 1.2rem;
            margin: 0 2px;
        }

    /* Client Info */
    .client-info {
        margin-top: 20px;
    }

    .client-name {
        color: #1e293b;
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .client-position {
        color: #64748b;
        font-size: 0.9rem;
    }

    /* Navigation */
    .slider-nav {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 40px;
        gap: 20px;
    }

    .nav-btn {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: none;
        background: white;
        color: #2563eb;
        font-size: 1.2rem;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .nav-btn:hover {
            background: #2563eb;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(99, 102, 241, 0.4);
        }

    /* Dots */
    .slider-dots {
        display: flex;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #e2e8f0;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .dot:hover {
            background: #94a3b8;
        }

        .dot.active {
            width: 24px;
            border-radius: 12px;
            background: #2563eb;
        }

    /* Responsive Design */
    @media (max-width: 768px) {
        .section-header h2 {
            font-size: 2rem;
        }

        .review-card {
            padding: 30px 20px;
        }

        .review-text {
            font-size: 1rem;
        }

        .nav-btn {
            width: 40px;
            height: 40px;
            font-size: 1rem;
        }
    }

    @media (max-width: 480px) {
        .section-header h2 {
            font-size: 1.75rem;
        }

        .profile-img {
            width: 60px;
            height: 60px;
        }

        .quote-icon {
            width: 30px;
            height: 30px;
            font-size: 0.8rem;
        }
    }

    /*product button*/
    .productbtn-outline {
        border: 1px solid var(--primary-color);
        color: var(--primary-color);
    }

        .productbtn-outline:hover {
            background: var(--primary-color);
            color: white;
        }

.productfeature-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    width: 250px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    transform: scale(1);
}

    .productfeature-card:hover {
        transform: translateY(-5px) scale(1.015);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    }


.productcardround {
    background-color: #FFEDD5;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.productcardicon {
    color: #EA580C;
    font-size: 1.5rem;
}

.productcardheading {
    color: #0a2540;
    font-size: 1.125rem;
    margin: 0.5rem 0;
}

.productcardparagraph {
    color: #6b7c93;
    font-size: 0.95rem;
}

.card-width {
    width: 350px;
}

.hero-section {
    background-color: #ffffff;
    padding: 120px 5% 2% 5%;
    font-family: 'Inter', sans-serif;
    scroll-margin-top: 100px;
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 140px;
    }

        .hero-section h1 {
            font-size: 2rem; 
        }

        .hero-section p {
            font-size: 1rem;
        }
}

.hero-section h1 {
    font-size: 2.8rem;
    color: #0a2540;
    margin-bottom: 1rem;
}

.hero-section p {
    color: #4b5e71;
    line-height: 1.6;
    max-width: 900px;
    margin: auto;
}

.hero-section a.cta-button {
    color: #007bff;
    padding: 0.9rem 2rem;
    border: 2px solid #007bff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 2rem;
}

.hero-section .trust-text {
    margin-top: 2rem;
    color: #6b7c93;
    font-size: 1rem;
}

/*Back button*/
.backfloating-btn {
    position: fixed;
    top: 115px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #2563eb;
    color: white;
    border: none;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

    .backfloating-btn:hover {
        background-color: #1e4ed8;
    }

    .backfloating-btn.left {
        left: 20px;
    }

@media (max-width: 600px) {
    .backfloating-btn {
        top: 80px;
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

        .backfloating-btn.left {
            left: 10px;
        }
}
.responsive-heading {
    font-size: 3.5rem !important;
    margin-bottom: 1rem;
}
.prod-head {
    color: black;
    font-weight: 700;
    padding-left: 10%;
    padding-right: 10%;
    font-size: 2.5rem;
}
@media (max-width: 935px) {
    .responsive-heading {
        font-size: 2.2rem !important;
        margin-top: 20px;
    }

    .glow-image{
        display:none;
    }
    .submit-btn {
        width: auto !important;
    }
    .prod-head {
        font-size: 2rem;
        padding-left: 5%;
        padding-right: 5%;
        text-align: center;
    }
    .feature-text, .feature-image {
        flex: none !important;
    }
}


/*payment page*/
@media (min-width: 700px) {
    .payment-methods {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 16px;
        width: 100%;
    }

    .payment-method {
        flex: 1 1 0 !important;
        min-width: 0;
        width: auto !important;
    }
}


/* Default map container: full width, responsive height */
.map-container {
    display: none;
    margin-top: 20px;
    width: 100%;
    max-width: 100%; /* Prevent overflow on larger screens */
    height: 50vh; /* Responsive height based on viewport */
    position: relative;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 4%;
}

/* Optional: for very small screens */
@media (max-width: 600px) {
    .map-container {
        height: 40vh;
    }
}

/* Optional: slightly taller for larger screens */
@media (min-width: 1024px) {
    .map-container {
        height: 60vh;
    }
}


/*slider*/
/*.step-slider {
    max-width: 600px;
    margin: auto;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.slider-track {
    position: relative;
    height: 4px;
    background-color: #ccc;
    border-radius: 2px;
    margin: 2rem 2.5rem 1rem;
}

.slider-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background-color: #fbbf24;
    border-radius: 2px;
    transition: width 0.3s ease-in-out;
    z-index: 1;
}

.steps {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: -1.5rem;
    left: 0;
    width: 100%;
    padding: 0 0.25rem;
    z-index: 2;
}

    .steps span {
        font-size: 0.9rem;
        color: #000;
        cursor: pointer;
        position: relative;
    }

        .steps span::before {
            content: '';
            display: block;
            width: 20px;
            height: 20px;
            background: #ccc;
            border-radius: 50%;
            margin: 0 auto 0.5rem;
            transition: background 0.3s;
            margin-top: 2.7em;
        }

        .steps span.active::before {
            background: #2563EB;
        }

.slider-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 2.5rem;
}

    .slider-controls button {
        background-color: white;
        border: 2px solid #fbbf24;
        color: #fbbf24;
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        border-radius: 50%;
        cursor: pointer;
        transition: background-color 0.3s;
    }

        .slider-controls button:hover {
            background-color: #fbbf24;
            color: white;
        }
*/
#monthlySlider {
    display: block;
    margin-top: 3rem;
    margin-bottom: 2rem;
    text-align: center;
    font-size: larger;
}

#monthLabel {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Flex container to align prev button, range input, and next button */
#monthlySlider > div {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

#prevStep, #nextStep {
    background: #ffffff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
    cursor: pointer;
    color: #2563EB;
    font-weight: 800;
    box-shadow: 0 6px 20px rgb(0 0 0 / 15%);
    border: 1px solid #2563eb;
}

#monthRange {
    width: 100%;
    max-width: 300px; /* Adjusted for a compact layout */
    appearance: none;
    height: 6px;
    border-radius: 4px;
    background-color: #D5E0F8;
}

/* Responsive styling for screens less than 788px */
@media (max-width: 450px) {
    #monthlySlider {
        margin-top: 2rem;
        margin-bottom: 1.5rem;
    }

    #monthLabel {
        font-size: 1rem;
    }

    #prevStep, #nextStep {
        width: 50px !important;
        height: 35px !important;
        font-size: 1rem;
    }

    #monthRange {
        max-width: 150px;
    }
}