/* Projects Hero Section */
.projects-hero {
    background-color: #f8f9fa;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    color: #1B365D;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.title-underline {
    width: 80px;
    height: 4px;
    background-color: #C9A55C;
    margin: 0 auto 2rem;
}

.hero-content h2 {
    color: #1B365D;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: #4A4A4A;
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 700px;
}

/* Decorative Circles */
.hero-circles {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(27, 54, 93, 0.05);
}

.circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: -50px;
}

.circle-2 {
    width: 150px;
    height: 150px;
    top: 20%;
    right: 15%;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    right: 25%;
}

.circle-4 {
    width: 180px;
    height: 180px;
    bottom: -50px;
    right: 10%;
}

.circle-5 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 5%;
}

/* RTL Support */
[dir="rtl"] .hero-circles {
    right: auto;
    left: 0;
}

[dir="rtl"] .circle-1 {
    right: auto;
    left: -50px;
}

[dir="rtl"] .circle-2 {
    right: auto;
    left: 15%;
}

[dir="rtl"] .circle-3 {
    right: auto;
    left: 25%;
}

[dir="rtl"] .circle-4 {
    right: auto;
    left: 10%;
}

[dir="rtl"] .circle-5 {
    right: auto;
    left: 5%;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .projects-hero {
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .projects-hero {
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content h2 {
        font-size: 1.4rem;
    }

    .circle {
        opacity: 0.5;
    }
}

/* Projects Showcase Section */
.projects-showcase {
    padding: 80px 0;
    background-color: white;
}

/* Filter Buttons */
.project-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid #1B365D;
    border-radius: 25px;
    background: transparent;
    color: #1B365D;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #1B365D;
    color: white;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.project-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(27, 54, 93, 0.1);
    transition: all 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(27, 54, 93, 0.15);
}

.project-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 25px;
}

.project-category {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(27, 54, 93, 0.1);
    color: #1B365D;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.project-info h3 {
    color: #1B365D;
    font-size: 1.4rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.project-info p {
    color: #4A4A4A;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.view-details {
    display: inline-flex;
    align-items: center;
    color: #1B365D;
    font-weight: 600;
    text-decoration: none;
    margin-top: 15px;
    transition: color 0.3s ease;
}

.view-details:hover {
    color: #C9A55C;
}

.view-details i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.view-details:hover i {
    transform: translateX(5px);
}

.coming-soon {
    display: inline-flex;
    align-items: center;
    color: #6c757d;
    font-weight: 600;
    margin-top: 15px;
    padding: 6px 12px;
    background-color: #f8f9fa;
    border-radius: 20px;
    font-size: 0.9rem;
}

.coming-soon i {
    margin-left: 8px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.6;
    }
}

/* RTL Support */
[dir="rtl"] .view-details {
    flex-direction: row-reverse;
}

[dir="rtl"] .view-details:hover i {
    transform: translateX(-3px);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .projects-showcase {
        padding: 60px 0;
    }

    .project-filters {
        gap: 10px;
        margin-bottom: 30px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-image {
        height: 200px;
    }

    .project-info {
        padding: 20px;
    }

    .project-info h3 {
        font-size: 1.2rem;
    }
}

/* Project Process Section */
.project-process {
    padding: 100px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.project-process h2 {
    color: #1B365D;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-description {
    max-width: 700px;
    margin: 0 auto 4rem;
    color: #4A4A4A;
    font-size: 1.2rem;
    line-height: 1.6;
}

.process-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(27, 54, 93, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(27, 54, 93, 0.15);
}

.process-number {
    width: 48px;
    height: 48px;
    background-color: #1B365D;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 auto 1.5rem;
}

.process-card h3 {
    color: #1B365D;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.process-card p {
    color: #4A4A4A;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Process Cards Connection Line */
.process-cards::before {
    content: '';
    position: absolute;
    top: 24px; /* Half of the number circle height */
    left: 15%;
    right: 15%;
    height: 2px;
    background-color: rgba(27, 54, 93, 0.1);
    z-index: 0;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .process-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .process-cards::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .project-process {
        padding: 60px 0;
    }

    .project-process h2 {
        font-size: 2rem;
    }

    .process-description {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 20px;
    }

    .process-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }

    .process-card {
        padding: 2rem 1.5rem;
    }

    .process-number {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .process-card h3 {
        font-size: 1.3rem;
    }
}

/* RTL Support */
[dir="rtl"] .process-cards::before {
    left: 15%;
    right: 15%;
}

/* Trusted By Section */
.trusted-by {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.trusted-by h2 {
    color: #1B365D;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.trusted-description {
    color: #4A4A4A;
    font-size: 1.2rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 3rem;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    align-items: center;
    justify-items: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.client-logo {
    width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* RTL Support for Trusted By Section */
[dir="rtl"] .trusted-by {
    direction: rtl;
}

/* Responsive Styles for Trusted By Section */
@media (max-width: 992px) {
    .trusted-by h2 {
        font-size: 2rem;
    }

    .trusted-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }

    .clients-grid {
        gap: 30px;
    }

    .client-logo {
        width: 160px;
        height: 100px;
    }
}

@media (max-width: 768px) {
    .trusted-by {
        padding: 60px 0;
    }

    .trusted-by h2 {
        font-size: 1.8rem;
    }

    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }

    .client-logo {
        width: 140px;
        height: 90px;
        padding: 15px;
    }
}

/* Call to Action Section */
.cta-section {
    background-color: #1B365D;
    padding: 100px 0;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.cta-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background-color: #C9A55C;
    border: 2px solid #C9A55C;
    color: white;
}

.cta-buttons .btn-primary:hover {
    background-color: #b18d45;
    border-color: #b18d45;
}

.cta-buttons .btn-outline {
    border: 2px solid white;
    color: white;
    background-color: transparent;
}

.cta-buttons .btn-outline:hover {
    background-color: white;
    color: #1B365D;
}

/* RTL Support for CTA Section */
[dir="rtl"] .cta-buttons {
    flex-direction: row-reverse;
}

/* Responsive Styles for CTA Section */
@media (max-width: 992px) {
    .cta-section {
        padding: 80px 0;
    }

    .cta-section h2 {
        font-size: 2.4rem;
        padding: 0 20px;
    }

    .cta-section p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    [dir="rtl"] .cta-buttons {
        flex-direction: column;
    }
} 