/* How We Work Hero Section */
.how-we-work-hero {
    height: 60vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #827f7f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.explore-button {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.explore-button:hover {
    transform: translateY(-3px);
    background-color: var(--primary-color);
    transition: background-color 0.3s ease;
}

/* Introduction Section */
.introduction {
    padding: 5rem 0;
    background: #f8f9fa;
}

.introduction h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1a1a1a;
}

.introduction p {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
    color: #666;
}

/* Process Steps Section */
.process-steps {
    padding: 3rem 0;
    background: white;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.step-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 1rem;
}

.step-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.step-item p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-item ul {
    list-style: none;
    padding: 0;
}

.step-item ul li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.step-item ul li:before {
    content: "•";
    color: #007bff;
    position: absolute;
    left: 0;
}

/* Process Section */
.process-section {
    /* padding: 80px 0; */
    background: #fff;
}

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.process-item {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.process-icon i {
    font-size: 2rem;
    color: #fff;
}

.process-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.process-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Collaboration Section */

.collaboration{
    padding: 5rem;
    background: #f8f9fa;
}
.collaboration-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.collaboration-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    text-align: center;
}

.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.collaboration-item {
    text-align: center;
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.collaboration-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

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

.collaboration-icon i {
    font-size: 2rem;
    color: #fff;
}

.collaboration-item h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
}

.collaboration-item p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
}

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.explore-link {
    display: inline-block;
    padding: 15px 30px;
    background: var(--secondary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.explore-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

/* .explore-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
} */

.explore-link:hover::after {
    width: 300px;
    height: 300px;
}

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

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

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

.mobile-menu i {
    transition: transform 0.3s ease;
}

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

/* Body styles when menu is open */
body.menu-open {
    overflow: hidden;
}

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

    .nav-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1000;
        padding: 2rem 0;
        display: flex;
    }

    .nav-links.active {
        transform: translateX(0);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .nav-links a {
        font-size: 1.2rem;
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        transition: color 0.3s ease, background-color 0.3s ease;
    }

    .nav-links a:hover {
        color: var(--primary-color);
        background-color: rgba(0, 123, 255, 0.1);
    }

    .nav-links a.cta-button {
        margin: 1rem 0;
        background-color: var(--secondary-color);
        color: white;
        border-radius: 5px;
    }

    .nav-links a.cta-button:hover {
        background-color: var(--secondary-color);
        color: white;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 900px) {
    .process-grid,
    .collaboration-grid {
        grid-template-columns: 1fr;
    }

    .process-section h2,
    .collaboration-section h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }
}

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

    .explore-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .process-icon,
    .collaboration-icon {
        width: 60px;
        height: 60px;
    }

    .process-icon i,
    .collaboration-icon i {
        font-size: 1.5rem;
    }

    .process-item h3,
    .collaboration-item h3 {
        font-size: 1.2rem;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
} 