:root{
    --primary:#4b0813;
    --secondary:#7b1021;
    --gold:#ffcc33;
    --cream:#fff7e6;
    --dark:#1e090c;
    --white:#ffffff;
}
*{box-sizing:border-box}
body{
    margin:0;
    font-family:Arial, Helvetica, sans-serif;
    color:#2c1818;
    background:#fff;
    overflow-x:hidden;
}
a{text-decoration: none;
    color: #490813;
    font-weight: bold;}
.top-header{
    background:var(--dark);
    color:#fff;
    padding:8px 0;
    font-size:14px;
}
.top-header a{color:var(--gold);font-weight:700}
.main-navbar{
    background:#fff;
    box-shadow:0 6px 20px rgba(0,0,0,.15);
}
.navbar-brand{
    color:var(--gold)!important;
    font-weight:800;
    font-size:24px;
}
.navbar-brand img{max-height:70px}
.main-navbar .nav-link{
    color:#000!important;
    font-weight:600;
    padding:12px 10px!important;
}
.main-navbar .nav-link:hover{color:var(--gold)!important}
.btn-gold{
    background:linear-gradient(135deg,#ffd34d,#f6a800);
    color:#25090d!important;
    font-weight:800;
    border:0;
    border-radius:40px;
    padding:10px 22px;
    box-shadow:0 8px 22px rgba(255,184,0,.3);
}
.btn-dark-red{
    background:linear-gradient(135deg,var(--secondary),var(--primary));
    color:#fff!important;
    border-radius:40px;
    padding:10px 22px;
    font-weight:800;
}
.hero-section{
    position:relative;
    padding:95px 0;
    background:
        linear-gradient(90deg,rgba(75,8,19,.92),rgba(123,16,33,.72)),
        radial-gradient(circle at 20% 20%,rgba(255,204,51,.35),transparent 25%),
        url('../images/bg0.png');
    background-size:cover;
    background-position:center;
    color:#fff;
    overflow:hidden;
}
.hero-section h2{
    font-size:54px;
    line-height:1.1;
    font-weight:900;
    margin-bottom:20px;
}
.hero-section p{font-size:19px;max-width:680px}
.hero-card{
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.25);
    border-radius:24px;
    padding:28px;
    backdrop-filter:blur(8px);
}
.section-padding{padding:75px 0}
.section-title{
    text-align:center;
    max-width:760px;
    margin:0 auto 42px;
}
.section-title span{
    color:var(--secondary);
    font-weight:800;
    text-transform:uppercase;
}
.section-title h1{
    font-size:38px;
    font-weight:900;
    color:var(--primary);
    margin-top:8px;
}
 .about-image-box{
    position:relative;
    width:100%;
    min-height:430px;
    border-radius:28px;
    overflow:hidden;
    background:#fff7e6;
    box-shadow:0 22px 55px rgba(75,8,19,.18);
    border:8px solid #fff;
}

.about-image-box::before{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(75,8,19,.10),
        rgba(255,204,51,.10)
    );
    z-index:1;
    pointer-events:none;
}

.about-image-box img{
    width:100%;
    height:470px;
    object-fit:cover;
    object-position:center;
    display:block;
    transition:.4s ease;
}

.about-image-box:hover img{
    transform:scale(1.04);
}

