/* Services Hero Section */
.services-hero-section {
    padding: 120px 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}

.services-title {
    font-size: 3rem;
    color: #1B365D;
    text-align: center;
    margin-bottom: 1.5rem;
    position: relative;
    font-weight: 700;
}

.services-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #C9A55C;
    margin: 1.5rem auto 0;
}

.services-description {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-description p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4A4A4A;
}

/* Background Circles */
.circle-bg {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(27, 54, 93, 0.05);
    z-index: 1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    right: 25%;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: -50px;
}

/* Container z-index */
.container {
    position: relative;
    z-index: 2;
}

/* RTL Support */
[dir="rtl"] .services-description {
    text-align: center;
}

[dir="rtl"] .circle-1 {
    right: auto;
    left: -50px;
}

[dir="rtl"] .circle-2 {
    right: auto;
    left: 25%;
}

[dir="rtl"] .circle-3 {
    left: auto;
    right: -50px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .services-hero-section {
        padding: 100px 0;
    }

    .services-title {
        font-size: 2.5rem;
    }

    .services-description p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .circle-1 {
        width: 200px;
        height: 200px;
        top: -50px;
    }

    .circle-2 {
        width: 150px;
        height: 150px;
    }

    .circle-3 {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .services-hero-section {
        padding: 80px 0;
    }

    .services-title {
        font-size: 2rem;
    }

    .services-description p {
        font-size: 1rem;
    }
}

/* Services Grid Section */
.services-grid-section {
    padding: 80px 0;
    background-color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(27, 54, 93, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: 380px;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(27, 54, 93, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background-color: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 32px;
    color: #1B365D;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background-color: #1B365D;
}

.service-card:hover .service-icon i {
    color: #fff;
}

.service-card h3 {
    color: #1B365D;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    color: #4A4A4A;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-card .learn-more {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    align-items: center;
    margin-top: auto;
    transition: all 0.3s ease;
    background-color: #1B365D;
    padding: 12px 30px;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}

.service-card .learn-more:hover {
    background-color: #C9A55C;
    color: #fff;
    transform: translateY(-2px);
}

/* RTL Support */
[dir="rtl"] .service-card .learn-more {
    flex-direction: row-reverse;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid-section {
        padding: 60px 0;
    }

    .service-card {
        min-height: auto;
        padding: 1.5rem;
    }
}

/* Service Process Section */
.service-process-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.process-title {
    font-size: 2.5rem;
    color: #1B365D;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 700;
}

.process-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #C9A55C;
    margin: 1.5rem auto 0;
}

.process-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: #4A4A4A;
    line-height: 1.6;
}

.process-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: rgba(27, 54, 93, 0.1);
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    align-items: center;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #1B365D;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    z-index: 2;
    position: relative;
}

.step-content {
    padding: 2rem;
}

.step-content h3 {
    color: #1B365D;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.step-content p {
    color: #4A4A4A;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.step-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.step-features li {
    color: #4A4A4A;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    padding-left: 1.75rem;
    position: relative;
    display: flex;
    align-items: center;
}

.step-features li::before {
    content: '';
    position: absolute;
    left: 0;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23C9A55C'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.left {
    text-align: right;
}

.right {
    text-align: left;
}

/* RTL Support */
[dir="rtl"] .process-timeline::before {
    left: auto;
    right: 50%;
    transform: translateX(50%);
}

[dir="rtl"] .step-features li {
    padding-left: 0;
    padding-right: 1.75rem;
}

[dir="rtl"] .step-features li::before {
    left: auto;
    right: 0;
}

[dir="rtl"] .left {
    text-align: left;
}

[dir="rtl"] .right {
    text-align: right;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .process-title {
        font-size: 2rem;
    }

    .process-description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .process-step {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .service-process-section {
        padding: 60px 0;
    }

    .process-timeline::before {
        left: 24px;
    }

    .process-step {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .step-content, .step-features {
        grid-column: 2;
        text-align: left;
        padding: 0;
    }

    .left, .right {
        text-align: left;
    }

    [dir="rtl"] .process-timeline::before {
        left: auto;
        right: 24px;
    }

    [dir="rtl"] .step-content, [dir="rtl"] .step-features {
        text-align: right;
    }

    [dir="rtl"] .left, [dir="rtl"] .right {
        text-align: right;
    }
}

/* Need Help Section */
.need-help-section {
    background-color: #1B365D;
    padding: 80px 0;
    color: white;
}

.need-help-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.need-help-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.need-help-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.need-help-content .cta-button {
    display: inline-block;
    background-color: #C9A55C;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.need-help-content .cta-button:hover {
    background-color: #d4b06c;
    transform: translateY(-2px);
}

/* Responsive Styles for Need Help Section */
@media (max-width: 768px) {
    .need-help-section {
        padding: 60px 0;
    }

    .need-help-content h2 {
        font-size: 2rem;
    }

    .need-help-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
} 