/* Dedicated Developers Hero Section */
.dedicated-hero {
    height: 60vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #827f7f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.dedicated-hero h1 {
    font-size: 4rem;
    margin: 0;
    animation: fadeInUp 1s ease-out;
}

/* Services Section */
.services {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.services h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.service-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.service-item h3 {
    margin-bottom: 15px;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 100px 0;
    background-color: white;
}

.why-choose-us h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.feature-item {
    padding: 30px;
    border-radius: 10px;
    background: #f8f9fa;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item h3 {
    color: #333;
    margin-bottom: 15px;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #1a1a1a 0%, #827f7f 100%);
    padding: 80px 0;
    color: white;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Expert Team Section */
.expert-team {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.expert-team h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
}

.expert-team .content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.expert-team p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #666;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.services, .why-choose-us, .expert-team {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* 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;
    }

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

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

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

    .stat-item h3 {
        font-size: 2.5rem;
    }

    .stat-item p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .dedicated-hero h1 {
        font-size: 2.5rem;
    }

    .service-item, .feature-item {
        padding: 20px;
    }

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