/* ==========================================================
Website Development Section 6
WordPress Website Development Services for Every Industry
Part 1 - Global Styles, Section, Heading, Layout & Sidebar
========================================================== */

/* ===============================
Root Variables
=============================== */

:root{
    --wds6-primary:#2563eb;
    --wds6-primary-dark:#1d4ed8;
    --wds6-secondary:#0f172a;
    --wds6-text:#475569;
    --wds6-light:#f8fbff;
    --wds6-white:#ffffff;
    --wds6-border:#e2e8f0;
    --wds6-shadow:0 20px 60px rgba(15,23,42,.08);
    --wds6-radius:24px;
    --wds6-transition:.35s ease;
}

/* ===============================
Reset
=============================== */

.wds6-section *{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

/* ===============================
Section
=============================== */

.wds6-section{
    position:relative;
    overflow:hidden;
    padding:110px 20px;
    background:linear-gradient(180deg,#ffffff 0%,#f8fbff 100%);
}

.wds6-container{
    max-width:1400px;
    margin:0 auto;
    width:100%;
    position:relative;
    z-index:2;
}

/* ===============================
Heading Area
=============================== */

.wds6-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 70px;
}

.wds6-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 22px;
    border-radius:50px;
    background:#eaf2ff;
    color:var(--wds6-primary);
    font-size:14px;
    font-weight:700;
    letter-spacing:.5px;
    margin-bottom:22px;
}

.wds6-title{
    font-size:48px;
    font-weight:800;
    line-height:1.2;
    color:var(--wds6-secondary);
    margin-bottom:22px;
}

.wds6-title span{
    color:var(--wds6-primary);
}

.wds6-intro{
    font-size:18px;
    line-height:1.9;
    color:var(--wds6-text);
    max-width:820px;
    margin:0 auto;
}

/* ===============================
Main Layout
=============================== */

.wds6-layout{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:40px;
    align-items:flex-start;
}

/* ===============================
Sidebar
=============================== */

.wds6-sidebar{
    position:sticky;
    top:120px;
    display:flex;
    flex-direction:column;
    gap:16px;
}

/* ===============================
Industry Button
=============================== */

.wds6-industry-btn{
    position:relative;
    display:flex;
    align-items:center;
    width:100%;
    padding:18px 22px;
    background:var(--wds6-white);
    color:#334155;
    border:none;
    border-radius:18px;
    font-size:17px;
    font-weight:600;
    text-align:left;
    cursor:pointer;
    overflow:hidden;
    transition:all var(--wds6-transition);
    box-shadow:0 8px 25px rgba(15,23,42,.05);
}

.wds6-industry-btn::before{
    content:"";
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background:linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,.4),
        transparent
    );
    transition:.6s;
}

.wds6-industry-btn:hover::before{
    left:100%;
}

.wds6-industry-btn:hover{
    background:linear-gradient(
        135deg,
        var(--wds6-primary),
        #3b82f6
    );
    color:#ffffff;
    transform:translateX(8px);
    box-shadow:0 20px 40px rgba(37,99,235,.25);
}

.wds6-industry-btn.active{
    background:linear-gradient(
        135deg,
        var(--wds6-primary),
        var(--wds6-primary-dark)
    );
    color:#ffffff;
    transform:translateX(10px);
    box-shadow:0 20px 45px rgba(37,99,235,.30);
}

.wds6-industry-btn:focus{
    outline:none;
}

/* ===============================
Custom Scrollbar (Desktop)
=============================== */

.wds6-sidebar::-webkit-scrollbar{
    width:6px;
}

.wds6-sidebar::-webkit-scrollbar-track{
    background:#edf2f7;
    border-radius:20px;
}

.wds6-sidebar::-webkit-scrollbar-thumb{
    background:var(--wds6-primary);
    border-radius:20px;
}

/* ==========================================================
Website Development Section 6
WordPress Website Development Services for Every Industry
Part 2 - Content Card, Feature List, CTA & Animations
========================================================== */

/*=========================================
Right Content Area
=========================================*/

.wds6-content{
    position:relative;
    width:100%;
    min-height:620px;
}

/*=========================================
Content Card
=========================================*/

.wds6-card{
    position:relative;
    background:var(--wds6-white);
    border:1px solid var(--wds6-border);
    border-radius:30px;
    padding:55px;
    overflow:hidden;
    box-shadow:var(--wds6-shadow);
    transition:all .35s ease;
    animation:wds6FadeUp .6s ease;
}

