/*=========================================
ADMIN PANEL HERO
=========================================*/

.admin-hero{

    position:relative;
    overflow:hidden;

    padding:120px 0 90px;

    background:#fff;

}

/* Background Glow */

.admin-hero::before{

    content:"";

    position:absolute;

    right:-220px;
    top:-180px;

    width:650px;
    height:650px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(99,102,241,.10),
    transparent 72%);

}

.admin-hero::after{

    content:"";

    position:absolute;

    left:-180px;
    bottom:-180px;

    width:450px;
    height:450px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(37,99,235,.08),
    transparent 72%);

}

.admin-hero .container{

    position:relative;
    z-index:2;

}

.admin-hero-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

/*=========================
LEFT CONTENT
=========================*/

.hero-subtitle{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    background:#EEF2FF;

    border-radius:50px;

    color:#2563EB;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:.8px;

    margin-bottom:28px;

}

.hero-subtitle svg{

    width:16px;
    height:16px;

}

.admin-hero-content h1{

    font-size:62px;

    line-height:1.12;

    font-weight:800;

    color:#0F172A;

    margin-bottom:25px;

}

.admin-hero-content h1 span{

    color:#3B5BFF;

}

.admin-hero-content p{

    max-width:560px;

    font-size:18px;

    line-height:1.9;

    color:#64748B;

    margin-bottom:40px;

}

/*=========================
BUTTONS
=========================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:40px;

}

.btn-primary,
.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    gap:10px;

    text-decoration:none;

    border-radius:14px;

    font-weight:600;

    transition:.35s;

}

.btn-primary{

    padding:16px 28px;

    color:#fff;

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    box-shadow:0 18px 35px rgba(59,91,255,.25);

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-secondary{

    padding:16px 28px;

    background:#fff;

    border:1px solid #E5E7EB;

    color:#0F172A;

}

.btn-secondary:hover{

    border-color:#2563EB;

    color:#2563EB;

}

/*=========================
FEATURES
=========================*/

.hero-features{

    display:flex;

    gap:35px;

    flex-wrap:wrap;

}

.hero-features div{

    display:flex;

    align-items:center;

    gap:10px;

}

.hero-features svg{

    width:18px;
    height:18px;

    color:#2563EB;

}

.hero-features span{

    font-size:15px;

    font-weight:600;

    color:#475569;

}

/*=========================
RIGHT IMAGE
=========================*/

.admin-hero-image{

    text-align:right;

}

.admin-hero-image img{

    width:100%;

    max-width:680px;

    display:block;

    margin-left:auto;

    animation:floatImage 5s ease-in-out infinite;

}

@keyframes floatImage{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

.admin-hero-wrapper{

grid-template-columns:1fr;

gap:60px;

}

.admin-hero-content{

text-align:center;

}

.admin-hero-content p{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.hero-features{

justify-content:center;

}

.admin-hero-image{

text-align:center;

}

.admin-hero-image img{

margin:auto;

max-width:600px;

}

}

@media(max-width:768px){

.admin-hero{

padding:90px 0 70px;

}

.admin-hero-content h1{

font-size:42px;

}

.admin-hero-content p{

font-size:16px;

}

}

@media(max-width:576px){

.admin-hero-content{

text-align:left;

}

.admin-hero-content h1{

font-size:32px;

line-height:1.25;

}

.hero-buttons{

flex-direction:column;

}

.btn-primary,
.btn-secondary{

width:100%;

}

.hero-features{

flex-direction:column;

align-items:flex-start;

gap:15px;

}

}


/*=========================================
ADMIN PANEL SERVICES
=========================================*/

.admin-services{

    padding:110px 0;

    background:#fff;

    position:relative;

}

.admin-services .container{

    max-width:1320px;

}

/*==========================
SECTION TITLE
==========================*/

.admin-services .section-title{

    text-align:center;

    margin-bottom:60px;

}

.admin-services .section-title span{

    display:block;

    font-size:13px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    color:#3B5BFF;

    margin-bottom:15px;

}

.admin-services .section-title h2{

    font-size:46px;

    font-weight:800;

    line-height:1.2;

    color:#111827;

}

.admin-services .section-title h2 span{

    display:inline;

    color:#3B5BFF;

}

/*==========================
GRID
==========================*/

.services-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:22px;

}

