/* =========================================================
   SHUVAM INFOTECH
   WEBSITE DESIGNING PAGE CSS
========================================================= */

.wd-hero {
    position: relative;
    overflow: hidden;

    padding: 85px 0;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 193, 7, .12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #f8fafc,
            #ffffff
        );
}


.wd-hero-grid {
    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 60px;

    align-items: center;
}


.wd-hero-content {
    max-width: 680px;
}


.wd-badge,
.wd-section-label {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #793a85;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: .3px;
}


.wd-badge {
    padding: 9px 14px;

    background:
        rgba(121, 58, 133, .08);

    border:
        1px solid
        rgba(121, 58, 133, .12);

    border-radius: 30px;
}


.wd-hero h1 {
    margin: 20px 0;

    color: #343a40;

    font-size: clamp(
        38px,
        5vw,
        60px
    );

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;
}


.wd-hero h1 span {
    display: block;

    color: #793a85;
}


.wd-hero-content > p {
    max-width: 620px;

    margin-bottom: 30px;

    color: #64748b;

    font-size: 16px;

    line-height: 1.8;
}


.wd-hero-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}


.wd-btn {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    gap: 9px;

    padding: 13px 20px;

    border-radius: 9px;

    text-decoration: none;

    font-size: 13px;

    font-weight: 800;

    transition: .3s ease;
}


.wd-btn-primary {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #793a85,
            #5a2c6a
        );

    box-shadow:
        0 8px 20px
        rgba(121, 58, 133, .18);
}


.wd-btn-primary:hover {
    color: #ffffff;

    transform: translateY(-2px);

    box-shadow:
        0 12px 28px
        rgba(121, 58, 133, .25);
}


.wd-btn-outline {
    color: #793a85;

    border:
        1px solid
        rgba(121, 58, 133, .25);

    background: #ffffff;
}


.wd-btn-outline:hover {
    color: #ffffff;

    background: #793a85;

    transform: translateY(-2px);
}


.wd-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 25px;
}


.wd-trust div {
    display: flex;

    align-items: center;

    gap: 6px;

    color: #64748b;

    font-size: 11px;

    font-weight: 700;
}


.wd-trust i {
    color: #16a34a;
}


.wd-hero-image {
    display: flex;

    justify-content: center;
}


.wd-image-card {
    position: relative;

    width: 100%;

    overflow: hidden;

    padding: 10px;

    background: #ffffff;

    border:
        1px solid
        #e8e8ef;

    border-radius: 22px;

    box-shadow:
        0 25px 60px
        rgba(0, 0, 0, .10);

    transform: rotate(1deg);
}


.wd-image-card img {
    width: 100%;

    display: block;

    border-radius: 15px;
}


/* =========================================================
   COMMON SECTION
========================================================= */

.wd-section {
    padding: 90px 0;

    background: #ffffff;
}


.wd-two-column {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 60px;

    align-items: center;
}


.wd-section-title {
    margin: 12px 0 20px;

    color: #343a40;

    font-size: clamp(
        28px,
        4vw,
        40px
    );

    line-height: 1.2;

    font-weight: 800;
}


.wd-text {
    margin-bottom: 15px;

    color: #64748b;

    font-size: 14px;

    line-height: 1.8;
}


.wd-highlight-card {
    padding: 38px;

    background:
        linear-gradient(
            145deg,
            #ffffff,
            #faf7fb
        );

    border:
        1px solid
        rgba(121, 58, 133, .12);

    border-radius: 20px;

    box-shadow:
        0 15px 40px
        rgba(0, 0, 0, .06);
}


.wd-highlight-icon {
    width: 58px;
    height: 58px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 20px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #793a85,
            #5a2c6a
        );

    border-radius: 15px;

    font-size: 21px;
}


.wd-highlight-card h3 {
    margin-bottom: 10px;

    color: #343a40;

    font-size: 22px;

    font-weight: 800;
}


.wd-highlight-card > p {
    margin-bottom: 22px;

    color: #64748b;

    font-size: 13px;

    line-height: 1.7;
}


.wd-check-list {
    display: grid;

    gap: 13px;
}


.wd-check-list div {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #475569;

    font-size: 13px;

    font-weight: 600;
}


.wd-check-list i {
    color: #16a34a;
}


