*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

/* =========================
   WEBSITE DESIGN PAGE
========================= */
/* HERO SECTION */

.wd-hero{
    padding:50px 0 60px;
    overflow:hidden;
}

.wd-container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.wd-hero .wd-container{
    display:flex;
    align-items:flex-start; /* top se same start */
    justify-content:space-between;
    gap:80px;
}

.wd-hero-content{
    flex:1;
    max-width:650px;
}

.wd-hero-image{
    flex:1;
    display:flex;
    justify-content:center;
    align-items:flex-start; /* image bhi top se start */
}

.wd-hero-image img{
    width:100%;
    max-width:650px;
    height:auto;
    display:block;
    animation: wdFloat 5s ease-in-out infinite;
}

@keyframes wdFloat{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0px);
    }
}

.wd-hero-badge{
    display:inline-flex;
    align-items:center;
    padding:12px 24px;
    background:#eef4ff;
    color:#2563eb;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.wd-hero-content h1{
    font-size:42px;
    line-height:1.08;
    color:#0f172a;
    margin:25px 0;
}

.wd-hero-content h1 span{
    /* background:linear-gradient(
        135deg,
        #03a1d1 0%,
        #2563eb 50%,
        #003cff 90%
    ); */
    background-color: #2563eb;
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;
}

.wd-hero-content p{
    font-size:18px;
    line-height:1.9;
    color:#64748b;
}

.wd-hero-buttons{
    display:flex;
    gap:15px;
    margin-top:35px;
    flex-wrap:wrap;
}

.wd-btn-primary{
    padding:18px 34px;
    background:#2563eb;
    color:#fff;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
    text-align:center;
}

.wd-btn-outline{
    padding:18px 34px;
    border:2px solid #2563eb;
    color:#2563eb;
    border-radius:60px;
    text-decoration:none;
    font-weight:600;
    text-align:center;
}

.wd-hero-stats{
    display:flex;
    gap:20px;
    margin-top:50px;
    flex-wrap:wrap;
}

.wd-stat{
    flex:1;
    min-width:185px;
    padding:25px;
    border-radius:24px;
    background:#fff;
    border:1px solid #e5e7eb;
}

.wd-stat h3{
    font-size:34px;
    color:#2563eb;
    margin-bottom:8px;
}

.wd-stat span{
    color:#64748b;
    font-size:14px;
}

.wd-why-section{
    padding:60px 0;
    /* background-color: #f8fbff; */

}


.wd-why-section,
.wd-types-section,
.wd-process-section{
    padding:50px 0;
}

.wd-heading{
    text-align:center;
    max-width:800px;
    margin:0 auto 80px;
}

.wd-heading .wd-badge{
    display:inline-block;
    padding:10px 22px;
    background:#eef4ff;
    color:#2563eb;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
}

.wd-heading .wd-highlight{
    color:#2563eb;
}

.wd-heading h2{
    font-size:48px;
    line-height:1.15;
    color:#0f172a;
    margin:25px 0;
}

.wd-heading p{
    font-size:18px;
    line-height:1.8;
    color:#64748b;
}

/* WHY */

.wd-why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.wd-why-card{
    background:#fff;
    padding:45px 35px;
    border-radius:28px;
    border:1px solid #e5e7eb;
    transition:.4s;
    position:relative;
    overflow:hidden;
}

.wd-why-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:#2563eb;
    transform:scaleX(0);
    transition:.4s;
}

.wd-why-card:hover::before{
    transform:scaleX(1);
}

.wd-why-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(37,99,235,.12);
}

.wd-why-card h3{
    font-size:24px;
    color:#0f172a;
    margin-bottom:15px;
}

.wd-why-card p{
    color:#64748b;
    line-height:1.8;
}

/* TYPES */

.wd-types-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.wd-type-card{
    background:#fff;
    padding:50px 40px;
    border-radius:30px;
    border:1px solid #e5e7eb;
    transition:.4s;
    position:relative;
}

.wd-type-card:hover{
    transform:translateY(-12px);
    box-shadow:0 25px 60px rgba(37,99,235,.12);
}

.wd-type-card span{
    display:block;
    font-size:70px;
    font-weight:800;
    color:#dbeafe;
    margin-bottom:20px;
}

.wd-type-card h3{
    font-size:28px;
    color:#0f172a;
}

/* PROCESS */

/* .wd-process-section{
    background-color:#f8fbff; ;
} */

.wd-process-wrapper{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
    position:relative;
}

.wd-process-wrapper::before{
    content:"";
    position:absolute;
    top:45px;
    left:0;
    width:100%;
    height:2px;
    background:#dbeafe;
}