/*==========================
CARD
==========================*/

.service-card{

    background:#fff;

    border:1px solid #EEF2FF;

    border-radius:20px;

    padding:35px 22px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 35px rgba(15,23,42,.04);

    height:100%;

}

.service-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(59,91,255,.12);

    border-color:#D9E3FF;

}

/*==========================
ICON
==========================*/

.service-icon{

    width:72px;
    height:72px;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:0 auto 25px;

    border-radius:50%;

    background:#EEF2FF;

    border:1px solid #DCE7FF;

    box-shadow:0 10px 30px rgba(37,99,235,.08);

}

.service-icon i,
.service-icon svg{

    width:34px;
    height:34px;

    color:#3B5BFF !important;
    stroke:#3B5BFF !important;
}
/*==========================
TEXT
==========================*/

.service-card h3{

    font-size:20px;

    font-weight:700;

    color:#111827;

    margin-bottom:15px;

    line-height:1.35;

}

.service-card p{

    font-size:15px;

    line-height:1.8;

    color:#64748B;

    margin:0;

}

/*==========================
RESPONSIVE
==========================*/

@media(max-width:1200px){

.services-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.admin-services{

padding:80px 0;

}

.admin-services .section-title{

margin-bottom:45px;

}

.admin-services .section-title h2{

font-size:34px;

}

.services-grid{

grid-template-columns:repeat(2,1fr);

gap:18px;

}

.service-card{

padding:30px 20px;

}

.service-icon{

width:65px;

height:65px;

margin-bottom:20px;

}

.service-icon svg{

width:30px;

height:30px;

}

.service-card h3{

font-size:18px;

}

.service-card p{

font-size:14px;

}

}

@media(max-width:576px){

.admin-services .section-title h2{

font-size:28px;

}

.services-grid{

grid-template-columns:1fr;

}

.service-card{

padding:28px 22px;

}

}



/*=========================================
ADMIN BENEFITS
=========================================*/

.admin-benefits{

    padding:110px 0;

    background:#fff;

}

.admin-benefits-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

    background:#fff;

    border:1px solid #EEF2FF;

    border-radius:28px;

    padding:70px;

    box-shadow:0 20px 60px rgba(15,23,42,.05);

}

/*=========================
LEFT CONTENT
=========================*/

.admin-benefits-content .section-subtitle{

    display:inline-block;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    color:#3B5BFF;

    margin-bottom:18px;

}

.admin-benefits-content h2{

    font-size:48px;

    font-weight:800;

    line-height:1.2;

    color:#111827;

    margin-bottom:35px;

}

.admin-benefits-content h2 span{

    display:block;

    color:#3B5BFF;

}

/*=========================
LIST
=========================*/

.benefits-list{

    list-style:none;

    padding:0;

    margin:0;

}

.benefits-list li{

    display:flex;

    align-items:flex-start;

    gap:14px;

    margin-bottom:18px;

    font-size:16px;

    line-height:1.8;

    color:#475569;

}

.benefits-list li:last-child{

    margin-bottom:0;

}

.benefits-list li svg{

    width:20px;

    height:20px;

    flex-shrink:0;

    margin-top:4px;

    color:#3B5BFF;

    stroke:#3B5BFF;

}

/*=========================
RIGHT IMAGE
=========================*/

.admin-benefits-image{

    text-align:right;

}

.admin-benefits-image img{

    width:100%;

    max-width:520px;

    display:block;

    margin-left:auto;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

    .admin-benefits-wrapper{

        grid-template-columns:1fr;

        gap:50px;

        padding:50px 35px;

    }

    .admin-benefits-content{

        text-align:center;

    }

    .benefits-list{

        max-width:500px;

        margin:auto;

        text-align:left;

    }

    .admin-benefits-image{

        text-align:center;

    }

    .admin-benefits-image img{

        margin:auto;

        max-width:450px;

    }

}

@media(max-width:768px){

    .admin-benefits{

        padding:80px 0;

    }

    .admin-benefits-wrapper{

        padding:35px 25px;

        border-radius:20px;

    }

    .admin-benefits-content h2{

        font-size:34px;

    }

    .benefits-list li{

        font-size:15px;

    }

}

