        @import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap');
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Hind Siliguri', sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            padding: 20px;
        }
        
        .container {
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 1200px;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            overflow: hidden;
        }
        
        .header {
            background-color: #4CAF50;
            color: white;
            padding: 20px;
            text-align: center;
            position: relative;
        }
        
        .header h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
        }
        
        .header p {
            font-size: 1.2rem;
        }
        
        .crescent {
            position: absolute;
            right: 50px;
            top: 20px;
            font-size: 2.5rem;
            color: #FFD700;
        }
        
        .content {
            display: flex;
            flex-direction: row;
            padding: 20px;
        }

        /* CSS স্টাইল সেকশনে যোগ করুন */
.user-image-container {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FFD700;
}

.user-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    input[type="color"] {
        height: 30px; /* Adjust the height as needed */
        width: 50px; /* Optional: Adjust the width to match the height */
        border: none;
        padding: 0px;
        margin-left: 5px; /* Optional: Add some space between the label and the color input */
        border-radius: 5px; /* Optional: Add rounded corners */
        margin-top: 7px;
        cursor: pointer;
    }
}
        
        @media (max-width: 768px) {
            .content {
                flex-direction: column;
            }
        }
        
        .preview {
            flex: 1;
            padding: 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .card-preview {
            width: 100%;
            max-width: 420px;
            aspect-ratio: 1/1.4;
            background-color: #f9f4e8;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            padding: 20px;
            margin-bottom: 20px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .card-title {
            font-size: 2rem;
            text-align: center;
            margin-top: 20px;
            color: #4CAF50;
            font-weight: bold;
        }
        
        .card-message {
            margin-top: 20px;
            padding: 20px;
            text-align: center;
            font-size: 1.2rem;
            flex-grow: 1;
        }
        
        .card-name {
            margin-top: 10px;
            font-size: 1.3rem;
            text-align: right;
            width: 100%;
            padding-right: 20px;
        }
        
        .controls {
            flex: 1;
            padding: 20px;
        }
        
        .control-section {
            margin-bottom: 30px;
        }
        
        .control-section h3 {
            margin-bottom: 15px;
            color: #4CAF50;
            border-bottom: 2px solid #4CAF50;
            padding-bottom: 5px;
        }
        
        .templates {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
            gap: 10px;
        }
        
        .template {
            border: 2px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .template:hover, .template.active {
            border-color: #4CAF50;
            transform: scale(1.05);
        }
        
        .template img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .form-group {
            margin-bottom: 15px;
        }
        
        .form-group label {
            display: inline-block;
            margin-bottom: 5px;
            font-weight: 500;
        }

     .form-group label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 5px;
    font-weight: 500;
    margin-top: 10px;
}

.form-group input[type="checkbox"] {
    margin-right: 5px;
    width: 20px;
    
}
        
        .form-group textarea, .form-group input {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .form-group textarea {
            height: 100px;
            resize: vertical;
        }
        
        .buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .btn {
            padding: 12px 20px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 1rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: all 0.3s;
        }
        
        .btn-primary {
            background-color: #4CAF50;
            color: white;
        }
        
        .btn-secondary {
            background-color: #2196F3;
            color: white;
        }
        
        .btn-dark {
            background-color: #333;
            color: white;
        }
        
        .btn:hover {
            opacity: 0.9;
            transform: translateY(-2px);
        }
        
        .footer {
            text-align: center;
            padding: 20px;
            background-color: #f0f0f0;
            color: #666;
            font-size: 0.9rem;
        }

        .social-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.social-btn {
    flex: 1;
    min-width: 120px;
}

.btn-info {
    background-color: #1DA1F2;
    color: white;
}

.btn-danger {
    background-color: #E1306C;
    color: white;
}

.btn-success {
    background-color: #25D366;
    color: white;
}
        
        /* Card Template Styles */
        .template1 {
            background-color: #f9f4e8;
            /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cpath fill='%23c9b18c' fill-opacity='0.1' d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'%3E%3C/path%3E%3C/svg%3E"); */
            background-image: url(images/Template1-01.png);
            width: 100%;
            object-fit: contain;
            background-size: cover;
          }
        
        .template2 {
            background-color: #05004e;
            color: rgb(130, 76, 18);
            /* background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%239C92AC' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
            background-image: url(images/Template2-01.png);
            width: 100%;
            object-fit: contain;
            background-size: cover;
          }
        
        .template2 .card-title {
            color: #d08412d3;
        }
        
        .template3 {
            background-color: #330033;
            color: rgb(62, 62, 62);
            /* background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
            background-image: url(images/Template3-01.png);
            width: 100%;
            object-fit: contain;
            background-size: cover;
          }
        
        .template3 .card-title {
            color: #393938;
        }
        
        .template4 {
            background-color: #000000;
            color: rgb(70, 70, 70);
            /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='18' viewBox='0 0 100 18'%3E%3Cpath fill='%23333333' fill-opacity='0.4' d='M61.82 18c3.47-1.45 6.86-3.78 11.3-7.34C78 6.76 80.34 5.1 83.87 3.42 88.56 1.16 93.75 0 100 0v6.16C98.76 6.05 97.43 6 96 6c-9.59 0-14.23 2.23-23.13 9.34-1.28 1.03-2.39 1.9-3.4 2.66h-7.65zm-23.64 0H22.52c-1-.76-2.1-1.63-3.4-2.66C11.57 9.3 7.08 6.78 0 6.16V0c6.25 0 11.44 1.16 16.14 3.42 3.53 1.7 5.87 3.35 10.73 7.24 4.45 3.56 7.84 5.9 11.31 7.34zM61.82 0h7.66a39.57 39.57 0 0 1-7.34 4.58C57.44 6.84 52.25 8 46 8S34.56 6.84 29.86 4.58A39.57 39.57 0 0 1 22.52 0h15.66C41.65 1.44 45.21 2 50 2c4.8 0 8.35-.56 11.82-2z'%3E%3C/path%3E%3C/svg%3E"); */
            background-image: url(images/Template5-01.png);
            width: 100%;
            object-fit: contain;
            background-size: cover;
        }
        
        .template4 .card-title {
            color: #d6830e;
        }
        
        .template5 {
            background-color: #ffffff;
            color: #333;
            /* background-image: url("data:image/svg+xml,%3Csvg width='52' height='26' viewBox='0 0 52 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffb400' fill-opacity='0.2'%3E%3Cpath d='M10 10c0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6h2c0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4 3.314 0 6 2.686 6 6 0 2.21 1.79 4 4 4v2c-3.314 0-6-2.686-6-6 0-2.21-1.79-4-4-4-3.314 0-6-2.686-6-6zm25.464-1.95l8.486 8.486-1.414 1.414-8.486-8.486 1.414-1.414z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
            background-image: url(/images/Template6-01.png);
            width: 100%;
            object-fit: contain;
            background-size: cover;
        }
        
        .template5 .card-title {
            color: #9f7c47;
        }
        
        .card-badge {
            position: absolute;
            top: 0;
            right: 0;
            padding: 10px;
            background-color: rgba(255, 215, 0, 0.7);
            border-radius: 0 0 0 10px;
        }
        
        .card-moon {
            text-align: center;
            font-size: 2.5rem;
            color: #FFD700;
            margin: 10px 0;
            margin-bottom: 100px;
        }
        
        .card-illustration {
            text-align: center;
            margin: 5px 0;
        }
        
        .card-illustration svg {
            width: 110px;
            height: 110px;
        }

        .card-illustration circle {
            fill: #af964c;
        }

        input[type="color"] {
        height: 30px; /* Adjust the height as needed */
        width: 50px; /* Optional: Adjust the width to match the height */
        border: none;
        padding: 0px;
        margin-left: 5px; /* Optional: Add some space between the label and the color input */
        border-radius: 5px; /* Optional: Add rounded corners */
        margin-top: 7px;
        cursor: pointer;
    }

    @media (max-width: 480px) {
        body {
            padding: 10px;
        }

        .container {
            width: 100%;
            max-width: 100%;
            border-radius: 10px;
            box-shadow: none;
        }

        .header h1 {
            font-size: 1.8rem;
        }

        .header p {
            font-size: 1rem;
        }

        .crescent {
            right: 30px;
            top: 15px;
            font-size: 2rem;
        }

        .content {
            flex-direction: column;
            padding: 10px;
        }

        .preview {
            width: 100%;
            padding: 10px;
        }

        .card-preview {
            max-width: 100%;
            padding: 15px;
        }

        .card-title {
            font-size: 1.5rem;
            text-align: center;
            margin-top: 0px;
            color: #4CAF50;
            font-weight: bold;
        }

        .card-message {
            font-size: 1rem;
        }

        .card-name {
            font-size: 1rem;
            padding-right: 10px;
        }

        .controls {
            width: 100%;
            padding: 10px;
        }

        .control-section h3 {
            font-size: 1.2rem;
        }

        .templates {
            grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            gap: 5px;
        }

        .template img {
            height: auto;
        }

        .form-group label {
            font-size: 0.9rem;
        }

        .form-group textarea, .form-group input {
            font-size: 0.9rem;
            padding: 8px;
        }

        .buttons {
            flex-direction: row;
            gap: 10px;
        }

        .btn {
            font-size: 0.8rem;
            padding: 10px;
        }

        .social-share-buttons {
            flex-direction: column;
            gap: 5px;
        }

        .footer {
            font-size: 0.8rem;
        }

  
          .user-image-container {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FFD700;

}

        .user-image-container img {
            width: 100%;
             height: 100%; 
             object-fit: cover;

 
        }
        input[type="color"] {
        height: 30px; /* Adjust the height as needed */
        width: 50px; /* Optional: Adjust the width to match the height */
        border: none;
        padding: 0px;
        margin-left: 5px; /* Optional: Add some space between the label and the color input */
        border-radius: 5px; /* Optional: Add rounded corners */
        margin-top: 7px;
        cursor: pointer;
    }
    input[type="text"]{
      font-weight: bold;
    }
    }