.wd-step{
    text-align:center;
    position:relative;
    z-index:2;
}

.wd-circle{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#fff;
    border:2px solid #2563eb;
    color:#2563eb;
    font-size:24px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    transition:.4s;
}

.wd-step:hover .wd-circle{
    background:#2563eb;
    color:#fff;
}

.wd-step h4{
    margin-top:20px;
    font-size:18px;
    color:#0f172a;
}

/* CTA */

/* =========================
   PREMIUM CTA SECTION
========================= */

.wd-cta-section{
    position:relative;
    overflow:hidden;
    padding:60px 20px;
    text-align:center;
    margin:80px auto;
    width:95%;
    max-width:1400px;
    border-radius:40px;

    background:linear-gradient(
    135deg,
    #10224f 0%,
    #1746b7 55%,
    #2563eb 100%
    );
}

/* Glow Effect */

.wd-cta-section::before{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    top:-220px;
    left:-180px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    filter:blur(120px);
}

.wd-cta-section::after{
    content:"";
    position:absolute;
    width:500px;
    height:500px;
    bottom:-220px;
    right:-180px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    filter:blur(120px);
}

.wd-cta-section .wd-container{
    position:relative;
    z-index:2;
}

/* Badge */

.wd-cta-section span{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:14px 28px;
    border-radius:60px;

    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.15);

    color:#ffffff;
    font-size:14px;
    font-weight:600;
    letter-spacing:1px;
    margin-bottom:30px;
    backdrop-filter:blur(10px);
}

/* Heading */

.wd-cta-section h2{
    font-size:64px;
    line-height:1.1;
    font-weight:800;
    color:#fff;
    max-width:950px;
    margin:auto;
}

/* Description */

.wd-cta-section p{
    max-width:750px;
    margin:30px auto 45px;
    color:rgba(255,255,255,.85);
    font-size:19px;
    line-height:1.9;
}

/* Button */

.wd-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:18px 42px;

    background:#fff;
    color:#1746b7;

    text-decoration:none;
    font-weight:700;
    font-size:16px;

    border-radius:60px;

    transition:.35s ease;
}

.wd-btn:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 50px rgba(0,0,0,.18);
    background:#f8fafc;
}


/* ==========================
   WHY WEBSITE DESIGN MATTERS
========================== */

.wd-matters-section{
    padding:50px 0;
    background:#f8fbff;
}

.wd-matters-grid{
    display:grid;
    grid-template-columns:1fr 320px 1fr;
    gap:40px;
    align-items:center;
}

.wd-matters-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:28px;
    padding:35px;
    display:flex;
    gap:20px;
    margin-bottom:25px;
    transition:.4s;
}

.wd-matters-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(37,99,235,.12);
}

.wd-matters-number{
    min-width:70px;
    width:70px;
    height:70px;
    border-radius:20px;
    background:#eef4ff;
    color:#2563eb;
    font-size:22px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
}

.wd-matters-card h3{
    font-size:24px;
    color:#0f172a;
    margin-bottom:12px;
}

.wd-matters-card p{
    color:#64748b;
    line-height:1.8;
}

.wd-matters-circle{
    width:280px;
    height:280px;
    border-radius:50%;
    margin:auto;
    background:linear-gradient(
    135deg,
    #2563eb,
    #1d4ed8
    );
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    box-shadow:0 30px 80px rgba(37,99,235,.25);
}

.wd-matters-circle span{
    font-size:70px;
    font-weight:800;
    line-height:1;
}

.wd-matters-circle p{
    margin-top:10px;
    font-size:18px;
}

/* ==========================
   WHAT'S INCLUDED
========================== */

.wd-included-section{
    padding:50px 0;
    background:#f8fbff;
}

.wd-included-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.wd-include-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:28px;
    padding:40px 30px;
    text-align:center;
    transition:.4s;
}

.wd-include-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(37,99,235,.12);
}

.wd-include-card span{
    width:70px;
    height:70px;
    border-radius:50%;
    background:#eef4ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 20px;
    font-size:30px;
    font-weight:700;
}

.wd-include-card h3{
    font-size:22px;
    color:#0f172a;
    line-height:1.5;
}

/* ==================================
   GLOBAL RESPONSIVE FIX
================================== */

img{
    max-width:100%;
    height:auto;
}

.wd-container{
    width:min(90%,1300px);
}

/* =====================
   LAPTOP
===================== */