@media(max-width:576px){

    .admin-benefits-content{

        text-align:left;

    }

    .admin-benefits-content h2{

        font-size:28px;

    }

    .admin-benefits-wrapper{

        padding:25px 20px;

    }

    .benefits-list li{

        font-size:14px;

        gap:12px;

    }

    .benefits-list li svg{

        width:18px;

        height:18px;

    }

}

/*==========================================
    DESIGN PROCESS
==========================================*/

.design-process{

    padding:120px 0;
    background:#fff;
    position:relative;
    overflow:hidden;

}

/* Section Heading */

.section-title{

    text-align:center;
    max-width:700px;
    margin:0 auto 80px;

}

.section-title span{

    display:inline-block;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    color:#2563EB;
    margin-bottom:12px;

}

.section-title h2{

    font-size:48px;
    font-weight:800;
    line-height:1.2;
    color:#111827;

}

.section-title h2 span{

    color:#2563EB;

}

/* Timeline */

.process-wrapper{

    position:relative;
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:30px;

}

/* Horizontal Line */

.process-line{

    position:absolute;
    top:42px;
    left:8%;
    width:84%;
    height:2px;

    background:linear-gradient(
        to right,
        #2563EB,
        #8B5CF6
    );

    opacity:.20;
    z-index:0;

}

/* Item */

.process-item{
    width: 100%;
    position:relative;
    text-align:center;
    z-index:2;

}

/* Icon */

.process-item .icon{

    width:84px;
    height:84px;

    background:#fff;

    border-radius:50%;

    margin:0 auto 20px;

    display:flex;
    align-items:center;
    justify-content:center;

    border:1px solid #E5E7EB;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.35s;

}

.process-item .icon svg{

    width:30px;
    height:30px;

    color:#2563EB;

    transition:.35s;

}

.process-item:hover .icon{

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    transform:translateY(-8px);

}

.process-item:hover .icon svg{

    color:#fff;

}

/* Number */

.process-item .number{

    font-size:14px;
    font-weight:700;
    color:#2563EB;
    margin-bottom:12px;

}

/* Heading */

.process-item h3{

    font-size:24px;
    font-weight:700;
    color:#111827;
    margin-bottom:15px;

}

/* Paragraph */

.process-item p{

    max-width:180px;
    width:100%;

    margin:0 auto;

    color:#6B7280;

    line-height:1.8;

    font-size:15px;

    white-space:normal;
    word-break:normal;
    overflow-wrap:break-word;

}

/*=========================
Tablet
=========================*/

@media(max-width:991px){

.process-wrapper{

    grid-template-columns:repeat(2,1fr);
    gap:50px;

}

.process-line{

    display:none;

}

.process-item p{

    max-width:240px;

}

}

/*=========================
Mobile
=========================*/

@media(max-width:576px){

.design-process{

    padding:80px 0;

}

.section-title{

    margin-bottom:60px;

}

.section-title h2{

    font-size:34px;

}

.process-wrapper{

    grid-template-columns:1fr;
    gap:60px;
    position:relative;

}

/* Vertical Line */

.process-line{

    display:block;

    width:2px;
    height:calc(100% - 100px);

    left:50%;
    top:42px;

    transform:translateX(-50%);

    background:linear-gradient(
        to bottom,
        #2563EB,
        #8B5CF6
    );

    opacity:.20;

}

.process-item{

    padding-bottom:10px;
    /* display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center; */

}

.process-item .icon{
     
    width:78px;
    height:78px;

}

.process-item h3{

    font-size:22px;

}

.process-item p{

    max-width:280px;

}
.process-item .number {
    font-size: 18px;
    font-weight: 700;
    color: #2563EB;
    margin-bottom: 12px;
    background-color: #fff;
}
}


/*=========================================
ADMIN PANEL PACKAGE
=========================================*/

.admin-package{

    padding:100px 0;

    background:#fff;

}

.package-wrapper{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:60px;

    padding:55px 60px;

    border:1px solid #EEF2FF;

    border-radius:28px;

    background:#fff;

    box-shadow:0 15px 45px rgba(15,23,42,.05);

}

/*=========================
LEFT
=========================*/

.package-content{

    flex:1;

}

.package-content .section-subtitle{

    display:block;

    font-size:13px;

    font-weight:700;

    color:#3B5BFF;

    letter-spacing:1px;

    text-transform:uppercase;

    margin-bottom:12px;

}