/* =========================================================
   CONTACT
========================================================= */

.wd-contact-section {
    padding: 90px 0;

    background: #f8fafc;
}


.wd-contact-grid {
    display: grid;

    grid-template-columns: .85fr 1.15fr;

    gap: 50px;

    align-items: start;
}


.wd-contact-info {
    padding-top: 30px;
}


.wd-contact-info .wd-section-title {
    font-size: 38px;
}


.wd-contact-points {
    display: grid;

    gap: 15px;

    margin-top: 28px;
}


.wd-contact-points div {
    display: flex;

    align-items: center;

    gap: 12px;

    color: #475569;

    font-size: 13px;

    font-weight: 600;
}


.wd-contact-points i {
    width: 30px;
    height: 30px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #793a85;

    background:
        rgba(121, 58, 133, .08);

    border-radius: 50%;

    font-size: 11px;
}


.wd-form-card {
    overflow: hidden;

    background: #ffffff;

    border:
        1px solid
        #e7e9ee;

    border-radius: 20px;

    box-shadow:
        0 18px 45px
        rgba(0, 0, 0, .07);
}


.wd-form-header {
    display: flex;

    align-items: center;

    gap: 15px;

    padding: 25px 28px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #793a85,
            #5a2c6a
        );
}


.wd-form-icon {
    width: 48px;
    height: 48px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        rgba(255,255,255,.13);

    border-radius: 12px;
}


.wd-form-header h3 {
    margin: 0 0 3px;

    color: #ffffff;

    font-size: 19px;
}


.wd-form-header p {
    margin: 0;

    color:
        rgba(255,255,255,.72);

    font-size: 11px;
}


.wd-form-card form {
    padding: 28px;
}


.wd-form-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 18px;
}


.wd-full {
    grid-column: 1 / -1;
}


.wd-field label {
    display: block;

    margin-bottom: 7px;

    color: #343a40;

    font-size: 12px;

    font-weight: 800;
}


.wd-field label span {
    color: #dc3545;
}


.wd-field input,
.wd-field textarea {
    width: 100%;

    box-sizing: border-box;

    padding: 12px 14px;

    color: #334155;

    background: #f8fafc;

    border:
        1px solid
        #e2e8f0;

    border-radius: 8px;

    outline: none;

    font-family: inherit;

    font-size: 13px;

    transition: .25s ease;
}


.wd-field input:focus,
.wd-field textarea:focus {
    background: #ffffff;

    border-color: #793a85;

    box-shadow:
        0 0 0 3px
        rgba(121,58,133,.08);
}


.wd-field textarea {
    resize: vertical;

    min-height: 125px;
}


.wd-textarea-bottom {
    display: flex;

    justify-content: space-between;

    gap: 10px;

    margin-top: 6px;

    color: #94a3b8;

    font-size: 10px;
}


#wdCharCount {
    white-space: nowrap;
}


.wd-error {
    display: none;

    margin-top: 5px;

    color: #dc3545;

    font-size: 10px;
}


.wd-field.has-error input,
.wd-field.has-error textarea {
    border-color: #dc3545;

    box-shadow:
        0 0 0 3px
        rgba(220,53,69,.08);
}


.wd-field.has-success input,
.wd-field.has-success textarea {
    border-color: #16a34a;
}


.wd-submit {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    margin-top: 20px;

    padding: 14px 18px;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #793a85,
            #5a2c6a
        );

    border: 0;

    border-radius: 8px;

    font-size: 13px;

    font-weight: 800;

    cursor: pointer;

    transition: .3s ease;
}


.wd-submit span {
    display: flex;

    align-items: center;

    gap: 8px;
}


.wd-submit:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px
        rgba(121,58,133,.22);
}


/* =========================================================
   ALERT
========================================================= */

.wd-alert {
    margin: 20px 28px 0;

    padding: 14px 16px;

    border-radius: 10px;

    font-size: 12px;

    line-height: 1.6;
}


.wd-alert ul {
    margin: 7px 0 0;

    padding-left: 18px;
}


.wd-alert-error {
    color: #991b1b;

    background: #fff5f5;

    border: 1px solid #fecaca;
}


.wd-alert-success {
    color: #166534;

    background: #f0fdf4;

    border: 1px solid #bbf7d0;
}


/* =========================================================
   SERVICES
========================================================= */

