/* Web Dev Hero */
.webdev-hero {
    background: var(--dark-bg);
    color: white;
    padding: 6rem 2rem;
    margin-top: 30px;
}

.webdev-hero .container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
}

.webdev-hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.webdev-hero h1 span {
    color: var(--primary-color);
}

.webdev-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.webdev-hero .visual img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Updated Services Grid */
.webdev-services {
    padding: 6rem 2rem;
    background: var(--light-bg);
}

.webdev-process h2 {
    font-size: 2.5rem;
    /* color: #e63535; */
    line-height: 0.9;
    margin-bottom: 1.5rem;
}

.webdev-process p{
    margin-bottom: 30px;
}


.webdev-services .section-header h2 {
    font-size: 2.8rem;
    text-align: center;
}

.webdev-services .section-header h2 span {
    color: var(--primary-color);
}

.webdev-services .section-header p {
    text-align: center;
    max-width: 700px;
    margin: 1rem auto 3rem;
    color: #666;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Forces 4 columns */
    gap: 1.5rem;
    max-width: 1400px; /* Increased from 1200px */
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--primary-color);
    min-height: 350px; /* Added for consistent height */
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 60, 60, 0.1);
}

.service-card .icon {
    width: 60px; /* Slightly smaller */
    height: 60px;
    background: rgba(255, 60, 60, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card .icon i {
    font-size: 1.5rem; /* Slightly smaller */
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 1.3rem; /* Slightly smaller */
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1; /* Makes cards equal height */
}

.learn-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: auto; /* Pushes to bottom */
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
        max-width: 800px;
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 column for mobile */
        max-width: 500px;
        padding: 0 1rem;
    }
    
    .service-card {
        min-height: auto; /* Remove fixed height on mobile */
    }
}
/* Process Section */
.webdev-process {
    padding: 3rem 2rem;
    background: white;
    text-align: center;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    position: relative;
}

.step .number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}




/* Animated Process Section */
.webdev-process {
    padding: 6rem 2rem;
    background: white;
    text-align: center;
    overflow: hidden; /* For floating animations */
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
    position: relative;
    opacity: 0; /* Start invisible */
    transform: translateY(30px); /* Start slightly below */
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Animation when scrolled into view */
.step.animate {
    opacity: 1;
    transform: translateY(0);
}

.step .number {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

/* Pulse animation for numbers */
.step:hover .number {
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 10px rgba(255, 60, 60, 0.2);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 60, 60, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 60, 60, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 60, 60, 0);
    }
}

/* Connecting lines between steps */
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25%;
    right: -2rem;
    width: 2rem;
    height: 2px;
    background: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.step:hover:not(:last-child)::after {
    opacity: 1;
    transform: scaleX(1.5);
}

/* Floating animation for entire step */
.step:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .step {
        min-width: 100%;
    }
    
    .step:not(:last-child)::after {
        display: none; /* Hide connecting lines on mobile */
    }
}






/* CTA Section */
.webdev-cta {
    padding: 6rem 2rem;
    background: var(--dark-bg);
    color: white;
    text-align: center;
}

.webdev-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.webdev-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .webdev-hero .container {
        flex-direction: column;
        text-align: center;
    }
    
    .webdev-hero h1 {
        font-size: 2.5rem;
    }
    
    .process-steps {
        flex-direction: column;
    }
}



/* Pricing Section */
.pricing-section {
    padding: 3rem 6rem;
    background-color: var(--light-bg);
         /* background-color: #f5f1f1; */

    
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.section-subtitle {
    text-align: center;
    color: #666 !important;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pricing-card {
    
    background: var(--bg-color);
    border-radius: 10px;
    padding: 2.5rem;
    width: 300px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-card.popular {
    border: 2px solid var(--primary-color);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    color: #666;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
}

.features li {
    margin-bottom: 0.8rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.features i {
    color: var(--primary-color);
}

.cta-button {
    display: block;
    text-align: center;
    padding: 12px;
    background: white;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.7s ease;
}

.cta-button:hover {
    background: var(--primary-color);
    color: white;
}

.cta-button.primary {
    background: var(--primary-color);
    color: white;
}

.cta-button.primary:hover {
    background: #e63535;
}

/* Responsive */
@media (max-width: 768px) {
    .pricing-section {
        padding: 3rem 2rem;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
}




        /* Clients Section */
        .clients-section {
            padding: 5rem 6rem;
            background-color: var(--light-bg);
            text-align: center;
        }

        .section-header {
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .section-subtitle span{
            display: block;
            font-size: 1rem;
            letter-spacing: 3px;
            color: var(--primary-color);
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        .section-title {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--text-color);
        }

        .section-description {
            color: #666;
            line-height: 1.7;
            font-size: 1.1rem;
        }

        .client-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .client-logo {
            height: 60px;
            filter: grayscale(100%) contrast(40%);
            opacity: 0.7;
            transition: all 0.3s ease;
            object-fit: contain;
        }

        .client-logo:hover {
            filter: grayscale(0) contrast(100%);
            opacity: 1;
            transform: scale(1.1);
        }
