/*=========================================
WEBSITE REDESIGN HERO
=========================================*/

.website-redesign-hero{

    position:relative;
    overflow:hidden;

    padding:120px 0 90px;

    background:#fff;

}

/* Background Glow */

.website-redesign-hero::before{

    content:"";

    position:absolute;

    left:-180px;
    top:-120px;

    width:520px;
    height:520px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(99,102,241,.10),
    transparent 72%);

}

.website-redesign-hero::after{

    content:"";

    position:absolute;

    right:-150px;
    bottom:-150px;

    width:420px;
    height:420px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(59,130,246,.08),
    transparent 72%);

}

.website-redesign-hero .container{

    position:relative;
    z-index:2;

}

.hero-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    align-items:center;

    gap:70px;

}

/*=========================
LEFT
=========================*/

.hero-subtitle{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:999px;

    background:#EEF2FF;

    color:#2563EB;

    font-size:13px;

    font-weight:700;

    letter-spacing:.8px;

    text-transform:uppercase;

    margin-bottom:28px;

}

.hero-subtitle svg{

    width:16px;
    height:16px;

}

/* Heading */

.hero-content h1{

    font-size:62px;

    line-height:1.12;

    font-weight:800;

    color:#0F172A;

    margin-bottom:24px;

}

.hero-content h1 span{

    color:#3B5BFF;

}

/* Paragraph */

.hero-content p{

    max-width:560px;

    font-size:18px;

    line-height:1.9;

    color:#64748B;

    margin-bottom:38px;

}

/*=========================
BUTTONS
=========================*/

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:45px;

}

.btn-primary,
.btn-secondary{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    font-weight:600;

    border-radius:14px;

    transition:.35s;

}

.btn-primary{

    padding:16px 28px;

    background:linear-gradient(135deg,#2563EB,#7C3AED);

    color:#fff;

    box-shadow:0 18px 35px rgba(59,91,255,.25);

}

.btn-primary:hover{

    transform:translateY(-3px);

}

.btn-secondary{

    padding:16px 28px;

    border:1px solid #E5E7EB;

    background:#fff;

    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;

}

/*=========================
IMAGE
=========================*/

.hero-image{

    text-align:right;

}

.hero-image img{

    width:100%;

    max-width:690px;

    display:block;

    margin-left:auto;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:1200px){

.hero-content h1{

font-size:52px;

}

}

@media(max-width:991px){

.hero-wrapper{

grid-template-columns:1fr;

gap:60px;

}

.hero-content{

text-align:center;

}

.hero-content p{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.hero-features{

justify-content:center;

}

.hero-image{

text-align:center;

}

.hero-image img{

margin:auto;

max-width:620px;

}

}

@media(max-width:768px){

.website-redesign-hero{

padding:90px 0 70px;

}

.hero-content h1{

font-size:40px;

}

.hero-content p{

font-size:16px;

}

}

@media(max-width:576px){

.hero-content h1{

font-size:32px;

line-height:1.25;

}

.hero-buttons{

flex-direction:column;

align-items:center;

}

.btn-primary,
.btn-secondary{

width:100%;

justify-content:center;

}

.hero-features{

flex-direction:column;

align-items:flex-start;

gap:15px;

}

}


/*=========================================
WHY WEBSITE REDESIGN
=========================================*/

.why-redesign{

    padding:110px 0;
    background:#fff;
    position:relative;
    overflow:hidden;

}

/* Background Glow */

.why-redesign::before{

    content:"";
    position:absolute;

    width:520px;
    height:520px;

    left:-180px;
    top:-100px;

    border-radius:50%;

    background:radial-gradient(circle,
    rgba(99,102,241,.10),
    transparent 72%);

}

.why-redesign .container{

    position:relative;
    z-index:2;

}

.why-redesign-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;

}

/*=========================
IMAGE
=========================*/

.why-redesign-image{

    text-align:center;

}

.why-redesign-image img{

    width:100%;
    max-width:620px;
    display:block;
    margin:auto;

}

/*=========================
CONTENT
=========================*/

.why-redesign-content .section-subtitle{

    display:inline-block;

    font-size:13px;
    font-weight:700;

    letter-spacing:1px;
    text-transform:uppercase;

    color:#2563EB;

    margin-bottom:18px;

}

.why-redesign-content h2{

    font-size:48px;
    line-height:1.2;

    font-weight:800;

    color:#0F172A;

    margin-bottom:22px;

}

.why-redesign-content h2 span{

    color:#3B5BFF;

}

.why-redesign-content p{

    font-size:17px;
    line-height:1.9;

    color:#64748B;

    margin-bottom:35px;

    max-width:560px;

}

/*=========================
CHECK LIST
=========================*/

.redesign-list{

    list-style:none;
    margin:0;
    padding:0;

}

.redesign-list li{

    display:flex;
    align-items:flex-start;
    gap:14px;

    margin-bottom:18px;

}

.redesign-list li:last-child{

    margin-bottom:0;

}

.redesign-list li svg{

    width:20px;
    height:20px;

    color:#2563EB;

    flex-shrink:0;

    margin-top:2px;

}

.redesign-list li span{

    font-size:16px;
    font-weight:500;

    color:#334155;

    line-height:1.7;

}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

.why-redesign{

padding:90px 0;

}

.why-redesign-wrapper{

grid-template-columns:1fr;
gap:60px;

}

.why-redesign-image{

order:1;

}

.why-redesign-content{

order:2;
text-align:center;

}

.why-redesign-content p{

margin-left:auto;
margin-right:auto;

}

.redesign-list{

display:inline-block;
text-align:left;

}

}

@media(max-width:768px){

.why-redesign{

padding:80px 0;

}

.why-redesign-content h2{

font-size:36px;

}

.why-redesign-content p{

font-size:16px;

}

}

@media(max-width:576px){

.why-redesign-content{

text-align:left;

}

.why-redesign-content h2{

font-size:30px;

}

.redesign-list{

display:block;

}

.redesign-list li{

gap:12px;

}

.redesign-list li span{

font-size:15px;

}

}

/*==========================================
    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;
}
}

/*=================================
WHAT'S INCLUDED
=================================*/

.included-section{

    padding:120px 0;
    background:#fff;

}

.included-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;

}

.included-image img{

    width:100%;
    display:block;

}

.section-badge{

    display:inline-block;
    color:#2563EB;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:15px;

}

.included-content h2{

    font-size:46px;
    font-weight:800;
    line-height:1.2;
    color:#111827;
    margin-bottom:35px;

}

.included-content h2 span{

    color:#2563EB;

}

.included-list{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;

}

.included-list ul{

    list-style:none;
    padding:0;
    margin:0;

}

.included-list li{

    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:22px;
    color:#374151;
    font-size:16px;
    line-height:1.6;

}

.included-list li svg{

    width:20px;
    height:20px;
    color:#2563EB;
    flex-shrink:0;
    margin-top:2px;

}

/*========================
Tablet
========================*/

@media(max-width:991px){

.included-wrapper{

grid-template-columns:1fr;
gap:60px;

}

.included-content{

text-align:center;

}

.included-list{

grid-template-columns:1fr;

}

.included-list li{

justify-content:flex-start;
text-align:left;

}

}

/*========================
Mobile
========================*/

@media(max-width:576px){

.included-section{

padding:80px 0;

}

.included-content h2{

font-size:34px;

}

}

/*=========================================
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;

}

}