/* services.css */

/* Root Variables */
:root {
    --primary-color: #00a2e0;
    --secondary-color: #00a651;
    --accent-color: #00c2a8;
    --dark-color: #121212;
    --light-color: #ffffff;
    --gray-color: #f9f9f9;
    --text-color: #333333;
    --text-light: #777777;
    --border-radius: 8px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* Page Hero */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 162, 224, 0.9), rgba(0, 166, 81, 0.9));
    overflow: hidden;
    color: var(--light-color);
    padding-top: 80px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.svg') repeat;
    opacity: 0.1;
}

.page-hero .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--light-color);
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* General Section Styles */
.section {
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

/* Section Grid */
.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.section-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.section-content p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.check-list {
    list-style: none;
    margin-bottom: 30px;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.check-list li i {
    color: var(--primary-color);
    margin-right: 10px;
    margin-top: 5px;
}

/* Highlight Box */
.highlight-box {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
}

.highlight-box h3 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

/* Key Applications */
.application-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.application-item {
    text-align: center;
    padding: 20px;
}

.application-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.application-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Implementation Services */
.service-list {
    list-style: none;
}

.service-list li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.service-list li:last-child {
    border-bottom: none;
}

.service-list h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* MSP Model */
.msp-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.msp-item {
    display: flex;
    align-items: flex-start;
}

.msp-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
    flex-shrink: 0;
}

.msp-item h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

/* Additional Services Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Industries Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.industry-item i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.industry-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, rgba(12, 83, 111, 0.9), rgba(0, 166, 81, 0.9)), url(../images/hero-bg.jpg) no-repeat center center / cover;
    color: var(--light-color);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern.svg') repeat;
    opacity: 0.1;
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta p {
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
}

.btn-accent {
    background-color: var(--accent-color);
    color: var(--light-color);
}

.btn-accent:hover {
    background-color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--light-color);
    color: var(--light-color);
}

.btn-secondary:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    /* Page Hero */
    .page-hero {
        height: 40vh;
        min-height: 300px;
        padding-top: 60px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .page-hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Section Grid */
    .section-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-content h2 {
        font-size: 1.8rem;
    }

    .section-content p {
        font-size: 1rem;
    }

    /* Key Applications */
    .application-grid {
        grid-template-columns: 1fr;
    }

    .application-item {
        padding: 15px;
    }

    .application-item i {
        font-size: 1.8rem;
    }

    .application-item h4 {
        font-size: 1.1rem;
    }

    /* Implementation Services */
    .service-list h4 {
        font-size: 1.1rem;
    }

    .service-list p {
        font-size: 0.9rem;
    }

    /* MSP Model */
    .msp-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .msp-item h4 {
        font-size: 1.1rem;
    }

    .msp-item p {
        font-size: 0.9rem;
    }

    /* Additional Services */
    .grid {
        grid-template-columns: 1fr;
    }

    .card {
        padding: 20px;
    }

    .card-title {
        font-size: 1.3rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    /* Industries */
    .industry-grid {
        grid-template-columns: 1fr;
    }

    .industry-item i {
        font-size: 2.5rem;
    }

    .industry-item h3 {
        font-size: 1.2rem;
    }

    /* CTA Section */
    .cta {
        padding: 40px 0;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .cta p {
        font-size: 0.9rem;
        padding: 0 10px;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        margin: 0;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    /* Page Hero */
    .page-hero h1 {
        font-size: 1.8rem;
    }

    .page-hero p {
        font-size: 0.9rem;
    }

    /* Sections */
    .section {
        padding: 40px 0;
    }

    .section-title h2 {
        font-size: 1.5rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    /* Section Content */
    .section-content h2 {
        font-size: 1.5rem;
    }

    /* Highlight Box */
    .highlight-box {
        padding: 20px;
    }

    .highlight-box h3 {
        font-size: 1.3rem;
    }

    /* Buttons */
    .btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
}