.package-content h2{

    font-size:44px;

    font-weight:800;

    line-height:1.3;

    color:#111827;

    margin-bottom:35px;

}

.package-content h2 span{

    color:#3B5BFF;

}

/*=========================
LIST
=========================*/

.package-list{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:35px;

}

.package-list ul{

    list-style:none;

    padding:0;

    margin:0;

}

.package-list li{

    display:flex;

    align-items:flex-start;

    gap:10px;

    margin-bottom:16px;

    font-size:15px;

    line-height:1.7;

    color:#475569;

}

.package-list li:last-child{

    margin-bottom:0;

}

.package-list li svg{

    width:18px;

    height:18px;

    flex-shrink:0;

    margin-top:3px;

    color:#3B5BFF;

    stroke:#3B5BFF;

}

/*=========================
RIGHT IMAGE
=========================*/

.package-image{

    flex:0 0 300px;

    text-align:right;

}

.package-image img{

    width:100%;

    max-width:290px;

    display:block;

    margin-left:auto;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:1200px){

.package-wrapper{

flex-direction:column;

text-align:center;

}

.package-image{

text-align:center;

}

.package-image img{

margin:auto;

}

.package-list{

grid-template-columns:repeat(2,1fr);

text-align:left;

}

}

@media(max-width:768px){

.admin-package{

padding:80px 0;

}

.package-wrapper{

padding:35px 25px;

}

.package-content h2{

font-size:32px;

}

.package-list{

grid-template-columns:1fr;

gap:15px;

}

}

@media(max-width:576px){

.package-content h2{

font-size:28px;

line-height:1.4;

}

.package-wrapper{

padding:25px 20px;

border-radius:20px;

}

.package-image{

flex:unset;

}

.package-image img{

max-width:220px;

}

.package-list li{

font-size:14px;

}

}


/*=========================================
ADMIN PROJECTS
=========================================*/

.admin-projects{

    padding:110px 0;

    background:#fff;

}

/*=========================
SECTION TITLE
=========================*/

.admin-projects .section-title{

    text-align:center;

    margin-bottom:55px;

}

.admin-projects .section-title span{

    display:block;

    font-size:13px;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    color:#3B5BFF;

    margin-bottom:12px;

}

.admin-projects .section-title h2{

    font-size:46px;

    font-weight:800;

    color:#111827;

    line-height:1.2;

}

/*=========================
GRID
=========================*/

.projects-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}

/*=========================
CARD
=========================*/

.project-card{

    background:#fff;

    border:1px solid #EEF2FF;

    border-radius:20px;

    overflow:hidden;

    transition:.35s;

    box-shadow:0 10px 35px rgba(15,23,42,.04);

    height:100%;

}

.project-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(59,91,255,.12);

    border-color:#D9E3FF;

}

/*=========================
IMAGE
=========================*/

.project-image{

    overflow:hidden;

}

.project-image img{

    width:100%;

    display:block;

    transition:.5s;

}

.project-card:hover .project-image img{

    transform:scale(1.05);

}

/*=========================
CONTENT
=========================*/

.project-content{

    padding:22px;

}

.project-content small{

    display:block;

    font-size:13px;

    font-weight:600;

    color:#3B5BFF;

    margin-bottom:10px;

}

.project-content h3{

    font-size:22px;

    font-weight:700;

    color:#111827;

    margin-bottom:12px;

}

.project-content p{

    font-size:15px;

    line-height:1.8;

    color:#64748B;

    margin-bottom:18px;

    min-height:54px;

}

.project-content a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    text-decoration:none;

    font-size:15px;

    font-weight:600;

    color:#3B5BFF;

    transition:.3s;

}

.project-content a:hover{

    gap:12px;

}

.project-content a svg{

    width:16px;

    height:16px;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:1200px){

    .projects-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .admin-projects{

        padding:80px 0;

    }

    .admin-projects .section-title{

        margin-bottom:40px;

    }

    .admin-projects .section-title h2{

        font-size:34px;

    }

    .projects-grid{

        gap:20px;

    }

}

