/* Development Process Section */
.process {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.process-steps {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    border-radius: 50%;
    border: 2px solid var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.process-steps .step {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--light-bg);
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
    padding: 1rem;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.process-steps .step:hover {
    transform: scale(1.1);
}

.process-steps .step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Position each step around the circle */
.process-steps .step:nth-child(1) {
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.process-steps .step:nth-child(2) {
    top: 35%;
    left: 85%;
    transform: translate(-50%, -50%);
}

.process-steps .step:nth-child(3) {
    top: 70%;
    left: 85%;
    transform: translate(-50%, -50%);
}

.process-steps .step:nth-child(4) {
    top: 90%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.process-steps .step:nth-child(5) {
    top: 70%;
    left: 15%;
    transform: translate(-50%, -50%);
}

.process-steps .step:nth-child(6) {
    top: 35%;
    left: 15%;
    transform: translate(-50%, -50%);
}

/* Add arrows between steps */
.process-steps::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    border: 2px dashed var(--secondary-color);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Payment Terms Section */
.payment {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

.payment-terms {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.payment-terms .term {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    flex: 1 1 150px;
    max-width: 180px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.payment-terms .term:hover {
    transform: translateY(-10px);
}

.payment-terms .term h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.payment-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: #666;
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background-color: var(--white);
}

.pricing-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.price-card {
    background: var(--light-bg);
    border-radius: 10px;
    padding: 2rem;
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.price-card.featured {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.price-card:hover {
    transform: translateY(-10px);
}

.price-card h3 {
    margin-bottom: 1rem;
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.company-name {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.address {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
}

/* Portfolio Section */
.portfolio {
    padding: 4rem 0;
    background-color: #f9f9f9;
}

.portfolio h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2c3e50;
}

/* The Problems Section */
.problems {
    padding: 6rem 0;
    background-color: #fff;
}

.problems h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.problems-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.problem-card {
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    flex: 1 1 300px;
    max-width: 320px;
    text-align: center;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-10px);
}

.problem-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.problem-card h3 {
    margin-bottom: 1rem;
    color: #333;
}

.problem-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

.portfolio-logos.grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    justify-items: center;
    align-items: center;
}

.portfolio-logos.grid-layout img {
    height: 150px;
    width: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.portfolio-logos.grid-layout img:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