.wds6-card:hover{
    transform:translateY(-6px);
    box-shadow:0 35px 70px rgba(37,99,235,.12);
}

/*=========================================
Background Decoration
=========================================*/

.wds6-card::before{
    content:"";
    position:absolute;
    top:-140px;
    right:-140px;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(37,99,235,.05);
}

.wds6-card::after{
    content:"";
    position:absolute;
    bottom:-100px;
    left:-100px;
    width:220px;
    height:220px;
    border-radius:50%;
    background:rgba(96,165,250,.05);
}

/*=========================================
Number Circle
=========================================*/

.wds6-number{
    position:relative;
    z-index:2;

    display:flex;
    align-items:center;
    justify-content:center;

    width:80px;
    height:80px;

    margin-bottom:35px;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--wds6-primary),
        #60a5fa
    );

    color:#fff;

    font-size:28px;
    font-weight:800;

    box-shadow:0 15px 35px rgba(37,99,235,.25);
}

/*=========================================
Heading
=========================================*/

#wds6-content-title{
    position:relative;
    z-index:2;

    margin-bottom:22px;

    font-size:38px;
    line-height:1.3;
    font-weight:800;

    color:var(--wds6-secondary);
}

/*=========================================
Description
=========================================*/

#wds6-content-description{
    position:relative;
    z-index:2;

    margin-bottom:35px;

    font-size:18px;
    line-height:1.9;

    color:var(--wds6-text);
}

/*=========================================
Feature List
=========================================*/

#wds6-feature-list{
    position:relative;
    z-index:2;

    list-style:none;

    display:grid;
    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin:0;
    padding:0;
}

/*=========================================
Feature Item
=========================================*/

#wds6-feature-list li{

    position:relative;

    padding:18px 20px 18px 55px;

    background:#f8fbff;

    border:1px solid #e8eef9;

    border-radius:16px;

    color:#334155;

    font-size:16px;

    font-weight:600;

    transition:.35s;
}

#wds6-feature-list li:hover{

    transform:translateY(-5px);

    background:#ffffff;

    border-color:#2563eb;

    box-shadow:0 18px 35px rgba(37,99,235,.10);

}

/*=========================================
Check Icon
=========================================*/

#wds6-feature-list li::before{

    content:"✓";

    position:absolute;

    left:18px;
    top:50%;

    transform:translateY(-50%);

    width:24px;
    height:24px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(
        135deg,
        var(--wds6-primary),
        #60a5fa
    );

    color:#fff;

    font-size:13px;

    font-weight:700;

}

/*=========================================
CTA Section
=========================================*/

.wds6-cta{

    margin-top:80px;

    padding:70px 40px;

    text-align:center;

    border-radius:30px;

    background:linear-gradient(
        135deg,
        var(--wds6-primary),
        var(--wds6-primary-dark)
    );

    color:#ffffff;

    overflow:hidden;

    position:relative;

}

/* Decorative Glow */

.wds6-cta::before{

    content:"";

    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    top:-150px;
    right:-150px;

    background:rgba(255,255,255,.08);

}

.wds6-cta h3{

    position:relative;

    font-size:40px;

    font-weight:800;

    margin-bottom:18px;

}

.wds6-cta p{

    position:relative;

    max-width:760px;

    margin:0 auto 35px;

    font-size:18px;

    line-height:1.8;

    opacity:.95;

}

/*=========================================
Button
=========================================*/

.wds6-btn{

    display:inline-flex;

    align-items:center;

    gap:14px;

    padding:18px 34px;

    border-radius:60px;

    background:#ffffff;

    color:var(--wds6-primary);

    text-decoration:none;

    font-size:17px;

    font-weight:700;

    transition:.35s;

}

.wds6-btn:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(255,255,255,.30);

}

.wds6-btn span:last-child{

    font-size:22px;

    transition:.35s;

}

.wds6-btn:hover span:last-child{

    transform:translateX(6px);

}

/*=========================================
Animation
=========================================*/

