* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* HERO SECTION */
.web-hero {
    position: relative;
    height: 100vh;
    background: url("./Assets/Web-Design-Services/Hero.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.web-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}

.web-hero-content {
    position: relative;
    text-align: center;
    width: 60%;
    background: rgba(0,0,0,0.55);
    padding: 40px 30px;
    border-radius: 10px;
}

.web-hero-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.web-hero-content p {
    font-size: 18px;
    color: #fff;
    margin-bottom: 25px;
}

.web-btn {
    padding: 12px 28px;
    background: #0052cc;
    color: #fff;
    font-size: 18px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.web-btn:hover {
    background: #4f82ce;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .web-hero-content {
        width: 90%;
        padding: 30px 20px;
    }

    .web-hero-content h1 {
        font-size: 28px;
    }

    .web-hero-content p {
        font-size: 16px;
    }
}

/* ================= CARD SECTION ================= */
.web-card-area {
    width: 100%;
    padding: 80px 40px;
    background: #f7f9fb;
}

.web-card-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.web-card {
    flex: 1;
    min-width: 320px;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.12);
}

.web-card h3 {
    font-size: 22px;
    color: #111;
    font-weight: 700;
    margin-bottom: 12px;
}

.web-card p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.web-card-btn {
    margin-top: 10px;
    padding: 12px 26px;
    background: #0052cc;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.web-card-btn:hover {
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .web-card-area {
        padding: 60px 20px;
    }

    .web-card-container {
        gap: 20px;
        justify-content: flex-start;
    }

    .web-card {
        padding: 25px;
        min-width: 100%;
    }
}

/* WHY CHOOSE US */
.web-why-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    gap: 50px;
}

.web-why-left {
    position: relative;
    flex: 1;
    max-width: 45%;
}

.web-image-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #e4f0ff;
    border-radius: 30% 70% 60% 40% / 40% 40% 60% 70%;
    z-index: 1;
    top: -20px;
    left: -20px;
}

.web-why-left img {
    position: relative;
    z-index: 2;
    width: 100%;
    border-radius: 20px;
}

.web-why-right {
    flex: 1;
    max-width: 50%;
}

.web-why-right h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #002147;
}

.web-why-right ul {
    list-style: none;
    padding: 0;
}

.web-why-right ul li {
    font-size: 18px;
    margin-bottom: 12px;
    color: #333;
}

@media (max-width: 768px) {
    .web-why-wrapper {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
    }

    .web-why-left,
    .web-why-right {
        max-width: 100%;
    }

    .web-why-right ul li {
        text-align: left;
        margin-left: 10px;
    }
}

/* WHAT WE OFFER */
.web-offer-section {
    display: flex;
    justify-content: space-between;
    padding: 80px 5%;
    gap: 50px;
    background: #E8F7FB;
}

.web-offer-left {
    width: 45%;
}

.web-offer-left h2 {
    font-size: 32px;
    font-weight: 700;
    color: #002147;
    margin-bottom: 20px;
}

.web-offer-left p {
    font-size: 18px;
    line-height: 26px;
    color: #333;
    margin-bottom: 40px;
}

.web-offer-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.web-bg-shape {
    position: absolute;
    width: 380px;
    height: 380px;
    background: #c3f0e9;
    border-radius: 50% 40% 60% 50%;
    top: 20px;
    left: 0;
    right: 25;
    margin: auto;
    z-index: 1;
    transition: 0.3s ease-in-out;
}

.web-offer-illustration img {
    width: 100%;
    max-width: 420px;
    z-index: 2;
}

.web-offer-right {
    width: 50%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 30px;
}

.web-offer-item img {
    width: 45px;
    margin-bottom: 10px;
}

.web-offer-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #003366;
}

.web-offer-item p {
    color: #444;
    line-height: 24px;
}

@media (max-width: 900px) {
    .web-offer-section {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .web-offer-left,
    .web-offer-right {
        width: 100%;
    }

    .web-offer-right {
        grid-template-columns: 1fr;
    }

    .web-bg-shape {
        width: 260px;
        height: 260px;
        top: 10px;
    }

    .web-offer-illustration {
        justify-content: flex-start;
    }

    .web-offer-illustration img {
        max-width: 280px;
    }
}

@media (max-width: 600px) {
    .web-bg-shape {
        width: 220px;
        height: 220px;
        top: 0;
    }

    .web-offer-illustration img {
        max-width: 240px;
    }
}
