/*==================================
        SERVICE HERO
===================================*/

.service-hero{
    position: relative;
    width: 100%;
    margin-top: 82px;                 /* Same as navbar height */
    height: calc(100vh - 82px);       /* Hero starts below navbar */
    overflow: hidden;
}

.service-video{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.service-overlay{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.35);
    z-index: 2;
}

.service-content{
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
    text-align: center;

    max-width: 850px;
    margin: 0 auto;
    padding: 0 20px;

    transform: translateY(60px);   /* Push content down */
}

.service-tag{
    display:inline-block;
    padding:10px 22px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:50px;
    backdrop-filter:blur(10px);
    color:#fff;
    font-size:13px;
    letter-spacing:2px;
    margin-bottom:25px;
}

.service-content h1{
    font-size:64px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:25px;
}

.service-content p{
    max-width:650px;
    font-size:15px;
    line-height:1.9;
    color:#d5d5d5;
    margin-bottom:40px;
}

/* Tablet */

@media (max-width:991px){

.service-content h1{
    font-size:48px;
}

}

/* Mobile */

@media (max-width:768px){

.service-hero{
    margin-top:80px;
    height:calc(80vh - 80px);
}

.service-content h1{
    font-size:34px;
}

.hero-buttons{
    flex-direction:column;
    width:100%;
    max-width:260px;
}

}

/*==================================
        SERVICE OVERVIEW
===================================*/

.service-overview{
    padding:120px 0;
    background:#050505;
}

.overview-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.overview-image{
    overflow:hidden;
    border-radius:24px;
}

.overview-image img{
    width:100%;
    display:block;
    transition:.5s;
}

.overview-image:hover img{
    transform:scale(1.05);
}

.overview-content h2{
    font-size:20px;
    margin:20px 0;
}

.overview-content p{
    font-size:15px;
    line-height:1.9;
    color:#b5b5b5;
    margin-bottom:35px;
}

.overview-list{
    display:grid;
    gap:18px;
    margin-bottom:40px;
}

.overview-list div{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:15px;
}

.overview-list i{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#111;
    display:flex;
    align-items:center;
    justify-content:center;
}

@media(max-width:991px){

.overview-grid{
    grid-template-columns:1fr;
}

}




/*==================================
        FEATURES
===================================*/

.service-features{
    padding:120px 0;
    background:#0a0a0a;
}

.features-list{
    margin-top:60px;
    display:flex;
    flex-direction:column;
    gap:24px;
}

.feature-card{
    display:flex;
    align-items:center;
    gap:30px;
    padding:35px;
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    transition:.35s;
}

.feature-card:hover{
    border-color:#fff;
    transform:translateY(-6px);
}

.feature-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#1a1a1a;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.feature-icon i{
    font-size:28px;
    color:#fff;
}

.feature-info{
    flex:1;
}

.feature-info h3{
    font-size:20px;
    margin-bottom:10px;
}

.feature-info p{
    font-size:15px;
    color:#b5b5b5;
    line-height:1.8;
}

.feature-arrow{
    font-size:22px;
    transition:.3s;
}

.feature-card:hover .feature-arrow{
    transform:translateX(8px);
}

@media(max-width:768px){

.feature-card{
    flex-direction:column;
    text-align:center;
    padding:30px 25px;
}

.feature-arrow{
    display:none;
}

}

/*==================================
        WHY CHOOSE US
===================================*/

.why-service{
    padding:120px 0;
    background:#050505;
}

.why-heading{
    max-width:700px;
    margin-bottom:70px;
}

.why-heading span{
    display:block;
    font-size:13px;
    font-weight:500;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#9a9a9a;
    margin-bottom:18px;
}

.why-heading h2{
    font-size:20px;
    font-weight:700;
    line-height:1.4;
    color:#fff;
    margin-bottom:20px;
}

.why-heading p{
    font-size:15px;
    line-height:1.9;
    color:#b5b5b5;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:40px 30px;
    transition:.35s ease;
}

.why-card:hover{
    transform:translateY(-8px);
    border-color:#fff;
}

.why-card h3{
    font-size:42px;
    font-weight:700;
    color:#fff;
    margin-bottom:18px;
}

.why-card h4{
    font-size:18px;
    font-weight:600;
    color:#fff;
    margin-bottom:15px;
}

.why-card p{
    font-size:15px;
    line-height:1.8;
    color:#b5b5b5;
}

@media(max-width:991px){

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.why-service{
    padding:80px 0;
}

.why-heading{
    margin-bottom:50px;
}

.why-grid{
    grid-template-columns:1fr;
}

.why-card{
    padding:35px 25px;
}

}

