﻿/*===experience section===*/
.experience-section {
    background-color: #afa96b;
    padding: 70px 20px;
    text-align: center;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

    .experience-section h2 {
        font-size: 40px;
        margin-bottom: 20px;
        color: #0d6efd;
    }

    .experience-section p {
        font-size: 20px;
        max-width: 800px;
        margin: 0 auto 30px auto;
        line-height: 1.6;
    }

.experience-highlight {
    font-size: 60px;
    font-weight: 800;
    color: #212529;
    margin-bottom: 10px;
}

.project-tags {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.tag {
    background-color: #0d6efd;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
}

@media (max-width: 768px) {
    .experience-section h2 {
        font-size: 30px;
    }

    .experience-highlight {
        font-size: 44px;
    }
}
/*=======service-section=========== */
.ser-cont {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* Section Title */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Individual Service Card */
.service-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 10px;
        color: #0057ff;
    }

    .service-card p {
        font-size: 1rem;
        color: #555;
    }
/*========== Industries Section=========== */
.industries-staggered {
    background-color: #fff;
    padding: 80px 0;
}

.industry-row {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

    .industry-row.reverse {
        flex-direction: row-reverse;
    }

.industry-icon img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.industry-content {
    flex: 1;
}

    .industry-content h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: #333;
    }

    .industry-content p {
        font-size: 1rem;
        color: #555;
        max-width: 600px;
    }

@media (max-width: 768px) {
    .industry-row,
    .industry-row.reverse {
        flex-direction: column;
        text-align: center;
    }

    .industry-icon {
        margin-bottom: 20px;
    }
}
.industry-example {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #444;
    background-color: #f1f5f9;
    padding: 12px 16px;
    border-left: 4px solid #0057ff;
    border-radius: 6px;
}

    .industry-example em {
        font-style: italic;
        font-weight: 500;
        color: #222;
    }
.case-link {
    display: inline-block;
    margin-top: 10px;
    color: #0057ff;
    text-decoration: underline;
    font-weight: 500;
}

    .case-link:hover {
        color: #003bcc;
    }
/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0057ff, #3b82f6);
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #e0eaff;
}

.cta-button {
    background-color: #ffffff;
    color: #0057ff;
    padding: 15px 30px;
    font-size: 1rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s ease, color 0.3s ease;
}

    .cta-button:hover {
        background-color: #e5edff;
        color: #003bcc;
    }

.cta-secondary {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #d1e4ff;
}

.cta-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
}

    .cta-link:hover {
        text-decoration: none;
    }