.about-image-badge{
    position:absolute;
    left:22px;
    bottom:22px;
    z-index:2;
    background:linear-gradient(135deg,#7b1021,#4b0813);
    color:#fff;
    padding:16px 22px;
    border-radius:18px;
    box-shadow:0 12px 28px rgba(0,0,0,.25);
    border:1px solid rgba(255,204,51,.45);
}

.about-image-badge strong{
    display:block;
    font-size:34px;
    line-height:1;
    color:#ffcc33;
    font-weight:900;
}

.about-image-badge span{
    display:block;
    font-size:14px;
    font-weight:700;
    margin-top:4px;
}

@media(max-width:767px){
    .about-image-box{
        min-height:auto;
        border-radius:22px;
        border-width:5px;
    }

    .about-image-box img{
        height:320px;
    }

    .about-image-badge{
        left:15px;
        bottom:15px;
        padding:13px 17px;
    }

    .about-image-badge strong{
        font-size:28px;
    }
}

.service-card{
    height:100%;
    border:0;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 12px 32px rgba(75,8,19,.12);
    transition:.3s;
    background:#fff;
}
.service-card:hover{transform:translateY(-7px)}
.service-img{
    height:190px;
    background:
        linear-gradient(135deg,rgba(75,8,19,.82),rgba(123,16,33,.45)),
        url('../images/service-bg.svg');
    background-size:cover;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--gold);
    font-size:48px;
    font-weight:900;
}
.service-card .card-body{padding:24px}
.service-card h3{
    font-size:22px;
    color:var(--primary);
    font-weight:900;
    text-align: center;
}
.service-card p{
    
    text-align: center;
}
.service-card .card-body{
    text-align:center;
}

.service-card .card-body .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-top:8px;
}

.service-card .card-body p{
    text-align:center;
}
.cta-section{
    background:
        linear-gradient(90deg,rgba(30,9,12,.96),rgba(75,8,19,.9)),
        url('../images/cta-bg.svg');
    background-size:cover;
    color:#fff;
    padding:65px 0;
}
.why-choose-new{
    position:relative;
    background:
        linear-gradient(135deg,rgba(255,247,230,.96),rgba(255,255,255,.96)),
        radial-gradient(circle at top right,rgba(255,204,51,.22),transparent 30%);
    overflow:hidden;
}

.why-choose-new::before{
    content:"";
    position:absolute;
    width:360px;
    height:360px;
    border-radius:50%;
    background:rgba(123,16,33,.08);
    left:-140px;
    top:60px;
}

.why-choose-new::after{
    content:"";
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:rgba(255,204,51,.18);
    right:-90px;
    bottom:-80px;
}

.why-choose-new .container{
    position:relative;
    z-index:2;
}

.section-small-title{
    display:inline-block;
    background:#fff0c2;
    color:#7b1021;
    padding:8px 18px;
    border-radius:40px;
    font-weight:900;
    text-transform:uppercase;
    font-size:13px;
    margin-bottom:15px;
    border:1px solid #ffd96a;
}

.why-left-box{
    background:
        linear-gradient(145deg,#4b0813,#7b1021);
    color:#fff;
    padding:38px;
    border-radius:30px;
    box-shadow:0 22px 55px rgba(75,8,19,.22);
    position:relative;
    overflow:hidden;
}

 

.why-left-box h2{
    font-size:36px;
    font-weight:900;
    color:#ffcc33;
    margin-bottom:18px;
    position:relative;
    z-index:1;
}

.why-left-box p{
    color:rgba(255,255,255,.88);
    line-height:1.7;
    font-size:16px;
    position:relative;
    z-index:1;
}

.why-contact-card{
    margin-top:25px;
    display:flex;
    align-items:center;
    gap:15px;
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,204,51,.28);
    border-radius:20px;
    padding:18px;
    position:relative;
    z-index:1;
}

.why-contact-icon{
    width:54px;
    height:54px;
    border-radius:18px;
    background:#ffcc33;
    color:#4b0813;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:25px;
    font-weight:900;
    flex:0 0 auto;
}

.why-contact-card small{
    color:rgba(255,255,255,.75);
    font-weight:700;
}

.why-contact-card h4{
    color:#fff;
    margin:3px 0 0;
    font-weight:900;
}

.why-new-card{
    height:100%;
    background:#fff;
    padding:30px;
    border-radius:26px;
    box-shadow:0 14px 35px rgba(75,8,19,.10);
    border:1px solid #f4dfb4;
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.why-new-card::before{
    content:"";
    position:absolute;
    width:90px;
    height:90px;
    border-radius:50%;
    background:rgba(255,204,51,.18);
    right:-35px;
    top:-35px;
    transition:.35s ease;
}

.why-new-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 45px rgba(75,8,19,.16);
    border-color:#ffcc33;
}

