  :root {
            --primary-color: #2ba88a;
            --secondary-color: #1389ed;
            --background-color: #f8f9fa;
            --text-color: #333;
        }
        
        body {
            background-color: var(--background-color);
            color: var(--text-color);
        }

        .navbar {
            background-color: #1F2425;
        }

        .navbar-brand, .nav-link {
            color: white !important;
        }

        .hero {
	background:#2ba88a;
            color: white;
            padding: 3rem 0;
            margin-bottom: 2rem;
        }

        .card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease-in-out;
        }

        .card:hover {
            transform: translateY(-5px);
        }

        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
        }

        .btn-success {
            background-color: var(--secondary-color);
            border-color: var(--secondary-color);
        }

        .custom-file-input::-webkit-file-upload-button {
            visibility: hidden;
        }

        .custom-file-input::before {
            content: 'Select file';
            display: inline-block;
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 3px;
            padding: 8px 12px;
            outline: none;
            white-space: nowrap;
            cursor: pointer;
            font-weight: 700;
            font-size: 10pt;
        }

        .custom-file-input:hover::before {
            background: #2980b9;
        }

        #canvas {
            max-width: 100%;
            height: auto;
            border-radius: 15px;
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: white;
        }

        .accordion-button:focus {
            box-shadow: none;
        }

        .fade-in {
            animation: fadeIn 0.5s ease-in-out;
        }

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: #2ba88a !important;
    border-color: #2ba88a !important;
}
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .how-it-works-card {
        background-color: #ffffff;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        overflow: hidden;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .how-it-works-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }

    .how-it-works-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: var(--primary-color);
    }

    .how-it-works-title {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 1rem;
        color: var(--text-color);
    }

    .how-it-works-text {
        color: #6c757d;
    }

    .how-it-works-number {
        top: -15px;
        left: -15px;
        background-color: var(--primary-color);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .full-width-card {
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }

        .image-preview {
            max-width: 100%;
            max-height: 100px;
            margin-top: 10px;
            border-radius: 5px;
            display: none;
        }
        
        
          .marquee-container {
            overflow: hidden;
            background-color: #1F2425;
            color: #ffff;
            padding: 10px 0;
            margin-top: -32px;
        }

        .marquee-content {
            display: inline-block;
            white-space: nowrap;
            animation: marquee 20s linear infinite;
        }

        @keyframes marquee {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }
        


         /* Add new styles for text inputs */
         .text-input-group {
            margin-bottom: 1rem;
            padding: 1rem;
            background-color: #f8f9fa;
            border-radius: 8px;
        }

        .text-preview {
            margin-top: 1rem;
            padding: 1rem;
            background-color: white;
            border-radius: 8px;
            border: 1px solid #dee2e6;
        }


        .cursor-pointer {
            cursor: pointer;
        }
        
        .template-card {
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .template-card:hover {
            border-color: #007bff;
            transform: translateY(-5px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .template-card.selected {
            border-color: #007bff;
            background-color: #f8f9fa;
        }
        
        .template-preview {
            max-height: 200px;
            object-fit: contain;
            width: 100%;
        }
        
        .upload-icon {
            width: 60px;
            height: 60px;
            background-color: #f8f9fa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #6c757d;
        }
        
        body {
            font-family: 'Barlow Semi Condensed' !important;
        }
        