/* =====================================================
   GOOGLE FONT
===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* =====================================================
   ROOT VARIABLES
===================================================== */

:root{

    --primary:#35b3e5;
    --secondary:#0F172A;
    --text:#475569;
    --light:#f8fafc;
    --white:#ffffff;
    --border:#e2e8f0;
    --shadow:0 15px 40px rgba(15,23,42,.08);
    --radius:20px;
    --transition:.35s ease;

}

/* =====================================================
   GLOBAL
===================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    background:#fff;
    color:var(--secondary);
    overflow-x:hidden;

}

section{

    padding:100px 0;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;
    padding-left:0;
    margin-bottom:0;

}

.container{

    max-width:1200px;

}

/* =====================================================
   BUTTONS
===================================================== */

.btn-main{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 35px;
    background:var(--primary);
    color:#fff;
    border-radius:50px;
    font-weight:600;
    transition:var(--transition);

}

.btn-main:hover{

    background:#3d28c6;
    transform:translateY(-3px);
    color:#fff;

}

.btn-outline-main{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:15px 35px;
    border:2px solid var(--primary);
    border-radius:50px;
    color:var(--primary);
    font-weight:600;
    transition:var(--transition);

}

.btn-outline-main:hover{

    background:var(--primary);
    color:#fff;

}

/* =====================================================
   HERO
===================================================== */

.services-hero{

    padding:150px 0 120px;
    background:linear-gradient(135deg,#fff,#f5f8ff);

}

.hero-tag{

    display:inline-block;
    background:#ffeaea;
    color:var(--primary);
    padding:8px 18px;
    border-radius:50px;
    font-weight:600;
    margin-bottom:20px;

}

.services-hero h1{

    font-size:clamp(2.6rem,5vw,4.3rem);
    font-weight:800;
    line-height:1.15;
    margin-bottom:25px;

}

.services-hero p{

    color:var(--text);
    font-size:1.08rem;
    line-height:1.9;
    margin-bottom:35px;

}

.hero-btns{

    display:flex;
    gap:15px;
    flex-wrap:wrap;

}

.hero-image{

    animation:float 5s ease-in-out infinite;

}

@keyframes float{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-18px);

    }

}

/* =====================================================
   STICKY SERVICE MENU
===================================================== */

.services-menu{

    position:sticky;
    top:0;
    z-index:999;
    /* background:#a02727; */
    border-bottom:1px solid var(--border);
    box-shadow:0 5px 15px rgba(0,0,0,.05);

}

.menu-wrapper{

    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
    padding:20px 0;

}

.menu-wrapper a{

    display:flex;
    align-items:center;
    gap:8px;
    padding:12px 18px;
    border-radius:50px;
    background:#f8fafc;
    color:var(--secondary);
    font-weight:500;
    transition:var(--transition);

}

.menu-wrapper a:hover{

    background:var(--primary);
    color:#fff;
    transform:translateY(-2px);

}

.menu-wrapper i{

    font-size:18px;

}

/* =====================================================
   COMMON SERVICE SECTION
===================================================== */

.service-block{

    position:relative;
    background: linear-gradient(60deg,#b6cfe8 0%,#fcfcfa 100%);

}

.service-block:nth-child(even){

    /* background:linear-gradient(60deg,#f5f7f7 0%,#a8d1d1 100%); */
    

}

.service-tag{

    display:inline-block;
    background:#ffeaea;
    color:var(--primary);
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:18px;

}

.service-block h2{

    font-size:2.3rem;
    font-weight:700;
    margin-bottom:20px;
    line-height:1.25;

}

.service-block p{

    color:var(--text);
    line-height:1.9;
    margin-bottom:30px;

}

.service-image{

    border-radius:25px;
    box-shadow:var(--shadow);

}

/*=====================================================
SERVICE LIST
=====================================================*/

.service-list li{

    position:relative;
    padding-left:28px;
    margin-bottom:16px;
    color:var(--secondary);
    font-weight:500;
    transition:.3s;

}

.service-list li::before{

    content:"✓";
    position:absolute;
    left:0;
    top:0;
    color:var(--primary);
    font-size:18px;
    font-weight:700;

}

.service-list li:hover{

    transform:translateX(6px);
    color:var(--primary);

}

/*=====================================================
TECH STACK
=====================================================*/

.tech-stack{

    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:35px;

}

.tech-stack span{

    padding:10px 18px;
    border-radius:40px;
    background:#fff;
    border:1px solid var(--border);
    box-shadow:0 10px 20px rgba(0,0,0,.04);
    font-size:.9rem;
    font-weight:600;
    transition:.35s;

}

.tech-stack span:hover{

    background:var(--primary);
    color:#fff;
    border-color:var(--primary);
    transform:translateY(-5px);

}

/*=====================================================
SECTION TITLES
=====================================================*/

.section-tag{

    display:inline-block;
    background:#ffeaea;
    color:var(--primary);
    padding:8px 20px;
    border-radius:30px;
    font-weight:600;
    margin-bottom:18px;

}

.section-title{

    font-size:2.7rem;
    font-weight:700;
    margin-bottom:18px;

}


.section-title p{
    text-align: justify;
}

.section-subtitle{

    max-width:700px;
    margin:auto;
    color:var(--text);
    line-height:1.8;

}

/*=====================================================
WHY CHOOSE US
=====================================================*/

.why-us{

    background:#f8fafc;

}

.feature-card{

    background:#fff;
    border-radius:22px;
    padding:40px 30px;
    text-align:center;
    box-shadow:var(--shadow);
    height:100%;
    transition:.4s;

}

.feature-card:hover{

    transform:translateY(-10px);

}

.feature-card i{

    width:80px;
    height:80px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#ffeaea;
    color:var(--primary);
    font-size:34px;
    margin-bottom:25px;

}

.feature-card h5{

    font-size:1.3rem;
    margin-bottom:15px;
    font-weight:700;

}

.feature-card p{

    color:var(--text);
    line-height:1.8;
    margin:0;

}

/*=====================================================
CTA
=====================================================*/

.service-cta{

    padding:120px 0;
    background:linear-gradient(135deg,#0F172A,#1E293B);

}

.cta-box{

    background:rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.08);
    border-radius:30px;
    padding:70px 60px;
    backdrop-filter:blur(12px);

}

.cta-box h2{

    color:#fff;
    font-size:2.8rem;
    font-weight:700;
    margin-bottom:20px;

}

.cta-box p{

    color:#dbe4f1;
    max-width:700px;
    margin:0 auto 35px;
    line-height:1.9;

}

/*=====================================================
FAQ
=====================================================*/

.faq-section{

    background:#fff;

}

.accordion-item{

    border:none;
    border-radius:18px !important;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.06);

}

