
/* Container Reset */
.astrology-container {
    width: 100%;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.astrology-container * {
    box-sizing: border-box;
}

/* ==========================================================================
   SECTION 1: INTRO SECTION (WHITE)
   ========================================================================== */
.intro-section {
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 60px 8%;
    gap: 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-left {
    flex: 1.2;
}

.intro-left h2 {
    color: #311445; /* Dark Purple */
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.intro-left .subtitle {
    color: #ffb703; /* Brand Yellow */
    font-size: 20px;
    font-weight: 500;
    margin: 0 0 15px 0;
}

/* Decorative Divider styling */
.decorative-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
}

.decorative-divider .line {
    height: 1px;
    width: 60px;
    background-color: #311445;
}

.decorative-divider .diamond {
    color: #ffb703;
    font-size: 12px;
}

.intro-left p {
    color: #666666;
    font-size: 13.5px;
    line-height: 1.6;
    margin-bottom: 18px;
    text-align: justify;
}

/* Grid on the right side */
.intro-right-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid #e2e2e2;
    padding: 30px 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.icon-circle {
    width: 65px;
    height: 65px;
    border: 2px solid #ffb703;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #311445;
    margin-bottom: 15px;
}

.icon-circle svg {
    width: 32px;
    height: 32px;
}

.feature-card h4 {
    color: #000000;
    font-size: 14px;
    font-weight: 700;
    margin: 0;
}


/* ==========================================================================
   SECTION 2: STATS SECTION (DARK PURPLE & COSMIC)
   ========================================================================== */
.stats-section {
    /* Rich Deep Indigo-Purple Blend mimicking the original background */
   background:
    linear-gradient(rgba(28,9,42,0.8), rgba(28,9,42,0.8)),
    url('../img/bac.jpg');

    padding: 60px 8%;
    text-align: center;
    position: relative;
}

/* Subtle overlay vector lines or glow simulation */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 0);
    background-size: 24px 24px;
    pointer-events: none;
}

.stats-main-title {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 45px 0;
    letter-spacing: 0.5px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

/* Dashed Box Frames */
.stat-box {
    border: 1px dashed #ffb703;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(49, 20, 69, 0.4);
}

.yellow-badge {
    width: 60px;
    height: 60px;
    background-color: #ffb703;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000000;
    margin-bottom: 20px;
    box-shadow: 0 0 0 4px rgba(255, 183, 3, 0.2);
}

.yellow-badge svg {
    width: 28px;
    height: 28px;
}

.stat-box h5 {
    color: #ffb703;
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.stat-box p {
    color: #ffffff;
    font-size: 12.5px;
    line-height: 1.5;
    margin: 0;
    opacity: 0.85;
}


/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET BREAKPOINTS)
   ========================================================================== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 820px) {
    .intro-section {
        flex-direction: column;
        padding: 40px 5%;
    }
    .intro-right-grid {
        width: 100%;
    }
}

@media (max-width: 540px) {
    .intro-right-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .intro-left h2 {
        font-size: 26px;
    }
    .stats-main-title {
        font-size: 22px;
    }
}






.intro-left h2{
    font-size:22px;
    font-weight:600;
    color:#d4a017;
}

.intro-left .subtitle{
    font-size:42px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:20px;
}

.intro-left p{
    font-size:18px;
    line-height:1.9;
}

.feature-card h4{
    font-size:22px;
    font-weight:600;
}

.icon-circle{
    font-size:40px;
}





#iu-header-wrap{
    font-family:'Poppins',sans-serif;
}

#iu-header-wrap *{
    box-sizing:border-box;
}

#iu-header-wrap a{
    text-decoration:none;
}

#iu-topbar{
    background:#f5a623;
    color:#3a1c5a;
    padding:10px 15px;
    font-size:13px;
    font-weight:500;
}

#iu-topbar-inner{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
}

#iu-topbar a{
    color:#3a1c5a;
}

#iu-header{
    background:#fff;
    padding:15px;
}

#iu-header-inner{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

#iu-social{
    display:flex;
    gap:10px;
}

#iu-social a{
    width:42px;
    height:42px;
    background:#421d48;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.3s;
}

#iu-social a:hover{
    background:#f5a623;
    color:#421d48;
}

#iu-call{
    display:flex;
    align-items:center;
    gap:15px;
}

#iu-call-icon{
    width:50px;
    height:50px;
    border-radius:50%;
    background:#f5a623;
    color:#421d48;
    display:flex;
    align-items:center;
    justify-content:center;
}

#iu-call small{
    display:block;
    color:#666;
}

#iu-call strong{
    font-size:24px;
    color:#421d48;
    font-weight:800;
}

#iu-navbar{
    background:#7A0714;
}

#iu-nav-inner{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

#iu-menu{
    display:flex;
    list-style:none;
    margin:0;
    padding:0;
}

#iu-menu li a{
    color:#fff;
    display:block;
    padding:18px 20px;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

#iu-menu li a:hover{
    background:#f5a623;
    color:#421d48;
}

#iu-btn{
    background:#f5a623;
    color:#421d48;
    padding:12px 22px;
    border-radius:6px;
    font-weight:700;
    margin-right:15px;
}

#iu-mobile-btn{
    display:none;
    border:none;
    background:none;
    color:#fff;
    font-size:24px;
    padding:15px;
    cursor:pointer;
}

@media(max-width:991px){

    #iu-mobile-btn{
        display:block;
    }

    #iu-nav-inner{
        flex-direction:column;
        align-items:stretch;
    }

    #iu-menu{
        display:none;
        flex-direction:column;
        width:100%;
    }

    #iu-menu.active{
        display:flex;
    }

    #iu-menu li a{
        border-top:1px solid rgba(255,255,255,.1);
    }

    #iu-btn{
        margin:15px;
        text-align:center;
    }

    #iu-header-inner{
        flex-direction:column;
        text-align:center;
    }

    #iu-topbar-inner{
        flex-direction:column;
        text-align:center;
    }
}