@media(max-width:576px){

    .projects-grid{

        grid-template-columns:1fr;

    }

    .admin-projects .section-title h2{

        font-size:28px;

    }

    .project-content{

        padding:20px;

    }

    .project-content h3{

        font-size:20px;

    }

    .project-content p{

        min-height:auto;

    }

}

/*=========================================
WEBSITE REDESIGN SIGNS
=========================================*/

.redesign-signs{

    padding:110px 0;
    background:#fff;

}

.redesign-signs .container{

    background:#fff;

    border:1px solid #EEF2FF;

    border-radius:24px;

    padding:60px;

    box-shadow:0 15px 40px rgba(15,23,42,.05);

}

/*=========================
SECTION TITLE
=========================*/

.redesign-signs .section-title{

    text-align:center;
    margin-bottom:55px;

}

.redesign-signs .section-subtitle{

    display:inline-block;

    font-size:13px;
    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    color:#2563EB;

    margin-bottom:15px;

}

.redesign-signs .section-title h2{

    font-size:44px;
    font-weight:800;

    color:#0F172A;

    line-height:1.2;

}

/*=========================
GRID
=========================*/

.redesign-signs-grid{

    display:grid;

    grid-template-columns:repeat(6,1fr);

    gap:22px;

}

/*=========================
CARD
=========================*/

.sign-card{

    background:#fff;

    border:1px solid #EEF2FF;

    border-radius:20px;

    padding:35px 22px;

    text-align:center;

    transition:.35s;

    box-shadow:0 10px 25px rgba(15,23,42,.04);

    min-height:270px;

}

.sign-card:hover{

    transform:translateY(-8px);

    border-color:#3B5BFF;

    box-shadow:0 20px 45px rgba(59,91,255,.15);

}

/*=========================
ICON
=========================*/

.sign-card .icon{

    width:72px;
    height:72px;

    margin:0 auto 24px;

    border-radius:50%;

    background:#EEF2FF;

    display:flex;

    align-items:center;
    justify-content:center;

    transition:.35s;

}

.sign-card:hover .icon{

    background:linear-gradient(135deg,#2563EB,#7C3AED);

}

.sign-card .icon svg{

    width:30px;
    height:30px;

    color:#2563EB;

    transition:.35s;

}

.sign-card:hover .icon svg{

    color:#fff;

}

/*=========================
TEXT
=========================*/

.sign-card h3{

    font-size:22px;

    font-weight:700;

    color:#0F172A;

    line-height:1.35;

    margin-bottom:15px;

    min-height:58px;

}

.sign-card p{

    font-size:15px;

    color:#64748B;

    line-height:1.8;

    max-width:180px;

    margin:auto;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:1200px){

.redesign-signs-grid{

grid-template-columns:repeat(3,1fr);

}

}

@media(max-width:768px){

.redesign-signs{

padding:80px 0;

}

.redesign-signs .container{

padding:40px 25px;

}

.redesign-signs .section-title{

margin-bottom:40px;

}

.redesign-signs .section-title h2{

font-size:34px;

}

.redesign-signs-grid{

grid-template-columns:repeat(2,1fr);

gap:20px;

}

}

@media(max-width:576px){

.redesign-signs .container{

padding:30px 18px;

}

.redesign-signs .section-title h2{

font-size:28px;

}

.redesign-signs-grid{

grid-template-columns:1fr;

}

.sign-card{

min-height:auto;

padding:30px 22px;

}

.sign-card h3{

font-size:20px;

min-height:auto;

}

.sign-card p{

max-width:100%;

}

}

/*=========================================
WEBSITE REDESIGN PACKAGE
=========================================*/

.redesign-package{

    padding:110px 0;
    background:#fff;

}

.redesign-package-wrapper{

    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:60px;

    background:#fff;

    border:1px solid #EEF2FF;

    border-radius:24px;

    padding:55px 45px;

    position:relative;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(15,23,42,.05);

}

/* Background Glow */

.redesign-package-wrapper::before{

    content:"";

    position:absolute;

    right:-180px;
    top:-180px;

    width:420px;
    height:420px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(99,102,241,.10),
    transparent 72%);

}

/*=========================
LEFT CONTENT
=========================*/

.package-content{

    flex:1;

    position:relative;
    z-index:2;

}

.package-content .section-subtitle{

    display:inline-block;

    font-size:13px;
    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    color:#2563EB;

    margin-bottom:16px;

}

