﻿/* Services Grid Section */
.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}
.section-text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}
.text-center {
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.service-card {
    background: #FFFFFF26;
    padding: 40px 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .service-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(8, 106, 216, 0.15);
        border-color: #43BAFF;
    }

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #43BAFF 0%, #086AD8 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 32px;
}

.service-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card p {
    line-height: 1.6;
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.process-step {
    position: relative;
    padding: 30px;
    background: #142125;
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .process-step:hover {
        background: #FFFFFF26;
        box-shadow: 0 10px 30px rgba(8, 106, 216, 0.1);
        border: 1px solid #43BAFF;
    }

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #43BAFF 0%, #086AD8 100%);
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h4 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 2rem;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
    z-index: 2;
}

.why-card {
    padding: 30px;
    background: #FFFFFF26;
    border-radius: 12px;
    border: 1px solid #FFFFFF26;
    transition: all 0.3s ease;
}

    .why-card:hover {
        background: #FFFFFF33;
        transform: translateY(-5px);
    }

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 15px;
    color: #FFFFFFCC;
    line-height: 1.6;
}

/* Technologies Section */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.tech-item {
    background: #FFFFFF26;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

    .tech-item:hover {
        background: #142125;
        border-color: #43BAFF;
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(8, 106, 216, 0.1);
    }

    .tech-item .icon {
        font-size: 48px;
        margin-bottom: 25px;
    }

    .tech-item span {
        font-size: 1.5rem;
        font-weight: 700;
    }

/* Tablets */
@media (max-width: 992px) {

    .section-title {
        font-size: 34px;
    }

    .services-grid-section,
    .process-section,
    .why-choose-section,
    .tech-section {
        padding: 80px 20px;
    }

    .services-grid,
    .process-steps,
    .why-choose-grid {
        gap: 30px;
    }

    .tech-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {

    .section-title {
        font-size: 30px;
    }

    .section-text {
        font-size: 15px;
    }

    .services-grid,
    .process-steps,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .process-step,
    .why-card {
        padding: 30px 25px;
    }

    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .why-icon {
        font-size: 40px;
    }
}

/* Mobile Phones */
@media (max-width: 480px) {

    .section-title {
        font-size: 26px;
    }

    .services-grid-section,
    .process-section,
    .why-choose-section,
    .tech-section {
        padding: 60px 15px;
    }

    .service-card h3,
    .why-card h4 {
        font-size: 18px;
    }

    .process-step h4 {
        font-size: 16px;
    }

    .service-card p,
    .process-step p,
    .why-card p {
        font-size: 14px;
    }

    .tech-grid {
        grid-template-columns: 1fr;
    }

    .tech-item {
        padding: 25px 15px;
    }
}