@media(max-width:576px){

    #iu-call strong{
        font-size:18px;
    }

    #iu-header{
        padding:10px;
    }
}



.intro-right-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
    margin-top:30px;
}

.feature-card{
    background:#fff;
    padding:28px 20px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:all .35s ease;
    border:1px solid rgba(255,140,0,.12);
    position:relative;
    overflow:hidden;
}

.feature-card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:4px;
    background:linear-gradient(90deg,#ffb703,#ff6b00,#c1121f);
}

.feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(255,107,0,.20);
}

.icon-circle{
    width:75px;
    height:75px;
    border-radius:50%;
    margin:0 auto 18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:linear-gradient(135deg,#ffd700,#ff8c00);
    color:#fff;
    font-size:32px;
    box-shadow:0 10px 25px rgba(255,140,0,.35);
}

.feature-card h4{
    font-size:18px;
    font-weight:700;
    color:#222;
    margin:0;
    line-height:1.5;
}

@media(max-width:767px){
    .intro-right-grid{
        grid-template-columns:1fr;
    }
}

/* FORCE 2 CARDS PER ROW ON MOBILE */

.intro-right-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

@media only screen and (max-width:767px){

    .intro-right-grid{
        display:grid !important;
        grid-template-columns:repeat(2,1fr) !important;
        gap:12px !important;
    }

    .feature-card{
        padding:15px 10px !important;
        border-radius:12px !important;
    }

    .icon-circle{
        width:50px !important;
        height:50px !important;
        font-size:20px !important;
        margin:0 auto 10px !important;
    }

    .feature-card h4{
        font-size:13px !important;
        line-height:1.4 !important;
        margin:0 !important;
    }
}

@media only screen and (max-width:400px){

    .intro-right-grid{
        grid-template-columns:repeat(2,1fr) !important;
        gap:8px !important;
    }

    .feature-card{
        padding:12px 8px !important;
    }

    .feature-card h4{
        font-size:12px !important;
    }
}



#astro-footer{
    background:linear-gradient(135deg,#081120,#0d1b2a,#121212);
    color:#fff;
    padding:70px 0 20px;
    position:relative;
    overflow:hidden;
}

#astro-footer::before{
    content:"✦";
    position:absolute;
    right:40px;
    top:30px;
    font-size:180px;
    color:rgba(255,215,0,.05);
}

.footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:40px;
    margin-bottom:50px;
}

.footer-logo{
    font-size:28px;
    font-weight:800;
    color:#FFD700;
    margin-bottom:15px;
}

.footer-logo-box p{
    color:#cfcfcf;
    line-height:1.8;
}

.footer-links h4,
.footer-contact h4{
    color:#FFD700;
    margin-bottom:20px;
    font-size:20px;
}

.footer-links ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links ul li{
    margin-bottom:12px;
}