.package-content h2{

    font-size:44px;

    font-weight:800;

    line-height:1.25;

    color:#0F172A;

    margin-bottom:40px;

}

.package-content h2 span{

    color:#3B5BFF;

}

/*=========================
CHECKLIST
=========================*/

.package-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

.package-grid ul{

    list-style:none;

    padding:0;
    margin:0;

}

.package-grid li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:18px;

}

.package-grid li:last-child{

    margin-bottom:0;

}

.package-grid li svg{

    width:18px;
    height:18px;

    color:#2563EB;

    flex-shrink:0;

    margin-top:2px;

}

.package-grid li span{

    font-size:15px;

    line-height:1.7;

    color:#475569;

    font-weight:500;

}

/*=========================
IMAGE
=========================*/

.package-image{

    width:290px;

    flex-shrink:0;

    position:relative;

    z-index:2;

}

.package-image img{

    width:100%;

    display:block;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:1200px){

.package-grid{

grid-template-columns:repeat(2,1fr);

}

.package-image{

width:240px;

}

}

@media(max-width:991px){

.redesign-package-wrapper{

flex-direction:column;

text-align:center;

padding:45px 35px;

}

.package-content h2{

font-size:36px;

}

.package-grid{

text-align:left;

}

.package-image{

order:-1;

width:230px;

margin-bottom:20px;

}

}

@media(max-width:768px){

.redesign-package{

padding:80px 0;

}

.package-grid{

grid-template-columns:1fr;

gap:10px;

}

.package-content h2{

font-size:32px;

}

}

@media(max-width:576px){

.redesign-package-wrapper{

padding:30px 20px;

}

.package-content{

text-align:left;

}

.package-content h2{

font-size:28px;

}

.package-grid li span{

font-size:14px;

}

.package-image{

width:200px;

margin:auto;

}

}

/*=========================================
BEFORE AFTER REDESIGN
=========================================*/

.before-after{

    padding:110px 0;
    background:#fff;

}

/*=========================
TITLE
=========================*/

.before-after .section-title{

    text-align:center;
    margin-bottom:60px;

}

.before-after .section-subtitle{

    display:inline-block;

    font-size:13px;
    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    color:#2563EB;

    margin-bottom:15px;

}

.before-after .section-title h2{

    font-size:46px;
    font-weight:800;

    color:#0F172A;

}

/*=========================
LAYOUT
=========================*/

.comparison-wrapper{

    display:grid;

    grid-template-columns:1fr auto 1fr;

    align-items:center;

    gap:30px;

}

/*=========================
CARD
=========================*/

.comparison-card{

    position:relative;

    background:#fff;

    border:1px solid #EEF2FF;

    border-radius:20px;

    padding:35px;

    box-shadow:0 15px 40px rgba(15,23,42,.05);

    transition:.35s;

}

.comparison-card:hover{

    transform:translateY(-6px);

    box-shadow:0 20px 50px rgba(37,99,235,.12);

}

/*=========================
BADGE
=========================*/

.badge{

    position:absolute;

    top:-14px;
    left:30px;

    padding:8px 18px;

    border-radius:999px;

    color:#fff;

    font-size:12px;
    font-weight:700;

    letter-spacing:.5px;

}

.before-badge{

    background:#4B5563;

}

.after-badge{

    background:linear-gradient(135deg,#2563EB,#7C3AED);

}

/*=========================
CONTENT
=========================*/

.comparison-content{

    display:flex;

    align-items:center;

    gap:30px;

}

/*=========================
IMAGE
=========================*/

.comparison-image{

    width:250px;

    flex-shrink:0;

}

.comparison-image img{

    width:100%;

    border-radius:10px;

    display:block;

}

/*=========================
LIST
=========================*/

.comparison-content ul{

    list-style:none;

    margin:0;
    padding:0;

}

.comparison-content li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    margin-bottom:14px;

}

.comparison-content li:last-child{

    margin-bottom:0;

}

.comparison-content li svg{

    width:18px;
    height:18px;

    flex-shrink:0;

    margin-top:2px;

}

.before-after .comparison-card:first-child li svg{

    color:#64748B;

}

.before-after .comparison-card:last-child li svg{

    color:#2563EB;

}