.why-new-card:hover::before{
    width:150px;
    height:150px;
}

.why-new-card.active-card{
    background:linear-gradient(145deg,#fff7e6,#fff);
    border-color:#ffcc33;
}

.why-new-icon{
    width:62px;
    height:62px;
    border-radius:20px;
    background:linear-gradient(135deg,#7b1021,#4b0813);
    color:#ffcc33;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:18px;
    box-shadow:0 10px 25px rgba(75,8,19,.18);
}

.why-new-card h4{
    color:#4b0813;
    font-size:22px;
    font-weight:900;
    margin-bottom:12px;
}

.why-new-card p{
    color:#5c4a4a;
    line-height:1.7;
    margin-bottom:0;
}

@media(max-width:991px){
    .why-left-box{
        padding:30px;
    }

    .why-left-box h2{
        font-size:30px;
    }
}

@media(max-width:575px){
    .why-choose-new{
        padding:55px 0;
    }

    .why-left-box{
        padding:25px 20px;
        border-radius:24px;
    }

    .why-left-box h2{
        font-size:27px;
    }

    .why-new-card{
        padding:24px;
        border-radius:22px;
    }

    .why-contact-card{
        align-items:flex-start;
    }
}
 .testimonial-new-section{
    position:relative;
    background:
        linear-gradient(90deg,rgba(75,8,19,.94),rgba(123,16,33,.82)),url('../images/bg0.png');
    overflow:hidden;
}

.testimonial-new-section::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(255,204,51,.12);
    left:-160px;
    top:-130px;
}

.testimonial-new-section::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:rgba(255,255,255,.06);
    right:-120px;
    bottom:-120px;
}

.testimonial-new-section .container{
    position:relative;
    z-index:2;
}

.testimonial-title span{
    color:#ffcc33;
}

.testimonial-title h2{
    color:#fff;
}

.testimonial-title p{
    color:rgba(255,255,255,.78);
}

.testimonial-new-card{
    height:100%;
    position:relative;
    background:linear-gradient(135deg,rgba(75,8,19,.96),rgba(123,16,33,.92)),
        radial-gradient(circle at top right,rgba(255,204,51,.22),transparent 32%);
    border:1px solid rgba(255,255,255,.18);
    backdrop-filter:blur(10px);
    border-radius:28px;
    padding:34px 28px;
    color:#fff;
    overflow:hidden;
    transition:.35s ease;
    box-shadow:0 16px 40px rgba(0,0,0,.18);
}

.testimonial-new-card::before{
    content:"";
    position:absolute;
    width:120px;
    height:120px;
    border-radius:50%;
    background:rgba(255,204,51,.12);
    right:-45px;
    top:-45px;
    transition:.35s ease;
}
 

.testimonial-new-card:hover::before{
    width:180px;
    height:180px;
}

.quote-icon{
    position:absolute;
    right:24px;
    top:8px;
    font-size:95px;
    line-height:1;
    color:rgba(255,204,51,.20);
    font-family:Georgia, serif;
    font-weight:900;
}

.testimonial-rating{
    color:#ffcc33;
    font-size:18px;
    letter-spacing:2px;
    margin-bottom:18px;
    position:relative;
    z-index:1;
}

.testimonial-text{
    color:rgba(255,255,255,.88);
    line-height:1.8;
    font-size:16px;
    margin-bottom:26px;
    position:relative;
    z-index:1;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:14px;
    position:relative;
    z-index:1;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,.15);
}