@media (max-width:1200px){

    .wd-heading h2{
        font-size:48px;
    }

    .wd-hero-content h1{
        font-size:48px;
    }

    .wd-process-wrapper{
        grid-template-columns:repeat(3,1fr);
        row-gap:40px;
    }

    .wd-process-wrapper::before{
        display:none;
    }

    .wd-included-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

/* =====================
   TABLET
===================== */

@media (max-width:992px){

    .wd-hero .wd-container{
        flex-direction:column-reverse;
        align-items:center;
        text-align:center;
    }

    .wd-hero-content{
        max-width:100%;
    }

    .wd-hero-image img{
        max-width:550px;
    }

    .wd-heading h2{
        font-size:42px;
    }

    .wd-heading p{
        font-size:17px;
    }

    .wd-matters-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .wd-types-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .wd-why-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .wd-included-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .wd-process-wrapper{
        grid-template-columns:repeat(3,1fr);
    }

    .wd-cta-section h2{
        font-size:48px;
    }
}

/* =====================
   MOBILE
===================== */

@media (max-width:768px){

    section{
        overflow:hidden;
    }

    .wd-hero{
        padding:30px 0;
    }

    .wd-hero-content h1{
        font-size:34px;
        line-height:1.2;
    }

    .wd-hero-content p{
        font-size:16px;
    }

    .wd-heading{
        margin-bottom:50px;
    }

    .wd-heading h2{
        font-size:32px;
        line-height:1.3;
    }

    .wd-heading p{
        font-size:15px;
    }

    .wd-hero-buttons{
        flex-direction:column;
    }

    .wd-btn-primary,
    .wd-btn-outline{
        width:100%;
    }

    .wd-hero-stats{
        flex-direction:column;
    }

    .wd-stat{
        min-width:100%;
    }

    .wd-types-grid,
    .wd-why-grid,
    .wd-included-grid{
        grid-template-columns:1fr;
    }

    .wd-process-wrapper{
        grid-template-columns:repeat(2,1fr);
    }

    .wd-matters-card{
        flex-direction:column;
        text-align:center;
    }

    .wd-matters-number{
        margin:auto;
    }

    .wd-matters-circle{
        width:220px;
        height:220px;
    }

    .wd-matters-circle span{
        font-size:50px;
    }

    .wd-type-card,
    .wd-why-card,
    .wd-include-card{
        padding:30px 25px;
    }

    .wd-cta-section{
        padding:70px 25px;
    }

    .wd-cta-section h2{
        font-size:34px;
    }

    .wd-cta-section p{
        font-size:16px;
    }
}

/* =====================
   SMALL MOBILE
===================== */

@media (max-width:480px){

    .wd-container{
        width:92%;
    }

    .wd-hero-content h1{
        font-size:28px;
    }

    .wd-heading h2{
        font-size:26px;
    }

    .wd-process-wrapper{
        grid-template-columns:1fr;
    }

    .wd-circle{
        width:75px;
        height:75px;
        font-size:20px;
    }

    .wd-type-card h3,
    .wd-why-card h3,
    .wd-include-card h3,
    .wd-matters-card h3{
        font-size:20px;
    }

    .wd-cta-section h2{
        font-size:28px;
    }

    .wd-btn{
        width:100%;
    }
}


/* FAQ SECTION */

.wd-faq-section{
    padding:80px 0;
    background:#fff;
}

.wd-faq-wrapper{
    max-width:1200px;
    margin:auto;
}

.wd-faq-item{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:24px;
    margin-bottom:20px;
    overflow:hidden;
    transition:.3s;
}

.wd-faq-item:hover{
    box-shadow:0 15px 40px rgba(37,99,235,.08);
}

.wd-faq-question{
    width:100%;
    background:none;
    border:none;
    padding:28px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:20px;
    font-weight:600;
    color:#0f172a;
    text-align:left;
}

.wd-faq-question span{
    width:40px;
    height:40px;
    border-radius:50%;
    background:#eef4ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    transition:.3s;
    flex-shrink:0;
}

.wd-faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.wd-faq-answer p{
    padding:0 30px 30px;
    color:#64748b;
    line-height:1.8;
    font-size:16px;
}

.wd-faq-item.active{
    border-color:#2563eb;
}

.wd-faq-item.active .wd-faq-answer{
    max-height:300px;
}

.wd-faq-item.active .wd-faq-question span{
    background:#2563eb;
    color:#fff;
    transform:rotate(45deg);
}

@media(max-width:768px){

    .wd-faq-question{
        font-size:17px;
        padding:22px;
    }

    .wd-faq-answer p{
        padding:0 22px 22px;
    }

    .wd-faq-question span{
        width:35px;
        height:35px;
        font-size:20px;
    }
}