 
:root {
            --primary-color: #caebea;
            --secondary-color: #caebea;
            --accent-color: #23BABF;
            --light-bg: #f8f9fa;
            --text-dark: #49515B;
            --text-light: #6c757d;
            --bs-dark: #072c46;
            
        }
         .grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    @media (max-width: 900px) {
        .grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 600px) {
        .grid {
            grid-template-columns: 1fr;
        }
    }

    .feature-card {
        padding: 30px;
        border-radius: 25px;
        background: linear-gradient(to bottom right, #ecfeff, #e0f2fe);
        transition: all 0.3s ease;
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    }

    .feature-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

    .icon-box {
        width: 65px;
        height: 65px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 25px;
        background: var(--primary-color);
    }

    .icon svg {
        width: 32px;
        height: 32px;
        color: var(--bs-dark);
    }

    h3 {
        font-size: 22px;
        margin-bottom: 12px;
        color: var(--bs-dark);
    }

    p {
        color: #475569;
        line-height: 1.6;
        font-size: 15px;
    }

    /* Alternate Card Colors */
    .bg1 { background: linear-gradient(to bottom right, #ecfeff, #e0f2fe); }
    .bg2 { background: linear-gradient(to bottom right, #e0f2fe, #ecfeff); }

     .card-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
        }

        .step {
            text-align: center;
            flex: 1 1 300px;
            max-width: 350px;
        }

        .circle {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: bold;
            margin: 0 auto 20px;
            position: relative;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
        }

        .step1 { background: linear-gradient(to bottom right, #06b6d4, #0ea5e9); }
        .step2 { background: linear-gradient(to bottom right, #0ea5e9, #06b6d4); }
        .step3 { background: linear-gradient(to bottom right, #0891b2, #06b6d4); }

        .ping {
            width: 30px;
            height: 30px;
            background: #22d3ee;
            border-radius: 50%;
            position: absolute;
            top: -10px;
            right: -10px;
            animation: ping 1.5s infinite;
        }

        @keyframes ping {
            0% { transform: scale(1); opacity: 1; }
            75% { transform: scale(2); opacity: 0; }
            100% { transform: scale(2); opacity: 0; }
        }

        h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: #111827;
        }

        p.desc {
            color: #4b5563;
            line-height: 1.6;
        }

        @media (max-width: 768px) {
            .card-grid {
                flex-direction: column;
                gap: 40px;
            }
        }
        .how-it-works-section 
        {
            background: var(--primary-color);
        }

         .feature {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
            margin-bottom: 4rem;
        }

        .feature:nth-child(even) .text {
            order: 2;
        }

        .feature:nth-child(even) .image {
            order: 1;
        }

        .text {
            flex: 1 1 500px;
        }

        .text h3 {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--bs-dark);
        }

        .text p {
            font-size: 1.1rem;
            line-height: 1.6;
            color: var(--text-dark);
        }

        .image {
            flex: 1 1 500px;
            position: relative;
        }

        .image::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 20px;
            filter: blur(30px);
            background: linear-gradient(90deg, rgba(236,72,153,0.08), rgba(99,102,241,0.08));
            z-index: 0;
        }

        .image img {
            width: 100%;
            border-radius: 20px;
            position: relative;
            z-index: 1;
            transition: transform 0.5s;
            cursor: pointer;
        }

        .image img:hover {
            transform: scale(1.05);
        }

        @media (max-width: 768px) {
            .feature {
                flex-direction: column;
            }

            .text, .image {
                order: 0 !important;
            }
        }
        .cta-section {
    padding: 5rem 1rem;
    text-align: center;
    background-color: var(--primary-color); /* Change this to any color you like */
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--bs-dark);
}

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Buttons same as before */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media(min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}
.hero-stats {
            display: flex;
            gap: 40px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            display: block;
            color: var(--accent-color);
        }

        .stat-label {
            font-size: 0.9rem;
            opacity: 0.8;
            color: var(--text-dark);
        }

        @media (max-width: 576px) {
    .stat-number {
        font-size: 1.9rem;
    }
    .stat-label {
        font-size: 0.8rem;
    }
}


@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.jewel-option:hover {
    border-color: #0891b2 !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .desktop-upload-area {
        display: none !important;
    }
    .mobile-camera-area {
        display: block !important;
    }
} 

/* Footer Copyright Styling */
.site_footer .copyright_widget p,
.site_footer .copyright_widget,
.footer_bottom p,
.footer_bottom,
.copyright_text {
    color: white !important;
}

