/*====================================
            HERO SECTION
====================================*/

.services-hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:#ffffff;

    padding:140px 8% 90px;

}

.hero-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

.hero-tag{

    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:#EFF6FF;

    color:#2563EB;

    font-size:.9rem;

    font-weight:600;

    letter-spacing:.5px;

    margin-bottom:25px;

}

.hero-content h1{

    font-size:4rem;

    line-height:1.1;

    color:#0F172A;

    margin-bottom:25px;

    font-weight:800;

}

.hero-content h1 span{

    color:#3B82F6;

}

.hero-content p{

    font-size:1.1rem;

    color:#64748B;

    line-height:1.9;

    max-width:580px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.hero-image{

    display:flex;

    justify-content:flex-end;

}

.hero-image img{

    width:100%;

    max-width:720px;

}

@media(max-width:992px){

.services-hero{

padding-top:120px;

}

.hero-wrapper{

grid-template-columns:1fr;

text-align:center;

}

.hero-content p{

margin:auto auto 35px;

}

.hero-buttons{

justify-content:center;

}

.hero-image{

justify-content:center;

margin-top:40px;

}

.hero-image img{

max-width:520px;

}

}

@media(max-width:768px){

.services-hero{

padding:110px 6% 70px;

}

.hero-content h1{

font-size:2.5rem;

}

.hero-content p{

font-size:1rem;

}

.hero-tag{

font-size:.8rem;

}

.hero-image img{

max-width:100%;

}

}

/*====================================
            OUR SERVICES
====================================*/

.services-section{

    padding:120px 8%;

    background:#F8FBFF;

}

.services-grid{

    display:grid;

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

    gap:35px;

    margin-top:70px;

}

.service-card{

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

    backdrop-filter:blur(18px);

    border:1px solid rgba(59,130,246,.10);

    border-radius:28px;

    padding:40px;

    transition:.35s;

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

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 55px rgba(37,99,235,.16);

}

.service-icon{

    width:72px;

    height:72px;

    background:#EFF6FF;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:2rem;

    margin-bottom:25px;

    transition:.35s;

}

.service-card:hover .service-icon{

    transform:rotate(-8deg);

}

.service-card h3{

    font-size:1.6rem;

    color:#0F172A;

    margin-bottom:18px;

}

.service-card p{

    color:#64748B;

    line-height:1.8;

    margin-bottom:25px;

}

.service-card a{

    color:#3B82F6;

    font-weight:600;

    text-decoration:none;

}

@media(max-width:768px){

.services-grid{

grid-template-columns:1fr;

}

}

/*====================================
        DEVELOPMENT PROCESS
====================================*/

.process-section{

    padding:120px 8%;

    background:#ffffff;

}

.process-timeline{

    display:flex;

    align-items:flex-start;

    justify-content:space-between;

    margin-top:80px;

    gap:15px;

    overflow-x:auto;

    padding-bottom:20px;

}

.process-step{

    min-width:180px;

    text-align:center;

}

.step-number{

    width:80px;

    height:80px;

    margin:auto;

    border-radius:50%;

    background:#EFF6FF;

    color:#3B82F6;

    font-size:1.6rem;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-bottom:25px;

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

}

.process-step h4{

    color:#0F172A;

    margin-bottom:12px;

    font-size:1.2rem;

}

.process-step p{

    color:#64748B;

    line-height:1.7;

    font-size:.95rem;

}

.line{

    flex:1;

    height:2px;

    background:#DBEAFE;

    margin-top:40px;

    min-width:40px;

}

@media(max-width:992px){

.process-timeline{

justify-content:flex-start;

}

}

/*====================================
        INDUSTRIES
====================================*/

.industries{

    padding:120px 8%;

    background:#F8FBFF;

}

.industry-grid{

    display:grid;

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

    gap:28px;

    margin-top:70px;

}

.industry-card{

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

    backdrop-filter:blur(16px);

    border:1px solid rgba(59,130,246,.08);

    border-radius:24px;

    padding:35px 28px;

    position:relative;

    transition:.35s;

    overflow:hidden;

}

.industry-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:#3B82F6;

    transform:scaleX(0);

    transition:.35s;

}

.industry-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(37,99,235,.12);

}

.industry-card:hover::before{

    transform:scaleX(1);

}

.industry-icon{

    font-size:2.2rem;

    margin-bottom:20px;

}

.industry-card h3{

    color:#0F172A;

    margin-bottom:15px;

    font-size:1.35rem;

}

.industry-card p{

    color:#64748B;

    line-height:1.8;

}

@media(max-width:992px){

.industry-grid{

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

}

}

@media(max-width:768px){

.industry-grid{

grid-template-columns:1fr;

}

}

/*====================================
            BOOK A DEMO
====================================*/

.book-demo{

    padding:120px 8%;

    background:#ffffff;

}

.demo-card{

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:60px;

    align-items:center;

    padding:70px;

    border-radius:34px;

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

    backdrop-filter:blur(18px);

    border:1px solid rgba(37,99,235,.10);

    box-shadow:0 20px 55px rgba(37,99,235,.08);

}

.demo-tag{

    display:inline-block;

    padding:8px 18px;

    background:#DBEAFE;

    color:#2563EB;

    border-radius:40px;

    font-size:.9rem;

    font-weight:600;

    margin-bottom:20px;

}

.demo-content h2{

    font-size:3rem;

    color:#0F172A;

    margin-bottom:22px;

    line-height:1.2;

}

.demo-content p{

    color:#64748B;

    line-height:1.9;

    margin-bottom:35px;

}

.demo-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.demo-image{

    display:flex;

    justify-content:center;

}

.demo-image img{

    width:100%;

    max-width:400px;

}

@media(max-width:992px){

.demo-card{

grid-template-columns:1fr;

text-align:center;

padding:50px;

}

.demo-buttons{

justify-content:center;

}

.demo-content h2{

font-size:2.3rem;

}

}

@media(max-width:768px){

.book-demo{

padding:90px 6%;

}

.demo-card{

padding:35px 25px;

}

.demo-content h2{

font-size:2rem;

}

}