.footer-links a,
.footer-contact a{
    color:#ddd;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover,
.footer-contact a:hover{
    color:#FFD700;
}

.footer-contact p{
    margin-bottom:15px;
    color:#ddd;
}

.footer-contact i{
    color:#FFD700;
    width:25px;
}

.footer-social{
    margin-top:20px;
}

.footer-social a{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    color:#FFD700;
    margin-right:8px;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#FFD700;
    color:#111;
}

.footer-cta{
    background:linear-gradient(135deg,#ff6b00,#c1121f);
    padding:35px;
    border-radius:20px;
    text-align:center;
    margin-bottom:40px;
}

.footer-cta h3{
    margin-bottom:20px;
    font-size:30px;
    font-weight:700;
}

.footer-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.call-btn-footer,
.wa-btn-footer{
    padding:14px 28px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.call-btn-footer{
    background:#111;
    color:#fff;
}

.wa-btn-footer{
    background:#25D366;
    color:#fff;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.1);
    padding-top:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;
}

.footer-bottom p{
    margin:0;
    color:#aaa;
}

.footer-bottom a{
    color:#FFD700;
    text-decoration:none;
}

/* Mobile */

@media(max-width:991px){

    .footer-top{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:767px){

    .footer-top{
        grid-template-columns:1fr;
        text-align:center;
    }

    .footer-bottom{
        flex-direction:column;
        text-align:center;
    }

    .footer-cta h3{
        font-size:24px;
    }
}


.footer-bottom{
    display:block !important;
    text-align:center !important;
}

.copyright-text{
    width:100%;
    margin:0;
    text-align:center;
    color:#000;
}



/* ===== PREMIUM UPGRADE ===== */

.pandith-services-section{
    padding:80px 20px !important;
}

.pandith-services-section .section-header{
    text-align:center;
    max-width:900px;
    margin:0 auto 60px;
}

.pandith-services-section .subtitle{
    color:#f37022 !important;
    font-size:18px !important;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700 !important;
}

.pandith-services-section .main-title{
    font-size:48px !important;
    line-height:1.2;
    font-weight:800 !important;
    margin-bottom:20px !important;
}

.pandith-services-section .header-desc{
    font-size:16px;
    line-height:1.8;
    max-width:800px;
    margin:auto;
}

.pandith-services-section .service-card{
    border:none !important;
    border-radius:25px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.pandith-services-section .service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.15);
}

.pandith-services-section .shaped-frame{
    border-radius:25px !important;
    height:260px !important;
    border:3px solid #f5b041;
}

.pandith-services-section .shaped-frame img{
    border-radius:20px !important;
}

.pandith-services-section .card-title{
    font-size:24px !important;
    margin-top:20px;
}

.pandith-services-section .card-desc{
    height:auto !important;
    min-height:120px;
    font-size:15px !important;
}

.pandith-services-section .read-more-btn{
    background:linear-gradient(135deg,#f37022,#c91d0c) !important;
    padding:14px 35px !important;
    border-radius:50px !important;
    font-size:15px !important;
    font-weight:700;
}

.pandith-services-section .slide-arrow{
    width:55px !important;
    height:55px !important;
    border-radius:50%;
    font-size:18px !important;
    box-shadow:0 5px 20px rgba(0,0,0,.2);
}

.pandith-services-section .arrow-left{
    left:-25px !important;
}

.pandith-services-section .arrow-right{
    right:-25px !important;
}

.vashikaran-box{
    border:none !important;
    border-radius:25px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.asset-graphic-frame{
    height:260px !important;
    border-radius:15px !important;
}

.phone-cta{
    background:linear-gradient(135deg,#f37022,#c91d0c) !important;
    font-size:24px !important;
    padding:18px !important;
}

.spell-heading{
    font-size:32px !important;
}

.dark-accent-panel{
    border-radius:25px !important;
    min-height:250px;
}

.pandith-solutions-section{
    border-radius:25px !important;
    overflow:hidden;
    box-shadow:0 20px 50px rgba(0,0,0,.25);
}

.pandith-solutions-section .solutions-title{
    font-size:42px !important;
    margin-bottom:50px !important;
}

.pandith-solutions-section .problem-item{
    transition:.3s;
}

.pandith-solutions-section .problem-item:hover{
    color:#f3a633;
    transform:translateX(10px);
}

@media(max-width:768px){

    .pandith-services-section{
        padding:50px 15px !important;
    }

    .pandith-services-section .main-title{
        font-size:32px !important;
    }

    .pandith-solutions-section .solutions-title{
        font-size:28px !important;
    }

    .slide-arrow{
        display:none !important;
    }

    .phone-cta{
        font-size:18px !important;
    }

    .spell-heading{
        font-size:24px !important;
    }

    .layout-container{
        gap:20px !important;
    }
}


/* ==========================
   ASTROLOGY SERVICES SECTION
========================== */

#astro-services{
    background:#38104d;
    padding:40px 25px;
    position:relative;
}

.astro-heading{
    text-align:center;
    margin-bottom:20px;
}

.astro-heading h2{
    color:#ffffff;
    font-size:38px;
    font-weight:700;
    margin:0;
    line-height:1.2;
}

.astro-heading p{
    color:#ffb400;
    font-size:22px;
    margin-top:5px;
}

/* SERVICE CARD */

.service-box{
    background:#3c1353;
    border:1px dotted #d4a017;
    position:relative;
    min-height:330px;
}

.service-image{
    height:140px;
    overflow:hidden;
    border-bottom:1px dotted #d4a017;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.service-box h3{
    color:#ffb400;
    font-size:24px;
    text-align:center;
    font-weight:700;
    margin:12px 10px;
}

.service-box p{
    color:#fff;
    font-size:15px;
    line-height:1.5;
    padding:0 15px 20px;
    text-align:left;
}

/* CORNER ICON */

.corner-icon{
    position:absolute;
    right:0;
    bottom:0;
    width:28px;
    height:28px;
    background:#ffb400;
    display:flex;
    justify-content:center;
    align-items:center;
}

.corner-icon i{
    color:#38104d;
    font-size:12px;
}

/* SIDEBAR */

.important-links{
    background:#3c1353;
    border:1px dotted #d4a017;
}

.links-title{
    background:#ffb400;
    color:#38104d;
    text-align:center;
    font-weight:700;
    font-size:28px;
    padding:15px 10px;
}

.important-links ul{
    margin:0;
    padding:0;
    list-style:none;
}

.important-links li{
    border-bottom:1px dotted #d4a017;
}

.important-links li:last-child{
    border-bottom:none;
}

.important-links a{
    display:block;
    color:#fff;
    text-align:center;
    text-decoration:none;
    padding:12px;
    font-size:18px;
    transition:.3s;
}

.important-links a:hover{
    background:#ffb400;
    color:#38104d;
}

/* CALL BOX */

.call-box{
    background:#ffb400;
    text-align:center;
    padding:12px;
}

.call-box span{
    color:#38104d;
    font-size:20px;
    display:block;
}

.call-box h3{
    color:#38104d;
    font-size:42px;
    font-weight:800;
    margin:5px 0 0;
}

/* SWIPER BUTTONS */

.astro-prev,
.astro-next{
    width:35px !important;
    height:35px !important;
    background:#ffb400;
    border-radius:50%;
}

.astro-prev:after,
.astro-next:after{
    font-size:14px !important;
    font-weight:700;
    color:#38104d;
}

/* POSITION */

.astro-prev{
    left:-15px !important;
}

.astro-next{
    right:-15px !important;
}

/* MOBILE */

@media(max-width:991px){

    #astro-services{
        padding:30px 15px;
    }

    .astro-heading h2{
        font-size:28px;
    }

    .astro-heading p{
        font-size:18px;
    }

    .important-links{
        margin-top:25px;
    }

    .call-box h3{
        font-size:28px;
    }

    .service-box{
        min-height:auto;
    }
}




#wa-widget{
    position:fixed;
    bottom:20px;
    left:20px;
    z-index:99999;
    font-family:'Poppins',sans-serif;
}

#wa-button{
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    position:relative;
    animation:waPulse 2s infinite;
}





#wa-button{
    width:65px;
    height:65px;
    background:#25D366;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:34px;
    cursor:pointer;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    position:relative;
    animation:waPulse 2s infinite;
}

#wa-buttoncall{

    width:65px;
    height:65px;
    background: linear-gradient(90deg,#ffb703,#ff6b00,#c1121f);
    border-radius:50%;
    display:flex;
    
    align-items:center;
    justify-content:center;
    color:white;
    font-size:34px;
    cursor:pointer;
    box-shadow:0 10px 30px white;
    position:relative;
    border:3px solid white;
    animation:waPulse 2s infinite;
}





.wa-dot{
    position:absolute;
    top:5px;
    right:5px;
    width:12px;
    height:12px;
    background:red;
    border-radius:50%;
}





#wa-chat-box{
    width:380px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.25);
    margin-bottom:15px;
    display:none;
}

