﻿section {
    padding-top: 30px !important;
    padding-bottom: 50px !important;
}



/* What is web desigh Start */

.webdesign-service-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #e6f0f8 0%, #f4fbff 100%);
    z-index: 1;
    padding-top: 80px;
    padding-bottom: 80px;
}
.advanceweb-service-section {
    background: linear-gradient(135deg, #c9d9e8 0%, #e3e9f0 100%);
}

/* Gradient Mesh Overlay */
.webdesign-service-section .mesh-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, #e0f7ff, transparent 65%), radial-gradient(circle at 80% 70%, #fff0f4, transparent 65%);
    z-index: 0;
}

/* Blobs */
.webdesign-service-section::before,
.webdesign-service-section::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.webdesign-service-section::before {
    top: -160px;
    left: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(24,153,142,0.12), transparent 70%);
}

.webdesign-service-section::after {
    bottom: -160px;
    right: -160px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, rgba(24,199,178,0.12), transparent 70%);
}

/* Badge */
.service-badge {
    background: linear-gradient(90deg, #18998E, #14c7b2);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(24,153,142,0.2);
    transition: all 0.3s ease;
}

    .service-badge:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(24,153,142,0.3);
    }

/* Highlighted text */
.highlight-text {
    background: linear-gradient(90deg, #18998E, #14c7b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Title */
.service-title {
    font-weight: 700;
    line-height: 1.2;
    transition: all 0.3s ease;
}

    .service-title:hover {
        transform: translateY(-3px);
    }

/* Paragraphs */
.service-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

/* Benefits */
.benefit-item {
    font-size: 15px;
    font-weight: 500;
    color: #444;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

    .benefit-item:hover {
        transform: translateX(5px);
    }

/* Gradient icons for benefits */
.gradient-icon {
    background: linear-gradient(90deg, #18998E, #14c7b2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
}

/* CTA Button */
.service-cta {
    background: linear-gradient(90deg, #18998E, #14c7b2);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

    .service-cta:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(24,199,178,0.4);
    }

/* Right Side Image */
.service-img {
    max-width: 400px;
    transition: all 0.4s ease;
}

    .service-img:hover {
        transform: scale(1.05) rotate(-1deg);
    }

/* Responsive Adjustments */
@media (max-width: 991px) {
    .webdesign-service-section .service-img {
        margin-top: 30px;
        max-width: 300px;
    }
}

/* What is web desigh End */