.testimonial-avatar{
    width:56px;
    height:56px;
    border-radius:50%;
    background:linear-gradient(135deg,#ffdd64,#f5a900);
    color:#4b0813;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:900;
    font-size:22px;
    box-shadow:0 8px 22px rgba(255,204,51,.25);
    flex:0 0 auto;
}

.testimonial-user h5{
    margin:0;
    color:#fff;
    font-size:18px;
    font-weight:900;
}

.testimonial-user small{
    color:#ffdd75;
    font-weight:700;
}

.testimonial-cta-box{
    background:linear-gradient(135deg,#fff7e6,#ffffff);
    border-radius:28px;
    padding:28px 34px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    box-shadow:0 18px 45px rgba(0,0,0,.16);
    border:1px solid rgba(255,204,51,.55);
}

.testimonial-cta-box h3{
    color:#4b0813;
    font-weight:900;
    margin-bottom:6px;
}

.testimonial-cta-box p{
    margin:0;
    color:#5c4a4a;
}

@media(max-width:767px){
    .testimonial-new-card{
        padding:30px 22px;
        border-radius:24px;
    }

    .testimonial-cta-box{
        flex-direction:column;
        align-items:flex-start;
        padding:25px 22px;
        border-radius:24px;
    }

    .testimonial-cta-box .btn{
        width:100%;
        text-align:center;
    }
}
.page-banner{
    padding:70px 0;
    color:#fff;
    background:linear-gradient(90deg,rgba(75,8,19,.94),rgba(123,16,33,.82)),url('../images/bg0.png');
    background-size:cover;
}
.page-banner h1{font-size:44px;font-weight:900}
.content-box{
    background:#fff;
    padding:30px;
    border-radius:22px;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}
.contact-box{
    background:var(--cream);
    border-radius:22px;
    padding:28px;
}
.form-control,.form-select{
    min-height:48px;
    border-radius:12px;
}
.site-footer{
    background:var(--dark);
    color:#eee;
    padding:65px 0 25px;
}
.site-footer h4,.site-footer h5{color:var(--gold);font-weight:900}
.site-footer ul{list-style:none;padding:0;margin:0}
.site-footer li{margin-bottom:9px}
.site-footer a{color:#fff}
.site-footer a:hover{color:var(--gold)}
.floating-buttons{
    position:fixed;
    right:16px;
    bottom:18px;
    z-index:999;
    display:flex;
    flex-direction:column;
    gap:10px;
}
.floating-buttons a{
    color:#fff;
    font-weight:900;
    padding:12px 18px;
    border-radius:40px;
    box-shadow:0 8px 24px rgba(0,0,0,.22);
}
.float-call{background:#b3001b}
.float-whatsapp{background:#0f9d58}
.blog-card{
    height:100%;
    border:0;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 12px 32px rgba(75,8,19,.12);
}
.blog-img{
    height:210px;
    background:
        linear-gradient(135deg,rgba(75,8,19,.85),rgba(123,16,33,.55)),
        url('../images/service-bg.svg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.blog-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
    transition:.4s ease;
}

.blog-card:hover .blog-img img{
    transform:scale(1.06);
}

.blog-placeholder{
    width:70px;
    height:70px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(255,204,51,.18);
    border:1px solid rgba(255,204,51,.45);
    color:#ffcc33;
    font-size:36px;
    font-weight:900;
}

.blog-detail-image{
    width:100%;
    border-radius:22px;
    overflow:hidden;
    border:6px solid #fff7e6;
    box-shadow:0 14px 35px rgba(75,8,19,.15);
}

.blog-detail-image img{
    width:100%;
    /* height:430px; */
    object-fit:cover;
    object-position:center;
    display:block;
}

@media(max-width:767px){
    .blog-img{
        height:190px;
    }

    .blog-detail-image img{
        height:280px;
    }
}
    .floating-buttons a{
        flex:1;
        text-align:center;
        padding:11px 10px;
    }
    
 
.home-ctr-section{
    padding:35px 0;
    background:#fff7e6;
}

.home-ctr-box{
    background:
        linear-gradient(135deg,rgba(75,8,19,.96),rgba(123,16,33,.92)),
        radial-gradient(circle at top right,rgba(255,204,51,.28),transparent 35%);
    border-radius:28px;
    padding:35px;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:25px;
    box-shadow:0 18px 45px rgba(75,8,19,.20);
    border:1px solid rgba(255,204,51,.35);
}

.home-ctr-content span{
    display:inline-block;
    background:rgba(255,204,51,.14);
    color:#ffcc33;
    padding:7px 16px;
    border-radius:40px;
    font-weight:800;
    margin-bottom:12px;
}

.home-ctr-content h2{
    font-size:34px;
    font-weight:900;
    margin-bottom:12px;
    color:#ffcc33;
}

.home-ctr-text{
    font-size:18px;
    line-height:1.7;
    color:rgba(255,255,255,.92);
}

.home-ctr-text p{
    margin-bottom:0;
}

.home-ctr-action{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:flex-end;
    min-width:280px;
}

@media(max-width:991px){
    .home-ctr-box{
        flex-direction:column;
        align-items:flex-start;
    }

    .home-ctr-action{
        justify-content:flex-start;
        min-width:100%;
    }
}

@media(max-width:575px){
    .home-ctr-box{
        padding:25px 20px;
        border-radius:22px;
    }

    .home-ctr-content h2{
        font-size:27px;
    }

    .home-ctr-text{
        font-size:16px;
    }

    .home-ctr-action .btn{
        width:100%;
        text-align:center;
    }
}
.service-img{
    height:220px;
    background:
        linear-gradient(135deg,rgba(75,8,19,.82),rgba(123,16,33,.45)),
        url('../images/service-bg.svg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
}

.service-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
    transition:.4s ease;
}

.service-card:hover .service-img img{
    transform:scale(1.06);
}

.service-static-icon{
    background:
        linear-gradient(135deg,rgba(75,8,19,.92),rgba(123,16,33,.72)),
        url('../images/service-bg.svg');
    background-size:cover;
    background-position:center;
}

.service-placeholder{
    color:#ffcc33;
    font-size:48px;
    font-weight:900;
}

.service-detail-main-image{
    width:100%;
    border-radius:22px;
    overflow:hidden;
    box-shadow:0 14px 35px rgba(75,8,19,.15);
    border:6px solid #fff7e6;
}

.service-detail-main-image img{
    width:100%;
    /* height:420px; */
    object-fit:cover;
    object-position:center;
    display:block;
}

@media(max-width:767px){
    .service-img{
        height:200px;
    }

    .service-detail-main-image img{
        height:280px;
    }
}
.blog-details-section{
    background:#fffaf0;
}

.blog-main-content{
    border:1px solid #f2dfb3;
}

.blog-meta{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin:12px 0 18px;
}

.blog-meta span{
    display:inline-flex;
    align-items:center;
    background:#fff3cd;
    color:#7b1021;
    border:1px solid #ffe49a;
    border-radius:40px;
    padding:7px 14px;
    font-size:13px;
    font-weight:800;
}

.blog-content-text{
    color:#3d2727;
    line-height:1.8;
    font-size:16px;
}

.blog-content-text h2,
.blog-content-text h3,
.blog-content-text h4{
    color:#4b0813;
    font-weight:900;
    margin-top:25px;
}

.blog-sidebar{
    position:sticky;
    top:100px;
}

.sidebar-widget{
    background:#fff;
    border-radius:24px;
    padding:25px;
    margin-bottom:24px;
    box-shadow:0 14px 35px rgba(75,8,19,.10);
    border:1px solid #f3dfb5;
}

.sidebar-widget h3{
    color:#4b0813;
    font-size:22px;
    font-weight:900;
    margin-bottom:18px;
    position:relative;
    padding-bottom:12px;
}

.sidebar-widget h3::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:58px;
    height:4px;
    border-radius:20px;
    background:linear-gradient(90deg,#7b1021,#ffcc33);
}

.sidebar-contact-widget{
    background:
        linear-gradient(145deg,#4b0813,#7b1021);
    color:#fff;
    border-color:rgba(255,204,51,.35);
}

.sidebar-contact-widget h3{
    color:#ffcc33;
}

.sidebar-contact-widget h3::after{
    background:#ffcc33;
}

.sidebar-contact-widget p{
    color:rgba(255,255,255,.88);
    line-height:1.7;
}

.sidebar-blog-item{
    display:flex;
    gap:14px;
    padding:14px 0;
    border-bottom:1px solid #f1e2ca;
}

.sidebar-blog-item:last-child{
    border-bottom:0;
    padding-bottom:0;
}

.sidebar-blog-img{
    width:82px;
    height:68px;
    border-radius:14px;
    overflow:hidden;
    background:
        linear-gradient(135deg,rgba(75,8,19,.86),rgba(123,16,33,.62)),
        url('../images/service-bg.svg');
    background-size:cover;
    background-position:center;
    flex:0 0 auto;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffcc33;
    font-weight:900;
}

.sidebar-blog-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.sidebar-blog-item h4{
    font-size:15px;
    line-height:1.35;
    margin:0 0 5px;
    font-weight:900;
}

.sidebar-blog-item h4 a{
    color:#4b0813;
}

.sidebar-blog-item h4 a:hover{
    color:#7b1021;
}

.sidebar-blog-item small{
    color:#7b6b70;
    font-weight:700;
}

.sidebar-service-list{
    list-style:none;
    padding:0;
    margin:0;
}

.sidebar-service-list li{
    margin-bottom:10px;
}

.sidebar-service-list li a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
    padding:13px 15px;
    background:#fff7e6;
    border:1px solid #f2dfb3;
    color:#4b0813;
    border-radius:14px;
    font-weight:800;
    transition:.3s ease;
}

.sidebar-service-list li a::after{
    content:"›";
    font-size:22px;
    line-height:1;
    color:#7b1021;
}

.sidebar-service-list li a:hover{
    background:linear-gradient(135deg,#7b1021,#4b0813);
    color:#fff;
    transform:translateX(4px);
}

.sidebar-service-list li a:hover::after{
    color:#ffcc33;
}

@media(max-width:991px){
    .blog-sidebar{
        position:static;
        top:auto;
    }
}

@media(max-width:575px){
    .sidebar-widget{
        padding:22px 18px;
        border-radius:20px;
    }

    .sidebar-blog-img{
        width:72px;
        height:62px;
    }

    .sidebar-blog-item h4{
        font-size:14px;
    }
}
.related-service-box{
    background:#fff;
    border-radius:24px;
    padding:24px;
    box-shadow:0 14px 35px rgba(75,8,19,.12);
    border:1px solid #f2dfb3;
}

.related-service-heading{
    margin-bottom:18px;
}

.related-service-heading span{
    display:inline-block;
    background:#fff3cd;
    color:#7b1021;
    padding:6px 14px;
    border-radius:40px;
    font-size:13px;
    font-weight:900;
    margin-bottom:8px;
    border:1px solid #ffe49a;
}

.related-service-heading h4{
    color:#4b0813;
    font-weight:900;
    margin:0;
    font-size:24px;
    position:relative;
    padding-bottom:12px;
}

.related-service-heading h4::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:60px;
    height:4px;
    border-radius:20px;
    background:linear-gradient(90deg,#7b1021,#ffcc33);
}

.related-service-list{
    display:grid;
    gap:14px;
}

.related-service-item{
    display:flex;
    align-items:center;
    gap:13px;
    padding:12px;
    background:#fffaf0;
    border:1px solid #f2dfb3;
    border-radius:18px;
    color:#4b0813;
    transition:.3s ease;
}

.related-service-item:hover{
    background:linear-gradient(135deg,#7b1021,#4b0813);
    color:#fff;
    transform:translateX(5px);
    box-shadow:0 12px 28px rgba(75,8,19,.18);
}

.related-service-img{
    width:76px;
    height:66px;
    border-radius:15px;
    overflow:hidden;
    flex:0 0 auto;
    background:
        linear-gradient(135deg,rgba(75,8,19,.85),rgba(123,16,33,.60)),
        url('../images/service-bg.svg');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#ffcc33;
    font-size:26px;
    font-weight:900;
}

.related-service-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}

.related-service-content{
    flex:1;
}

.related-service-content h5{
    font-size:15px;
    line-height:1.35;
    margin:0 0 5px;
    color:inherit;
    font-weight:900;
}

.related-service-content p{
    margin:0;
    color:#6a5656;
    font-size:13px;
    line-height:1.45;
}

.related-service-item:hover .related-service-content p{
    color:rgba(255,255,255,.78);
}

.related-arrow{
    width:28px;
    height:28px;
    border-radius:50%;
    background:#ffcc33;
    color:#4b0813;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    line-height:1;
    font-weight:900;
    flex:0 0 auto;
}

@media(max-width:575px){
    .related-service-box{
        padding:20px 16px;
        border-radius:20px;
    }

    .related-service-item{
        align-items:flex-start;
        gap:10px;
    }

    .related-service-img{
        width:68px;
        height:60px;
    }

    .related-service-content h5{
        font-size:14px;
    }

    .related-service-content p{
        font-size:12px;
    }
}
.popular-services-section{
    position:relative;
    background:
        linear-gradient(135deg,rgba(255,247,230,.96),rgba(255,255,255,.96)),
        radial-gradient(circle at top right,rgba(255,204,51,.22),transparent 32%);
    overflow:hidden;
}

.popular-services-section::before{
    content:"";
    position:absolute;
    width:380px;
    height:380px;
    border-radius:50%;
    background:rgba(123,16,33,.07);
    left:-150px;
    top:80px;
}

.popular-services-section::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,204,51,.18);
    right:-90px;
    bottom:-80px;
}

.popular-services-section .container{
    position:relative;
    z-index:2;
}

.popular-services-wrapper{
    background:#fff;
    padding:30px;
    border-radius:30px;
    box-shadow:0 18px 45px rgba(75,8,19,.10);
    border:1px solid #f2dfb3;
}

.popular-service-item{
    height:100%;
    display:flex;
    align-items:center;
    gap:15px;
    background:#fffaf0;
    border:1px solid #f1ddb1;
    border-radius:22px;
    padding:18px;
    color:#4b0813;
    transition:.35s ease;
    position:relative;
    overflow:hidden;
}

.popular-service-item::before{
    content:"";
    position:absolute;
    width:90px;
    height:90px;
    border-radius:50%;
    background:rgba(255,204,51,.18);
    right:-35px;
    top:-35px;
    transition:.35s ease;
}

.popular-service-item:hover{
    background:linear-gradient(135deg,#7b1021,#4b0813);
    color:#fff;
    transform:translateY(-6px);
    box-shadow:0 16px 36px rgba(75,8,19,.18);
    border-color:#ffcc33;
}

.popular-service-item:hover::before{
    width:150px;
    height:150px;
}

.popular-service-icon{
    width:58px;
    height:58px;
    border-radius:18px;
    background:linear-gradient(135deg,#7b1021,#4b0813);
    color:#ffcc33;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    font-weight:900;
    flex:0 0 auto;
    position:relative;
    z-index:1;
}

.popular-service-item:hover .popular-service-icon{
    background:#ffcc33;
    color:#4b0813;
}

.popular-service-content{
    flex:1;
    position:relative;
    z-index:1;
}

.popular-service-content h4{
    font-size:19px;
    font-weight:900;
    margin:0 0 6px;
    color:inherit;
}

.popular-service-content p{
    margin:0;
    color:#6a5656;
    font-size:14px;
    line-height:1.5;
}

.popular-service-item:hover .popular-service-content p{
    color:rgba(255,255,255,.82);
}

.popular-service-arrow{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#ffcc33;
    color:#4b0813;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    font-weight:900;
    flex:0 0 auto;
    position:relative;
    z-index:1;
    transition:.35s ease;
}

.popular-service-item:hover .popular-service-arrow{
    transform:translateX(4px);
}

@media(max-width:575px){
    .popular-services-wrapper{
        padding:20px 14px;
        border-radius:22px;
    }

    .popular-service-item{
        align-items:flex-start;
        padding:16px;
        border-radius:18px;
    }

    .popular-service-icon{
        width:48px;
        height:48px;
        border-radius:15px;
        font-size:22px;
    }

    .popular-service-content h4{
        font-size:17px;
    }

    .popular-service-content p{
        font-size:13px;
    }

    .popular-service-arrow{
        width:32px;
        height:32px;
        font-size:18px;
    }
}
.home-service-check{
    width:46px;
    height:24px;
    cursor:pointer;
}

.form-switch .form-check-input:checked{
    background-color:#198754;
    border-color:#198754;
}

.form-switch .form-check-label{
    color:#4b0813;
    margin-left:6px;
}
.global-footer-cta{
    position:relative;
    padding:70px 0;
    background:
        linear-gradient(135deg,rgba(255,247,230,.96),rgba(255,255,255,.96)),
        radial-gradient(circle at top right,rgba(255,204,51,.25),transparent 35%);
    overflow:hidden;
}

.global-footer-cta::before{
    content:"";
    position:absolute;
    width:360px;
    height:360px;
    border-radius:50%;
    background:rgba(123,16,33,.08);
    left:-140px;
    top:40px;
}

.global-footer-cta::after{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,204,51,.18);
    right:-90px;
    bottom:-90px;
}

.global-footer-cta .container{
    position:relative;
    z-index:2;
}

.global-footer-cta-box{
    background:
        linear-gradient(135deg,rgba(75,8,19,.96),rgba(123,16,33,.92)),
        radial-gradient(circle at top right,rgba(255,204,51,.28),transparent 35%);
    border-radius:32px;
    padding:42px;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    box-shadow:0 22px 55px rgba(75,8,19,.24);
    border:1px solid rgba(255,204,51,.40);
    position:relative;
    overflow:hidden;
}

.global-footer-cta-box::before{
    content:"✦";
    position:absolute;
    right:35px;
    top:15px;
    font-size:110px;
    line-height:1;
    color:rgba(255,204,51,.11);
}

.footer-cta-content{
    position:relative;
    z-index:1;
    max-width:760px;
}

.footer-cta-content span{
    display:inline-block;
    background:rgba(255,204,51,.15);
    color:#ffcc33;
    border:1px solid rgba(255,204,51,.35);
    padding:8px 18px;
    border-radius:40px;
    font-size:13px;
    font-weight:900;
    text-transform:uppercase;
    margin-bottom:14px;
}

.footer-cta-content h2{
    color:#ffcc33;
    font-size:38px;
    font-weight:900;
    margin-bottom:14px;
}

.footer-cta-content p{
    color:rgba(255,255,255,.88);
    font-size:17px;
    line-height:1.7;
    margin-bottom:0;
}

.footer-cta-buttons{
    position:relative;
    z-index:1;
    display:flex;
    flex-direction:column;
    gap:13px;
    min-width:245px;
}

.footer-cta-buttons .btn{
    width:100%;
    text-align:center;
    justify-content:center;
    padding:13px 22px;
}

.footer-whatsapp-btn{
    background:#13a65f;
    color:#fff!important;
    border-radius:40px;
    font-weight:900;
    box-shadow:0 8px 22px rgba(19,166,95,.25);
}

.footer-whatsapp-btn:hover{
    background:#0f8f51;
    color:#fff!important;
}

@media(max-width:991px){
    .global-footer-cta-box{
        flex-direction:column;
        align-items:flex-start;
        padding:34px;
    }

    .footer-cta-buttons{
        width:100%;
        flex-direction:row;
    }
}

@media(max-width:575px){
    .global-footer-cta{
        padding:50px 0;
    }

    .global-footer-cta-box{
        padding:28px 20px;
        border-radius:24px;
    }

    .footer-cta-content h2{
        font-size:28px;
    }

    .footer-cta-content p{
        font-size:15px;
    }

    .footer-cta-buttons{
        flex-direction:column;
    }
}