#wa-chat-box.active{
    display:block;
    animation:slideUp .3s ease;
}

#wa-header{
    background:#06685d;
    padding:20px;
    display:flex;
    align-items:center;
    gap:12px;
    position:relative;
}

#wa-header img{
    width:55px;
    height:55px;
    border-radius:50%;
    background:#fff;
    padding:3px;
}

#wa-header h4{
    color:#fff;
    margin:0;
    font-size:24px;
    font-weight:700;
}

#wa-header p{
    color:#d8f8ef;
    margin:3px 0 0;
    font-size:15px;
}

#wa-close{
    position:absolute;
    right:15px;
    top:8px;
    color:#fff;
    font-size:28px;
    cursor:pointer;
}

#wa-body{
    background:#f7f4ef;
    padding:30px 20px;
    text-align:center;
}

.wa-message{
    background:#fff;
    padding:20px;
    border-radius:15px;
    max-width:250px;
    text-align:left;
    margin-bottom:30px;
    box-shadow:0 3px 10px rgba(0,0,0,.08);
}

.wa-message p{
    margin:10px 0;
    color:#444;
    font-size:20px;
}

.wa-start-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#25D366;
    color:#fff;
    text-decoration:none;
    padding:15px 30px;
    border-radius:40px;
    font-size:24px;
    font-weight:700;
    transition:.3s;
}

.wa-start-btn:hover{
    transform:translateY(-2px);
    color:#fff;
}

@keyframes slideUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

@keyframes waPulse{
    0%{
        box-shadow:0 0 0 0 rgba(37,211,102,.6);
    }
    70%{
        box-shadow:0 0 0 20px rgba(37,211,102,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(37,211,102,0);
    }
}

@media(max-width:480px){

#wa-widget{
    left:10px;
    right:10px;
    bottom:10px;
}

#wa-chat-box{
    width:100%;
}

#wa-header h4{
    font-size:18px;
}

.wa-message p{
    font-size:16px;
}

.wa-start-btn{
    font-size:18px;
    padding:12px 22px;
}
}


#wa-chat-box{
    width:320px;
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 15px 40px rgba(0,0,0,.18);
    margin-bottom:12px;
    display:none;
}

#wa-header{
    padding:14px 16px;
}

#wa-header img{
    width:45px;
    height:45px;
}

#wa-header h4{
    font-size:17px;
    font-weight:600;
    margin:0;
}

#wa-header p{
    font-size:12px;
    margin-top:2px;
}

#wa-close{
    right:12px;
    top:8px;
    font-size:22px;
}

#wa-body{
    padding:18px 15px;
}

.wa-message{
    max-width:220px;
    padding:14px;
    border-radius:12px;
    margin-bottom:18px;
}

.wa-message p{
    margin:0;
    font-size:14px;
    line-height:1.5;
}

.wa-start-btn{
    padding:12px 20px;
    font-size:15px;
    font-weight:600;
    border-radius:30px;
}




.service-block-items-2{
    border: 2px solid #7a0714;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-block-items-2:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(122, 7, 20, 0.15);
}






/* Mobile Responsive Service Cards */
@media (max-width: 767px) {

    /* 2 items per row */
    .row > .col-xxl-3,
    .row > .col-xl-3,
    .row > .col-lg-6,
    .row > .col-md-6 {
        width: 50%;
        max-width: 50%;
        flex: 0 0 50%;
        padding-left: 7px;
        padding-right: 7px;
        margin-bottom: 15px;
    }



    /* Smaller Images */
    .service-block-items-2 .thumb img {
        height: 130px !important;
        width: 100%;
        object-fit: cover;
    }

    /* Compact Content */
    .service-block-items-2 .content {
        padding: 12px 10px;
        text-align: center;
    }

    /* Smaller Title */
    .service-block-items-2 .title {
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 0;
    }

    .service-block-items-2 .title a {
        font-size: 15px;
    }

    /* Hide Description */
    .service-block-items-2 p {
        display: none;
    }

    /* Hide Button */
    .service-block-items-2 .link-btn {
        display: none;
    }

    .service-block-items-2 .icon-area {
        margin-bottom: 0;
    }
}

@media (max-width: 767px) {
    .service-block-items-2 {
        box-shadow: 0 3px 12px rgba(0,0,0,.08);
        border: 1px solid #eee;
        background: #fff;
    }

    .service-block-items-2:hover {
        transform: translateY(-3px);
    }
}


@media (max-width: 767px) {






.service-block-items-2 .content{margin-top:0px !important;padding:0px !important;}




    /* Hide description */
    .service-block-items-2 p {
        display: none !important;
    }

    /* Hide Know More button */
    .service-block-items-2 .link-btn,
    .service-block-items-2 a.link-btn {
        display: none !important;
    }

}



/* =========================
   TOP HEADER
========================= */
.top-header{
    background:#7a0714;
    padding:10px 15px;
    color:#fff;
    font-size:14px;
}

.top-header-inner{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
}

.top-email a{
    color:#ffd700;
    text-decoration:none;
}

.top-title{
    font-weight:600;
}