.wd-services {
    padding: 90px 0;

    background: #ffffff;
}


.wd-section-heading {
    max-width: 650px;

    margin: 0 auto 45px;

    text-align: center;
}


.wd-section-heading .wd-section-label {
    justify-content: center;
}


.wd-section-heading .wd-section-title {
    margin-bottom: 10px;
}


.wd-section-heading p {
    margin: 0;

    color: #64748b;

    font-size: 14px;
}


.wd-service-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 22px;
}


.wd-service-card {
    padding: 30px 25px;

    text-align: center;

    background: #ffffff;

    border:
        1px solid
        #e8e8ef;

    border-radius: 17px;

    transition: .3s ease;
}


.wd-service-card:hover {
    transform: translateY(-6px);

    border-color:
        rgba(121,58,133,.20);

    box-shadow:
        0 15px 35px
        rgba(0,0,0,.07);
}


.wd-service-icon {
    width: 65px;
    height: 65px;

    display: flex;

    align-items: center;
    justify-content: center;

    margin: 0 auto 18px;

    color: #793a85;

    background:
        rgba(121,58,133,.08);

    border-radius: 17px;

    font-size: 23px;
}


.wd-service-card h3 {
    margin-bottom: 10px;

    color: #343a40;

    font-size: 17px;

    font-weight: 800;
}


.wd-service-card p {
    margin: 0;

    color: #64748b;

    font-size: 12px;

    line-height: 1.7;
}


/* =========================================================
   FEATURES
========================================================= */

.wd-features {
    padding: 90px 0;

    background: #f8fafc;
}


.wd-feature-list {
    display: grid;

    gap: 13px;

    margin-top: 25px;
}


.wd-feature-list div {
    display: flex;

    align-items: flex-start;

    gap: 10px;

    color: #475569;

    font-size: 13px;

    line-height: 1.6;
}


.wd-feature-list i {
    flex-shrink: 0;

    margin-top: 3px;

    color: #16a34a;
}


.wd-feature-image {
    position: relative;
}


.wd-feature-image img {
    width: 100%;

    display: block;

    border-radius: 18px;

    box-shadow:
        0 18px 40px
        rgba(0,0,0,.10);
}


.wd-feature-caption {
    position: absolute;

    left: 20px;
    right: 20px;
    bottom: 20px;

    padding: 17px;

    color: #ffffff;

    background:
        rgba(52,58,64,.88);

    border-radius: 12px;

    backdrop-filter: blur(8px);
}


.wd-feature-caption i {
    margin-right: 7px;

    color: #ffc107;
}


.wd-feature-caption strong {
    font-size: 13px;
}


.wd-feature-caption p {
    margin: 5px 0 0;

    color:
        rgba(255,255,255,.72);

    font-size: 10px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .wd-hero-grid {
        grid-template-columns: 1fr;
    }


    .wd-hero-image {
        max-width: 650px;
    }


    .wd-contact-grid {
        grid-template-columns: 1fr;
    }


    .wd-contact-info {
        padding-top: 0;
    }


    .wd-service-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

}


@media (max-width: 700px) {

    .wd-hero {
        padding: 60px 0;
    }


    .wd-section,
    .wd-contact-section,
    .wd-services,
    .wd-features {
        padding: 65px 0;
    }


    .wd-two-column {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    .wd-form-grid {
        grid-template-columns: 1fr;
    }


    .wd-full {
        grid-column: auto;
    }


    .wd-service-grid {
        grid-template-columns: 1fr;
    }


    .wd-hero h1 {
        font-size: 38px;
    }


    .wd-hero-buttons {
        flex-direction: column;
    }


    .wd-btn {
        width: 100%;
        box-sizing: border-box;
    }


    .wd-trust {
        flex-direction: column;

        gap: 10px;
    }


    .wd-form-card form {
        padding: 22px;
    }


    .wd-alert {
        margin-left: 22px;
        margin-right: 22px;
    }

}


@media (max-width: 480px) {

    .wd-hero h1 {
        font-size: 32px;
    }


    .wd-highlight-card {
        padding: 25px;
    }


    .wd-form-header {
        padding: 20px;
    }


    .wd-feature-caption {
        position: relative;

        left: auto;
        right: auto;
        bottom: auto;

        margin-top: 10px;
    }

}