.comparison-content li span{

    font-size:15px;

    color:#475569;

    line-height:1.7;

    font-weight:500;

}

/*=========================
CENTER ARROW
=========================*/

.comparison-arrow{

    width:60px;
    height:60px;

    border-radius:50%;

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    display:flex;

    justify-content:center;
    align-items:center;

    color:#fff;

    box-shadow:0 15px 30px rgba(37,99,235,.25);

}

.comparison-arrow svg{

    width:28px;
    height:28px;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:1200px){

.comparison-content{

flex-direction:column;

align-items:flex-start;

}

.comparison-image{

width:100%;

}

}

@media(max-width:991px){

.comparison-wrapper{

grid-template-columns:1fr;

}

.comparison-arrow{

transform:rotate(90deg);

margin:auto;

}

}

@media(max-width:768px){

.before-after{

padding:80px 0;

}

.before-after .section-title h2{

font-size:34px;

}

.comparison-card{

padding:25px;

}

.comparison-content{

align-items:center;

text-align:left;

}

}

@media(max-width:576px){

.before-after .section-title h2{

font-size:28px;

}

.comparison-content{

gap:20px;

}

.comparison-image{

width:100%;

}

.badge{

left:20px;

}

.comparison-content li span{

font-size:14px;

}

}

/*==================================
WHY CHOOSE
==================================*/

.choose-us{

    padding:90px 0;

}