/* =========================
   MAIN HEADER
========================= */
.main-header{
    background:#fff;
    padding:12px 15px;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

.header-wrapper{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo-area img{
    max-height:70px;
    width:auto;
}

.phone-area{
    text-align:right;
}

.phone-area span{
    display:block;
    font-size:13px;
    color:#666;
    margin-bottom:4px;
}

.phone-area a{
    font-size:26px;
    font-weight:700;
    color:#7a0714;
    text-decoration:none;
}

/* =========================
   MOBILE
========================= */
@media (max-width:767px){

    .top-header{
        padding:8px 10px;
    }

    .top-header-inner{
        flex-direction:column;
        text-align:center;
        gap:5px;
    }

    .top-email{
        font-size:12px;
        line-height:1.5;
        word-break:break-word;
    }

    .top-title{
        font-size:13px;
        line-height:1.4;
    }

    .header-wrapper{
        flex-direction:column;
        text-align:center;
        gap:10px;
    }

    .logo-area img{
        max-height:55px;
    }

    .phone-area{
        text-align:center;
    }

    .phone-area span{
        font-size:12px;
    }

    .phone-area a{
        font-size:24px;
    }
}







/* =========================
MOBILE HEADER FIX
========================= */
@media (max-width:768px){

    /* Top Bar */
    #iu-topbar{
        
        display:none;
    }

    
    #iu-topbar-inner{
        display:flex;
        flex-direction:column;
        gap:6px;
        text-align:center;
        font-size:12px;
        line-height:1.5;
    }

    #iu-topbar a{
        display:block;
        color:#ffd700;
        font-weight:600;
    }

    /* Main Header */
    #iu-header{
        padding:15px 12px;
        background:#fff;
    }

    #iu-header-inner{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:15px;
    }

    /* Logo */
    #iu-logo img{
        max-height:60px !important;
        width:auto;
    }

    /* Social Icons */
    #iu-social{
        display:flex;
        justify-content:center;
        gap:12px;
    }

    #iu-social a{
        width:40px;
        height:40px;
        border-radius:50%;
        background:#7a0714;
        color:#fff;
        display:flex;
        align-items:center;
        justify-content:center;
        text-decoration:none;
        font-size:16px;
    }

    /* Call Box */
    #iu-call{
        width:100%;
        max-width:280px;
        background:#fff8ee;
        border:2px solid #7a0714;
        border-radius:12px;
        padding:12px;
        display:flex;
        justify-content:center;
        align-items:center;
        gap:12px;
    }

    #iu-call-icon{
        width:45px;
        height:45px;
        background:#7a0714;
        color:#fff;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:18px;
        flex-shrink:0;
    }

    #iu-call small{
        display:block;
        font-size:11px;
        color:#666;
        margin-bottom:3px;
    }

    #iu-call strong{
        display:block;
        color:#7a0714;
        font-size:20px;
        font-weight:700;
    }

    /* Navigation */
    #iu-navbar{
        position:relative;
        background:#7a0714;
    }

    #iu-nav-inner{
        padding:12px;
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    /* Hamburger */
    #iu-mobile-btn{
        display:flex;
        align-items:center;
        justify-content:center;
        width:45px;
        height:45px;
        border:none;
        background:#fff;
        color:#7a0714;
        border-radius:8px;
        font-size:20px;
        cursor:pointer;
    }

    /* CTA Button */
    #iu-btn{
        padding:10px 15px;
        font-size:12px;
        border-radius:30px;
        white-space:nowrap;
        background:#ffd700;
        color:#000;
        font-weight:700;
        text-decoration:none;
    }

    /* Mobile Menu */
    #iu-menu{
        display:none;
        position:absolute;
        left:0;
        right:0;
        top:100%;
        background:#fff;
        box-shadow:0 10px 25px rgba(0,0,0,.15);
        padding:10px 0;
        z-index:999;
    }

    #iu-menu.active{
        display:block;
    }

    #iu-menu li{
        list-style:none;
        width:100%;
    }

    #iu-menu li a{
        display:block;
        padding:14px 20px;
        border-bottom:1px solid #eee;
        color:#222;
        text-decoration:none;
        font-weight:600;
    }

    #iu-menu li:last-child a{
        border-bottom:none;
    }

    #iu-menu li a:hover{
        background:#fff8ee;
        color:#7a0714;
    }
}/* =========================
MOBILE HEADER FIX
========================= */
@media (max-width:768px){


.mobilebreadcrumb{font-size: 1.5em !important;}



#iu-btn{
    display:none;
}
    /* Top Bar */
    #iu-topbar{
        padding:8px 12px;
    }

    #iu-topbar-inner{
        display:flex;
        flex-direction:column;
        gap:6px;
        text-align:center;
        font-size:12px;
        line-height:1.5;
    }

    #iu-topbar a{
        display:block;
        color:#ffd700;
        font-weight:600;
    }

    /* Main Header */
    #iu-header{
        padding:15px 12px;
        background:#fff;
    }

    #iu-header-inner{
        display:flex;
        flex-direction:column;
        align-items:center;
        text-align:center;
        gap:15px;
    }

    /* Logo */
    #iu-logo img{
        max-height:60px !important;
        width:auto;
        margin-left:-110px;
    }

    /* Social Icons */
    #iu-social{
        display:flex;
        justify-content:center;
        gap:12px;
    }

    #iu-social a{
        width:40px;
        height:40px;
        border-radius:50%;
        background:#7a0714;
        color:#fff;
        display:flex;
        align-items:center;
        justify-content:center;
        text-decoration:none;
        font-size:16px;
    }

    /* Call Box */
    #iu-call{
        width:100%;
        max-width:280px;
        background:#fff8ee;
        border:2px solid #7a0714;
        border-radius:12px;
        padding:12px;
        display:flex;
        justify-content:center;
        align-items:center;
        gap:12px;
    }

    #iu-call-icon{
        width:45px;
        height:45px;
        background:#7a0714;
        color:#fff;
        border-radius:50%;
        display:flex;
        align-items:center;
        justify-content:center;
        font-size:18px;
        flex-shrink:0;
    }

    #iu-call small{
        display:block;
        font-size:11px;
        color:#666;
        margin-bottom:3px;
    }

    #iu-call strong{
        display:block;
        color:#7a0714;
        font-size:20px;
        font-weight:700;
    }

    /* Navigation */
    #iu-navbar{
        background:transparent;
       position:absolute !important;