@keyframes wds6FadeUp{

    from{

        opacity:0;

        transform:translateY(35px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/* ==========================================================
Website Development Section 6
WordPress Website Development Services for Every Industry
Part 3 - Responsive Design
========================================================== */

/*=========================================
Large Desktop
=========================================*/

@media (max-width:1400px){

    .wds6-container{
        max-width:1200px;
    }

    .wds6-layout{
        grid-template-columns:300px 1fr;
        gap:35px;
    }

    .wds6-title{
        font-size:44px;
    }

}

/*=========================================
Laptop
=========================================*/

@media (max-width:1200px){

    .wds6-section{
        padding:90px 25px;
    }

    .wds6-layout{
        grid-template-columns:280px 1fr;
        gap:30px;
    }

    .wds6-card{
        padding:45px;
    }

    #wds6-content-title{
        font-size:34px;
    }

    .wds6-cta h3{
        font-size:34px;
    }

}

/*=========================================
Tablet Landscape
=========================================*/

@media (max-width:992px){

    .wds6-layout{
        grid-template-columns:1fr;
    }

    .wds6-sidebar{

        position:relative;
        top:0;

        display:grid;
        grid-template-columns:repeat(2,1fr);

        gap:15px;

        margin-bottom:10px;

    }

    .wds6-industry-btn{

        justify-content:center;
        text-align:center;

        transform:none !important;

    }

    .wds6-content{
        min-height:auto;
    }

    .wds6-card{
        padding:40px;
    }

    #wds6-feature-list{
        grid-template-columns:repeat(2,1fr);
    }

}

/*=========================================
Tablet Portrait
=========================================*/

@media (max-width:768px){

    .wds6-section{
        padding:70px 18px;
    }

    .wds6-header{
        margin-bottom:45px;
    }

    .wds6-title{
        font-size:32px;
    }

    .wds6-intro{
        font-size:16px;
        line-height:1.8;
    }

    /* Horizontal Industry Menu */

    .wds6-sidebar{

        display:flex;
        flex-wrap:nowrap;

        overflow-x:auto;
        overflow-y:hidden;

        gap:12px;

        padding-bottom:12px;

        margin-bottom:25px;

        scrollbar-width:none;
        -ms-overflow-style:none;

    }

    .wds6-sidebar::-webkit-scrollbar{
        display:none;
    }

    .wds6-industry-btn{

        flex:0 0 auto;

        min-width:180px;

        padding:15px 18px;

        white-space:nowrap;

        font-size:15px;

        justify-content:center;

    }

    .wds6-card{
        padding:30px;
        border-radius:22px;
    }

    .wds6-number{
        width:65px;
        height:65px;
        font-size:24px;
        margin-bottom:25px;
    }

    #wds6-content-title{
        font-size:28px;
    }

    #wds6-content-description{
        font-size:16px;
        margin-bottom:25px;
    }

    #wds6-feature-list{
        grid-template-columns:1fr;
        gap:15px;
    }

    .wds6-cta{
        margin-top:60px;
        padding:50px 30px;
    }

    .wds6-cta h3{
        font-size:28px;
    }

    .wds6-cta p{
        font-size:16px;
    }

    .wds6-btn{
        width:100%;
        justify-content:center;
    }

}

/*=========================================
Large Mobile
=========================================*/

@media (max-width:576px){

    .wds6-section{
        padding:60px 16px;
    }

    .wds6-badge{
        font-size:13px;
        padding:8px 18px;
    }

    .wds6-title{
        font-size:28px;
    }

    .wds6-card{
        padding:24px;
    }

    .wds6-number{
        width:58px;
        height:58px;
        font-size:20px;
    }

    #wds6-content-title{
        font-size:24px;
        line-height:1.4;
    }

    #wds6-content-description{
        font-size:15px;
        line-height:1.8;
    }

    #wds6-feature-list li{
        padding:15px 16px 15px 48px;
        font-size:15px;
    }

    .wds6-cta{
        padding:40px 20px;
    }

    .wds6-cta h3{
        font-size:24px;
    }

    .wds6-btn{
        padding:16px 24px;
        font-size:16px;
    }

}

/*=========================================
Small Mobile
=========================================*/

@media (max-width:400px){

    .wds6-title{
        font-size:24px;
    }

    .wds6-intro{
        font-size:15px;
    }

    .wds6-industry-btn{

        min-width:160px;

        padding:14px 16px;

        font-size:14px;

    }

    .wds6-card{
        padding:20px;
    }

    .wds6-number{
        width:52px;
        height:52px;
        font-size:18px;
    }

    #wds6-content-title{
        font-size:22px;
    }

    #wds6-content-description{
        font-size:14px;
    }

    #wds6-feature-list li{
        font-size:14px;
        padding:14px 14px 14px 45px;
    }

    .wds6-cta h3{
        font-size:22px;
    }

    .wds6-cta p{
        font-size:15px;
    }

    .wds6-btn{
        font-size:15px;
    }

}