/* Laravel Default + Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800&display=swap');

* {
    font-family: 'Cairo', sans-serif;
}

body {
    text-align: right;
}

/* RTL Adjustments */
[dir="rtl"] {
    text-align: right;
}

/* Form Styles */
.form-control:focus {
    border-color: #1f4c8c;
    box-shadow: 0 0 0 0.2rem rgba(31, 76, 140, 0.25);
}

.btn-primary {
    background-color: #1f4c8c;
    border-color: #1f4c8c;
}

.btn-primary:hover {
    background-color: #0b1f3f;
    border-color: #0b1f3f;
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding-right: 2rem;
}

.timeline::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

/* Animation */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

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

/* Services Page Styles */
.services-hero {
    position: relative;
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #1e3f73 0%, #2f67ad 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
}

.services-grid {
    padding: 60px 0;
    background: #f4f7fb;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 44px;
    height: 44px;
    background: rgba(242, 140, 40, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: #f28c28;
    font-size: 1rem;
}

.service-card h3 {
    color: #1a1a2e;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
}

.service-card p {
    color: #6b7280;
    font-size: 0.78rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 0;
}

.cta-section {
    background: linear-gradient(135deg, #0b1f3f 0%, #1f4c8c 100%);
    padding: 60px 0;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: #f28c28;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: 1.5rem;
}

.cta-button:hover {
    background: #e07b1a;
    transform: translateY(-2px);
    color: white;
}