margin-top:-245px !important;
margin-left:109px !important;
width: 100%;
       z-index:9999 !important;
    }

    #iu-nav-inner{
        padding:12px;
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    /* Hamburger */
    #iu-mobile-btn{
        display:flex;
        align-items:center;
        justify-content:center;
        width:45px;
        height:45px;
        border:none;
        background:#fff;
        color:#7a0714;
        border-radius:8px;
        font-size:20px;
        cursor:pointer;
    }

    /* CTA Button */
    #iu-btn{
        padding:10px 15px;
        font-size:12px;
        border-radius:30px;
        white-space:nowrap;
        background:#ffd700;
        color:#000;
        font-weight:700;
        text-decoration:none;
    }

    /* Mobile Menu */
    #iu-menu{
        display:none;
        position:absolute;
        left:0;
        right:0;
        top:100%;
        background:#fff;
        box-shadow:0 10px 25px rgba(0,0,0,.15);
        padding:10px 0;
        z-index:999;
    }

    #iu-menu.active{
        display:block;
    }

    #iu-menu li{
        list-style:none;
        width:100%;
    }

    #iu-menu li a{
        display:block;
        padding:14px 20px;
        border-bottom:1px solid #eee;
        color:#222;
        text-decoration:none;
        font-weight:600;
    }

    #iu-menu li:last-child a{
        border-bottom:none;
    }

    #iu-menu li a:hover{
        background:#fff8ee;
        color:#7a0714;
    }
}




.page-title:before{background:transparent !important;}


.service-list>li{border: 2px  solid #7a0714;}
.service-list>li>a>span{margin-left:10px;}

.sj-container{
    max-width:1300px;
    margin:auto;
    padding:0 15px;
}

/* TOP BAR */

.sj-topbar{
    background:#f50057;
    border-bottom:2px solid #ffb300;
}

.sj-topbar .sj-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:66px;
}

.sj-top-left{
    display:flex;
    align-items:center;
    gap:20px;
}

.sj-divider{
    width:1px;
    height:35px;
    background:rgba(255,255,255,.3);
}

.sj-info-item{
    display:flex;
    align-items:center;
    gap:10px;
    color:#fff;
    font-weight:600;
}

.sj-info-item i{
    width:34px;
    height:34px;
    border-radius:50%;
    background:#ffcc00;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
}

.sj-top-right{
    display:flex;
    align-items:center;
    gap:25px;
}

.sj-contact-box{
    background:#ffcc00;
    border-radius:40px;
    padding:12px 25px;
    display:flex;
    align-items:center;
    gap:25px;
}

.sj-contact-box a{
    color:#000;
    text-decoration:none;
    font-weight:700;
}

.sj-contact-box i{
    color:#f50057;
    margin-right:8px;
}

.sj-social{
    display:flex;
    gap:12px;
}

.sj-social a{
    width:36px;
    height:36px;
    background:#ffcc00;
    border-radius:50%;
    color:#000;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

/* MAIN HEADER */

.sj-header{
    background:#f5efe6;
    border-bottom:2px solid #7a0714;
}

.sj-header .sj-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:90px;
}

.sj-logo img{
    max-height:80px;
}

.sj-menu ul{
    display:flex;
    gap:35px;
    list-style:none;
    margin:0;
    padding:0;
}

.sj-menu a{
    color:#000;
    text-decoration:none;
    font-weight:600;
}

.sj-call-btn{
    background:#f50057;
    color:#fff;
    text-decoration:none;
    padding:12px 28px;
    border-radius:50px;
    font-size:28px;
    font-weight:700;
    border:3px solid #ffcc00;
}

.sj-call-btn i{
    margin-right:8px;
}

/* MOBILE */

@media(max-width:991px){

    
    .sj-header .sj-container{
        flex-direction:column;
        padding:15px;
        gap:15px;
    }

    .sj-menu ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:15px;
    }

    .sj-call-btn{
        width:100%;
        text-align:center;
        font-size:18px;
    }

    .sj-logo img{
        max-height:65px;
    }
}


/* HEADER */

.sj-header{
    background:#f5efe6;
    border-bottom:2px solid #7a0714;
    position:relative;
    z-index:999;
}

.sj-header .sj-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    min-height:90px;
}

.sj-menu ul{
    list-style:none;
    display:flex;
    gap:30px;
    margin:0;
    padding:0;
}

.sj-menu ul li{
    position:relative;
}

.sj-menu a{
    text-decoration:none;
    color:#111;
    font-weight:600;
}

/* DROPDOWN */

.dropdown{
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    display:none !important;
    flex-direction:column;
    padding:10px 0 !important;
}

.dropdown li{
    width:100%;
}

.dropdown a{
    display:block;
    padding:10px 20px;
}

.has-dropdown:hover .dropdown{
    display:flex !important;
}

/* HAMBURGER */

.sj-menu-toggle{
    display:none;
    border:none;
    background:#f50057;
    color:#fff;
    width:45px;
    height:45px;
    border-radius:6px;
    cursor:pointer;
    font-size:20px;
}

/* MOBILE */

@media(max-width:991px){

 
    .sj-header .sj-container{
        min-height:auto;
        padding:15px;
        flex-wrap:wrap;
    }

    .sj-logo img{
        max-height:60px;
    }

    .sj-menu-toggle{
        display:block;
    }

    .sj-menu{
        width:100%;
        display:none;
        margin-top:15px;
    }

    .sj-menu.active{
        display:block;
    }

    .sj-menu ul{
        flex-direction:column;
        gap:0;
        background:#fff;
        border:1px solid #eee;
    }

    .sj-menu ul li{
        border-bottom:1px solid #eee;
    }

    .sj-menu a{
        display:block;
        padding:14px 15px;
    }

    .dropdown{
        position:static;
        box-shadow:none;
        display:none !important;
        background:#fafafa;
        padding-left:15px !important;
    }

    .has-dropdown.active .dropdown{
        display:block !important;
    }

    .sj-call-btn{
        display:none;
    }
}


