/* Main Styles */
body {
    font-family: 'Tajawal', sans-serif;
    background-color: #f8f9fa;
    color: #0C2545;
}

.form-accent-border {
    border-top: 4px solid #007bff;
}

.btn-success, .btn-danger {
    font-size: 14px;
    padding: 5px 10px;
}

.table th, .table td {
    vertical-align: middle;
}

.badge {
    font-size: 14px;
    padding: 5px 10px;
}

/* Custom Colors */
.text-primary {
    color: #0C2545 !important;
}

.btn-primary {
    background-color: #0C2545;
    border-color: #0C2545;
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    background-color: #0a1d36;
    border-color: #0a1d36;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(12, 37, 69, 0.2);
}

/* Form Styling */
.form-control {
    padding: 0.75rem 1rem;
    border: 1px solid #ced4da;
    transition: all 0.3s ease;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(254, 212, 138, 0.4);
    border-color: #FED48A;
}

.card {
    border-radius: 0.75rem;
    border: none;
    box-shadow: 0 10px 30px rgba(12, 37, 69, 0.1);
    overflow: hidden;
}

.card-body {
    padding: 2rem;
}

/* Custom background and accent elements */
.bg-accent {
    background-color: #FED48A;
}

.text-accent {
    color: #FED48A !important;
}

.contact-icon {
    background-color: rgba(254, 212, 138, 0.2);
    color: #0C2545;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 10px;
}

.form-label {
    color: #0C2545;
    font-weight: 500;
}

/* Accent border for the form */
.form-accent-border {
    border-top: 4px solid #FED48A;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1; 
}
 
::-webkit-scrollbar-thumb {
    background: rgba(12, 37, 69, 0.6); 
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0C2545; 
}

/* Info section styling */
.contact-info-section {
    padding: 2rem;
    border-radius: 0.75rem;
    background-color: rgba(254, 212, 138, 0.1);
}

.contact-divider {
    height: 4px;
    width: 60px;
    background-color: #FED48A;
    margin: 1.5rem 0;
}

/* Form input icons */
.input-icon-group {
    position: relative;
}

.input-icon-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #0C2545;
}

.input-icon-group input {
    padding-left: 40px;
}