/*==================================
        SERVICE PROCESS
===================================*/

.service-process{
    padding:120px 0;
    background:#050505;
}

.process-heading{
    max-width:700px;
    margin-bottom:70px;
}

.process-heading span{
    display:block;
    font-size:13px;
    letter-spacing:2px;
    text-transform:uppercase;
    color:#999;
    margin-bottom:15px;
}

.process-heading h2{
    font-size:20px;
    font-weight:700;
    margin-bottom:20px;
}

.process-heading p{
    font-size:15px;
    color:#b5b5b5;
    line-height:1.9;
}

.process-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.process-step{
    position:relative;
    padding:40px 30px;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    background:#111;
    transition:.35s;
}

.process-step:hover{
    transform:translateY(-8px);
    border-color:#fff;
}

.step-number{
    width:60px;
    height:60px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    font-weight:700;
    margin-bottom:25px;
}

.process-step h3{
    font-size:20px;
    margin-bottom:15px;
}

.process-step p{
    font-size:15px;
    color:#b5b5b5;
    line-height:1.8;
}

@media(max-width:991px){

.process-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.service-process{
    padding:80px 0;
}

.process-grid{
    grid-template-columns:1fr;
}

}


/*==================================
                FAQ
===================================*/

.faq{
    padding:120px 0;
    background:#0a0a0a;
}

.faq-heading{
    max-width:700px;
    margin-bottom:60px;
}

.faq-heading span{
    display:block;
    font-size:13px;
    letter-spacing:2px;
    color:#999;
    text-transform:uppercase;
    margin-bottom:15px;
}

.faq-heading h2{
    font-size:20px;
    margin-bottom:20px;
}

.faq-heading p{
    font-size:15px;
    color:#b5b5b5;
    line-height:1.9;
}

.faq-container{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.faq-item{
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    background:#111;
    overflow:hidden;
}

.faq-question{
    width:100%;
    padding:25px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:none;
    border:none;
    color:#fff;
    font-size:18px;
    cursor:pointer;
}

.faq-question i{
    transition:.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .35s ease;
}

.faq-answer p{
    padding:0 30px 25px;
    font-size:15px;
    line-height:1.9;
    color:#b5b5b5;
}

.faq-item.active .faq-answer{
    max-height:200px;
}

.faq-item.active .faq-question i{
    transform:rotate(45deg);
}

@media(max-width:768px){

.faq{
    padding:80px 0;
}

.faq-question{
    font-size:16px;
    padding:20px;
}

.faq-answer p{
    padding:0 20px 20px;
}

}
.premium-btn{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:14px;
    padding:16px 34px;
    border:1px solid rgba(255,255,255,.25);
    border-radius:60px;
    color:#fff;
    overflow:hidden;
    transition:.45s ease;
    font-size:15px;
    font-weight:600;
}

.premium-btn::before{
    content:"";
    position:absolute;
    left:-100%;
    top:0;
    width:100%;
    height:100%;
    background:#fff;
    transition:.45s ease;
    z-index:0;
}

.premium-btn span,
.premium-btn i{
    position:relative;
    z-index:2;
    transition:.45s;
}

.premium-btn i{
    transform:rotate(-45deg);
}

.premium-btn:hover::before{
    left:0;
}

.premium-btn:hover{
    border-color:#fff;
}

.premium-btn:hover span,
.premium-btn:hover i{
    color:#000;
}

.premium-btn:hover i{
    transform:translateX(6px) rotate(0deg);
}


/*==================================
            CTA
===================================*/

.cta{
    padding:120px 0;
    background:#050505;
}

.cta-box{
    background:#111;
    border:1px solid rgba(255,255,255,.08);
    border-radius:24px;
    padding:80px 60px;
    text-align:center;
}

.cta-box span{
    color:#888;
    font-size:13px;
    letter-spacing:2px;
}

.cta-box h2{
    font-size:20px;
    margin:20px 0;
}

.cta-box p{
    max-width:650px;
    margin:0 auto 40px;
    color:#b5b5b5;
    font-size:15px;
    line-height:1.8;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
}

@media(max-width:768px){

.cta{
    padding:80px 0;
}

.cta-box{
    padding:50px 30px;
}

.cta-buttons{
    flex-direction:column;
}

}


/*==================================
        HERO BUTTONS
===================================*/

.hero-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
    margin-top:10px;
}

@media(max-width:768px){

.hero-buttons{
    flex-direction:column;
    gap:18px;   /* Increase/decrease this value */
    width:100%;
    max-width:280px;
    margin:0 auto;
}

.hero-buttons .premium-btn{
    width:100%;
    justify-content:center;
}

}