@media(max-width:991px){

    .sj-topbar{
        padding:10px 0;
    }

    .sj-topbar .sj-container{
        flex-direction:column;
        gap:12px;
        min-height:auto;
    }

    .sj-top-left{
        flex-direction:column;
        gap:10px;
        width:100%;
    }

    .sj-divider{
        display:none;
    }

    .sj-info-item{
        justify-content:center;
        text-align:center;
        font-size:14px;
    }

    .sj-top-right{
        width:100%;
        flex-direction:column;
        gap:12px;
    }

    .sj-contact-box{
        width:100%;
        padding:12px;
        justify-content:center;
        flex-wrap:wrap;
        gap:12px;
        border-radius:15px;
    }

    .sj-contact-box a{
        font-size:14px;
    }

    .sj-social{
        justify-content:center;
        width:100%;
    }

    /* Header */

    .sj-header .sj-container{
        min-height:auto;
        padding:12px 15px;
        flex-wrap:wrap;
    }

    .sj-logo img{
        max-height:55px;
    }

    .sj-menu-toggle{
        display:flex;
                margin-top: -62px;
      
        align-items:center;
        justify-content:center;
    }

    .sj-menu{
        width:100%;
        display:none;
        margin-top:15px;
    }

    .sj-menu.active{
        display:block;
    }

    .sj-menu ul{
        flex-direction:column;
        gap:0;
        background:#fff;
        border-radius:12px;
        overflow:hidden;
        box-shadow:0 5px 20px rgba(0,0,0,.08);
    }

    .sj-menu ul li{
        border-bottom:1px solid #eee;
    }

    .sj-menu a{
        display:block;
        padding:14px 18px;
    }

    .dropdown{
        position:static;
        box-shadow:none;
        background:#fafafa;
    }

    .has-dropdown.active .dropdown{
        display:block !important;
    }

    .sj-call-btn{
        display:none;
    }

    .sj-header .sj-container{
        display:flex;
        align-items:center;
        justify-content:space-between;
        flex-wrap:wrap;
        padding:12px 15px;
        position:relative;
    }

    .sj-logo{
        flex:0 0 auto;
    }

    .sj-logo img{
        max-height:55px;
        width:auto;
    }

    .sj-menu-toggle{
        display:flex;
        align-items:center;
        justify-content:center;
        width:45px;
        height:45px;
        margin-left:auto;
        border:none;
        background:#f50057;
        color:#fff;
        border-radius:6px;
        font-size:20px;
        cursor:pointer;
    }

    .sj-menu{
        width:100%;
        display:none;
        margin-top:15px;
    }

    .sj-menu.active{
        display:block;
    }

    .sj-menu ul{
        display:flex;
        flex-direction:column;
        gap:0;
        background:#fff;
        border-radius:12px;
        overflow:hidden;
        box-shadow:0 5px 20px rgba(0,0,0,.08);
    }

    .sj-menu a{
        display:block;
        padding:14px 18px;
    }

    .sj-call-btn{
        display:none;
    }


.sj-info-item{display:none !important; }




    .dropdown{
        position:absolute;
        top:100%;
        left:0;
        min-width:700px;
        background:#fff;
        box-shadow:0 10px 30px rgba(0,0,0,.15);
        padding:15px;
        display:none !important;

        grid-template-columns:1fr 1fr;
        gap:0 20px;
    }

    .has-dropdown:hover .dropdown{
        display:grid !important;
    }

    .dropdown li{
        width:100%;
    }

    .dropdown a{
        display:block;
        padding:10px 15px;
        white-space:normal;
    }

    
}


/* SERVICES DROPDOWN */
.sj-menu ul li {
    position: relative;
}

.sj-menu .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    width: 700px;
    padding: 15px;
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 5px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
    border-top: 3px solid #7a0714;
    border-radius: 0 0 10px 10px;
    z-index: 999;
}

.sj-menu .has-dropdown:hover .dropdown {
    display: grid;
}

.sj-menu .dropdown li {
    list-style: none;
    width: 100%;
}

.sj-menu .dropdown li a {
    display: block;
    padding: 10px 12px;
    color: #222;
    font-size: 14px;
    line-height: 1.5;
    border-radius: 6px;
    transition: all .3s ease;
}

.sj-menu .dropdown li a:hover {
    background: #7a0714;
    color: #fff;
    padding-left: 18px;
}

/* Mobile */
@media (max-width: 991px) {

    .sj-menu .dropdown {
        position: static;
        width: 100%;
        display: none;
        grid-template-columns: 1fr;
        box-shadow: none;
        border: 1px solid #eee;
        margin-top: 10px;
        padding: 10px;
    }

    .sj-menu .has-dropdown.active .dropdown {
        display: grid;
    }

    .sj-menu .dropdown li a {
        font-size: 13px;
        padding: 8px 10px;
    }
}

@media (max-width:991px){

    .sj-menu{
        display:none;
        width:100%;
        background:#fff;
        margin-top:15px;
    }

    .sj-menu.active{
        display:block;
    }

    .sj-menu ul{
        flex-direction:column;
    }

    .sj-menu ul li{
        width:100%;
    }

    .sj-menu ul li a{
        display:block;
        padding:12px 15px;
        border-bottom:1px solid #eee;
    }
}


.sj-menu .dropdown{
    width:750px;
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    padding:15px;

    display:grid;
    grid-template-columns:repeat(7,1fr);
    grid-template-rows:auto auto;
    gap:10px;
}


.services-dropdown{
    width: 900px !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 15px;
}

.services-dropdown li{
    width: 100%;
}

.services-dropdown li a{
    display: block;
    padding: 10px 15px;
    white-space: normal;
}

@media (max-width: 991px){
    .services-dropdown{
        width: 100% !important;
        grid-template-columns: 1fr;
    }
}

.mega-dropdown{
    width: 800px !important;
    padding: 15px !important;
}

.mega-dropdown .row{
    margin: 0;
}

.mega-dropdown li{
    list-style: none;
}

