/**
 * Theme Name:     Softronics
 * Author:         Softronics
 * Text Domain:	   softronics
 * Description:    A minimalistic theme for a single page UI
 * Theme URI:      https://softronicslabs.com/
 * Author URI:     https://softronicslabs.com/
 * Version:        1.0.0
 */

:root {
    --deep-blue: #1E40AF;
    --cyan: #22D3EE;
    --background: #020617;
    --slate: #94A3B8;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: white;
    scroll-behavior: smooth;
}

.card-bg {
    background: rgba(10, 15, 30, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.card-bg:hover {
    border-color: var(--cyan);
    transform: translateY(-5px);
}

.tab-content { display: none; }
.tab-content.active { display: block; animation: fadeIn 0.5s ease; }

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

/* WordPress Contact Form 7 Styling Overrides */
.wpcf7-form p { margin-bottom: 0 !important; }

/* Input & Select Styling */
.wpcf7-form-control.wpcf7-text,
.wpcf7-form-control.wpcf7-select {
    width: 100% !important;
    background-color: rgba(2, 6, 23, 0.5) !important;
    border: 1px solid #1e293b !important;
    border-radius: 0.75rem !important;
    padding: 0.5rem !important;
    font-size: 0.875rem !important;
    color: white !important;
    outline: none !important;
    transition: all 0.2s !important;
}

.wpcf7-form-control:focus {
    border-color: rgba(6, 182, 212, 0.5) !important;
}

/* Label Styling */
.wpcf7-form label {
    display: block;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 0.5rem;
    margin-left: 0.25rem;
}

/* Submit Button Styling */
.wpcf7-submit {
    width: 100% !important;
    background-color: #1d4ed8 !important;
    color: white !important;
    font-weight: 800 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.2em !important;
    /* padding: 0.75rem !important; */
    border-radius: 0.75rem !important;
    cursor: pointer !important;
    transition: all 0.3s !important;
    border: none !important;
    box-shadow: 0 20px 25px -5px rgba(30, 58, 138, 0.4) !important;
    margin-top: 1.5rem !important;
}

.wpcf7-submit:hover {
    background-color: #2563eb !important;
    transform: translateY(-2px);
}

/* Response Messages */
.wpcf7-response-output {
    border: none !important;
    color: #94a3b8 !important;
    font-size: 0.75rem !important;
    text-align: center !important;
    margin-top: 1rem !important;
    padding: 0 !important;
}