/* General Page Styling */
.webdev-container {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Hero Section */
.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: clamp(50px, 8vw, 80px) clamp(20px, 6vw, 50px);
    background: linear-gradient(to right, #0f2027, #2c5364);
    color: #fff;
    gap: 50px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease forwards;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease forwards;
}

.cta-btn {
    background-color: #1cc88a;
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .cta-btn:hover {
        background-color: #17a673;
        transform: translateY(-3px);
    }

.hero-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 15px;
    animation: fadeInRight 1.5s ease forwards;
}

/* Services Section */
.services {
    text-align: center;
    padding: 80px 50px;
    background-color: #f9f9f9;
}

    .services h2 {
        font-size: 2.5rem;
        margin-bottom: 10px;
    }

    .services .subtitle {
        color: #666;
        margin-bottom: 50px;
    }

.service-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}


.card {
    background-color: #fff;
    flex: 1 1 300px;
    max-width: 380px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



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

    .card .icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }

/* Why Choose Us Section */
.why-choose {
    padding: 80px 50px;
    background: linear-gradient(to right, #f8f9fa, #e9ecef);
    text-align: center;
}

.benefits {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
}

.benefit {
    flex: 1 1 300px;
    max-width: 380px;
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .benefit:hover {
        transform: translateY(-7px);
    }

/* ===== Premium CTA Section ===== */
.cta-pro {
    position: relative;
    padding: 120px 40px;
    margin: 0px;
    overflow: hidden;
}

/* Animated Gradient Background */
.cta-background {
    position: absolute;
    inset: 0;
    background: radial-gradient( circle at 20% 20%, rgba(28, 200, 138, 0.35), transparent 60% ), radial-gradient( circle at 80% 80%, rgba(78, 115, 223, 0.35), transparent 60% ), linear-gradient(135deg, #0b1320, #111827);
    animation: gradientMove 10s ease infinite;
    z-index: 0;
}

/* Glass Card */
.cta-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 70px 60px;
    text-align: center;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 40px 120px rgba(0,0,0,0.4);
    z-index: 1;
}

/* Eyebrow Text */
.cta-eyebrow {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #1cc88a;
    font-weight: 600;
}

/* Headline */
.cta-content h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* Supporting Copy */
.cta-content p {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.75);
    margin-bottom: 45px;
}

/* CTA Buttons */
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary {
    padding: 16px 38px;
    background: linear-gradient(135deg, #1cc88a, #17a673);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(28, 200, 138, 0.4);
    transition: all 0.35s ease;
}

    .cta-primary:hover {
        transform: translateY(-4px) scale(1.03);
        box-shadow: 0 20px 50px rgba(28, 200, 138, 0.6);
    }

.cta-secondary {
    padding: 16px 38px;
    border-radius: 50px;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.35);
    transition: all 0.35s ease;
}

    .cta-secondary:hover {
        background: rgba(255,255,255,0.12);
        transform: translateY(-3px);
    }

/* Background Animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cta-content {
        padding: 50px 25px;
    }

        .cta-content h2 {
            font-size: 2.1rem;
        }
}


@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ================= RESPONSIVE SYSTEM ================= */

/* Large tablets */
@media (max-width: 1200px) {

    .hero {
        padding: 70px 40px;
        gap: 40px;
    }

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

    .hero-image img {
        max-width: 500px;
    }

    .services {
        padding: 70px 40px;
    }

    .why-choose {
        padding: 70px 40px;
    }
}

/* Tablets */
@media (max-width: 992px) {

    .hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 30px;
    }

    .hero-text p {
        margin: 0 auto 30px auto;
        max-width: 600px;
    }

    .hero-image img {
        max-width: 450px;
    }

    .cta-btn {
        display: inline-block;
    }
    
    .service-cards,
    .benefits {
        justify-content: center;
    }

    .card,
    .benefit {
        flex: 1 1 45%;
        max-width: 500px;
    }
}

/* Mobile */
@media (max-width: 576px) {

    .hero {
        padding: 50px 20px;
    }

    .hero-text h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    .hero-image img {
        max-width: 100%;
    }

    .services {
        padding: 60px 20px;
    }

        .services h2 {
            font-size: 2rem;
        }

    .service-cards {
        flex-direction: column;
        align-items: center;
    }

    .card {
        width: 100%;
        flex: none;
    }

    .why-choose {
        padding: 60px 20px;
    }

    .benefits {
        flex-direction: column;
        align-items: center;
    }

    .benefit {
        width: 100%;
        flex: none;
    }

    .cta-pro {
        padding: 80px 20px;
    }

    .cta-content {
        padding: 40px 25px;
    }

        .cta-content h2 {
            font-size: 1.9rem;
        }

        .cta-content p {
            font-size: 1rem;
        }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
}



/* Footer */

.footer-names {
    color: white;
}
.p,footer {
    font-size: 1rem;
    color: white;

}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 4rem;
}

.footer-brand img {
    height: 40px;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.6rem;
}

.footer-col a {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
}

.footer-col a:hover {
    color: #38bdf8;
}

.footer-cta {
    background: linear-gradient(135deg, #203a43, #2c5364);
    text-align: center;
    padding: 3rem 1rem;
}

.footer-cta h3 {
    color: lightgray;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.footer-social {
    margin-top: 1rem;
}

    .footer-social a {
        display: inline-flex;
        align-items: center;
        gap: 0.6rem;
        color: #cbd5f5;
        text-decoration: none;
        transition: 0.3s ease;
    }

        .footer-social a:hover {
            color: #0a66c2;
        }

    .footer-year {
        color: white;
        text-align: center;
        padding: 15px;
    }


.linkedin-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 0 auto;
    }
}
