.page-hero-section{
    background:#fff;
}

/* Image Area */
.page-hero-image{
    position:relative;
    height:500px;
    overflow:hidden;
}

.page-hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Dark Overlay */
.page-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.45);
    z-index:1;
}

/* Content over image */
.page-hero-content{
    position:absolute;
    inset:0;
    z-index:2;
    display:flex;
    align-items:center;
}

.hero-title{
    color:#fff;
    font-size:52px;
    font-weight:800;
    text-shadow:0 4px 20px rgba(0,0,0,.4);
    max-width:800px;
}

/* Breadcrumb */
.breadcrumb-custom{
    display:flex;
    align-items:center;
    gap:10px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.breadcrumb-custom a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
}

.breadcrumb-custom span{
    color:#6feaf2;
}

/* About Section */
.page-about-section{
    margin-top:-60px;
    position:relative;
    z-index:3;
}

.about-box{
    background:#fff;
    padding:35px;
    border-radius:20px;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
    line-height:1.9;
    color:#555;
}
@media(max-width:768px){

    .page-hero-image{
        height:320px;
    }

    .hero-title{
        font-size:30px;
    }

    .about-box{
        padding:25px;
    }

}
/* id wala section ka css */
.service-card-modern {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1) !important;
    border-color: rgba(13, 110, 253, 0.2);
}

.img-zoom-wrapper {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.img-zoom-wrapper img {
    transition: transform 1s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.service-card-modern:hover .img-zoom-wrapper img {
    transform: scale(1.08);
}

.price-badge-modern {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 6px 14px;
    border-radius: 12px;
    font-weight: 700;
    color: #D71920;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 2;
}

/* Primary Premium Button */

.btn-premium-modern {
    background: linear-gradient(135deg, #D71920 0%, #B11217 100%);
    color: #ffffff !important;
    border: none;
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    transition: all .3s ease;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: .9rem;
    flex: 1;
    box-shadow: 0 8px 20px rgba(215,25,32,.25);
}

.btn-premium-modern:hover {

    background: linear-gradient(135deg, #F4B400 0%, #D71920 100%);
    color: #fff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(215,25,32,.35);

}

/* Outline Button */

.btn-outline-modern {

    border:2px solid #D71920;
    color:#D71920 !important;
    background:#fff;
    padding:10px 18px;
    border-radius:10px;
    font-weight:600;
    transition:.3s ease;
    text-align:center;
    text-decoration:none;
    font-size:.9rem;
    flex:1;

}

.btn-outline-modern:hover{

    background:#D71920;
    color:#fff !important;
    border-color:#D71920;
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(215,25,32,.25);

}

.btn-premium-modern i,
.btn-outline-modern i{
    transition:.3s;
}

.btn-premium-modern:hover i,
.btn-outline-modern:hover i{
    transform:translateX(4px);
}


/* =========================
   Premium FAQ Section
========================= */

.faq-section{
    background: linear-gradient(180deg,#f8f9fa 0%,#ffffff 100%);
    padding:40px 0;
    position:relative;
}

.faq-header{
    background: linear-gradient(135deg,#111111,#D71920);
    border-radius:30px;
    padding:40px;
    color:#fff;
    position:relative;
    overflow:hidden;
    margin-bottom:20px;
}

.faq-header::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,.05);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.faq-subtitle{
    color:#F4B400;
    text-transform:uppercase;
    letter-spacing:2px;
    font-size:14px;
    font-weight:700;
    margin-bottom:10px;
}

.faq-title{
    font-size:42px;
    font-weight:800;
    margin:0;
    color: #fff;
}

.faq-title i{
    color:#F4B400;
}

#faqAccordion .accordion-item{
    border:none;
    margin-bottom:10px;
    border-radius:20px !important;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

#faqAccordion .accordion-button{
    background:#fff;
    padding:15px 20px;
    font-size:18px;
    font-weight:700;
    color:#111;
    box-shadow:none;
}

#faqAccordion .accordion-button:not(.collapsed){
    background:linear-gradient(135deg,#D71920,#B11217);
    color:#fff;
}

#faqAccordion .accordion-button::after{
    filter:brightness(0) invert(1);
}

#faqAccordion .accordion-button.collapsed::after{
    filter:none;
}

#faqAccordion .accordion-body{
    padding:25px 30px;
    background:#fff;
    color:black;
    line-height:1.8;
    font-size:16px;
}

#faqAccordion .accordion-body p{
    margin:0;
}

@media(max-width:768px){

    .faq-header{
        padding:10px 5px;
        border-radius:20px;
    }

    .faq-title{
        font-size:28px;
    }

    #faqAccordion .accordion-button{
        padding:18px 20px;
        font-size:15px;
    }

    #faqAccordion .accordion-body{
        padding:20px;
        font-size:14px;
    }

}