/*=========================================
  Services Page
=========================================*/

.services-page{
    padding-top:90px; /* Fixed header ki height */
}
/*==============================
 Services Banner
==============================*/

.services-banner{
    position:relative;
    width:100%;
    height:700px;
    background:url('../images/services/banner.webp') center center/cover no-repeat;
    display:flex;
    align-items:center;
}

.services-banner-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.services-banner .container{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.services-banner-content{
    max-width:700px;
    color:#fff;
}

.services-banner .subtitle{
    display:inline-block;
    color:#f97316;
    font-size:18px;
    font-weight:600;
    margin-bottom:15px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.services-banner h1{
    font-size:56px;
    line-height:1.2;
    margin-bottom:25px;
    font-weight:700;
}

.services-banner p{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
    color:#e5e7eb;
}

.banner-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-primary,
.btn-secondary{
    display:inline-block;
    padding:15px 35px;
    border-radius:6px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:#f97316;
    color:#fff;
}

.btn-primary:hover{
    background:#ea580c;
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#111827;
}

@media(max-width:768px){

.services-banner{
    height:550px;
}

.services-banner h1{
    font-size:36px;
}

.services-banner p{
    font-size:16px;
}

.banner-buttons{
    flex-direction:column;
}

.btn-primary,
.btn-secondary{
    text-align:center;
}

}
/*==============================
  Services Intro
==============================*/

.services-intro{
    padding:100px 0;
    background:#fff;
}

.services-intro .container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    padding:0 20px;
}

.intro-image img{
    width:100%;
    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.section-subtitle{
    display:inline-block;
    color:#f97316;
    font-size:16px;
    font-weight:600;
    text-transform:uppercase;
    margin-bottom:15px;
    letter-spacing:1px;
}

.intro-content h2{
    font-size:42px;
    color:#0f172a;
    margin-bottom:20px;
    line-height:1.3;
}

.intro-content p{
    font-size:17px;
    color:#555;
    line-height:1.8;
    margin-bottom:18px;
}

.intro-list{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.intro-list li{
    margin-bottom:12px;
    font-size:16px;
    color:#222;
    font-weight:500;
}

@media(max-width:991px){

.services-intro .container{
    grid-template-columns:1fr;
}

.intro-content{
    margin-top:20px;
}

.intro-content h2{
    font-size:32px;
}

}
/*=========================================
   SERVICES GRID
=========================================*/

.services-grid{
    padding:100px 0;
    background:#f8fafc;
}

.services-grid .container{
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title span{
    display:inline-block;
    color:#f97316;
    font-size:16px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:12px;
}

.section-title h2{
    font-size:42px;
    color:#0f172a;
    margin-bottom:15px;
    font-weight:700;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#64748b;
    font-size:17px;
    line-height:1.8;
}

.services-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.service-card{
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
    transition:.35s ease;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,.15);
}

.service-card img{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
}

.service-content{
    padding:25px;
}

.service-content h3{
    font-size:24px;
    color:#0f172a;
    margin-bottom:15px;
    font-weight:700;
}

.service-content p{
    color:#64748b;
    line-height:1.7;
    margin-bottom:20px;
    font-size:15px;
}

.service-content a{
    display:inline-block;
    color:#f97316;
    font-weight:700;
    text-decoration:none;
    transition:.3s;
}

.service-content a:hover{
    color:#ea580c;
    padding-left:6px;
}

/*==============================
 Responsive
==============================*/

@media(max-width:991px){

.services-wrapper{
    grid-template-columns:repeat(2,1fr);
}

.section-title h2{
    font-size:34px;
}

}

@media(max-width:768px){

.services-grid{
    padding:70px 0;
}

.services-wrapper{
    grid-template-columns:1fr;
}

.section-title h2{
    font-size:28px;
}

.service-card img{
    height:220px;
}

}
.service-card{
    display:flex;
    flex-direction:column;
}

.service-content{
    flex:1;
    display:flex;
    flex-direction:column;
}

.service-content a{
    margin-top:auto;
}
.service-card{
    overflow:hidden;
}

.service-card img{
    transition:0.5s ease;
}

.service-card:hover img{
    transform:scale(1.08);
}
.service-content h3::after{
    content:'';
    display:block;
    width:60px;
    height:3px;
    background:#f97316;
    margin-top:10px;
    border-radius:20px;
}
/*=========================================
   PROCESS SECTION
=========================================*/

.process-section{
    padding:100px 0;
    background:#ffffff;
}

.process-wrapper{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;
}

.process-card{
    background:#fff;
    border-radius:12px;
    padding:40px 30px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.process-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

.process-number{

    width:70px;

    height:70px;

    background:#f97316;

    color:#fff;

    font-size:24px;

    font-weight:700;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

}

.process-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:#0f172a;

}

.process-card p{

    color:#64748b;

    line-height:1.8;

    font-size:15px;

}

/* Responsive */

@media(max-width:991px){

.process-wrapper{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.process-wrapper{

grid-template-columns:1fr;

}

.process-section{

padding:70px 0;

}

}
/*=========================================
   WHY CHOOSE US
=========================================*/

.why-service{
    padding:100px 0;
    background:#f8fafc;
}

.why-service .container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    padding:0 20px;
}

.why-service-image img{
    width:100%;
    border-radius:15px;
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.why-service-content h2{
    font-size:42px;
    color:#0f172a;
    margin:20px 0;
    line-height:1.3;
}

.why-service-content p{
    color:#64748b;
    line-height:1.8;
    margin-bottom:30px;
}

.why-list{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.why-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 8px 20px rgba(0,0,0,.06);
    transition:.3s;
}

.why-item:hover{
    transform:translateX(8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.why-item span{
    width:45px;
    height:45px;
    background:#f97316;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;
    font-weight:700;
    flex-shrink:0;
}

.why-item h4{
    color:#0f172a;
    margin-bottom:8px;
    font-size:20px;
}

.why-item p{
    margin:0;
    font-size:15px;
}

@media(max-width:991px){

.why-service .container{
    grid-template-columns:1fr;
}

.why-service-content{
    margin-top:20px;
}

}

@media(max-width:768px){

.why-service{
    padding:70px 0;
}

.why-service-content h2{
    font-size:30px;
}

}
/*=========================================
    FAQ SECTION
=========================================*/

.faq-section{
    padding:100px 0;
    background:#ffffff;
}

.faq-wrapper{
    max-width:950px;
    margin:60px auto 0;
}

.faq-item{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:12px;
    margin-bottom:20px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.3s ease;
}

.faq-item:hover{
    box-shadow:0 15px 35px rgba(0,0,0,.10);
}

.faq-question{
    width:100%;
    padding:22px 30px;
    border:none;
    background:#ffffff;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
    font-size:19px;
    font-weight:700;
    color:#0f172a;
    transition:.3s;
}

.faq-question:hover{
    color:#f97316;
}

.faq-question span{
    width:34px;
    height:34px;
    background:#f97316;
    color:#ffffff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:700;
    transition:.3s;
}

.faq-item.active .faq-question span{
    transform:rotate(45deg);
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    background:#f8fafc;
}

.faq-answer p{
    padding:20px 30px 30px;
    margin:0;
    font-size:16px;
    color:#64748b;
    line-height:1.8;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

/*==============================
 Responsive
==============================*/

@media(max-width:768px){

.faq-section{
    padding:70px 0;
}

.faq-question{
    font-size:17px;
    padding:18px 20px;
}

.faq-answer p{
    padding:18px 20px 24px;
    font-size:15px;
}

}
/*=========================================
    CTA SECTION
=========================================*/

.service-cta{
    padding:100px 0;
    background:linear-gradient(rgba(15,23,42,.88),rgba(15,23,42,.88)),
    url('/assets/images/services/banner.webp') center/cover no-repeat;
    text-align:center;
}

.cta-content{
    max-width:850px;
    margin:auto;
}

.cta-content h2{
    color:#fff;
    font-size:48px;
    margin:20px 0;
    line-height:1.3;
}

.cta-content p{
    color:#e2e8f0;
    font-size:18px;
    line-height:1.9;
    margin-bottom:40px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.btn{
    display:inline-block;
    padding:16px 36px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.btn-primary{
    background:#f97316;
    color:#fff;
}

.btn-primary:hover{
    background:#ea580c;
}

.btn-secondary{
    background:transparent;
    color:#fff;
    border:2px solid #fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#0f172a;
}

@media(max-width:768px){

.service-cta{
    padding:70px 0;
}

.cta-content h2{
    font-size:32px;
}

.cta-content p{
    font-size:16px;
}

.cta-buttons{
    flex-direction:column;
    align-items:center;
}

.btn{
    width:260px;
    text-align:center;
}

}