.choose-wrapper{

    background:linear-gradient(135deg,#08163f,#182a8d,#5B21B6);

    border-radius:28px;

    padding:70px 60px;

    display:grid;

    grid-template-columns:340px 1fr;

    align-items:center;

    gap:60px;

    overflow:hidden;

    position:relative;

}

.choose-wrapper::before{

    content:"";

    position:absolute;

    inset:0;

    background:
    radial-gradient(circle at right,#8B5CF633,transparent 45%),
    radial-gradient(circle at left,#2563EB22,transparent 40%);

    pointer-events:none;

}

.choose-content{

    position:relative;
    z-index:2;

}

.section-tag{

    color:#A5B4FC;

    font-size:13px;

    letter-spacing:1px;

    font-weight:700;

    text-transform:uppercase;

}

.choose-content h2{

    margin-top:18px;

    color:#fff;

    font-size:43px;

    line-height:1.15;

    font-weight:800;

}

.choose-content span{

    color:#4F8BFF;

}

.choose-features{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    position:relative;

    z-index:2;

}

.feature-item{

    text-align:center;

    padding:0 25px;

    border-left:1px solid rgba(255,255,255,.12);

}

.feature-item:first-child{

    border-left:none;

}

.feature-item svg{

    width:34px;

    height:34px;

    color:#3B82F6;

    margin-bottom:18px;

}

.feature-item h4{

    color:#fff;

    font-size:20px;

    margin-bottom:12px;

    font-weight:700;

}

.feature-item p{

    color:rgba(255,255,255,.75);

    line-height:1.7;

    font-size:15px;

}

/* Tablet */

@media(max-width:991px){

.choose-wrapper{

grid-template-columns:1fr;

text-align:center;

padding:60px 35px;

}

.choose-features{

grid-template-columns:repeat(2,1fr);

gap:40px;

}

.feature-item{

border:none;

padding:0;

}

}

/* Mobile */

@media(max-width:576px){

.choose-wrapper{

padding:45px 25px;

}

.choose-content h2{

font-size:36px;

}

.choose-features{

grid-template-columns:1fr;

gap:35px;

}

.feature-item{

border-top:1px solid rgba(255,255,255,.10);

padding-top:30px;

}

.feature-item:first-child{

border-top:none;

padding-top:0;

}

}

/*==================================
TECHNOLOGIES
==================================*/

.technologies{

    padding:90px 0;
    background:#fff;

}

.tech-title{

    margin-bottom:45px;

}

.tech-title span{

    color:#2563EB;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;

}

.tech-grid{

    display:grid;
    grid-template-columns:repeat(8,1fr);
    gap:25px;
    align-items:center;

}

.tech-item{

    text-align:center;
    transition:.35s;

}

.tech-item:hover{

    transform:translateY(-8px);

}

.tech-item i{

    font-size:58px;
    margin-bottom:18px;
    transition:.35s;

}

.tech-item h4{

    font-size:16px;
    font-weight:600;
    color:#374151;

}

/* Brand Colors */

.html{
    color:#E34F26;
}

.css{
    color:#1572B6;
}

.js{
    color:#F7DF1E;
}

.php{
    color:#777BB4;
}

.laravel{
    color:#FF2D20;
}

.wordpress{
    color:#21759B;
}

.react{
    color:#61DAFB;
}

.mysql{
    color:#0F5D9C;
}

/* Tablet */

@media(max-width:991px){

.tech-grid{

grid-template-columns:repeat(4,1fr);

}

}

/* Mobile */

@media(max-width:576px){

.technologies{

padding:70px 0;

}

.tech-grid{

grid-template-columns:repeat(2,1fr);
gap:35px;

}

.tech-item i{

font-size:50px;

}

}

/*==================================
FAQ
==================================*/

.faq-section{

    padding:120px 0;
    background:#fff;

}

.faq-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;

}

.faq-item{

    background:#F8FAFF;

    border:1px solid #E5E7EB;

    border-radius:14px;

    margin-bottom:18px;

    overflow:hidden;

    transition:.3s;

}

.faq-item:hover{

    box-shadow:0 12px 30px rgba(37,99,235,.08);

}

.faq-question{

    width:100%;

    border:none;

    background:none;

    padding:22px 24px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    font-size:17px;

    font-weight:600;

    cursor:pointer;

    color:#111827;

}

.faq-question svg{

    width:20px;

    height:20px;

    transition:.3s;

    flex-shrink:0;

}

.faq-answer{

    max-height:0;

    overflow:hidden;

    transition:max-height .35s ease;

}

.faq-answer p{

    padding:0 24px 22px;

    color:#6B7280;

    line-height:1.8;

}

.faq-item.active .faq-answer{

    max-height:200px;

}

.faq-item.active .faq-question svg{

    transform:rotate(180deg);

}

/* Responsive */

@media(max-width:991px){

.faq-grid{

grid-template-columns:1fr;

}

}

@media(max-width:576px){

.faq-section{

padding:80px 0;

}

.faq-question{

font-size:15px;
padding:18px;

}

.faq-answer p{

padding:0 18px 18px;

}

}

/*==================================
        CTA SECTION
==================================*/

.service-cta{

    padding:100px 0;

}

.cta-wrapper{

    background:linear-gradient(135deg,#1D4ED8 0%,#4F46E5 55%,#7C3AED 100%);

    border-radius:22px;

    padding:40px 45px;

    display:grid;

    grid-template-columns:110px 1fr auto;

    align-items:center;

    gap:35px;

    position:relative;

    overflow:hidden;

}

/* Background Glow */

.cta-wrapper::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    left:-140px;

    top:-90px;

}

.cta-wrapper::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    right:-80px;

    bottom:-120px;

}

/* Icon */

.cta-icon{

    position:relative;

    z-index:2;

}

.icon-circle{

    width:82px;

    height:82px;

    border-radius:50%;

    background:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.icon-circle svg{

    width:38px;

    height:38px;

    color:#2563EB;

}

/* Content */

.cta-content{

    position:relative;

    z-index:2;

}

.cta-content h2{

    color:#fff;

    font-size:38px;

    font-weight:700;

    margin-bottom:12px;

}

.cta-content p{

    color:rgba(255,255,255,.90);

    font-size:17px;

    line-height:1.8;

    max-width:600px;

}

/* Button */

.cta-btn{

    position:relative;

    z-index:2;

}

.theme-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#fff;

    color:#2563EB;

    text-decoration:none;

    padding:16px 30px;

    border-radius:10px;

    font-size:16px;

    font-weight:700;

    transition:.3s;

}

.theme-btn:hover{

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(0,0,0,.18);

}

.theme-btn svg{

    width:18px;

    height:18px;

}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

.cta-wrapper{

grid-template-columns:1fr;

text-align:center;

padding:45px 30px;

}

.cta-icon{

margin:auto;

}

.cta-content p{

margin:auto;

}

.cta-btn{

margin-top:10px;

}

}

@media(max-width:576px){

.service-cta{

padding:70px 0;

}

.cta-content h2{

font-size:30px;

}

.cta-content p{

font-size:15px;

}

.theme-btn{

padding:15px 26px;

}

}