/* Solutions Development Page Specific Styles */

/* Hero Section */
.solutions-hero {
    height: 60vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #827f7f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.solutions-hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
}

/* Services Section */
.services {
    padding: 5rem 5%;
    background-color: #fff;
}

.services .container {
    max-width: 1200px;
    margin: 0 auto;
}

.services h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-item p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.why-choose-us .container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.feature-item p {
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Implementing Ideas Section */
.implementing-ideas {
    padding: 5rem 5%;
    background-color: #fff;
}

.implementing-ideas .container {
    max-width: 1200px;
    margin: 0 auto;
}

.implementing-ideas h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.implementing-ideas .content {
    display: grid;
    gap: 1.5rem;
}

.implementing-ideas .content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

/* Mobile Menu Styles */
.mobile-menu {
    display: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    transition: color 0.3s ease;
}

.mobile-menu:hover {
    color: var(--primary-color);
}

.mobile-menu.active {
    color: var(--primary-color);
}

.mobile-menu.active i {
    transform: rotate(90deg);
}

/* Responsive Design */
@media (max-width: 900px) {
    .mobile-menu {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 1rem;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .solutions-hero h1 {
        font-size: 2.5rem;
    }

    .services h2,
    .why-choose-us h2,
    .implementing-ideas h2 {
        font-size: 2rem;
    }

    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .service-item,
    .feature-item {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }
}

/* Animations */
.services,
.why-choose-us,
.implementing-ideas {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.services.visible,
.why-choose-us.visible,
.implementing-ideas.visible {
    opacity: 1;
    transform: translateY(0);
} 