.accordion-button{

    padding:22px 28px;
    font-weight:600;
    font-size:1.05rem;
    background:#fff;

}

.accordion-button:not(.collapsed){

    background:#fff;
    color:var(--primary);
    box-shadow:none;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    color:var(--text);
    line-height:1.9;
    padding:22px 28px;

}

/*=====================================================
IMAGE EFFECT
=====================================================*/

.service-image{

    transition:.5s;

}

.service-image:hover{

    transform:scale(1.03) rotate(-1deg);

}

/*=====================================================
SCROLL ANIMATION
=====================================================*/

.reveal{

    opacity:0;
    transform:translateY(80px);
    transition:1s;

}

.reveal.active{

    opacity:1;
    transform:translateY(0);

}

/*=====================================================
ACTIVE SERVICE MENU
=====================================================*/

.menu-wrapper a.active{

    background:var(--primary);
    color:#fff;
    box-shadow:0 12px 30px rgba(229,57,53,.25);

}

.menu-wrapper a.active i{

    color:#fff;

}

/*=====================================================
SECTION SPACING
=====================================================*/

.service-block{

    overflow:hidden;

}

.service-block .row{

    min-height:250px;

}

.alternate{

    background:#fafafa;

}

/*=====================================================
IMAGE CONTAINER
=====================================================*/

.service-image{

    width:100%;
    max-width:550px;
    margin:auto;
    border-radius:25px;
    object-fit:cover;

}

/*=====================================================
HOVER EFFECT
=====================================================*/

.service-block:hover .service-image{

    transform:translateY(-8px) scale(1.02);

}

.service-block:hover .service-tag{

    background:var(--primary);
    color:#fff;

}

/*=====================================================
CUSTOM SCROLLBAR
=====================================================*/

/* ::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#f3f4f6;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);
    border-radius:50px;

}

::-webkit-scrollbar-thumb:hover{

    background:#2b28c6;

} */

/*=====================================================
SELECTION
=====================================================*/

::selection{

    background:var(--primary);
    color:#fff;

}

/*=====================================================
FOCUS
=====================================================*/

button:focus,
input:focus,
textarea:focus{

    outline:none;
    box-shadow:none;

}

/*=====================================================
UTILITY CLASSES
=====================================================*/

.mt-60{

    margin-top:60px;

}

.mb-60{

    margin-bottom:60px;

}

.shadow-card{

    box-shadow:var(--shadow);

}

.rounded-25{

    border-radius:25px;

}

/*=====================================================
RESPONSIVE
=====================================================*/

@media (max-width:1199px){

    .services-hero{

        padding:120px 0 90px;

    }

    .section-title{

        font-size:2.3rem;

    }

}

@media (max-width:991px){

    section{

        padding:80px 0;

    }

    .services-hero{

        text-align:center;

    }

    .hero-btns{

        justify-content:center;

    }

    .hero-image{

        margin-top:50px;
        max-width:500px;
        margin-inline:auto;

    }

    .service-block{

        text-align:center;

    }

    .service-list{

        margin-bottom:20px;

    }

    .service-list li{

        padding-left:0;

    }

    .service-list li::before{

        display:none;

    }

    .tech-stack{

        justify-content:center;

    }

    .service-image{

        margin-bottom:40px;

    }

    .menu-wrapper{

        justify-content:flex-start;
        overflow-x:auto;
        flex-wrap:nowrap;
        padding-bottom:10px;
        scrollbar-width:none;

    }

    .menu-wrapper::-webkit-scrollbar{

        display:none;

    }

}

@media (max-width:768px){

    .services-hero h1{

        font-size:2.3rem;

    }

    .service-block h2{

        font-size:2rem;

    }

    .section-title{

        font-size:2rem;

    }

    .cta-box{

        padding:50px 30px;

    }

    .cta-box h2{

        font-size:2rem;

    }

    .feature-card{

        padding:35px 25px;

    }

}

@media (max-width:576px){

    section{

        padding:70px 0;

    }

    .services-hero{

        padding:100px 0 70px;

    }

    .hero-tag,
    .service-tag,
    .section-tag{

        font-size:.8rem;

    }

    .btn-main,
    .btn-outline-main{

        width:100%;
        justify-content:center;

    }

    .hero-btns{

        flex-direction:column;

    }

    .menu-wrapper a{

        font-size:.9rem;
        padding:10px 16px;

    }

    .tech-stack span{

        font-size:.8rem;
        padding:8px 14px;

    }

    .accordion-button{

        font-size:.95rem;

    }

    .feature-card i{

        width:65px;
        height:65px;
        font-size:28px;

    }

}


/* .service-list{
    padding-bottom: 80px;
} */