.mega-dropdown li a{
    display: block;
    padding: 8px 12px;
    white-space: normal;
}

@media (max-width: 991px){
    .mega-dropdown{
        width: 100% !important;
    }
}

.mega-dropdown li{
    list-style: none;
    border-bottom: 1px solid #e5e5e5;
}

.mega-dropdown li:last-child{
    border-bottom: none;
}

.mega-dropdown li a{
    display: block;
    padding: 10px 12px;
    white-space: normal;
    transition: all 0.3s ease;
}

.mega-dropdown li a:hover{
    padding-left: 18px;
    color: #7a0714;
}



@media (max-width:991px){

    .mega-dropdown,
    .dropdown{
        width:100vw !important;
        max-width:100vw !important;
        left:0 !important;
        right:0 !important;
        margin:0 !important;
        padding:0 !important;
        box-sizing:border-box;
    }

    .has-dropdown.active .dropdown{
        display:block !important;
        position:relative !important;
    }

    .mega-dropdown .row{
        display:block !important;
        margin:0 !important;
    }

    .mega-dropdown .col-md-6{
        width:100% !important;
        max-width:100% !important;
        padding:0 !important;
    }

    .dropdown li a{
        width:100%;
        display:block;
        padding:12px 15px !important;
    }
}

@media (max-width:991px){

    /* Services dropdown */
    .mega-dropdown,
    .dropdown,
    .services-dropdown{
        position:static !important;
        width:100% !important;
        max-width:100% !important;
        min-width:100% !important;
        display:none;
        background:#f8f8f8;
        padding:0 !important;
        margin:0 !important;
        box-shadow:none !important;
        border:none !important;
        border-top:1px solid #eee;
    }

    .has-dropdown.active .dropdown{
        display:block !important;
    }

    /* Remove desktop columns */
    .mega-dropdown .row{
        display:block !important;
        margin:0 !important;
    }

    .mega-dropdown .col-md-6{
        width:100% !important;
        max-width:100% !important;
        padding:0 !important;
        border:none !important;
    }

    /* Dropdown links */
    .dropdown li{
        width:100%;
        border-bottom:1px solid #e5e5e5;
        list-style:none;
    }

    .dropdown li:last-child{
        border-bottom:none;
    }

    .dropdown li a{
        display:block;
        width:100%;
        padding:14px 18px !important;
        font-size:14px;
        line-height:1.5;
        color:#333 !important;
        background:#fff;
        white-space:normal;
        word-break:break-word;
    }

    .dropdown li a:hover{
        background:#7a0714;
        color:#fff !important;
    }

    /* Services menu header */
    .has-dropdown > a{
        display:flex !important;
        justify-content:space-between;
        align-items:center;
    }

    .has-dropdown.active > a{
        background:#7a0714 !important;
        color:#fff !important;
    }

    .has-dropdown.active > a i{
        transform:rotate(180deg);
        transition:.3s;
    }
}



@media (max-width: 991px) {
    .sj-menu .dropdown li a {
        width: 360px !important;
        margin-left:22px;
    }
}



.myImageSlider{
    width:100%;
    overflow:hidden;
    position:relative;
}

.myImageSlider .swiper-slide{
    overflow:hidden;
}

.myImageSlider .swiper-slide img{
    width:100%;
    height:auto;
    display:block;
}

/* Navigation Buttons */
.myImageSlider .swiper-button-next,
.myImageSlider .swiper-button-prev{
    width:50px;
    height:50px;
    background:rgba(122,7,20,.9);
    border-radius:50%;
}

.myImageSlider .swiper-button-next:after,
.myImageSlider .swiper-button-prev:after{
    font-size:18px;
    color:#fff;
    font-weight:700;
}

/* Pagination */
.myImageSlider .swiper-pagination-bullet{
    width:10px;
    height:10px;
}

.myImageSlider .swiper-pagination-bullet-active{
    background:#7a0714;
}

/* Mobile */
@media(max-width:767px){

    .myImageSlider{
        padding:8px;
    }

    .myImageSlider .swiper-slide img{
        border-radius:12px;
        box-shadow:0 5px 20px rgba(0,0,0,.12);
    }

    .myImageSlider .swiper-button-next,
    .myImageSlider .swiper-button-prev{
        display:none;
    }

    .myImageSlider .swiper-pagination{
        bottom:0 !important;
    }
}





.responsive-heading{
    font-size:48px;
    font-weight:700;
    margin-top:10px;
    line-height:1.2;
}

@media (max-width: 991px){
    .responsive-heading{
        font-size:22px;
    }
}

@media (max-width: 767px){
    .responsive-heading{
        font-size:22px !important;
    }



.service-block-items-2{border:2px solid red;}





    
}

@media (max-width: 480px){
    .responsive-heading{
        font-size:24px;
    }
}


@media (max-width: 1699.98px) {
    .service-block-items-2 {
        padding: 10px 10px !important; 
    }



    .service-block-items-2 .content .icon-area .title a{

        text-align: center !important;
    }

.service-block-items-2 .content .icon-area .title{max-width: 100% !important; text-align: center !important;width: 100% !important; margin: auto !important;}







}



#wa-buttoncall{
    position:fixed !important;
    right:20px !important;
    bottom:20px !important;
    width:60px !important;
    height:60px !important;

    color:#fff !important;
    border-radius:50% !important;
    display:flex !important;
    align-items:center !important;
    justify-content:center !important;
    cursor:pointer !important;
    z-index:99999 !important;
  
}

#wa-buttoncall i{
    color:#fff !important;
}

.wa-dotca{
    position:absolute !important;
    top:8px !important;
    right:8px !important;
    width:10px !important;
    height:10px !important;
    background:red !important;
    border-radius:50% !important;
    animation:pulseCall 1.5s infinite !important;
}

@keyframes pulseCall{
    0%{
        transform:scale(1);
        opacity:1;
    }
    100%{
        transform:scale(2);
        opacity:0;
    }
}






