/* বিকল্প ১: গ্ল্যামারাস ডার্ক থিম */
.contact {
  
    background-size: cover;
    font-family: 'Noto Sans Bengali', sans-serif, 'Roboto', sans-serif;
    padding: 50px 15px;
    position: relative;
    background-image:  url('../images/article.jpg');
    
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 25px 25px;
    z-index: 1;
}

.contact-card {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: auto;
    background:linear-gradient(rgba(57, 109, 160, 0.7), rgba(59, 101, 142, 0.7)); /* গাঢ় গ্রে ব্যাকগ্রাউন্ড */
    border-radius: 25px;
    padding: 50px 35px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.5);
}

.contact-card h2 {
    text-align: center;
    font-weight: 700;
    margin-bottom: 35px;
    font-size: 32px;
    color: white;
    letter-spacing: 1px;
  
    
}

.input-wrapper {
    position: relative;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(45, 45, 45, 0.8); /* গাঢ় ইনপুট ফিল্ড */
    border-radius: 15px;
    padding: 10px 15px;
    box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.input-wrapper:focus-within {
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6), inset 0 3px 6px rgba(0, 0, 0, 0.3);
    transform: scale(1.02);
}

.input-wrapper .input-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 12px;
    background: rgba(60, 60, 60, 0.8);
    color: #FFD700;
    font-size: 20px;
}

.form-control {
    flex-grow: 1;
    border: none;
    background: transparent;
    height: 50px;
    padding: 10px 15px;
    color: #f0f0f0; /* হালকা টেক্সট কালার */
    transition: transform 0.3s ease;
}

.form-control:focus {
    outline: none;
    box-shadow: none;
}

textarea.form-control {
    height: 150px;
    resize: none;
    padding: 15px;
}

.textarea-wrapper {
    height: 160px;
    align-items: flex-start;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    background: linear-gradient(90deg, #DAA520, #FFD700);
    color: #000;
    font-size: 18px;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
    background: linear-gradient(90deg, #b8860b, #d4af37);
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.alert {
    margin-bottom: 20px;
    border-radius: 12px;
    font-size: 16px;
    text-align: center;
    color: #FFD700;
}

@media (max-width: 768px) {
    .contact-card {
        padding: 35px 25px;
    }
}