 .cprofiles .container {
            width: 100%; 
            position: relative;
            z-index: 1;
        }

        .cprofiles .form-card {
            background: white;
            border-radius: 28px;
            padding: 15px 25px;
            box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
            position: relative;
            overflow: hidden;margin: 50px;border: 1px soldi #ccc;
        }

        .cprofiles .form-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
            pointer-events: none;
        }

        .cprofiles .decorative-element {
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            opacity: 0.05;
            top: -100px;
            right: -100px;
            z-index: 0;
        }

        .cprofiles .form-content {
            position: relative;
            z-index: 1;
        }

        .cprofiles .form-header {
            text-align: center;
            margin-bottom: 5px;
        }

        .cprofiles .form-title {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 36px;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
            line-height: 1.2;
        }

        .cprofiles .form-subtitle {
            font-size: 17px;
            color: #64748b;
            line-height: 1.6;
            font-weight: 400;
        }

        .cprofiles .progress-container {
            margin-bottom: 48px;
        }

        .cprofiles .progress-bar {
            height: 1px;
  background: #ff741f;
            border-radius: 10px;
            overflow: hidden;
            margin-bottom: 28px;
            position: relative;
        }

        .cprofiles .progress-bar::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(255, 255, 255, 0.3) 50%, 
                transparent 100%);
            animation: shimmer 2s infinite;
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

         .cprofiles .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            border-radius: 10px;
            transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

         .cprofiles .progress-steps {
            display: flex;
            justify-content: space-between;
            gap: 16px;
        }

         .cprofiles .progress-step {
            flex: 1;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: #252626;
  transition: all 0.3s ease;
  position: relative;
  padding-top: 1px;
        }
 
           .cprofiles .progress-step::before {
  content: attr(data-number);
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #021460;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 0px solid;
} 

         .cprofiles .progress-step.active {
            color: #667eea;
        }

         .cprofiles .progress-step.active::before {
            background:#ff741f;
            color: white;
            box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
        }

         .cprofiles .progress-step.completed {
            color: #10b981;
        }

         .cprofiles .progress-step.completed::before {
            content: '✓';
            background: #10b981;
            color: white;
        }

         .cprofiles .form-step {
            display: none;
            animation: fadeSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

         .cprofiles .form-step.active {
            display: block;
        }

        @keyframes fadeSlideIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

         .cprofiles .form-group {
            margin-bottom: 28px;
        }

         .cprofiles label {
            display: block;
            font-size: 14px;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 10px;
            letter-spacing: -0.01em;
        }

         .cprofiles .required {
            color: #ef4444;
        }
 
           .cprofiles input, .cprofiles select, .cprofiles textarea {
  width: 100%;
  padding: 5px 18px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  border: 2px solid #e2e8f0; 
  border-radius: 14px;
  transition: all 0.3s ease;
  background: #fafbfc;
  color: #1e293b;
  line-height: 30px; 
        }

         .cprofiles input:hover,  .cprofiles select:hover,  .cprofiles textarea:hover {
            border-color: #cbd5e1;
            background: white;
        }

         .cprofiles input:focus,  .cprofiles select:focus,  .cprofiles textarea:focus {
            outline: none;
            border-color: #667eea;
            background: white;
            box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
        }

         .cprofiles input::placeholder,  .cprofiles textarea::placeholder {
            color: #94a3b8;
        }

         .cprofiles textarea {
            resize: vertical;
            min-height: 130px;
            line-height: 1.6;
        }

         .cprofiles .radio-group {
            display: grid;
            gap: 14px;
        }

         .cprofiles .radio-option {
            position: relative;
        }

         .cprofiles .radio-option input[type="radio"] {
            position: absolute;
            opacity: 0;
        }

         .cprofiles .radio-label {
            display: flex;
            align-items: center;
            padding: 18px 22px;
            border: 2px solid #e2e8f0;
            border-radius: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: 500;
            color: #475569;
            background: #fafbfc;
            position: relative;
        }

         .cprofiles .radio-label::before {
            content: '';
            width: 20px;
            height: 20px;
            border: 2px solid #cbd5e1;
            border-radius: 50%;
            margin-right: 14px;
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

         .cprofiles .radio-label:hover {
            border-color: #667eea;
            background: white;
            transform: translateX(4px);
        }

         .cprofiles .radio-option input[type="radio"]:checked + .radio-label {
            border-color: #667eea;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
            color: #667eea;
            font-weight: 600;
        }

         .cprofiles .radio-option input[type="radio"]:checked + .radio-label::before {
            border-color: #667eea;
            background: #667eea;
            box-shadow: inset 0 0 0 4px white;
        }

         .cprofiles .button-group {
            display: flex;
            gap: 14px;margin-top: 15px;
  margin-bottom: 20px;
        }

        .cprofiles  button {
            flex: 1;
            padding: 18px 36px;
            font-size: 16px;
            font-weight: 600;
            font-family: 'Inter', sans-serif;
            border: none;
            border-radius: 14px;
            cursor: pointer;
            transition: all 0.3s ease;
            letter-spacing: -0.01em;
        }

         .cprofiles .btn-secondary {
            background: #f1f5f9;
            color: #475569;
            border: 2px solid #e2e8f0;
        }

         .cprofiles .btn-secondary:hover {
            background: #e2e8f0;
            transform: translateY(-2px);
        }

         .cprofiles .btn-primary {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            box-shadow: 0 8px 24px rgba(102, 126, 234, 0.35);
            position: relative;
            overflow: hidden;
        }

         .cprofiles .btn-primary::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 ease;
        }

         .cprofiles .btn-primary:hover::before {
            left: 100%;
        }

         .cprofiles .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(102, 126, 234, 0.45);
        }

         .cprofiles .btn-primary:active {
            transform: translateY(-1px);
        }

         .cprofiles .success-message {
            display: none;
            text-align: center;
            animation: fadeSlideIn 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 20px 0;
        }

         .cprofiles .success-message.active {
            display: block;
        }

         .cprofiles .success-icon {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #10b981 0%, #059669 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 28px;
            animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 12px 32px rgba(16, 185, 129, 0.3);
            position: relative;
        }

         .cprofiles .success-icon::before {
            content: '';
            position: absolute;
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: rgba(16, 185, 129, 0.1);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.5;
            }
            50% {
                transform: scale(1.15);
                opacity: 0;
            }
        }

        @keyframes scaleIn {
            0% {
                transform: scale(0) rotate(-180deg);
                opacity: 0;
            }
            100% {
                transform: scale(1) rotate(0);
                opacity: 1;
            }
        }

         .cprofiles .success-icon::after {
            content: '✓';
            font-size: 56px;
            color: white;
            font-weight: bold;
            position: relative;
            z-index: 1;
        }

         .cprofiles .success-message h3 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 32px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 14px;
        }

         .cprofiles .success-message p {
            font-size: 17px;
            color: #64748b;
            line-height: 1.7;
        }

         .cprofiles .error-message {
            background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
            border: 2px solid #fecaca;
            color: #dc2626;
            padding: 14px 20px;
            border-radius: 12px;
            font-size: 14px;
            font-weight: 500;
            margin-bottom: 24px;
            display: none;
            animation: shake 0.4s ease;
        }

        @keyframes shake {
            0%, 100% { transform: translateX(0); }
            25% { transform: translateX(-8px); }
            75% { transform: translateX(8px); }
        }

         .cprofiles .error-message.active {
            display: block;
        }

        
 .cprofiles .cppic .upload-btn {
    width: 300px;
    height: 150px;
    border: 2px dashed #000;
    margin: 0 auto;
    padding: 24px;
    text-align: center;
    cursor: pointer;
}
 .cprofiles .cppic .cprofiles .upload-btn i {
    display: block;
    font-size: 100px;
    color: #000;
}
 .cprofiles .cppic .cprofiles .upload-btn span {
    font-weight: 600;
    margin-top: 11px;
    display: block;
}
 .cprofiles .cppic .cprofiles .images {
    width: 98%;
    margin: 20px 0;
    display: inline-block;
}
.cprofiles .cppic .images img {
    width: 33%;
    height: 250px;
    object-fit: cover;
    margin: 0;
    padding: 0;
    float: left;
    border: .5px solid #ddd;
    cursor: pointer;
    transition: .8s ease-in-out;
}
.cprofiles .cppic .images img:hover{opacity: .5;}

.cprofiles .cppic input[type="file"]{display: none;}
        @media (max-width: 640px) {
            .cprofiles body::before {
                height: 300px;
            }

            .cprofiles .form-card {
                padding: 40px 28px;
            }

            .cprofiles .form-title {
                font-size: 28px;
            }

            .cprofiles .form-subtitle {
                font-size: 15px;
            }

            .cprofiles .progress-steps {
                gap: 8px;
            }

           .cprofiles  .progress-step {
                font-size: 11px;
                padding-top: 28px;
            }

           .cprofiles  .progress-step::before {
                width: 28px;
                height: 28px;
                font-size: 12px;
            }

            .cprofiles .button-group {
                flex-direction: column-reverse;
            }

            .cprofiles button {
                width: 100%;
            }
        }



@media (min-width:320px) and (max-width:640px){
.cprofiles .form-card { 
  padding: 15px 15px; 
  margin: 50px 0px;
}
     .cprofiles .form-card {
    padding: 5px 6px;
  }
    .cprofiles .progress-step {
    font-size: 11px;
    padding-top: 2px;
  }
    .cprofiles label { 
  margin-bottom: 4px;
    }
    .cprofiles .form-group {
  margin-bottom: 12px;
}
}