:root {
  --primary-color: #4a71b4;
  --sec-col: #f6cc07;
  --secondary-color: #6c757d;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --white: #ffffff;
  --black: #000000;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: visible;
}

main {
  max-width: 100%;
  overflow-x: visible;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

@media(max-width:991px) {
  html,
  body {
    overflow-x: hidden;
  }

  main {
    overflow-x: hidden;
  }

  .container,
  .container-fluid {
    max-width: 100%;
  }

  .breadcrumb-nav {
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .table-responsive {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}





    .image-group{
    position:relative;
    min-height:550px;
}

.image-group img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:25px;
    transition:.5s;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

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

.img-one{
    width:320px;
    height:380px;
}

.img-two{
    position:absolute;
    top:50px;
    right:0;
    width:220px;
    height:240px;
}

.img-three{
    position:absolute;
    bottom:0;
    right:60px;
    width:270px;
    height:220px;
}

.experience-box{
    position:absolute;
    left:220px;
    bottom:40px;
    background:#355FA8;
    color:#fff;
    padding:20px 30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 15px 35px rgba(53,95,168,.35);
    animation:float 3s ease-in-out infinite;
}

.experience-box h2{
    font-size:42px;
    font-weight:700;
    margin:0;
}

.experience-box span{
    font-size:15px;
}

@keyframes float{

0%,100%{
transform:translateY(0px);
}

50%{
transform:translateY(-12px);
}

}

@media(max-width:991px){

.image-group{
    min-height:430px;
    max-width:520px;
    margin:40px auto 0;
    padding:0 8px;
}

.img-one{
    position:relative;
    width:62%;
    height:330px;
    margin:0;
    z-index:1;
}

.img-two{
    position:absolute;
    top:34px;
    right:0;
    width:46%;
    height:210px;
    z-index:2;
}

.img-three{
    position:absolute;
    right:9%;
    bottom:0;
    width:54%;
    height:190px;
    z-index:3;
}

.image-group .experience-box{
    left:4%;
    bottom:30px;
    z-index:4;
}

}
    .about-company {
        background: #ffffff;
    }

    .about-tag {
        display: inline-block;
        background: #edf3ff;
        color: #355FA8;
        padding: 8px 18px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .about-title {
        font-size: 42px;
        font-weight: 800;
        color: #1b2a4e;
        line-height: 1.3;
    }

    .about-text {
        color: #6b7280;
        font-size: 16px;
        line-height: 1.9;
        margin-top: 20px;
    }

    .about-feature {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 600;
        color: #1b2a4e;
    }

    .about-feature i {
        color: #355FA8;
        font-size: 20px;
    }

    .btn-about {
        display: inline-block;
        background: #355FA8;
        color: #fff;
        padding: 14px 34px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: .3s;
    }

    .btn-about:hover {
        background: #FFC928;
        color: #222;
    }

    .image-wrapper {
        position: relative;
    }

    .image-wrapper img {
        width: 100%;
        border-radius: 25px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
    }

    .experience-box {
        position: absolute;
        bottom: 30px;
        left: -20px;
        background: #355FA8;
        color: #fff;
        padding: 25px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 15px 40px rgba(53, 95, 168, .35);
        animation: float 4s ease-in-out infinite;
    }

    .experience-box h3 {
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .experience-box p {
        margin: 0;
        font-size: 15px;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-12px);
        }

    }

    @media(max-width:991px) {

        .about-title {
            font-size: 34px;
        }

        .image-group .experience-box {
            left: 20px;
            bottom: 20px;
        }

    }

    @media(max-width:576px) {

        .about-title {
            font-size: 28px;
        }

        .about-feature {
            font-size: 14px;
        }

        .image-group {
            min-height: 360px;
            margin-top: 34px;
            padding: 0;
        }

        .image-group img {
            border-radius: 16px;
        }

        .img-one {
            width: 65%;
            height: 290px;
        }

        .img-two {
            top: 28px;
            right: 0;
            width: 47%;
            height: 165px;
        }

        .img-three {
            right: 4%;
            width: 57%;
            height: 155px;
        }

        .image-group .experience-box {
            left: 12px;
            bottom: 22px;
            padding: 14px 16px;
            border-radius: 14px;
        }

        .image-group .experience-box h2 {
            font-size: 30px;
        }

        .image-group .experience-box span {
            font-size: 12px;
        }

    }

     .breadcrumb-banner {
        position: relative;
        overflow: hidden;
        padding: 30px 0;
        min-height: 260px;
        display: flex;
        align-items: center;

        background-image:
            linear-gradient(90deg,
                rgba(247, 249, 252, .98) 0%,
                rgba(247, 249, 252, .92) 35%,
                rgba(247, 249, 252, .60) 60%,
                rgba(247, 249, 252, .15) 100%),
            url("../images/state/ahmedabad.webp");

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    /* Yellow Circle */

    .breadcrumb-banner:before {

        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #F5C54220;
        border-radius: 50%;
        right: -120px;
        top: -120px;

    }

    /* Blue Wave */

    .breadcrumb-banner:after {

        content: "";
        position: absolute;
        left: -120px;
        bottom: -120px;
        width: 320px;
        height: 320px;
        background: #2E5FA810;
        border-radius: 50%;

    }

    .breadcrumb-nav {

        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        padding: 8px 15px;
        border-radius: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        margin-bottom: 10px;

    }

    .breadcrumb-nav a {

        text-decoration: none;
        color: #1F3F73;
        font-weight: 600;

    }

    .breadcrumb-nav span {

        color: #2E5FA8;
        font-weight: 700;

    }

    .mini-title {

        display: inline-block;
        background: #F5C542;
        color: #1F3F73;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 18px;

    }

    .breadcrumb-banner h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #1E293B;
    }

    .breadcrumb-banner h1 span {
        color: #2E5FA8;
    }

    .breadcrumb-banner p {

        color: #667085;
        font-size: 15px;
        line-height: 1.5;
        max-width: 520px;

    }

    .banner-info {

        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 13px;

    }

    .info-box {

        background: #fff;
        padding: 10px 18px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

    }

    .info-box i {

        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E5FA8;
        color: #fff;
        font-size: 22px;

    }

    .info-box h6 {

        margin: 0;
        color: #1F3F73;
        font-weight: 700;

    }

    .info-box small {

        color: #777;

    }



    @media(max-width:991px) {

        .breadcrumb-banner {

            text-align: center;
            padding: 70px 0;

        }

        .banner-info {

            justify-content: center;

        }

        .breadcrumb-banner h1 {

            font-size: 42px;

        }

        .truck-img {

            margin-top: 40px;

        }

    }

/* === Extracted inline page styles from application views === */
/* Extracted from application/modules/about/views/about.php */
.breadcrumb-banner{
    position: relative;
    overflow: hidden;
    padding: 30px 0;
    min-height: 260px;
    display: flex;
    align-items: center;

    background-image:
        linear-gradient(
            90deg,
            rgba(247,249,252,.98) 0%,
            rgba(247,249,252,.92) 35%,
            rgba(247,249,252,.60) 60%,
            rgba(247,249,252,.15) 100%
        ),
        url("../images/state/ahmedabad.webp");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
/* Yellow Circle */

.breadcrumb-banner:before{

    content:"";
    position:absolute;
    width:350px;
    height:350px;
    background:#F5C54220;
    border-radius:50%;
    right:-120px;
    top:-120px;

}

/* Blue Wave */

.breadcrumb-banner:after{

    content:"";
    position:absolute;
    left:-120px;
    bottom:-120px;
    width:320px;
    height:320px;
    background:#2E5FA810;
    border-radius:50%;

}

.breadcrumb-nav{

    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    padding:8px 15px;
    border-radius:40px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    margin-bottom:10px;

}

.breadcrumb-nav a{

    text-decoration:none;
    color:#1F3F73;
    font-weight:600;

}

.breadcrumb-nav span{

    color:#2E5FA8;
    font-weight:700;

}

.mini-title{

    display:inline-block;
    background:#F5C542;
    color:#1F3F73;
    padding:8px 15px;
    border-radius:30px;
    font-weight:700;
    margin-bottom:18px;

}

.breadcrumb-banner h1{
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    color: #1E293B;
}

.breadcrumb-banner h1 span{
    color: #2E5FA8;
}

.breadcrumb-banner p{

    color:#667085;
    font-size:15px;
    line-height:1.5;
    max-width:520px;

}

.banner-info{

    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:13px;

}

.info-box{

    background:#fff;
    padding:10px 18px;
    border-radius:16px;
    display:flex;
    align-items:center;
    gap:15px;
    box-shadow:0 12px 30px rgba(0,0,0,.08);

}

.info-box i{

    width:40px;
    height:40px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#2E5FA8;
    color:#fff;
    font-size:22px;

}

.info-box h6{

    margin:0;
    color:#1F3F73;
    font-weight:700;

}

.info-box small{

    color:#777;

}

.mw-about-intro,
.mw-process-section{
    background:#fff;
}

.mw-values-section,
.mw-cta-section{
    background:#f7f9fc;
}

.mw-image-stack{
    position:relative;
    min-height:520px;
}

.mw-image-main,
.mw-image-side,
.mw-process-image{
    width:100%;
    object-fit:cover;
    border-radius:8px;
    box-shadow:0 24px 55px rgba(15,23,42,.12);
}

.mw-image-main{
    height:470px;
    max-width:420px;
}

.mw-image-side{
    position:absolute;
    right:0;
    bottom:35px;
    width:260px;
    height:270px;
    border:8px solid #fff;
}

.mw-experience{
    position:absolute;
    left:28px;
    bottom:15px;
    display:flex;
    align-items:center;
    gap:12px;
    background:#2E5FA8;
    color:#fff;
    padding:18px 20px;
    border-radius:8px;
    box-shadow:0 18px 35px rgba(46,95,168,.28);
}

.mw-experience strong{
    font-size:40px;
    line-height:1;
}

.mw-experience span{
    max-width:115px;
    font-size:14px;
    line-height:1.35;
}

.mw-safe-note{
    position:absolute;
    top:28px;
    right:38px;
    display:flex;
    align-items:center;
    gap:10px;
    background:#fff;
    color:#1F3F73;
    padding:12px 16px;
    border-radius:8px;
    font-weight:700;
    box-shadow:0 14px 30px rgba(15,23,42,.10);
}

.mw-safe-note i{
    color:#F5C542;
    font-size:22px;
}

.mw-kicker{
    display:inline-block;
    color:#2E5FA8;
    background:#edf3ff;
    padding:8px 16px;
    border-radius:30px;
    font-size:13px;
    font-weight:800;
    letter-spacing:.6px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.mw-title{
    color:#172033;
    font-size:40px;
    font-weight:800;
    line-height:1.22;
    margin-bottom:16px;
}

.mw-copy{
    color:#667085;
    font-size:16px;
    line-height:1.85;
    margin-bottom:14px;
}

.mw-check-item{
    display:flex;
    align-items:center;
    gap:10px;
    color:#1E293B;
    font-weight:700;
}

.mw-check-item i{
    color:#2E5FA8;
}

.mw-about-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
    margin-top:28px;
}

.mw-primary-btn,
.mw-outline-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    min-height:48px;
    padding:13px 24px;
    border-radius:8px;
    font-weight:800;
    text-decoration:none;
    transition:.3s;
}

.mw-primary-btn{
    background:#2E5FA8;
    color:#fff;
    box-shadow:0 14px 28px rgba(46,95,168,.24);
}

.mw-primary-btn:hover{
    background:#F5C542;
    color:#172033;
    transform:translateY(-3px);
}

.mw-outline-btn{
    border:1px solid #2E5FA8;
    color:#2E5FA8;
    background:#fff;
}

.mw-outline-btn:hover{
    background:#172033;
    color:#fff;
    border-color:#172033;
}

.mw-stats-strip{
    padding:28px 0;
    background:#172033;
}

.mw-stat-box{
    height:100%;
    padding:22px 20px;
    border-radius:8px;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.12);
    text-align:center;
}

.mw-stat-box strong{
    display:block;
    color:#F5C542;
    font-size:34px;
    line-height:1;
    margin-bottom:8px;
}

.mw-stat-box span{
    color:#dbe4f2;
    font-weight:700;
}

.mw-value-card{
    height:100%;
    background:#fff;
    padding:30px 24px;
    border-radius:8px;
    border:1px solid #e7edf6;
    box-shadow:0 16px 34px rgba(15,23,42,.06);
    transition:.3s;
}

.mw-value-card:hover{
    transform:translateY(-8px);
    box-shadow:0 24px 44px rgba(46,95,168,.13);
}

.mw-value-card i{
    width:58px;
    height:58px;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#2E5FA8;
    color:#fff;
    font-size:26px;
    margin-bottom:22px;
}

.mw-value-card h5{
    color:#172033;
    font-weight:800;
    margin-bottom:10px;
}

.mw-value-card p{
    color:#667085;
    line-height:1.75;
    margin:0;
}

.mw-process-image{
    height:260px;
    margin-top:16px;
}

.mw-process-list{
    display:grid;
    gap:18px;
}

.mw-process-item{
    display:flex;
    gap:18px;
    padding:24px;
    border-radius:8px;
    background:#fff;
    border:1px solid #e7edf6;
    box-shadow:0 14px 30px rgba(15,23,42,.06);
}

.mw-process-item span{
    flex:0 0 54px;
    width:54px;
    height:54px;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#F5C542;
    color:#172033;
    font-weight:900;
}

.mw-process-item h5{
    color:#172033;
    font-weight:800;
    margin-bottom:6px;
}

.mw-process-item p{
    color:#667085;
    line-height:1.7;
    margin:0;
}

.mw-cta-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    padding:36px;
    border-radius:8px;
    background:
        linear-gradient(135deg, rgba(23,32,51,.94), rgba(46,95,168,.94)),
        url("../images/state/gujarat.webp");
    background-size:cover;
    background-position:center;
    color:#fff;
    box-shadow:0 24px 55px rgba(15,23,42,.18);
}

.mw-cta-box .mw-kicker{
    background:rgba(245,197,66,.16);
    color:#F5C542;
}

.mw-cta-box h2{
    font-size:34px;
    font-weight:800;
    margin-bottom:10px;
}

.mw-cta-box p{
    color:#dbe4f2;
    line-height:1.75;
    margin:0;
    max-width:650px;
}

@media(max-width:991px){

.breadcrumb-banner{

    text-align:center;
    padding:70px 0;

}

.banner-info{

    justify-content:center;

}

.breadcrumb-banner h1{

    font-size:42px;

}

.mw-image-stack{
    min-height:auto;
    display:grid;
    gap:16px;
}

.mw-image-main,
.mw-image-side{
    position:relative;
    width:100%;
    max-width:none;
    height:280px;
    right:auto;
    bottom:auto;
    border:0;
}

.mw-experience,
.mw-safe-note{
    position:relative;
    left:auto;
    right:auto;
    top:auto;
    bottom:auto;
    justify-content:center;
}

.mw-title{
    font-size:32px;
}

.mw-cta-box{
    align-items:flex-start;
    flex-direction:column;
}

}

@media(max-width:576px){

.breadcrumb-banner{
    padding:52px 0;
}

.breadcrumb-nav{
    max-width:100%;
    flex-wrap:wrap;
    justify-content:center;
}

.breadcrumb-banner h1,
.mw-title{
    font-size:28px;
}

.banner-info,
.mw-about-actions{
    flex-direction:column;
}

.info-box,
.mw-primary-btn,
.mw-outline-btn{
    width:100%;
}

.mw-stat-box strong{
    font-size:28px;
}

.mw-process-item{
    padding:20px;
    flex-direction:column;
}

.mw-cta-box{
    padding:26px 20px;
}

.mw-cta-box h2{
    font-size:26px;
}

}

/* Extracted from application/modules/about/views/choose.php */
.breadcrumb-banner {
        position: relative;
        overflow: hidden;
        padding: 30px 0;
        min-height: 260px;
        display: flex;
        align-items: center;
        background-image:
            linear-gradient(90deg,
                rgba(247, 249, 252, .98) 0%,
                rgba(247, 249, 252, .92) 35%,
                rgba(247, 249, 252, .60) 60%,
                rgba(247, 249, 252, .15) 100%),
            url("../images/state/ahmedabad.webp");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .breadcrumb-banner:before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #F5C54220;
        border-radius: 50%;
        right: -120px;
        top: -120px;
    }

    .breadcrumb-banner:after {
        content: "";
        position: absolute;
        left: -120px;
        bottom: -120px;
        width: 320px;
        height: 320px;
        background: #2E5FA810;
        border-radius: 50%;
    }

    .breadcrumb-banner .container {
        position: relative;
        z-index: 2;
    }

    .breadcrumb-nav {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        padding: 8px 15px;
        border-radius: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        margin-bottom: 10px;
    }

    .breadcrumb-nav a {
        text-decoration: none;
        color: #1F3F73;
        font-weight: 600;
    }

    .breadcrumb-nav span {
        color: #2E5FA8;
        font-weight: 700;
    }

    .mini-title {
        display: inline-block;
        background: #F5C542;
        color: #1F3F73;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .breadcrumb-banner h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #1E293B;
    }

    .breadcrumb-banner h1 span {
        color: #2E5FA8;
    }

    .breadcrumb-banner p {
        color: #667085;
        font-size: 15px;
        line-height: 1.5;
        max-width: 520px;
    }

    .banner-info {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 13px;
    }

    .info-box {
        background: #fff;
        padding: 10px 18px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    }

    .info-box i {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E5FA8;
        color: #fff;
        font-size: 22px;
    }

    .info-box h6 {
        margin: 0;
        color: #1F3F73;
        font-weight: 700;
    }

    .info-box small {
        color: #777;
    }

    .wc-choose-body {
        overflow: hidden;
        background: #fff;
    }

    .wc-trust-section,
    .wc-table-section {
        background: #fff;
    }

    .wc-reasons-section,
    .wc-services-section {
        background: #f7f9fc;
    }

    .wc-process-section {
        background: #fff;
    }

    .wc-kicker {
        display: inline-flex;
        align-items: center;
        color: #2E5FA8;
        background: #edf3ff;
        padding: 8px 16px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0;
        margin-bottom: 15px;
    }

    .wc-section-title {
        color: #172033;
        font-size: 38px;
        font-weight: 800;
        line-height: 1.22;
        margin-bottom: 16px;
    }

    .wc-copy {
        color: #667085;
        font-size: 16px;
        line-height: 1.85;
        margin-bottom: 14px;
    }

    .wc-promise-item {
        min-height: 48px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: #172033;
        font-weight: 700;
        padding: 12px 14px;
        border-radius: 8px;
        background: #f7f9fc;
        border: 1px solid #e7edf6;
    }

    .wc-promise-item i {
        color: #2E5FA8;
        font-size: 18px;
    }

    .wc-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-top: 28px;
    }

    .wc-primary-btn,
    .wc-outline-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 48px;
        padding: 13px 24px;
        border-radius: 8px;
        font-weight: 800;
        text-decoration: none;
        transition: .3s ease;
    }

    .wc-primary-btn {
        background: #2E5FA8;
        color: #fff;
        box-shadow: 0 14px 28px rgba(46, 95, 168, .24);
    }

    .wc-primary-btn:hover {
        background: #F5C542;
        color: #172033;
        transform: translateY(-3px);
    }

    .wc-outline-btn {
        border: 1px solid #2E5FA8;
        color: #2E5FA8;
        background: #fff;
    }

    .wc-outline-btn:hover {
        background: #172033;
        color: #fff;
        border-color: #172033;
    }

    .wc-image-panel {
        position: relative;
        min-height: 520px;
        padding: 0 32px 36px 0;
    }

    .wc-image-panel img {
        width: 100%;
        height: 480px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 24px 55px rgba(15, 23, 42, .14);
    }

    .wc-floating-badge {
        position: absolute;
        left: 28px;
        bottom: 112px;
        display: flex;
        align-items: center;
        gap: 12px;
        max-width: 330px;
        background: #fff;
        color: #172033;
        padding: 16px 18px;
        border-radius: 8px;
        box-shadow: 0 18px 35px rgba(15, 23, 42, .12);
    }

    .wc-floating-badge i {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        color: #172033;
        background: #F5C542;
        font-size: 22px;
    }

    .wc-floating-badge strong,
    .wc-floating-badge span {
        display: block;
    }

    .wc-floating-badge strong {
        font-weight: 800;
        margin-bottom: 2px;
    }

    .wc-floating-badge span {
        color: #667085;
        font-size: 14px;
        line-height: 1.45;
    }

    .wc-mini-metrics {
        position: absolute;
        right: 0;
        bottom: 0;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 360px;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 20px 42px rgba(46, 95, 168, .2);
    }

    .wc-mini-metrics div {
        background: #2E5FA8;
        padding: 22px;
        color: #fff;
        border-right: 1px solid rgba(255, 255, 255, .18);
    }

    .wc-mini-metrics div:last-child {
        border-right: 0;
        background: #1F3F73;
    }

    .wc-mini-metrics strong {
        display: block;
        color: #F5C542;
        font-size: 34px;
        line-height: 1;
        margin-bottom: 8px;
    }

    .wc-mini-metrics span {
        display: block;
        color: #eff5ff;
        font-weight: 700;
        line-height: 1.35;
    }

    .wc-proof-strip {
        padding: 28px 0;
        background: #172033;
    }

    .wc-proof-box {
        height: 100%;
        min-height: 142px;
        padding: 24px 18px;
        border-radius: 8px;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .12);
        text-align: center;
    }

    .wc-proof-box i {
        display: block;
        color: #F5C542;
        font-size: 30px;
        margin-bottom: 12px;
    }

    .wc-proof-box strong {
        display: block;
        color: #fff;
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .wc-proof-box span {
        display: block;
        color: #dbe4f2;
        line-height: 1.45;
    }

    .wc-reason-card,
    .wc-step-card {
        height: 100%;
        background: #fff;
        padding: 30px 24px;
        border-radius: 8px;
        border: 1px solid #e7edf6;
        box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
        transition: .3s ease;
    }

    .wc-reason-card:hover,
    .wc-step-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 44px rgba(46, 95, 168, .13);
    }

    .wc-reason-card i {
        width: 58px;
        height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #2E5FA8;
        color: #fff;
        font-size: 26px;
        margin-bottom: 22px;
    }

    .wc-reason-card h5,
    .wc-step-card h5 {
        color: #172033;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .wc-reason-card p,
    .wc-step-card p {
        color: #667085;
        line-height: 1.75;
        margin: 0;
    }

    .wc-table-image {
        width: 100%;
        height: 270px;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 18px 42px rgba(15, 23, 42, .10);
        margin-top: 14px;
    }

    .wc-table-wrap {
        border-radius: 8px;
        box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
    }

    .wc-quality-table {
        width: 100%;
        min-width: 620px;
        border-collapse: collapse;
        overflow: hidden;
        background: #fff;
        border-radius: 8px;
    }

    .wc-quality-table th {
        background: #2E5FA8;
        color: #fff;
        font-size: 17px;
        padding: 18px 20px;
    }

    .wc-quality-table td {
        padding: 18px 20px;
        color: #667085;
        border-bottom: 1px solid #e7edf6;
        line-height: 1.65;
        vertical-align: top;
    }

    .wc-quality-table tr:last-child td {
        border-bottom: 0;
    }

    .wc-quality-table td:first-child {
        color: #172033;
        font-weight: 800;
        width: 34%;
    }

    .wc-step-card {
        position: relative;
        padding-top: 72px;
    }

    .wc-step-card span {
        position: absolute;
        left: 24px;
        top: 24px;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #F5C542;
        color: #172033;
        font-weight: 900;
    }

    .wc-services-section {
        border-top: 1px solid #e7edf6;
        border-bottom: 1px solid #e7edf6;
    }

    .wc-service-link {
        min-height: 68px;
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 14px 16px;
        border-radius: 8px;
        background: #fff;
        color: #172033;
        border: 1px solid #e7edf6;
        text-decoration: none;
        font-weight: 800;
        box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
        transition: .3s ease;
    }

    .wc-service-link i:first-child {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #edf3ff;
        color: #2E5FA8;
        font-size: 19px;
    }

    .wc-service-link span {
        flex: 1;
        min-width: 0;
    }

    .wc-service-link i:last-child {
        color: #F5C542;
        font-size: 24px;
    }

    .wc-service-link:hover {
        color: #fff;
        background: #2E5FA8;
        border-color: #2E5FA8;
        transform: translateY(-4px);
        box-shadow: 0 18px 34px rgba(46, 95, 168, .18);
    }

    .wc-service-link:hover i:first-child {
        background: #F5C542;
        color: #172033;
    }

    .wc-cta-section {
        background: #fff;
    }

    .wc-cta-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 36px;
        border-radius: 8px;
        background:
            linear-gradient(135deg, rgba(23, 32, 51, .94), rgba(46, 95, 168, .94)),
            url("../images/state/gujarat.webp");
        background-size: cover;
        background-position: center;
        color: #fff;
        box-shadow: 0 24px 55px rgba(15, 23, 42, .18);
    }

    .wc-cta-box .wc-kicker {
        background: rgba(245, 197, 66, .16);
        color: #F5C542;
    }

    .wc-cta-box h2 {
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .wc-cta-box p {
        color: #dbe4f2;
        line-height: 1.75;
        margin: 0;
        max-width: 650px;
    }

    @media(max-width:991px) {
        .breadcrumb-banner {
            text-align: center;
            padding: 70px 0;
        }

        .banner-info {
            justify-content: center;
        }

        .breadcrumb-banner h1 {
            font-size: 42px;
        }

        .wc-section-title {
            font-size: 32px;
        }

        .wc-image-panel {
            min-height: auto;
            padding: 0;
        }

        .wc-image-panel img {
            height: 360px;
        }

        .wc-floating-badge,
        .wc-mini-metrics {
            position: relative;
            left: auto;
            right: auto;
            bottom: auto;
            width: 100%;
            margin-top: 14px;
        }

        .wc-cta-box {
            align-items: flex-start;
            flex-direction: column;
        }
    }

    @media(max-width:576px) {
        .breadcrumb-banner {
            padding: 52px 0;
        }

        .breadcrumb-nav {
            max-width: 100%;
            flex-wrap: wrap;
            justify-content: center;
        }

        .breadcrumb-banner h1,
        .wc-section-title {
            font-size: 28px;
        }

        .breadcrumb-banner p,
        .wc-copy {
            font-size: 15px;
        }

        .banner-info,
        .wc-actions {
            flex-direction: column;
        }

        .info-box,
        .wc-primary-btn,
        .wc-outline-btn {
            width: 100%;
        }

        .wc-image-panel img {
            height: 280px;
        }

        .wc-floating-badge {
            align-items: flex-start;
        }

        .wc-mini-metrics {
            grid-template-columns: 1fr;
        }

        .wc-mini-metrics div {
            border-right: 0;
            border-bottom: 1px solid rgba(255, 255, 255, .18);
        }

        .wc-mini-metrics div:last-child {
            border-bottom: 0;
        }

        .wc-proof-box {
            min-height: 155px;
            padding: 20px 12px;
        }

        .wc-reason-card,
        .wc-step-card {
            padding-left: 20px;
            padding-right: 20px;
        }

        .wc-step-card {
            padding-top: 72px;
        }

        .wc-table-image {
            height: 230px;
        }

        .wc-service-link {
            min-height: 64px;
        }

        .wc-cta-box {
            padding: 26px 20px;
        }

        .wc-cta-box h2 {
            font-size: 26px;
        }
    }

/* Extracted from application/modules/about/views/faq.php */
.breadcrumb-banner {
        position: relative;
        overflow: hidden;
        padding: 30px 0;
        min-height: 260px;
        display: flex;
        align-items: center;
        background-image:
            linear-gradient(90deg,
                rgba(247, 249, 252, .98) 0%,
                rgba(247, 249, 252, .92) 35%,
                rgba(247, 249, 252, .60) 60%,
                rgba(247, 249, 252, .15) 100%),
            url("../images/state/ahmedabad.webp");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .breadcrumb-banner:before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #F5C54220;
        border-radius: 50%;
        right: -120px;
        top: -120px;
    }

    .breadcrumb-banner:after {
        content: "";
        position: absolute;
        left: -120px;
        bottom: -120px;
        width: 320px;
        height: 320px;
        background: #2E5FA810;
        border-radius: 50%;
    }

    .breadcrumb-banner .container {
        position: relative;
        z-index: 2;
    }

    .breadcrumb-nav {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        padding: 8px 15px;
        border-radius: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        margin-bottom: 10px;
    }

    .breadcrumb-nav a {
        text-decoration: none;
        color: #1F3F73;
        font-weight: 600;
    }

    .breadcrumb-nav span {
        color: #2E5FA8;
        font-weight: 700;
    }

    .mini-title {
        display: inline-block;
        background: #F5C542;
        color: #1F3F73;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .breadcrumb-banner h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #1E293B;
    }

    .breadcrumb-banner h1 span {
        color: #2E5FA8;
    }

    .breadcrumb-banner p {
        color: #667085;
        font-size: 15px;
        line-height: 1.5;
        max-width: 520px;
    }

    .banner-info {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 13px;
    }

    .info-box {
        background: #fff;
        padding: 10px 18px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    }

    .info-box i {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E5FA8;
        color: #fff;
        font-size: 21px;
    }

    .info-box h6 {
        margin: 0;
        color: #1F3F73;
        font-weight: 700;
    }

    .info-box small {
        color: #777;
    }

    .fq-page-body {
        overflow: visible;
        background: #fff;
    }

    .fq-intro-section,
    .fq-contact-section {
        background: #fff;
        overflow: visible;
    }

    .fq-services-section {
        background: #f7f9fc;
    }

    .fq-kicker {
        display: inline-flex;
        align-items: center;
        color: #2E5FA8;
        background: #edf3ff;
        padding: 8px 16px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0;
        margin-bottom: 15px;
    }

    .fq-section-title {
        color: #172033;
        font-size: 38px;
        font-weight: 800;
        line-height: 1.22;
        margin-bottom: 16px;
    }

    .fq-copy {
        color: #667085;
        font-size: 16px;
        line-height: 1.85;
        margin-bottom: 14px;
    }

    .fq-sticky-form {
        position: sticky;
        top: 120px;
        z-index: 5;
        display: grid;
        gap: 16px;
        align-self: flex-start;
    }

    .fq-form-intro {
        padding: 24px 20px;
        border-radius: 8px;
        background:
            linear-gradient(135deg, rgba(23, 32, 51, .94), rgba(46, 95, 168, .94)),
            url("../images/service/homes.webp");
        background-size: cover;
        background-position: center;
        color: #fff;
        box-shadow: 0 24px 55px rgba(15, 23, 42, .16);
    }

    .fq-sticky-form .service-quote-card {
        max-width: none;
        margin: 0;
    }

    .fq-form-intro .fq-kicker {
        background: rgba(245, 197, 66, .16);
        color: #F5C542;
    }

    .fq-form-intro h2 {
        font-size: 26px;
        font-weight: 800;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .fq-form-intro p {
        color: #dbe4f2;
        line-height: 1.8;
        margin-bottom: 24px;
    }

    .fq-help-list {
        display: grid;
        gap: 12px;
        margin-bottom: 26px;
    }

    .fq-help-list div {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px;
        border-radius: 8px;
        background: rgba(255, 255, 255, .1);
        border: 1px solid rgba(255, 255, 255, .14);
        color: #fff;
        font-weight: 700;
    }

    .fq-help-list i {
        color: #F5C542;
        font-size: 20px;
    }

    .fq-heading-row {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 24px;
    }

    .fq-heading-row .fq-section-title {
        margin-bottom: 0;
    }

    .fq-count-box {
        flex: 0 0 112px;
        padding: 16px;
        border-radius: 8px;
        background: #f7f9fc;
        border: 1px solid #e7edf6;
        text-align: center;
    }

    .fq-count-box strong {
        display: block;
        color: #2E5FA8;
        font-size: 34px;
        line-height: 1;
        font-weight: 900;
        margin-bottom: 6px;
    }

    .fq-count-box span {
        color: #667085;
        font-weight: 800;
    }

    .fq-accordion {
        display: grid;
        gap: 16px;
    }

    .fq-accordion .accordion-item {
        border: 1px solid #e7edf6;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 14px 30px rgba(15, 23, 42, .06);
    }

    .fq-accordion .accordion-button {
        gap: 14px;
        padding: 20px 22px;
        background: #fff;
        color: #172033;
        font-weight: 800;
        line-height: 1.45;
        box-shadow: none;
    }

    .fq-accordion .accordion-button i {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #edf3ff;
        color: #2E5FA8;
        font-size: 19px;
    }

    .fq-accordion .accordion-button:not(.collapsed) {
        background: #2E5FA8;
        color: #fff;
    }

    .fq-accordion .accordion-button:not(.collapsed) i {
        background: #F5C542;
        color: #172033;
    }

    .fq-accordion .accordion-body {
        padding: 20px 24px 22px 78px;
        color: #667085;
        line-height: 1.8;
        background: #fff;
    }

    .fq-accordion .accordion-button::after {
        margin-left: auto;
        filter: brightness(0);
    }

    .fq-accordion .accordion-button:not(.collapsed)::after {
        filter: brightness(0) invert(1);
    }

    .fq-topic-strip {
        padding: 28px 0;
        background: #172033;
    }

    .fq-topic-box {
        height: 100%;
        min-height: 140px;
        padding: 24px 18px;
        border-radius: 8px;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .12);
        text-align: center;
    }

    .fq-topic-box i {
        display: block;
        color: #F5C542;
        font-size: 30px;
        margin-bottom: 12px;
    }

    .fq-topic-box strong {
        display: block;
        color: #fff;
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .fq-topic-box span {
        display: block;
        color: #dbe4f2;
        line-height: 1.45;
    }

    .fq-service-link {
        min-height: 68px;
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 14px 16px;
        border-radius: 8px;
        background: #fff;
        color: #172033;
        border: 1px solid #e7edf6;
        text-decoration: none;
        font-weight: 800;
        box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
        transition: .3s ease;
    }

    .fq-service-link i:first-child {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #edf3ff;
        color: #2E5FA8;
        font-size: 19px;
    }

    .fq-service-link span {
        flex: 1;
        min-width: 0;
    }

    .fq-service-link i:last-child {
        color: #F5C542;
        font-size: 24px;
    }

    .fq-service-link:hover {
        color: #fff;
        background: #2E5FA8;
        border-color: #2E5FA8;
        transform: translateY(-4px);
        box-shadow: 0 18px 34px rgba(46, 95, 168, .18);
    }

    .fq-service-link:hover i:first-child {
        background: #F5C542;
        color: #172033;
    }

    .fq-image-card {
        position: relative;
        min-height: 420px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 24px 55px rgba(15, 23, 42, .14);
    }

    .fq-image-card img {
        width: 100%;
        height: 420px;
        object-fit: cover;
    }

    .fq-image-card div {
        position: absolute;
        left: 24px;
        right: 24px;
        bottom: 24px;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 18px;
        border-radius: 8px;
        background: #fff;
        color: #172033;
        font-weight: 800;
        box-shadow: 0 16px 34px rgba(15, 23, 42, .12);
    }

    .fq-image-card i {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #F5C542;
        color: #172033;
        font-size: 21px;
    }

    .fq-contact-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-top: 28px;
    }

    .fq-primary-btn,
    .fq-outline-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 48px;
        padding: 13px 24px;
        border-radius: 8px;
        font-weight: 800;
        text-decoration: none;
        transition: .3s ease;
    }

    .fq-primary-btn {
        background: #2E5FA8;
        color: #fff;
        box-shadow: 0 14px 28px rgba(46, 95, 168, .24);
    }

    .fq-primary-btn:hover {
        background: #F5C542;
        color: #172033;
        transform: translateY(-3px);
    }

    .fq-outline-btn {
        border: 1px solid #2E5FA8;
        color: #2E5FA8;
        background: #fff;
    }

    .fq-outline-btn:hover {
        background: #172033;
        color: #fff;
        border-color: #172033;
    }

    @media(max-width:991px) {
        .breadcrumb-banner {
            text-align: center;
            padding: 70px 0;
        }

        .banner-info {
            justify-content: center;
        }

        .breadcrumb-banner h1 {
            font-size: 42px;
        }

        .fq-sticky-form {
            position: relative;
            top: auto;
        }

        .fq-section-title {
            font-size: 32px;
        }

        .fq-heading-row {
            align-items: flex-start;
            flex-direction: column;
        }

        .fq-count-box {
            flex: none;
            width: 130px;
        }
    }

    @media(max-width:576px) {
        .breadcrumb-banner {
            padding: 52px 0;
        }

        .breadcrumb-nav {
            max-width: 100%;
            flex-wrap: wrap;
            justify-content: center;
        }

        .breadcrumb-banner h1,
        .fq-section-title {
            font-size: 28px;
        }

        .breadcrumb-banner p,
        .fq-copy {
            font-size: 15px;
        }

        .banner-info,
        .fq-contact-actions {
            flex-direction: column;
        }

        .info-box,
        .fq-primary-btn,
        .fq-outline-btn {
            width: 100%;
        }

        .fq-form-intro {
            padding: 26px 20px;
        }

        .fq-form-intro h2 {
            font-size: 26px;
        }

        .fq-accordion .accordion-button {
            align-items: flex-start;
            padding: 18px;
        }

        .fq-accordion .accordion-body {
            padding: 18px;
        }

        .fq-topic-box {
            min-height: 150px;
            padding: 20px 12px;
        }

        .fq-service-link {
            min-height: 64px;
        }

        .fq-image-card,
        .fq-image-card img {
            min-height: 0;
            height: 280px;
        }

        .fq-image-card div {
            left: 16px;
            right: 16px;
            bottom: 16px;
        }
    }

/* Extracted from application/modules/about/views/privacy.php */
.breadcrumb-banner {
        position: relative;
        overflow: hidden;
        padding: 30px 0;
        min-height: 260px;
        display: flex;
        align-items: center;
        background-image:
            linear-gradient(90deg,
                rgba(247, 249, 252, .98) 0%,
                rgba(247, 249, 252, .92) 35%,
                rgba(247, 249, 252, .60) 60%,
                rgba(247, 249, 252, .15) 100%),
            url("../images/state/ahmedabad.webp");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .breadcrumb-banner:before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #F5C54220;
        border-radius: 50%;
        right: -120px;
        top: -120px;
    }

    .breadcrumb-banner:after {
        content: "";
        position: absolute;
        left: -120px;
        bottom: -120px;
        width: 320px;
        height: 320px;
        background: #2E5FA810;
        border-radius: 50%;
    }

    .breadcrumb-banner .container {
        position: relative;
        z-index: 2;
    }

    .breadcrumb-nav {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        padding: 8px 15px;
        border-radius: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        margin-bottom: 10px;
    }

    .breadcrumb-nav a {
        text-decoration: none;
        color: #1F3F73;
        font-weight: 600;
    }

    .breadcrumb-nav span {
        color: #2E5FA8;
        font-weight: 700;
    }

    .mini-title {
        display: inline-block;
        background: #F5C542;
        color: #1F3F73;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .breadcrumb-banner h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #1E293B;
    }

    .breadcrumb-banner h1 span {
        color: #2E5FA8;
    }

    .breadcrumb-banner p {
        color: #667085;
        font-size: 15px;
        line-height: 1.5;
        max-width: 520px;
    }

    .banner-info {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 13px;
    }

    .info-box {
        background: #fff;
        padding: 10px 18px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    }

    .info-box i {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E5FA8;
        color: #fff;
        font-size: 20px;
    }

    .info-box h6 {
        margin: 0;
        color: #1F3F73;
        font-weight: 700;
    }

    .info-box small {
        color: #777;
    }

    .pp-policy-body {
        background: #fff;
        overflow: visible;
    }

    .pp-intro-section,
    .pp-contact-section {
        background: #fff;
        overflow: visible;
    }

    .pp-kicker {
        display: inline-flex;
        align-items: center;
        color: #2E5FA8;
        background: #edf3ff;
        padding: 8px 16px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0;
        margin-bottom: 15px;
    }

    .pp-section-title {
        color: #172033;
        font-size: 38px;
        font-weight: 800;
        line-height: 1.22;
        margin-bottom: 16px;
    }

    .pp-policy-header {
        padding: 34px;
        border-radius: 8px;
        background: #f7f9fc;
        border: 1px solid #e7edf6;
        margin-bottom: 24px;
    }

    .pp-policy-header p,
    .pp-policy-card p,
    .pp-summary-item p,
    .pp-side-help p,
    .pp-contact-box p {
        color: #667085;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 0;
    }

    .pp-updated {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
        padding: 11px 14px;
        border-radius: 8px;
        background: #fff;
        color: #172033;
        border: 1px solid #e7edf6;
        font-weight: 800;
    }

    .pp-updated i {
        color: #2E5FA8;
    }

    .pp-summary-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
        margin-bottom: 24px;
    }

    .pp-summary-item,
    .pp-policy-card,
    .pp-side-card,
    .pp-side-help {
        border-radius: 8px;
        background: #fff;
        border: 1px solid #e7edf6;
        box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
    }

    .pp-summary-item {
        padding: 24px 20px;
    }

    .pp-summary-item i {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #2E5FA8;
        color: #fff;
        font-size: 22px;
        margin-bottom: 16px;
    }

    .pp-summary-item h5 {
        color: #172033;
        font-weight: 800;
        margin-bottom: 9px;
    }

    .pp-policy-list {
        display: grid;
        gap: 18px;
    }

    .pp-policy-card {
        scroll-margin-top: 120px;
        padding: 28px;
    }

    .pp-policy-card-head {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 16px;
    }

    .pp-policy-card-head i {
        width: 52px;
        height: 52px;
        flex: 0 0 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #edf3ff;
        color: #2E5FA8;
        font-size: 23px;
    }

    .pp-policy-card h3 {
        color: #172033;
        font-size: 24px;
        font-weight: 800;
        margin: 0;
    }

    .pp-policy-card p + p {
        margin-top: 12px;
    }

    .pp-toc-column {
        align-self: stretch;
    }

    .pp-sticky-panel {
        position: sticky;
        top: 120px;
        z-index: 5;
        align-self: flex-start;
        display: grid;
        gap: 18px;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
        padding-bottom: 2px;
    }

    .pp-side-card,
    .pp-side-help {
        padding: 24px;
    }

    .pp-side-card h3,
    .pp-side-help h4 {
        color: #172033;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .pp-policy-nav {
        display: grid;
        gap: 10px;
    }

    .pp-policy-nav a {
        display: flex;
        align-items: center;
        gap: 11px;
        min-height: 48px;
        padding: 10px 12px;
        border-radius: 8px;
        color: #172033;
        background: #f7f9fc;
        border: 1px solid #e7edf6;
        text-decoration: none;
        font-weight: 800;
        transition: .3s ease;
    }

    .pp-policy-nav i {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        color: #2E5FA8;
        background: #edf3ff;
    }

    .pp-policy-nav a:hover {
        color: #fff;
        background: #2E5FA8;
        border-color: #2E5FA8;
        transform: translateX(4px);
    }

    .pp-policy-nav a:hover i {
        background: #F5C542;
        color: #172033;
    }

    .pp-side-help {
        background:
            linear-gradient(135deg, rgba(23, 32, 51, .94), rgba(46, 95, 168, .94)),
            url("../images/service/office.webp");
        background-size: cover;
        background-position: center;
        color: #fff;
    }

    .pp-side-help > i {
        width: 54px;
        height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #F5C542;
        color: #172033;
        font-size: 24px;
        margin-bottom: 18px;
    }

    .pp-side-help h4 {
        color: #fff;
    }

    .pp-side-help p {
        color: #dbe4f2;
        margin-bottom: 20px;
    }

    .pp-primary-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 48px;
        padding: 13px 24px;
        border-radius: 8px;
        background: #2E5FA8;
        color: #fff;
        font-weight: 800;
        text-decoration: none;
        box-shadow: 0 14px 28px rgba(46, 95, 168, .24);
        transition: .3s ease;
    }

    .pp-primary-btn:hover {
        background: #F5C542;
        color: #172033;
        transform: translateY(-3px);
    }

    .pp-side-help .pp-primary-btn {
        width: 100%;
        background: #F5C542;
        color: #172033;
    }

    .pp-side-help .pp-primary-btn:hover {
        background: #fff;
    }

    .pp-principles-section {
        padding: 28px 0;
        background: #172033;
    }

    .pp-principle-box {
        height: 100%;
        min-height: 140px;
        padding: 24px 18px;
        border-radius: 8px;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .12);
        text-align: center;
    }

    .pp-principle-box i {
        display: block;
        color: #F5C542;
        font-size: 30px;
        margin-bottom: 12px;
    }

    .pp-principle-box strong {
        display: block;
        color: #fff;
        font-size: 21px;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .pp-principle-box span {
        display: block;
        color: #dbe4f2;
        line-height: 1.45;
    }

    .pp-contact-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 36px;
        border-radius: 8px;
        background: #f7f9fc;
        border: 1px solid #e7edf6;
        box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
    }

    .pp-contact-box h2 {
        color: #172033;
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .pp-contact-box p {
        max-width: 680px;
    }

    @media(max-width:991px) {
        .breadcrumb-banner {
            text-align: center;
            padding: 70px 0;
        }

        .banner-info {
            justify-content: center;
        }

        .breadcrumb-banner h1 {
            font-size: 42px;
        }

        .pp-section-title {
            font-size: 32px;
        }

        .pp-summary-grid {
            grid-template-columns: 1fr;
        }

        .pp-sticky-panel {
            position: relative;
            top: auto;
            max-height: none;
            overflow: visible;
        }

        .pp-toc-column {
            align-self: auto;
        }

        .pp-contact-box {
            align-items: flex-start;
            flex-direction: column;
        }
    }

    @media(max-width:576px) {
        .breadcrumb-banner {
            padding: 52px 0;
        }

        .breadcrumb-nav {
            max-width: 100%;
            flex-wrap: wrap;
            justify-content: center;
        }

        .breadcrumb-banner h1,
        .pp-section-title {
            font-size: 28px;
        }

        .breadcrumb-banner p,
        .pp-policy-header p,
        .pp-policy-card p,
        .pp-summary-item p,
        .pp-side-help p,
        .pp-contact-box p {
            font-size: 15px;
        }

        .banner-info {
            flex-direction: column;
        }

        .info-box,
        .pp-primary-btn {
            width: 100%;
        }

        .pp-policy-header,
        .pp-policy-card,
        .pp-side-card,
        .pp-side-help,
        .pp-contact-box {
            padding: 24px 20px;
        }

        .pp-policy-card-head {
            align-items: flex-start;
            flex-direction: column;
        }

        .pp-policy-card h3 {
            font-size: 22px;
        }

        .pp-contact-box h2 {
            font-size: 26px;
        }

        .pp-principle-box {
            min-height: 150px;
            padding: 20px 12px;
        }
    }

/* Extracted from application/modules/about/views/term.php */
.breadcrumb-banner {
        position: relative;
        overflow: hidden;
        padding: 30px 0;
        min-height: 260px;
        display: flex;
        align-items: center;
        background-image:
            linear-gradient(90deg,
                rgba(247, 249, 252, .98) 0%,
                rgba(247, 249, 252, .92) 35%,
                rgba(247, 249, 252, .60) 60%,
                rgba(247, 249, 252, .15) 100%),
            url("../images/state/ahmedabad.webp");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .breadcrumb-banner:before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #F5C54220;
        border-radius: 50%;
        right: -120px;
        top: -120px;
    }

    .breadcrumb-banner:after {
        content: "";
        position: absolute;
        left: -120px;
        bottom: -120px;
        width: 320px;
        height: 320px;
        background: #2E5FA810;
        border-radius: 50%;
    }

    .breadcrumb-banner .container {
        position: relative;
        z-index: 2;
    }

    .breadcrumb-nav {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        padding: 8px 15px;
        border-radius: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        margin-bottom: 10px;
    }

    .breadcrumb-nav a {
        text-decoration: none;
        color: #1F3F73;
        font-weight: 600;
    }

    .breadcrumb-nav span {
        color: #2E5FA8;
        font-weight: 700;
    }

    .mini-title {
        display: inline-block;
        background: #F5C542;
        color: #1F3F73;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .breadcrumb-banner h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #1E293B;
    }

    .breadcrumb-banner h1 span {
        color: #2E5FA8;
    }

    .breadcrumb-banner p {
        color: #667085;
        font-size: 15px;
        line-height: 1.5;
        max-width: 520px;
    }

    .banner-info {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 13px;
    }

    .info-box {
        background: #fff;
        padding: 10px 18px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    }

    .info-box i {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E5FA8;
        color: #fff;
        font-size: 20px;
    }

    .info-box h6 {
        margin: 0;
        color: #1F3F73;
        font-weight: 700;
    }

    .info-box small {
        color: #777;
    }

    .tc-terms-body {
        background: #fff;
        overflow: visible;
    }

    .tc-intro-section,
    .tc-contact-section {
        background: #fff;
        overflow: visible;
    }

    .tc-kicker {
        display: inline-flex;
        align-items: center;
        color: #2E5FA8;
        background: #edf3ff;
        padding: 8px 16px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0;
        margin-bottom: 15px;
    }

    .tc-section-title {
        color: #172033;
        font-size: 38px;
        font-weight: 800;
        line-height: 1.22;
        margin-bottom: 16px;
    }

    .tc-terms-header {
        padding: 34px;
        border-radius: 8px;
        background: #f7f9fc;
        border: 1px solid #e7edf6;
        margin-bottom: 24px;
    }

    .tc-terms-header p,
    .tc-terms-card p,
    .tc-summary-item p,
    .tc-side-help p,
    .tc-contact-box p {
        color: #667085;
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 0;
    }

    .tc-updated {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-top: 20px;
        padding: 11px 14px;
        border-radius: 8px;
        background: #fff;
        color: #172033;
        border: 1px solid #e7edf6;
        font-weight: 800;
    }

    .tc-updated i {
        color: #2E5FA8;
    }

    .tc-summary-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
        margin-bottom: 24px;
    }

    .tc-summary-item,
    .tc-terms-card,
    .tc-side-card,
    .tc-side-help {
        border-radius: 8px;
        background: #fff;
        border: 1px solid #e7edf6;
        box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
    }

    .tc-summary-item {
        padding: 24px 20px;
    }

    .tc-summary-item i {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #2E5FA8;
        color: #fff;
        font-size: 22px;
        margin-bottom: 16px;
    }

    .tc-summary-item h5 {
        color: #172033;
        font-weight: 800;
        margin-bottom: 9px;
    }

    .tc-terms-list {
        display: grid;
        gap: 18px;
    }

    .tc-terms-card {
        scroll-margin-top: 120px;
        padding: 28px;
    }

    .tc-terms-card-head {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 16px;
    }

    .tc-terms-card-head i {
        width: 52px;
        height: 52px;
        flex: 0 0 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #edf3ff;
        color: #2E5FA8;
        font-size: 23px;
    }

    .tc-terms-card h3 {
        color: #172033;
        font-size: 24px;
        font-weight: 800;
        margin: 0;
    }

    .tc-terms-card p + p {
        margin-top: 12px;
    }

    .tc-toc-column {
        align-self: stretch;
    }

    .tc-sticky-panel {
        position: sticky;
        top: 120px;
        z-index: 5;
        align-self: flex-start;
        display: grid;
        gap: 18px;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
        padding-bottom: 2px;
    }

    .tc-side-card,
    .tc-side-help {
        padding: 24px;
    }

    .tc-side-card h3,
    .tc-side-help h4 {
        color: #172033;
        font-weight: 800;
        margin-bottom: 16px;
    }

    .tc-terms-nav {
        display: grid;
        gap: 10px;
    }

    .tc-terms-nav a {
        display: flex;
        align-items: center;
        gap: 11px;
        min-height: 48px;
        padding: 10px 12px;
        border-radius: 8px;
        color: #172033;
        background: #f7f9fc;
        border: 1px solid #e7edf6;
        text-decoration: none;
        font-weight: 800;
        transition: .3s ease;
    }

    .tc-terms-nav i {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        color: #2E5FA8;
        background: #edf3ff;
    }

    .tc-terms-nav a:hover {
        color: #fff;
        background: #2E5FA8;
        border-color: #2E5FA8;
        transform: translateX(4px);
    }

    .tc-terms-nav a:hover i {
        background: #F5C542;
        color: #172033;
    }

    .tc-side-help {
        background:
            linear-gradient(135deg, rgba(23, 32, 51, .94), rgba(46, 95, 168, .94)),
            url("../images/service/homes.webp");
        background-size: cover;
        background-position: center;
        color: #fff;
    }

    .tc-side-help > i {
        width: 54px;
        height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #F5C542;
        color: #172033;
        font-size: 24px;
        margin-bottom: 18px;
    }

    .tc-side-help h4 {
        color: #fff;
    }

    .tc-side-help p {
        color: #dbe4f2;
        margin-bottom: 20px;
    }

    .tc-primary-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 48px;
        padding: 13px 24px;
        border-radius: 8px;
        background: #2E5FA8;
        color: #fff;
        font-weight: 800;
        text-decoration: none;
        box-shadow: 0 14px 28px rgba(46, 95, 168, .24);
        transition: .3s ease;
    }

    .tc-primary-btn:hover {
        background: #F5C542;
        color: #172033;
        transform: translateY(-3px);
    }

    .tc-side-help .tc-primary-btn {
        width: 100%;
        background: #F5C542;
        color: #172033;
    }

    .tc-side-help .tc-primary-btn:hover {
        background: #fff;
    }

    .tc-principles-section {
        padding: 28px 0;
        background: #172033;
    }

    .tc-principle-box {
        height: 100%;
        min-height: 140px;
        padding: 24px 18px;
        border-radius: 8px;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .12);
        text-align: center;
    }

    .tc-principle-box i {
        display: block;
        color: #F5C542;
        font-size: 30px;
        margin-bottom: 12px;
    }

    .tc-principle-box strong {
        display: block;
        color: #fff;
        font-size: 21px;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .tc-principle-box span {
        display: block;
        color: #dbe4f2;
        line-height: 1.45;
    }

    .tc-contact-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 36px;
        border-radius: 8px;
        background:
            linear-gradient(135deg, rgba(23, 32, 51, .94), rgba(46, 95, 168, .94)),
            url("../images/state/gujarat.webp");
        background-size: cover;
        background-position: center;
        color: #fff;
        box-shadow: 0 24px 55px rgba(15, 23, 42, .18);
    }

    .tc-contact-box .tc-kicker {
        background: rgba(245, 197, 66, .16);
        color: #F5C542;
    }

    .tc-contact-box h2 {
        color: #fff;
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .tc-contact-box p {
        color: #dbe4f2;
        max-width: 680px;
    }

    @media(max-width:991px) {
        .breadcrumb-banner {
            text-align: center;
            padding: 70px 0;
        }

        .banner-info {
            justify-content: center;
        }

        .breadcrumb-banner h1 {
            font-size: 42px;
        }

        .tc-section-title {
            font-size: 32px;
        }

        .tc-summary-grid {
            grid-template-columns: 1fr;
        }

        .tc-sticky-panel {
            position: relative;
            top: auto;
            max-height: none;
            overflow: visible;
        }

        .tc-toc-column {
            align-self: auto;
        }

        .tc-contact-box {
            align-items: flex-start;
            flex-direction: column;
        }
    }

    @media(max-width:576px) {
        .breadcrumb-banner {
            padding: 52px 0;
        }

        .breadcrumb-nav {
            max-width: 100%;
            flex-wrap: wrap;
            justify-content: center;
        }

        .breadcrumb-banner h1,
        .tc-section-title {
            font-size: 28px;
        }

        .breadcrumb-banner p,
        .tc-terms-header p,
        .tc-terms-card p,
        .tc-summary-item p,
        .tc-side-help p,
        .tc-contact-box p {
            font-size: 15px;
        }

        .banner-info {
            flex-direction: column;
        }

        .info-box,
        .tc-primary-btn {
            width: 100%;
        }

        .tc-terms-header,
        .tc-terms-card,
        .tc-side-card,
        .tc-side-help,
        .tc-contact-box {
            padding: 24px 20px;
        }

        .tc-terms-card-head {
            align-items: flex-start;
            flex-direction: column;
        }

        .tc-terms-card h3 {
            font-size: 22px;
        }

        .tc-contact-box h2 {
            font-size: 26px;
        }

        .tc-principle-box {
            min-height: 150px;
            padding: 20px 12px;
        }
    }

/* Extracted from application/modules/about/views/testimonial.php */
.breadcrumb-banner {
        position: relative;
        overflow: hidden;
        padding: 30px 0;
        min-height: 260px;
        display: flex;
        align-items: center;
        background-image:
            linear-gradient(90deg,
                rgba(247, 249, 252, .98) 0%,
                rgba(247, 249, 252, .92) 35%,
                rgba(247, 249, 252, .60) 60%,
                rgba(247, 249, 252, .15) 100%),
            url("../images/state/ahmedabad.webp");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .breadcrumb-banner:before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #F5C54220;
        border-radius: 50%;
        right: -120px;
        top: -120px;
    }

    .breadcrumb-banner:after {
        content: "";
        position: absolute;
        left: -120px;
        bottom: -120px;
        width: 320px;
        height: 320px;
        background: #2E5FA810;
        border-radius: 50%;
    }

    .breadcrumb-banner .container {
        position: relative;
        z-index: 2;
    }

    .breadcrumb-nav {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        padding: 8px 15px;
        border-radius: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        margin-bottom: 10px;
    }

    .breadcrumb-nav a {
        text-decoration: none;
        color: #1F3F73;
        font-weight: 600;
    }

    .breadcrumb-nav span {
        color: #2E5FA8;
        font-weight: 700;
    }

    .mini-title {
        display: inline-block;
        background: #F5C542;
        color: #1F3F73;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .breadcrumb-banner h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #1E293B;
    }

    .breadcrumb-banner p {
        color: #667085;
        font-size: 15px;
        line-height: 1.5;
        max-width: 520px;
    }

    .banner-info {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 13px;
    }

    .info-box {
        background: #fff;
        padding: 10px 18px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    }

    .info-box i {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E5FA8;
        color: #fff;
        font-size: 20px;
    }

    .info-box h6 {
        margin: 0;
        color: #1F3F73;
        font-weight: 700;
    }

    .info-box small {
        color: #777;
    }

    .tm-testimonial-body {
        overflow: hidden;
        background: #fff;
    }

    .tm-overview-section,
    .tm-experience-section,
    .tm-cta-section {
        background: #fff;
    }

    .tm-reviews-section {
        background: #f7f9fc;
    }

    .tm-kicker {
        display: inline-flex;
        align-items: center;
        color: #2E5FA8;
        background: #edf3ff;
        padding: 8px 16px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0;
        margin-bottom: 15px;
    }

    .tm-section-title {
        color: #172033;
        font-size: 38px;
        font-weight: 800;
        line-height: 1.22;
        margin-bottom: 16px;
    }

    .tm-copy {
        color: #667085;
        font-size: 16px;
        line-height: 1.85;
        margin-bottom: 14px;
    }

    .tm-score-panel {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 22px;
        margin-top: 24px;
        border-radius: 8px;
        background: #f7f9fc;
        border: 1px solid #e7edf6;
    }

    .tm-score-main {
        display: flex;
        align-items: center;
        gap: 14px;
    }

    .tm-score-main strong {
        color: #2E5FA8;
        font-size: 42px;
        line-height: 1;
        font-weight: 900;
    }

    .tm-score-main span {
        color: #172033;
        font-weight: 800;
        line-height: 1.35;
    }

    .tm-stars,
    .tm-score-stars {
        display: inline-flex;
        gap: 4px;
        color: #F5C542;
    }

    .tm-actions {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-top: 28px;
    }

    .tm-primary-btn,
    .tm-outline-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 48px;
        padding: 13px 24px;
        border-radius: 8px;
        font-weight: 800;
        text-decoration: none;
        transition: .3s ease;
    }

    .tm-primary-btn {
        background: #2E5FA8;
        color: #fff;
        box-shadow: 0 14px 28px rgba(46, 95, 168, .24);
    }

    .tm-primary-btn:hover {
        background: #F5C542;
        color: #172033;
        transform: translateY(-3px);
    }

    .tm-outline-btn {
        border: 1px solid #2E5FA8;
        color: #2E5FA8;
        background: #fff;
    }

    .tm-outline-btn:hover {
        background: #172033;
        color: #fff;
        border-color: #172033;
    }

    .tm-featured-review {
        display: grid;
        grid-template-columns: minmax(0, .88fr) minmax(0, 1fr);
        align-items: center;
        min-height: 430px;
        border-radius: 8px;
        overflow: hidden;
        background: #172033;
        box-shadow: 0 24px 55px rgba(15, 23, 42, .16);
    }

    .tm-featured-image {
        height: 100%;
        min-height: 430px;
    }

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

    .tm-featured-content {
        padding: 34px;
        color: #fff;
    }

    .tm-quote-icon {
        width: 58px;
        height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #2E5FA8;
        color: #fff;
        font-size: 26px;
        margin-bottom: 20px;
    }

    .tm-featured-content .tm-quote-icon {
        background: #F5C542;
        color: #172033;
    }

    .tm-featured-content p {
        color: #eef4ff;
        line-height: 1.85;
        margin: 18px 0 24px;
    }

    .tm-client {
        display: flex;
        align-items: center;
        gap: 13px;
    }

    .tm-client > span {
        width: 48px;
        height: 48px;
        flex: 0 0 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #edf3ff;
        color: #2E5FA8;
        font-weight: 900;
    }

    .tm-client h6 {
        margin: 0 0 2px;
        color: #172033;
        font-weight: 800;
    }

    .tm-client small {
        color: #667085;
        font-weight: 600;
    }

    .tm-featured-content .tm-client h6 {
        color: #fff;
    }

    .tm-featured-content .tm-client small {
        color: #dbe4f2;
    }

    .tm-rating-strip {
        padding: 28px 0;
        background: #172033;
    }

    .tm-rating-box {
        height: 100%;
        display: flex;
        align-items: center;
        gap: 16px;
        padding: 22px;
        border-radius: 8px;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .12);
    }

    .tm-rating-box i {
        width: 54px;
        height: 54px;
        flex: 0 0 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #F5C542;
        color: #172033;
        font-size: 24px;
    }

    .tm-rating-box strong {
        display: block;
        color: #fff;
        font-size: 30px;
        font-weight: 900;
        line-height: 1;
        margin-bottom: 5px;
    }

    .tm-rating-box span {
        color: #dbe4f2;
        font-weight: 700;
    }

    .tm-review-card {
        height: 100%;
        display: flex;
        flex-direction: column;
        background: #fff;
        padding: 30px 24px;
        border-radius: 8px;
        border: 1px solid #e7edf6;
        box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
        transition: .3s ease;
    }

    .tm-review-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 44px rgba(46, 95, 168, .13);
    }

    .tm-review-top {
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        gap: 16px;
        margin-bottom: 18px;
    }

    .tm-review-top .tm-quote-icon {
        margin-bottom: 0;
    }

    .tm-review-top span {
        display: inline-flex;
        align-items: center;
        min-height: 34px;
        padding: 7px 12px;
        border-radius: 30px;
        background: #edf3ff;
        color: #2E5FA8;
        font-size: 13px;
        font-weight: 800;
        text-align: right;
    }

    .tm-review-card p {
        color: #667085;
        line-height: 1.85;
        margin: 16px 0 24px;
        flex: 1;
    }

    .tm-image-grid {
        display: grid;
        grid-template-columns: 1fr .82fr;
        align-items: end;
        gap: 18px;
    }

    .tm-image-grid img {
        width: 100%;
        object-fit: cover;
        border-radius: 8px;
        box-shadow: 0 18px 42px rgba(15, 23, 42, .10);
    }

    .tm-image-grid img:first-child {
        height: 430px;
    }

    .tm-image-grid img:last-child {
        height: 320px;
    }

    .tm-promise-list {
        display: grid;
        gap: 18px;
    }

    .tm-promise-item {
        display: flex;
        gap: 16px;
        padding: 22px;
        border-radius: 8px;
        background: #f7f9fc;
        border: 1px solid #e7edf6;
    }

    .tm-promise-item i {
        width: 52px;
        height: 52px;
        flex: 0 0 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #2E5FA8;
        color: #fff;
        font-size: 23px;
    }

    .tm-promise-item h5 {
        color: #172033;
        font-weight: 800;
        margin-bottom: 7px;
    }

    .tm-promise-item p {
        color: #667085;
        line-height: 1.7;
        margin: 0;
    }

    .tm-cta-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 36px;
        border-radius: 8px;
        background:
            linear-gradient(135deg, rgba(23, 32, 51, .94), rgba(46, 95, 168, .94)),
            url("../images/state/gujarat.webp");
        background-size: cover;
        background-position: center;
        color: #fff;
        box-shadow: 0 24px 55px rgba(15, 23, 42, .18);
    }

    .tm-cta-box .tm-kicker {
        background: rgba(245, 197, 66, .16);
        color: #F5C542;
    }

    .tm-cta-box h2 {
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .tm-cta-box p {
        color: #dbe4f2;
        line-height: 1.75;
        margin: 0;
        max-width: 650px;
    }

    @media(max-width:991px) {
        .breadcrumb-banner {
            text-align: center;
            padding: 70px 0;
        }

        .banner-info {
            justify-content: center;
        }

        .breadcrumb-banner h1 {
            font-size: 42px;
        }

        .tm-section-title {
            font-size: 32px;
        }

        .tm-featured-review {
            grid-template-columns: 1fr;
        }

        .tm-featured-image {
            min-height: 300px;
        }

        .tm-image-grid {
            grid-template-columns: 1fr 1fr;
        }

        .tm-cta-box {
            align-items: flex-start;
            flex-direction: column;
        }
    }

    @media(max-width:576px) {
        .breadcrumb-banner {
            padding: 52px 0;
        }

        .breadcrumb-nav {
            max-width: 100%;
            flex-wrap: wrap;
            justify-content: center;
        }

        .breadcrumb-banner h1,
        .tm-section-title {
            font-size: 28px;
        }

        .breadcrumb-banner p,
        .tm-copy {
            font-size: 15px;
        }

        .banner-info,
        .tm-actions {
            flex-direction: column;
        }

        .info-box,
        .tm-primary-btn,
        .tm-outline-btn {
            width: 100%;
        }

        .tm-score-panel {
            align-items: flex-start;
            flex-direction: column;
        }

        .tm-featured-content {
            padding: 26px 20px;
        }

        .tm-featured-image {
            min-height: 260px;
        }

        .tm-rating-box {
            padding: 18px;
        }

        .tm-review-card {
            padding: 26px 20px;
        }

        .tm-review-top {
            flex-direction: column;
        }

        .tm-review-top span {
            text-align: left;
        }

        .tm-image-grid {
            grid-template-columns: 1fr;
        }

        .tm-image-grid img:first-child,
        .tm-image-grid img:last-child {
            height: 260px;
        }

        .tm-promise-item {
            flex-direction: column;
            padding: 20px;
        }

        .tm-cta-box {
            padding: 26px 20px;
        }

        .tm-cta-box h2 {
            font-size: 26px;
        }
    }

/* Extracted from application/modules/contacts/views/contacts.php */
.breadcrumb-banner {
        position: relative;
        overflow: hidden;
        padding: 30px 0;
        min-height: 260px;
        display: flex;
        align-items: center;
        background-image:
            linear-gradient(90deg,
                rgba(247, 249, 252, .98) 0%,
                rgba(247, 249, 252, .92) 35%,
                rgba(247, 249, 252, .60) 60%,
                rgba(247, 249, 252, .15) 100%),
            url("../images/state/ahmedabad.webp");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .breadcrumb-banner:before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #F5C54220;
        border-radius: 50%;
        right: -120px;
        top: -120px;
    }

    .breadcrumb-banner:after {
        content: "";
        position: absolute;
        left: -120px;
        bottom: -120px;
        width: 320px;
        height: 320px;
        background: #2E5FA810;
        border-radius: 50%;
    }

    .breadcrumb-banner .container {
        position: relative;
        z-index: 2;
    }

    .breadcrumb-nav {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        padding: 8px 15px;
        border-radius: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        margin-bottom: 10px;
    }

    .breadcrumb-nav a {
        text-decoration: none;
        color: #1F3F73;
        font-weight: 600;
    }

    .breadcrumb-nav span {
        color: #2E5FA8;
        font-weight: 700;
    }

    .mini-title {
        display: inline-block;
        background: #F5C542;
        color: #1F3F73;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .breadcrumb-banner h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #1E293B;
    }

    .breadcrumb-banner h1 span {
        color: #2E5FA8;
    }

    .breadcrumb-banner p {
        color: #667085;
        font-size: 15px;
        line-height: 1.5;
        max-width: 520px;
    }

    .banner-info {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 13px;
    }

    .info-box {
        background: #fff;
        padding: 10px 18px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    }

    .info-box i {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E5FA8;
        color: #fff;
        font-size: 20px;
    }

    .info-box h6 {
        margin: 0;
        color: #1F3F73;
        font-weight: 700;
    }

    .info-box small {
        color: #777;
    }

    .cu-contact-body {
        background: #fff;
        overflow: visible;
    }

    .cu-main-section,
    .cu-map-section {
        background: #fff;
        overflow: visible;
    }

    .cu-services-section {
        background: #f7f9fc;
    }

    .cu-kicker {
        display: inline-flex;
        align-items: center;
        color: #2E5FA8;
        background: #edf3ff;
        padding: 8px 16px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0;
        margin-bottom: 15px;
    }

    .cu-section-title {
        color: #172033;
        font-size: 38px;
        font-weight: 800;
        line-height: 1.22;
        margin-bottom: 16px;
    }

    .cu-copy {
        color: #667085;
        font-size: 16px;
        line-height: 1.85;
        margin-bottom: 22px;
    }

    .cu-form-card,
    .cu-info-card,
    .cu-hours-card {
        border-radius: 8px;
        background: #fff;
        border: 1px solid #e7edf6;
        box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
    }

    .cu-form-card {
        padding: 34px;
    }

    .cu-field {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        min-height: 52px;
        margin: 0;
        padding: 0 15px;
        background: #f7f9fc;
        border: 1px solid #dbe4f2;
        border-radius: 8px;
        color: #8795b4;
        transition: .25s ease;
    }

    .cu-field:focus-within {
        background: #fff;
        border-color: #2E5FA8;
        box-shadow: 0 0 0 3px rgba(46, 95, 168, .10);
    }

    .cu-field i {
        flex: 0 0 auto;
        color: #2E5FA8;
        font-size: 17px;
    }

    .cu-field input,
    .cu-field select,
    .cu-field textarea {
        width: 100%;
        min-width: 0;
        border: 0;
        outline: 0;
        background: transparent;
        color: #172033;
        font-size: 14px;
        font-weight: 700;
    }

    .cu-field input,
    .cu-field select {
        height: 50px;
    }

    .cu-field textarea {
        min-height: 130px;
        padding: 15px 0;
        resize: vertical;
    }

    .cu-field input::placeholder,
    .cu-field textarea::placeholder {
        color: #9aa7c2;
    }

    .cu-message-field {
        align-items: flex-start;
    }

    .cu-message-field i {
        margin-top: 16px;
    }

    #contactPageResult {
        margin-top: 16px;
    }

    #contactPageResult .alert {
        margin-bottom: 0;
        border-radius: 8px;
    }

    .cu-form-wait {
        margin: 0;
        color: #2E5FA8;
        font-weight: 800;
    }

    .cu-form-success {
        padding: 12px 14px;
        border-radius: 8px;
        background: #eaf8f1;
        color: #0f7a48;
        font-weight: 800;
    }

    .cu-primary-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 48px;
        margin-top: 18px;
        padding: 13px 24px;
        border: 0;
        border-radius: 8px;
        background: #2E5FA8;
        color: #fff;
        font-weight: 800;
        text-decoration: none;
        box-shadow: 0 14px 28px rgba(46, 95, 168, .24);
        transition: .3s ease;
    }

    .cu-primary-btn:hover {
        background: #F5C542;
        color: #172033;
        transform: translateY(-3px);
    }

    .cu-info-column {
        align-self: stretch;
    }

    .cu-sticky-info {
        position: sticky;
        top: 120px;
        display: grid;
        gap: 18px;
        align-self: flex-start;
    }

    .cu-info-card {
        padding: 28px 24px;
    }

    .cu-info-card h3 {
        color: #172033;
        font-size: 28px;
        font-weight: 800;
        line-height: 1.25;
        margin-bottom: 18px;
    }

    .cu-contact-list {
        display: grid;
        gap: 12px;
    }

    .cu-contact-item {
        display: flex;
        align-items: flex-start;
        gap: 13px;
        padding: 14px;
        border-radius: 8px;
        background: #f7f9fc;
        border: 1px solid #e7edf6;
        color: #172033;
        text-decoration: none;
        transition: .3s ease;
    }

    .cu-contact-item i {
        width: 42px;
        height: 42px;
        flex: 0 0 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #edf3ff;
        color: #2E5FA8;
        font-size: 19px;
    }

    .cu-contact-item strong,
    .cu-contact-item span {
        display: block;
    }

    .cu-contact-item strong {
        font-weight: 800;
        margin-bottom: 4px;
    }

    .cu-contact-item span {
        color: #667085;
        line-height: 1.55;
        overflow-wrap: anywhere;
    }

    a.cu-contact-item:hover {
        color: #fff;
        background: #2E5FA8;
        border-color: #2E5FA8;
        transform: translateY(-3px);
    }

    a.cu-contact-item:hover i {
        background: #F5C542;
        color: #172033;
    }

    a.cu-contact-item:hover span {
        color: #edf3ff;
    }

    .cu-hours-card {
        padding: 26px 24px;
        background:
            linear-gradient(135deg, rgba(23, 32, 51, .94), rgba(46, 95, 168, .94)),
            url("../images/service/homes.webp");
        background-size: cover;
        background-position: center;
        color: #fff;
    }

    .cu-hours-card > i {
        width: 54px;
        height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #F5C542;
        color: #172033;
        font-size: 24px;
        margin-bottom: 18px;
    }

    .cu-hours-card h4 {
        color: #fff;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .cu-hours-card p {
        color: #dbe4f2;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .cu-hours-card div {
        display: flex;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 0;
        border-top: 1px solid rgba(255, 255, 255, .16);
    }

    .cu-hours-card span {
        color: #dbe4f2;
    }

    .cu-hours-card strong {
        color: #F5C542;
        text-align: right;
    }

    .cu-support-strip {
        padding: 28px 0;
        background: #172033;
    }

    .cu-support-box {
        height: 100%;
        min-height: 140px;
        padding: 24px 18px;
        border-radius: 8px;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .12);
        text-align: center;
    }

    .cu-support-box i {
        display: block;
        color: #F5C542;
        font-size: 30px;
        margin-bottom: 12px;
    }

    .cu-support-box strong {
        display: block;
        color: #fff;
        font-size: 21px;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .cu-support-box span {
        display: block;
        color: #dbe4f2;
        line-height: 1.45;
    }

    .cu-service-link {
        min-height: 68px;
        display: flex;
        align-items: center;
        gap: 12px;
        width: 100%;
        padding: 14px 16px;
        border-radius: 8px;
        background: #fff;
        color: #172033;
        border: 1px solid #e7edf6;
        text-decoration: none;
        font-weight: 800;
        box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
        transition: .3s ease;
    }

    .cu-service-link i:first-child {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #edf3ff;
        color: #2E5FA8;
        font-size: 19px;
    }

    .cu-service-link span {
        flex: 1;
        min-width: 0;
    }

    .cu-service-link i:last-child {
        color: #F5C542;
        font-size: 24px;
    }

    .cu-service-link:hover {
        color: #fff;
        background: #2E5FA8;
        border-color: #2E5FA8;
        transform: translateY(-4px);
        box-shadow: 0 18px 34px rgba(46, 95, 168, .18);
    }

    .cu-service-link:hover i:first-child {
        background: #F5C542;
        color: #172033;
    }

    .cu-location-card {
        height: 100%;
        padding: 34px;
        border-radius: 8px;
        background:
            linear-gradient(135deg, rgba(23, 32, 51, .94), rgba(46, 95, 168, .94)),
            url("../images/service/office.webp");
        background-size: cover;
        background-position: center;
        color: #fff;
        box-shadow: 0 24px 55px rgba(15, 23, 42, .16);
    }

    .cu-location-card .cu-kicker {
        background: rgba(245, 197, 66, .16);
        color: #F5C542;
    }

    .cu-location-card h2 {
        color: #fff;
        font-size: 34px;
        font-weight: 800;
        line-height: 1.24;
        margin-bottom: 14px;
    }

    .cu-location-card p {
        color: #dbe4f2;
        line-height: 1.8;
        margin-bottom: 6px;
    }

    .cu-location-card .cu-primary-btn {
        background: #F5C542;
        color: #172033;
    }

    .cu-location-card .cu-primary-btn:hover {
        background: #fff;
    }

    .cu-map-frame {
        height: 100%;
        min-height: 390px;
        border-radius: 8px;
        overflow: hidden;
        border: 1px solid #e7edf6;
        box-shadow: 0 18px 42px rgba(15, 23, 42, .08);
    }

    .cu-map-frame iframe {
        width: 100%;
        height: 100%;
        min-height: 390px;
        border: 0;
        display: block;
    }

    @media(max-width:991px) {
        .breadcrumb-banner {
            text-align: center;
            padding: 70px 0;
        }

        .banner-info {
            justify-content: center;
        }

        .breadcrumb-banner h1 {
            font-size: 42px;
        }

        .cu-section-title {
            font-size: 32px;
        }

        .cu-sticky-info {
            position: relative;
            top: auto;
        }
    }

    @media(max-width:576px) {
        .breadcrumb-banner {
            padding: 52px 0;
        }

        .breadcrumb-nav {
            max-width: 100%;
            flex-wrap: wrap;
            justify-content: center;
        }

        .breadcrumb-banner h1,
        .cu-section-title {
            font-size: 28px;
        }

        .breadcrumb-banner p,
        .cu-copy {
            font-size: 15px;
        }

        .banner-info {
            flex-direction: column;
        }

        .info-box,
        .cu-primary-btn {
            width: 100%;
        }

        .cu-form-card,
        .cu-info-card,
        .cu-hours-card,
        .cu-location-card {
            padding: 24px 20px;
        }

        .cu-info-card h3,
        .cu-location-card h2 {
            font-size: 26px;
        }

        .cu-hours-card div {
            align-items: flex-start;
            flex-direction: column;
        }

        .cu-hours-card strong {
            text-align: left;
        }

        .cu-support-box {
            min-height: 150px;
            padding: 20px 12px;
        }

        .cu-service-link {
            min-height: 64px;
        }

        .cu-map-frame,
        .cu-map-frame iframe {
            min-height: 300px;
        }
    }

/* Extracted from application/modules/contacts/views/servicesform.php */
.service-quote-card {
        position: relative;
        z-index: 2;
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        padding: 24px 24px 22px;
        background: rgba(255, 255, 255, .96);
        border: 1px solid rgba(74, 113, 180, .24);
        border-radius: 14px;
        box-shadow: 0 18px 38px rgba(46, 95, 168, .15);
    }

    .service-quote-card h3 {
        color: #172033;
        font-size: 22px;
        font-weight: 900;
        line-height: 1.2;
        margin: 0 0 3px;
        text-align: center;
        text-transform: uppercase;
    }

    .service-quote-card h3 span {
        color: var(--primary-color);
    }

    .service-quote-card p {
        color: #172033;
        font-size: 13px;
        line-height: 1.4;
        margin: 0;
        text-align: center;
    }

    .service-quote-line {
        width: 78px;
        height: 3px;
        margin: 10px auto 16px;
        background: var(--sec-col);
    }

    .service-form-field {
        display: flex;
        align-items: center;
        gap: 11px;
        width: 100%;
        min-height: 46px;
        margin: 0;
        padding: 0 14px;
        background: #fff;
        border: 1px solid #dbe4f2;
        border-radius: 8px;
        color: #8795b4;
        transition: .25s;
    }

    .service-form-field:focus-within {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(74, 113, 180, .10);
    }

    .service-form-field i {
        flex: 0 0 auto;
        font-size: 16px;
        color: var(--primary-color);
    }

    .service-form-field input,
    .service-form-field select {
        width: 100%;
        min-width: 0;
        height: 44px;
        border: 0;
        outline: 0;
        background: transparent;
        color: #172033;
        font-size: 15px;
        font-weight: 700;
    }

    .service-form-field input::placeholder {
        color: #9aa7c2;
    }

    .service-form-field select {
        color: #172033;
        appearance: auto;
    }

    .service-quote-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        width: 100%;
        min-height: 50px;
        margin-top: 16px;
        border: 0;
        border-radius: 8px;
        background: var(--primary-color);
        color: #fff;
        font-size: 15px;
        font-weight: 900;
        text-transform: uppercase;
        box-shadow: 0 12px 24px rgba(74, 113, 180, .24);
        transition: .25s;
    }

    .service-quote-btn:hover {
        background: var(--sec-col);
        color: #172033;
        transform: translateY(-2px);
    }

    .service-secure-note {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 5px;
        margin-top: 13px;
        color: #58708f;
        font-size: 12px;
        font-weight: 800;
    }

    .service-secure-note i {
        color: #0f9f5f;
        font-size: 13px;
    }

    .serviceQuoteResult {
        margin-top: 8px;
    }

    .serviceQuoteResult .alert {
        margin-bottom: 0;
        padding: 8px 10px;
        font-size: 12px;
    }

    .service-form-wait {
        color: var(--primary-color) !important;
        font-size: 12px !important;
        margin: 0 !important;
        text-align: left !important;
    }

    .service-form-success {
        padding: 8px 10px;
        border-radius: 8px;
        background: #eaf8f1;
        color: #0f7a48;
        font-size: 12px;
        font-weight: 800;
    }

    @media(max-width:991px) {
        .service-quote-card {
            max-width: 520px;
            margin: 30px auto 0;
        }
    }

    @media(max-width:576px) {
        .service-quote-card {
            padding: 20px 16px 18px;
            border-radius: 14px;
        }

        .service-quote-card h3 {
            font-size: 19px;
        }

        .service-form-field {
            min-height: 44px;
        }

        .service-form-field input,
        .service-form-field select {
            height: 42px;
        }
    }

/* Extracted from application/modules/gallery/views/photo-gallery.php */
.breadcrumb-banner {
        position: relative;
        overflow: hidden;
        padding: 30px 0;
        min-height: 260px;
        display: flex;
        align-items: center;
        background-image:
            linear-gradient(90deg,
                rgba(247, 249, 252, .98) 0%,
                rgba(247, 249, 252, .92) 35%,
                rgba(247, 249, 252, .60) 60%,
                rgba(247, 249, 252, .15) 100%),
            url("../images/state/ahmedabad.webp");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .breadcrumb-banner:before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #F5C54220;
        border-radius: 50%;
        right: -120px;
        top: -120px;
    }

    .breadcrumb-banner:after {
        content: "";
        position: absolute;
        left: -120px;
        bottom: -120px;
        width: 320px;
        height: 320px;
        background: #2E5FA810;
        border-radius: 50%;
    }

    .breadcrumb-banner .container {
        position: relative;
        z-index: 2;
    }

    .breadcrumb-nav {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        padding: 8px 15px;
        border-radius: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        margin-bottom: 10px;
    }

    .breadcrumb-nav a {
        text-decoration: none;
        color: #1F3F73;
        font-weight: 600;
    }

    .breadcrumb-nav span {
        color: #2E5FA8;
        font-weight: 700;
    }

    .mini-title {
        display: inline-block;
        background: #F5C542;
        color: #1F3F73;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .breadcrumb-banner h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #1E293B;
    }

    .breadcrumb-banner h1 span {
        color: #2E5FA8;
    }

    .breadcrumb-banner p {
        color: #667085;
        font-size: 15px;
        line-height: 1.5;
        max-width: 520px;
    }

    .banner-info {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 13px;
    }

    .info-box {
        background: #fff;
        padding: 10px 18px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    }

    .info-box i {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E5FA8;
        color: #fff;
        font-size: 20px;
    }

    .info-box h6 {
        margin: 0;
        color: #1F3F73;
        font-weight: 700;
    }

    .info-box small {
        color: #777;
    }

    .gl-gallery-body {
        background: #fff;
        overflow: visible;
    }

    .gl-intro-section {
        background: #fff;
    }

    .gl-cta-section {
        background: #f7f9fc;
    }

    .gl-kicker {
        display: inline-flex;
        align-items: center;
        color: #2E5FA8;
        background: #edf3ff;
        padding: 8px 16px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0;
        margin-bottom: 15px;
    }

    .gl-section-title {
        color: #172033;
        font-size: 38px;
        font-weight: 800;
        line-height: 1.22;
        margin-bottom: 16px;
    }

    .gl-copy {
        color: #667085;
        font-size: 16px;
        line-height: 1.85;
        margin: 0;
    }

    .gl-summary-card {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 18px 42px rgba(46, 95, 168, .13);
    }

    .gl-summary-card div {
        padding: 24px;
        background: #2E5FA8;
        color: #fff;
        text-align: center;
    }

    .gl-summary-card div:last-child {
        background: #172033;
    }

    .gl-summary-card strong {
        display: block;
        color: #F5C542;
        font-size: 38px;
        line-height: 1;
        margin-bottom: 8px;
    }

    .gl-summary-card span {
        font-weight: 800;
    }

    .gl-gallery-card {
        width: 100%;
        height: 100%;
        padding: 0;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        overflow: hidden;
        background: #fff;
        text-align: left;
        box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
        transition: .3s ease;
    }

    .gl-gallery-card:hover,
    .gl-gallery-card:focus {
        transform: translateY(-8px);
        box-shadow: 0 24px 44px rgba(46, 95, 168, .14);
        outline: 0;
    }

    .gl-image-wrap {
        position: relative;
        display: block;
        aspect-ratio: 4 / 3;
        overflow: hidden;
        background: #edf3ff;
    }

    .gl-image-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .35s ease;
    }

    .gl-gallery-card:hover img,
    .gl-gallery-card:focus img {
        transform: scale(1.07);
    }

    .gl-zoom-icon {
        position: absolute;
        right: 14px;
        top: 14px;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #F5C542;
        color: #172033;
        font-size: 18px;
        box-shadow: 0 12px 26px rgba(15, 23, 42, .18);
    }

    .gl-card-content {
        display: block;
        padding: 18px;
    }

    .gl-card-tag {
        display: inline-flex;
        width: max-content;
        max-width: 100%;
        padding: 6px 10px;
        border-radius: 30px;
        background: #edf3ff;
        color: #2E5FA8;
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
        letter-spacing: 0;
        margin-bottom: 10px;
    }

    .gl-card-content strong {
        display: block;
        color: #172033;
        font-size: 18px;
        font-weight: 800;
        line-height: 1.3;
    }

    .gl-modal .modal-content {
        position: relative;
        overflow: hidden;
        border: 0;
        border-radius: 8px;
        box-shadow: 0 28px 70px rgba(15, 23, 42, .25);
    }

    .gl-modal-close {
        position: absolute;
        right: 16px;
        top: 16px;
        z-index: 3;
        width: 42px;
        height: 42px;
        border-radius: 8px;
        background-color: #fff;
        opacity: 1;
        box-shadow: 0 12px 26px rgba(15, 23, 42, .18);
    }

    .gl-modal-image {
        height: 100%;
        min-height: 560px;
        background: #172033;
    }

    .gl-modal-image img {
        width: 100%;
        height: 100%;
        min-height: 560px;
        object-fit: cover;
        display: block;
    }

    .gl-modal-copy {
        height: 100%;
        min-height: 560px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 38px;
        background: #fff;
    }

    .gl-modal-copy h3 {
        color: #172033;
        font-size: 34px;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 14px;
    }

    .gl-modal-copy p {
        color: #667085;
        font-size: 16px;
        line-height: 1.85;
        margin-bottom: 6px;
    }

    .gl-primary-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: max-content;
        min-height: 48px;
        margin-top: 22px;
        padding: 13px 24px;
        border-radius: 8px;
        background: #2E5FA8;
        color: #fff;
        font-weight: 800;
        text-decoration: none;
        box-shadow: 0 14px 28px rgba(46, 95, 168, .24);
        transition: .3s ease;
    }

    .gl-primary-btn:hover {
        background: #F5C542;
        color: #172033;
        transform: translateY(-3px);
    }

    .gl-cta-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 36px;
        border-radius: 8px;
        background:
            linear-gradient(135deg, rgba(23, 32, 51, .94), rgba(46, 95, 168, .94)),
            url("../images/state/gujarat.webp");
        background-size: cover;
        background-position: center;
        color: #fff;
        box-shadow: 0 24px 55px rgba(15, 23, 42, .18);
    }

    .gl-cta-box .gl-kicker {
        background: rgba(245, 197, 66, .16);
        color: #F5C542;
    }

    .gl-cta-box h2 {
        color: #fff;
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .gl-cta-box p {
        color: #dbe4f2;
        line-height: 1.75;
        margin: 0;
        max-width: 660px;
    }

    .gl-cta-box .gl-primary-btn {
        background: #F5C542;
        color: #172033;
        flex: 0 0 auto;
    }

    .gl-cta-box .gl-primary-btn:hover {
        background: #fff;
    }

    @media(max-width:991px) {
        .breadcrumb-banner {
            text-align: center;
            padding: 70px 0;
        }

        .banner-info {
            justify-content: center;
        }

        .breadcrumb-banner h1 {
            font-size: 42px;
        }

        .gl-section-title {
            font-size: 32px;
        }

        .gl-modal-image,
        .gl-modal-image img,
        .gl-modal-copy {
            min-height: 360px;
        }

        .gl-modal-copy {
            padding: 30px;
        }

        .gl-cta-box {
            align-items: flex-start;
            flex-direction: column;
        }
    }

    @media(max-width:576px) {
        .breadcrumb-banner {
            padding: 52px 0;
        }

        .breadcrumb-nav {
            max-width: 100%;
            flex-wrap: wrap;
            justify-content: center;
        }

        .breadcrumb-banner h1,
        .gl-section-title {
            font-size: 28px;
        }

        .breadcrumb-banner p,
        .gl-copy {
            font-size: 15px;
        }

        .banner-info {
            flex-direction: column;
        }

        .info-box,
        .gl-primary-btn {
            width: 100%;
        }

        .gl-summary-card {
            grid-template-columns: 1fr;
        }

        .gl-summary-card div {
            padding: 20px;
        }

        .gl-card-content {
            padding: 16px;
        }

        .gl-modal-image,
        .gl-modal-image img {
            min-height: 260px;
        }

        .gl-modal-copy {
            min-height: auto;
            padding: 26px 20px;
        }

        .gl-modal-copy h3,
        .gl-cta-box h2 {
            font-size: 26px;
        }

        .gl-cta-box {
            padding: 26px 20px;
        }
    }

/* Extracted from application/modules/home/views/home.php */
.image-group {
        position: relative;
        min-height: 550px;
    }

    .image-group img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 25px;
        transition: .5s;
        box-shadow: 0 20px 45px rgba(0, 0, 0, .12);
    }

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

    .img-one {
        width: 320px;
        height: 380px;
    }

    .img-two {
        position: absolute;
        top: 50px;
        right: 0;
        width: 220px;
        height: 240px;
    }

    .img-three {
        position: absolute;
        bottom: 0;
        right: 60px;
        width: 270px;
        height: 220px;
    }

    .experience-box {
        position: absolute;
        left: 220px;
        bottom: 40px;
        background: #355FA8;
        color: #fff;
        padding: 20px 30px;
        border-radius: 18px;
        text-align: center;
        box-shadow: 0 15px 35px rgba(53, 95, 168, .35);
        animation: float 3s ease-in-out infinite;
    }

    .experience-box h2 {
        font-size: 42px;
        font-weight: 700;
        margin: 0;
    }

    .experience-box span {
        font-size: 15px;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-12px);
        }

    }

    @media(max-width:991px) {

        .image-group {
            min-height: 430px;
            max-width: 520px;
            margin: 40px auto 0;
            padding: 0 8px;
        }

        .img-one {
            position: relative;
            width: 62%;
            height: 330px;
            margin: 0;
            z-index: 1;
        }

        .img-two {
            position: absolute;
            top: 34px;
            right: 0;
            width: 46%;
            height: 210px;
            z-index: 2;
        }

        .img-three {
            position: absolute;
            right: 9%;
            bottom: 0;
            width: 54%;
            height: 190px;
            z-index: 3;
        }

        .image-group .experience-box {
            left: 4%;
            bottom: 30px;
            z-index: 4;
        }

    }

    .about-company {
        background: #ffffff;
    }

    .about-tag {
        display: inline-block;
        background: #edf3ff;
        color: #355FA8;
        padding: 8px 18px;
        border-radius: 50px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .about-title {
        font-size: 42px;
        font-weight: 800;
        color: #1b2a4e;
        line-height: 1.3;
    }

    .about-text {
        color: #6b7280;
        font-size: 16px;
        line-height: 1.9;
        margin-top: 20px;
    }

    .about-feature {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 600;
        color: #1b2a4e;
    }

    .about-feature i {
        color: #355FA8;
        font-size: 20px;
    }

    .btn-about {
        display: inline-block;
        background: #355FA8;
        color: #fff;
        padding: 14px 34px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: .3s;
    }

    .btn-about:hover {
        background: #FFC928;
        color: #222;
    }

    .image-wrapper {
        position: relative;
    }

    .image-wrapper img {
        width: 100%;
        border-radius: 25px;
        box-shadow: 0 25px 50px rgba(0, 0, 0, .12);
    }

    .experience-box {
        position: absolute;
        bottom: 30px;
        left: -20px;
        background: #355FA8;
        color: #fff;
        padding: 25px;
        border-radius: 20px;
        text-align: center;
        box-shadow: 0 15px 40px rgba(53, 95, 168, .35);
        animation: float 4s ease-in-out infinite;
    }

    .experience-box h3 {
        font-size: 40px;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .experience-box p {
        margin: 0;
        font-size: 15px;
    }

    @keyframes float {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-12px);
        }

    }

    @media(max-width:991px) {

        .about-title {
            font-size: 34px;
        }

        .image-group .experience-box {
            left: 20px;
            bottom: 20px;
        }

    }

    @media(max-width:576px) {

        .about-title {
            font-size: 28px;
        }

        .about-feature {
            font-size: 14px;
        }

        .image-group {
            min-height: 360px;
            margin-top: 34px;
            padding: 0;
        }

        .image-group img {
            border-radius: 16px;
        }

        .img-one {
            width: 65%;
            height: 290px;
        }

        .img-two {
            top: 28px;
            right: 0;
            width: 47%;
            height: 165px;
        }

        .img-three {
            right: 4%;
            width: 57%;
            height: 155px;
        }

        .image-group .experience-box {
            left: 12px;
            bottom: 22px;
            padding: 14px 16px;
            border-radius: 14px;
        }

        .image-group .experience-box h2 {
            font-size: 30px;
        }

        .image-group .experience-box span {
            font-size: 12px;
        }

    }

/* Extracted from application/modules/home/views/home.php */
:root {
        --primary: #355FA8;
        --secondary: #FFC928;
        --dark: #15284b;
    }

    .why-section {
        background: #f6f9ff;
        position: relative;
        overflow: hidden;
    }

    .why-section::before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: rgba(53, 95, 168, .08);
        border-radius: 50%;
        top: -120px;
        left: -120px;
    }

    .why-section::after {
        content: "";
        position: absolute;
        width: 300px;
        height: 300px;
        background: rgba(255, 201, 40, .15);
        border-radius: 50%;
        right: -100px;
        bottom: -100px;
    }

    .sub-heading {
        display: inline-block;
        background: #355FA8;
        color: #fff;
        padding: 8px 20px;
        border-radius: 50px;
        font-size: 13px;
        letter-spacing: 1px;
        font-weight: 600;
    }

    .main-heading {
        font-size: 44px;
        font-weight: 800;
        color: var(--dark);
    }

    .main-heading span {
        color: #ffd322;
    }

    .heading-text {
        color: #6b7280;
        max-width: 700px;
        margin: auto;
    }

    .feature-card {
        position: relative;
        background: rgba(255, 255, 255, .8);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, .5);
        border-radius: 22px;
        padding: 35px 25px;
        text-align: center;
        overflow: hidden;
        transition: .4s;
        height: 100%;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
    }

    .feature-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .5), transparent);
        transition: .7s;
    }

    .feature-card:hover::before {
        left: 100%;
    }

    .feature-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 45px rgba(53, 95, 168, .18);
    }

    .feature-icon {
        width: 85px;
        height: 85px;
        margin: auto;
        border-radius: 50%;
        background: linear-gradient(135deg, #355FA8, #5b84cf);
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 34px;
        margin-bottom: 25px;
        transition: .4s;
    }

    .feature-card:hover .feature-icon {
        background: linear-gradient(135deg, #FFC928, #ffb300);
        color: #222;
        transform: rotateY(360deg) scale(1.1);
    }

    .feature-card h5 {
        font-weight: 700;
        margin-bottom: 15px;
        color: #15284b;
    }

    .feature-card p {
        color: #6b7280;
        line-height: 1.8;
    }

    .feature-card {
        animation: floatCard 4s ease-in-out infinite;
    }

    .feature-card:nth-child(2) {
        animation-delay: .4s;
    }

    .feature-card:nth-child(3) {
        animation-delay: .8s;
    }

    .feature-card:nth-child(4) {
        animation-delay: 1.2s;
    }

    @keyframes floatCard {

        0%,
        100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-8px);
        }
    }

    @media(max-width:991px) {

        .main-heading {
            font-size: 34px;
        }

    }

    @media(max-width:576px) {

        .main-heading {
            font-size: 28px;
        }

        .feature-card {
            padding: 28px 20px;
        }

    }

/* Extracted from application/modules/home/views/home.php */
.services-section {
        z background: #fff;
    }

    .service-content {
        position: sticky;
        top: 120px;
    }

    .section-tag {

        display: inline-block;
        padding: 8px 18px;
        background: #eef4ff;
        color: #355FA8;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;

    }

    .service-content h2 {

        font-size: 42px;
        font-weight: 800;
        margin: 20px 0;
        color: #1d3557;

    }

    .service-content p {

        color: #666;
        line-height: 1.9;
        margin-bottom: 30px;

    }

    .service-btn {

        display: inline-flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        background: #355FA8;
        color: #fff;
        padding: 14px 30px;
        border-radius: 50px;
        transition: .35s;

    }

    .service-btn:hover {

        background: #FFC928;
        color: #222;

    }

    .service-card {

        display: block;
        padding: 35px 30px;
        background: #fff;
        border-radius: 20px;
        border: 1px solid #edf1f6;
        text-decoration: none;
        position: relative;
        overflow: hidden;
        transition: .35s;
        height: 100%;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .05);

    }

    .service-card::before {

        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 5px;
        height: 0;
        background: #355FA8;
        transition: .4s;

    }

    .service-card:hover::before {

        height: 100%;

    }

    .service-card i {

        width: 70px;
        height: 70px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #355FA8;
        color: #ffd322;
        font-size: 32px;
        border-radius: 18px;
        margin-bottom: 25px;
        transition: .4s;

    }

    .service-card:hover i {

        background: #355FA8;
        color: #fff;
        transform: rotateY(360deg);

    }

    .service-card h5 {

        color: #1d3557;
        font-weight: 700;
        margin-bottom: 12px;

    }

    .service-card p {

        color: #666;
        margin: 0;
        line-height: 1.7;

    }

    .service-card:hover {

        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(53, 95, 168, .12);

    }

    @media(max-width:991px) {

        .service-content {

            position: relative;
            top: 0;
            margin-bottom: 50px;

        }

        .service-content h2 {

            font-size: 34px;

        }

    }

/* Extracted from application/modules/home/views/home.php */
/*==========================
        PROCESS SECTION
===========================*/

    .process-section {
        background: #f8fbff;
        overflow: hidden;
    }

    .process-subtitle {
        display: inline-block;
        background: #eef4ff;
        color: #355FA8;
        padding: 8px 20px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 1px;
    }

    .process-title {
        font-size: 42px;
        font-weight: 800;
        color: #1d2d50;
        margin-top: 15px;
    }

    .process-desc {
        max-width: 650px;
        margin: 15px auto 0;
        color: #6c757d;
        line-height: 1.8;
    }


    /*==========================
        TIMELINE
===========================*/

    .timeline {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        position: relative;
        gap: 18px;
    }

    .timeline::before {
        content: "";
        position: absolute;
        top: 48px;
        left: 8%;
        width: 84%;
        height: 3px;
        background: #d8e4ff;
        z-index: 0;
    }


    /*==========================
      PROCESS BOX
===========================*/

    .process-box {
        width: 16.66%;
        text-align: center;
        position: relative;
        z-index: 2;
    }


    /*==========================
      STEP NUMBER
===========================*/

    .step-circle {
        position: relative;
        margin-bottom: 35px;
    }

    .step-count {

        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        background: #76aada;
        color: #fff;
        width: 34px;
        height: 34px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 12px;
        font-weight: 700;
        z-index: 10;
        box-shadow: 0 8px 20px rgba(227, 27, 35, .25);

    }


    /*==========================
        ICON
===========================*/

    .icon-circle {

        width: 92px;
        height: 92px;
        margin: auto;
        border-radius: 50%;
        background: #355FA8;
        border: 2px solid #ffd322;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 34px;
        color: #ffd322;
        position: relative;
        transition: .4s;
        box-shadow: 0 12px 35px rgba(53, 95, 168, .12);

    }

    .icon-circle::before {

        content: "";
        position: absolute;
        inset: -10px;
        border: 2px dashed #d8e4ff;
        border-radius: 50%;
        transition: .5s;

    }


    /*==========================
          CARD
===========================*/

    .process-card {

        background: #fff;
        padding: 25px 18px;
        border-radius: 20px;
        border: 1px solid #edf2f7;
        transition: .4s;
        height: 230px;
        box-shadow: 0 12px 35px rgba(0, 0, 0, .05);

    }

    .process-card h5 {

        font-size: 20px;
        font-weight: 700;
        color: #1d2d50;

    }

    .process-card p {

        color: #6c757d;
        font-size: 15px;
        line-height: 1.7;
        margin: 0;

    }

    .line {

        width: 45px;
        height: 3px;
        background: #ffd322;
        margin: 14px auto 18px;
        border-radius: 50px;
        transition: .4s;

    }


    /*==========================
        HOVER
===========================*/

    .process-box:hover .process-card {

        transform: translateY(-12px);
        box-shadow: 0 25px 50px rgba(53, 95, 168, .18);

    }

    .process-box:hover .icon-circle {

        background: linear-gradient(135deg, #355FA8, #5a83cf);
        color: #fff;
        transform: rotateY(360deg) scale(1.08);

    }

    .process-box:hover .icon-circle::before {

        transform: rotate(180deg);
        border-color: #FFC928;

    }

    .process-box:hover .line {

        width: 70px;
        background: #355FA8;

    }

    .process-box:hover .step-count {

        background: #355FA8;

    }


    /*==========================
        PULSE
===========================*/

    .icon-circle::after {

        content: "";
        position: absolute;
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px solid rgba(53, 95, 168, .3);
        animation: pulse 2s infinite;

    }

    @keyframes pulse {

        0% {

            transform: scale(1);
            opacity: 1;

        }

        70% {

            transform: scale(1.25);
            opacity: 0;

        }

        100% {

            transform: scale(1.25);
            opacity: 0;

        }

    }


    /*==========================
      RESPONSIVE
===========================*/

    @media(max-width:991px) {

        .timeline {

            overflow-x: auto;
            gap: 25px;
            padding-bottom: 20px;

        }

        .timeline::before {

            width: 1200px;
            left: 80px;

        }

        .process-box {

            min-width: 220px;

        }

        .process-title {

            font-size: 32px;

        }

        .process-card {

            height: auto;

        }

    }

/* Extracted from application/modules/home/views/home.php */
.counter-section {
        background: #fff;
    }

    .section-heading h2 {
        font-size: 42px;
        font-weight: 700;
        color: #1d3557;
    }

    .section-heading span {
        color: #355FA8;
    }

    .sub-title {
        display: inline-block;
        padding: 8px 20px;
        background: #eef4ff;
        color: #355FA8;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
    }

    .stats-row {
        border: 1px solid #e8edf5;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .05);
    }

    .stat-item {

        text-align: center;
        padding: 45px 20px;
        border-right: 1px solid #e8edf5;
        transition: .35s;
        background: #fff;
        height: 100%;

    }

    .stat-item:hover {

        transform: translateY(-8px);

    }

    .stat-icon {

        width: 80px;
        height: 80px;
        margin: auto;
        background: #f5f8ff;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #355FA8;
        font-size: 34px;
        transition: .35s;

    }

    .stat-item:hover .stat-icon {

        background: #355FA8;
        color: #fff;
        transform: rotate(10deg);

    }

    .stat-item h2 {

        font-size: 48px;
        font-weight: 800;
        color: #1d3557;
        margin: 25px 0 10px;

    }

    .stat-item p {

        color: #666;
        font-weight: 600;
        margin: 0;

    }

    @media(max-width:991px) {

        .stat-item {

            border-right: none;
            border-bottom: 1px solid #e8edf5;

        }

    }

/* Extracted from application/modules/home/views/home.php */
.location-section {
        background: #fff;
    }

    .section-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: #edf4ff;
        color: #355FA8;
        padding: 10px 18px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
    }

    .section-title {
        font-size: 42px;
        font-weight: 700;
        color: #1b2d50;
        line-height: 1.3;
    }

    .section-desc {
        color: #666;
        line-height: 1.9;
        margin: 20px 0 25px;
    }

    .location-list {
        list-style: none;
        padding: 0;
        margin: 0 0 35px;
    }

    .location-list li {
        margin-bottom: 15px;
        font-weight: 500;
        color: #555;
    }

    .location-list i {
        color: #355FA8;
        margin-right: 10px;
    }

    .theme-btn {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 15px 30px;
        background: #355FA8;
        color: #fff;
        text-decoration: none;
        border-radius: 50px;
        transition: .4s;
    }

    .theme-btn:hover {
        background: #FFC928;
        color: #222;
    }

    .city-card {

        position: relative;
        display: block;
        overflow: hidden;
        border-radius: 20px;
        height: 260px;
        text-decoration: none;

    }

    .city-card img {

        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .6s;

    }

    .city-overlay {

        position: absolute;
        inset: 0;
        padding: 20px;
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        background: linear-gradient(to top,
                rgba(0, 0, 0, .78),
                rgba(0, 0, 0, .15));

    }

    .city-overlay h5 {

        color: #fff;
        margin: 0;
        font-size: 22px;
        font-weight: 700;

    }

    .city-overlay span {

        color: #ddd;
        font-size: 14px;

    }

    .city-overlay i {

        color: #fff;
        font-size: 28px;
        transition: .35s;

    }

    .city-card:hover img {

        transform: scale(1.12);

    }

    .city-card:hover .city-overlay i {

        transform: translateX(6px) translateY(-6px);

    }

    .city-card:hover {

        box-shadow: 0 20px 45px rgba(0, 0, 0, .18);

    }

    @media(max-width:991px) {

        .section-title {

            font-size: 34px;

        }

        .city-card {

            height: 220px;

        }

    }

/* Extracted from application/modules/home/views/home.php */
.testimonial-section {
        background: #f8fbff;
    }

    .testimonial-card {

        background: #fff;
        padding: 35px;
        border-radius: 24px;
        position: relative;
        transition: .35s;
        border: 1px solid #edf2f7;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .05);
        height: 100%;

    }

    .testimonial-card:hover {

        transform: translateY(-10px);
        box-shadow: 0 25px 50px rgba(53, 95, 168, .12);

    }

    .quote-icon {

        width: 65px;
        height: 65px;
        border-radius: 50%;
        background: #355FA8;
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        margin-bottom: 25px;
        transition: .4s;

    }

    .testimonial-card:hover .quote-icon {

        transform: rotate(360deg);
        background: #FFC928;
        color: #222;

    }

    .testimonial-card .rating {

        color: #ffb400;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        gap: 4px;
        width: auto;
        overflow: visible;
        position: static;
        font-size: 20px;
        margin-bottom: 15px;

    }

    .testimonial-card p {

        color: #666;
        line-height: 1.9;
        margin-bottom: 30px;

    }

    .client {

        display: flex;
        align-items: center;
        gap: 15px;

    }

    .client img {

        width: 65px;
        height: 65px;
        border-radius: 50%;
        object-fit: cover;
        border: 3px solid #355FA8;

    }

    .client h6 {

        margin: 0;
        font-weight: 700;
        color: #1d3557;

    }

    .client span {

        color: #888;
        font-size: 14px;

    }

/* Extracted from application/modules/home/views/home.php */
.faq-section {
        background: #fff;
    }

    .faq-tag {

        display: inline-block;
        background: #eef4ff;
        color: #355FA8;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 20px;

    }

    .faq-title {

        font-size: 42px;
        font-weight: 800;
        color: #1d3557;
        margin-bottom: 20px;

    }

    .faq-text {

        color: #666;
        line-height: 1.9;
        margin-bottom: 35px;

    }

    .faq-btn {

        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 14px 28px;
        border-radius: 50px;
        background: #355FA8;
        color: #fff;
        text-decoration: none;
        transition: .35s;

    }

    .faq-btn:hover {

        background: #FFC928;
        color: #222;

    }

    .custom-accordion .accordion-item {

        border: none;
        border-radius: 18px;
        overflow: hidden;
        margin-bottom: 18px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, .06);

    }

    .custom-accordion .accordion-button {

        background: #fff;
        font-weight: 600;
        font-size: 17px;
        padding: 22px;
        color: #1d3557;
        box-shadow: none;

    }

    .custom-accordion .accordion-button:not(.collapsed) {

        background: #355FA8;
        color: #fff;

    }

    .custom-accordion .accordion-body {

        padding: 22px;
        color: #666;
        line-height: 1.8;

    }

    .accordion-button::after {

        filter: brightness(0);

    }

    .accordion-button:not(.collapsed)::after {

        filter: brightness(0) invert(1);

    }

    @media(max-width:991px) {

        .faq-title {

            font-size: 32px;

        }

    }

/* Extracted from application/modules/home/views/home.php */
.price-section {
        background: #f8fbff;
    }

    .price-info,
    .calculator-card {
        background: #fff;
        border-radius: 24px;
        padding: 35px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, .06);
        height: 100%;
    }

    .price-info h2 {
        font-size: 38px;
        font-weight: 700;
        color: #1b2d50;
        margin: 20px 0;
    }

    .price-info p {
        color: #666;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .feature {

        display: flex;
        gap: 18px;
        align-items: center;
        padding: 18px;
        border-radius: 15px;
        margin-bottom: 15px;
        background: #f8fbff;
        transition: .3s;

    }

    .feature:hover {

        transform: translateX(8px);

    }

    .feature i {

        width: 55px;
        height: 55px;
        background: #355FA8;
        color: #fff;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;

    }

    .feature h6 {

        margin: 0;
        font-weight: 700;

    }

    .feature span {

        color: #777;
        font-size: 14px;

    }

    .calculator-card label {

        font-weight: 600;
        margin-bottom: 8px;

    }

    .form-control,
    .form-select {

        height: 54px;
        border-radius: 12px;
        border: 1px solid #dfe7f1;

    }

    .form-control:focus,
    .form-select:focus {

        border-color: #355FA8;
        box-shadow: none;

    }

    #qteModal .quote-modal-dialog {
        max-width: 860px;
    }

    #qteModal .modal-content {
        padding: 28px !important;
        border: 0;
        border-radius: 8px;
        box-shadow: 0 24px 60px rgba(15, 23, 42, .22);
    }

    #qteModal .contact-form-header {
        margin-bottom: 18px;
    }

    #qteModal .form-group {
        margin-bottom: 18px;
    }

    #qteModal .form-control {
        min-height: 54px;
        padding: 13px 16px 13px 44px;
        font-size: 15px;
    }

    #qteModal textarea.form-control {
        height: 140px;
        min-height: 140px;
        padding-top: 15px;
        resize: vertical;
    }

    #qteModal .form-icon {
        position: relative;
    }

    #qteModal .form-icon i {
        position: absolute;
        left: 16px;
        top: 18px;
        z-index: 1;
        color: #A0A0A0;
        font-size: 15px;
    }

    #qteModal .theme-btn {
        min-height: 48px;
        padding: 12px 24px;
        border-radius: 8px;
    }

    .calculate-btn {

        border: none;
        background: #355FA8;
        color: #fff;
        height: 56px;
        border-radius: 14px;
        font-weight: 600;
        transition: .3s;

    }

    .calculate-btn:hover {

        background: #FFC928;
        color: #222;

    }

    .result-box {

        margin-top: 10px;
        padding: 25px;
        border-radius: 18px;
        background: linear-gradient(135deg, #355FA8, #5c82c8);
        color: #fff;
        text-align: center;

    }

    .result-box h2 {

        font-size: 44px;
        font-weight: 800;
        margin: 10px 0;

    }

    .result-box span {

        font-size: 13px;
        opacity: .85;

    }

/* Extracted from application/modules/home/views/search.php */
.imgrows img{height:300px}
.breadcumb-area {background: linear-gradient(rgba(0, 0, 0, 0.5),rgba(0,0,0,0.5)), url(../img/truck_ban.jpg) no-repeat center/cover;}

/* Extracted from application/modules/packers_movers/views/city_from_to_links.php */
.city-routes-section {
        position: relative;
        overflow: hidden;
        margin-bottom: 18px;
        padding: 22px;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
    }

    .city-routes-section:before {
        content: "";
        position: absolute;
        top: -72px;
        right: -78px;
        width: 180px;
        height: 180px;
        border-radius: 50%;
        background: rgba(245, 197, 66, .24);
        pointer-events: none;
    }

    .route-section-head {
        position: relative;
        z-index: 1;
        margin-bottom: 8px;
    }

    .route-kicker {
        display: inline-flex;
        align-items: center;
        margin-bottom: 8px;
        padding: 6px 12px;
        border-radius: 30px;
        background: #edf3ff;
        color: #2E5FA8;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .route-section-head h2 {
        margin: 0 0 8px;
        color: #172033;
        font-size: 24px;
        font-weight: 800;
        line-height: 1.25;
    }

    .route-section-head p {
        max-width: 680px;
        margin: 0;
        color: #667085;
        font-size: 14px;
        line-height: 1.6;
    }

    .route-grid {
        position: relative;
        z-index: 1;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
    }

    .route-card {
        min-height: 86px;
        display: flex;
        gap: 10px;
        padding: 11px;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: #fbfdff;
        color: #172033;
        text-decoration: none;
        transition: .3s ease;
    }

    .route-card:hover {
        color: #172033;
        transform: translateY(-5px);
        border-color: rgba(46, 95, 168, .28);
        box-shadow: 0 18px 34px rgba(46, 95, 168, .14);
    }

    .route-icon {
        width: 34px;
        height: 34px;
        flex: 0 0 34px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #2E5FA8;
        color: #fff;
        font-size: 17px;
        transition: .3s ease;
    }

    .route-card:hover .route-icon {
        background: #F5C542;
        color: #172033;
    }

    .route-content {
        min-width: 0;
        display: flex;
        flex: 1;
        flex-direction: column;
    }

    .route-content small {
        display: block;
        margin-bottom: 4px;
        color: #2E5FA8;
        font-size: 10px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .route-content strong {
        display: block;
        color: #172033;
        font-size: 13px;
        font-weight: 900;
        line-height: 1.35;
    }

    .route-content em {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: auto;
        color: #2E5FA8;
        font-size: 13px;
        font-style: normal;
        font-weight: 900;
    }

    @media(max-width:991px) {
        .city-routes-section {
            padding: 18px 14px;
        }

        .route-section-head h2 {
            font-size: 24px;
        }

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

        .route-card {
            min-height: 82px;
        }
    }

    @media(max-width:576px) {
        .route-grid {
            grid-template-columns: 1fr;
        }
    }

/* Extracted from application/modules/packers_movers/views/city_list.php */
.breadcrumb-banner {
        position: relative;
        overflow: hidden;
        padding: 30px 0;
        min-height: 260px;
        display: flex;
        align-items: center;

        background-image:
            linear-gradient(90deg,
                rgba(247, 249, 252, .98) 0%,
                rgba(247, 249, 252, .92) 35%,
                rgba(247, 249, 252, .60) 60%,
                rgba(247, 249, 252, .15) 100%),
            url("../images/state/ahmedabad.webp");

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    /* Yellow Circle */

    .breadcrumb-banner:before {

        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #F5C54220;
        border-radius: 50%;
        right: -120px;
        top: -120px;

    }

    /* Blue Wave */

    .breadcrumb-banner:after {

        content: "";
        position: absolute;
        left: -120px;
        bottom: -120px;
        width: 320px;
        height: 320px;
        background: #2E5FA810;
        border-radius: 50%;

    }

    .breadcrumb-nav {

        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        padding: 8px 15px;
        border-radius: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        margin-bottom: 10px;

    }

    .breadcrumb-nav a {

        text-decoration: none;
        color: #1F3F73;
        font-weight: 600;

    }

    .breadcrumb-nav span {

        color: #2E5FA8;
        font-weight: 700;

    }

    .mini-title {

        display: inline-block;
        background: #F5C542;
        color: #1F3F73;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 18px;

    }

    .breadcrumb-banner h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #1E293B;
    }

    .breadcrumb-banner h1 span {
        color: #2E5FA8;
    }

    .breadcrumb-banner p {

        color: #667085;
        font-size: 15px;
        line-height: 1.5;
        max-width: 520px;

    }

    .banner-info {

        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 13px;

    }

    .info-box {

        background: #fff;
        padding: 10px 18px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

    }

    .info-box i {

        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E5FA8;
        color: #fff;
        font-size: 22px;

    }

    .info-box h6 {

        margin: 0;
        color: #1F3F73;
        font-weight: 700;

    }

    .info-box small {

        color: #777;

    }



    @media(max-width:991px) {

        .breadcrumb-banner {

            text-align: center;
            padding: 70px 0;

        }

        .banner-info {

            justify-content: center;

        }

        .breadcrumb-banner h1 {

            font-size: 42px;

        }

        .truck-img {

            margin-top: 40px;

        }

    }

/* Extracted from application/modules/packers_movers/views/city_list.php */
.state-city-section {
        position: relative;
        background:
            linear-gradient(180deg, #f7f9fc 0%, #ffffff 48%, #f7f9fc 100%);
        overflow: hidden;
    }

    .state-city-section:before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(46, 95, 168, .06) 1px, transparent 1px),
            linear-gradient(90deg, rgba(46, 95, 168, .06) 1px, transparent 1px);
        background-size: 34px 34px;
        pointer-events: none;
    }

    .state-city-section .container {
        position: relative;
        z-index: 1;
    }

    .city-list-panel {
        padding: 24px;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: rgba(255, 255, 255, .94);
        box-shadow: 0 20px 48px rgba(15, 23, 42, .08);
    }

    .city-list-head {
        margin-bottom: 18px;
    }

    .city-list-kicker {
        display: inline-flex;
        align-items: center;
        margin-bottom: 10px;
        padding: 8px 16px;
        border-radius: 30px;
        background: #edf3ff;
        color: #2E5FA8;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .city-list-head h2 {
        margin: 0 0 12px;
        color: #172033;
        font-size: 32px;
        font-weight: 800;
        line-height: 1.22;
    }

    .city-list-head p {
        max-width: 720px;
        margin: 0;
        color: #667085;
        font-size: 16px;
        line-height: 1.8;
    }

    .city-list-summary {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 16px 34px rgba(46, 95, 168, .13);
    }

    .city-list-summary div {
        padding: 16px 14px;
        background: #2E5FA8;
        color: #fff;
        text-align: center;
    }

    .city-list-summary div:last-child {
        background: #172033;
    }

    .city-list-summary strong {
        display: block;
        margin-bottom: 6px;
        color: #F5C542;
        font-size: 28px;
        font-weight: 900;
        line-height: 1;
    }

    .city-list-summary span {
        display: block;
        color: #edf3ff;
        font-size: 14px;
        font-weight: 800;
    }

    .city-card-grid {
        align-items: stretch;
    }

    .city-link-card {
        position: relative;
        isolation: isolate;
        min-height: 108px;
        height: 100%;
        display: flex;
        gap: 12px;
        padding: 14px;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: #fff;
        color: #172033;
        text-decoration: none;
        box-shadow: 0 14px 30px rgba(15, 23, 42, .06);
        overflow: hidden;
        transition: .3s ease;
    }

    .city-link-card:before {
        content: "";
        position: absolute;
        inset: auto -35px -45px auto;
        width: 110px;
        height: 110px;
        border-radius: 50%;
        background: rgba(245, 197, 66, .22);
        z-index: -1;
        transition: .3s ease;
    }

    .city-link-card:hover {
        color: #172033;
        transform: translateY(-6px);
        border-color: rgba(46, 95, 168, .28);
        box-shadow: 0 22px 42px rgba(46, 95, 168, .14);
    }

    .city-link-card:hover:before {
        transform: scale(1.4);
    }

    .city-link-icon {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #2E5FA8;
        color: #fff;
        font-size: 20px;
    }

    .city-link-content {
        min-width: 0;
        display: flex;
        flex: 1;
        flex-direction: column;
    }

    .city-link-content small {
        display: block;
        margin-bottom: 5px;
        color: #2E5FA8;
        font-size: 12px;
        font-weight: 900;
        text-transform: uppercase;
    }

    .city-link-content strong {
        display: block;
        color: #172033;
        font-size: 16px;
        font-weight: 900;
        line-height: 1.35;
    }

    .city-link-content em {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: auto;
        color: #2E5FA8;
        font-size: 13px;
        font-style: normal;
        font-weight: 900;
    }

    @media(max-width:991px) {
        .city-list-panel {
            padding: 22px 18px;
        }

        .city-list-head h2 {
            font-size: 30px;
        }
    }

    @media(max-width:576px) {
        .state-city-section {
            padding-top: 36px !important;
            padding-bottom: 36px !important;
        }

        .city-list-panel {
            padding: 16px 14px;
        }

        .city-list-head h2 {
            font-size: 26px;
        }

        .city-list-head p {
            font-size: 15px;
        }

        .city-list-summary {
            grid-template-columns: 1fr;
        }

        .city-link-card {
            min-height: 104px;
            padding: 14px;
        }
    }

/* Extracted from application/modules/packers_movers/views/from_city_to_city.php */
.breadcrumb-banner.route-hero {
        position: relative;
        overflow: hidden;
        padding: 34px 0;
        min-height: 280px;
        display: flex;
        align-items: center;
        background-image:
            linear-gradient(90deg, rgba(247, 249, 252, .98) 0%, rgba(247, 249, 252, .92) 38%, rgba(247, 249, 252, .62) 66%, rgba(247, 249, 252, .18) 100%),
            var(--route-hero-image, url("../images/service/homes.webp"));
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .breadcrumb-banner.route-hero:before,
    .breadcrumb-banner.route-hero:after {
        content: "";
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
    }

    .breadcrumb-banner.route-hero:before {
        width: 350px;
        height: 350px;
        right: -120px;
        top: -120px;
        background: #F5C54220;
    }

    .breadcrumb-banner.route-hero:after {
        width: 320px;
        height: 320px;
        left: -120px;
        bottom: -120px;
        background: #2E5FA810;
    }

    .route-hero .container {
        position: relative;
        z-index: 2;
    }

    .breadcrumb-nav {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        max-width: 100%;
        margin-bottom: 10px;
        padding: 8px 15px;
        border-radius: 40px;
        background: #fff;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        flex-wrap: wrap;
    }

    .breadcrumb-nav a,
    .breadcrumb-nav span {
        color: #1F3F73;
        font-weight: 700;
        text-decoration: none;
    }

    .breadcrumb-nav span {
        color: #2E5FA8;
    }

    .mini-title,
    .route-kicker {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0;
    }

    .mini-title {
        margin-bottom: 18px;
        padding: 8px 15px;
        background: #F5C542;
        color: #1F3F73;
    }

    .route-hero h1 {
        margin-bottom: 12px;
        color: #1E293B;
        font-size: 42px;
        font-weight: 800;
        line-height: 1.2;
    }

    .route-hero h1 span {
        color: #2E5FA8;
    }

    .route-hero p {
        max-width: 640px;
        color: #667085;
        font-size: 15px;
        line-height: 1.6;
    }

    .banner-info {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        margin-top: 16px;
    }

    .info-box {
        display: flex;
        align-items: center;
        gap: 13px;
        padding: 10px 16px;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    }

    .info-box i {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #2E5FA8;
        color: #fff;
        font-size: 20px;
    }

    .info-box h6 {
        margin: 0;
        color: #1F3F73;
        font-weight: 800;
    }

    .info-box small {
        color: #667085;
    }

    .route-service-page {
        background: #f7f9fc;
        overflow: visible;
    }

    .route-layout-row > * {
        min-width: 0;
    }

    .route-main-col,
    .route-sidebar-col {
        align-self: stretch;
    }

    .route-section,
    .route-side-card,
    .route-contact-card,
    .route-cta-band {
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
    }

    .route-section {
        margin-bottom: 24px;
        padding: 30px;
        scroll-margin-top: 120px;
    }

    .route-kicker {
        margin-bottom: 14px;
        padding: 8px 16px;
        background: #edf3ff;
        color: #2E5FA8;
    }

    .route-section h2,
    .route-cta-band h2 {
        color: #172033;
        font-weight: 800;
        line-height: 1.25;
    }

    .route-section h2 {
        margin-bottom: 14px;
        font-size: 32px;
    }

    .route-section p {
        color: #667085;
        font-size: 16px;
        line-height: 1.8;
    }

    .route-section-head {
        margin-bottom: 18px;
    }

    .route-stat-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
        margin-top: 24px;
    }

    .route-stat-item {
        display: grid;
        gap: 5px;
        min-height: 132px;
        padding: 18px 12px;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: #fbfdff;
        text-align: center;
    }

    .route-stat-item i {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 5px;
        border-radius: 8px;
        background: #2E5FA8;
        color: #fff;
        font-size: 21px;
    }

    .route-stat-item strong {
        color: #172033;
        font-weight: 900;
    }

    .route-stat-item span {
        color: #667085;
        font-size: 14px;
        font-weight: 700;
    }

    .route-service-table,
    .route-mini-table {
        width: 100%;
        margin: 0;
        border: 1px solid #e7edf6;
    }

    .route-service-table thead th {
        padding: 15px;
        border: 0;
        background: #172033;
        color: #fff;
        font-weight: 800;
    }

    .route-service-table td,
    .route-mini-table td {
        padding: 15px;
        border-color: #e7edf6;
        color: #667085;
        line-height: 1.6;
    }

    .route-service-table td:first-child,
    .route-mini-table td:first-child {
        color: #172033;
        font-weight: 800;
    }

    .route-service-table td:last-child,
    .route-mini-table td:last-child {
        color: #2E5FA8;
        font-weight: 900;
        white-space: nowrap;
    }

    .route-note {
        margin: 12px 0 0;
        font-size: 13px !important;
        line-height: 1.65 !important;
    }

    .route-process-list {
        display: grid;
        gap: 14px;
    }

    .route-process-item {
        display: flex;
        gap: 16px;
        padding: 18px;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: #fbfdff;
    }

    .route-process-item > span {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #F5C542;
        color: #172033;
        font-weight: 900;
    }

    .route-process-item h3 {
        margin: 0 0 6px;
        color: #172033;
        font-size: 18px;
        font-weight: 800;
    }

    .route-process-item p {
        margin: 0;
        font-size: 15px;
        line-height: 1.65;
    }

    .route-check-row {
        height: 100%;
        display: flex;
        gap: 12px;
        padding: 16px;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: #fbfdff;
        color: #172033;
        font-weight: 700;
        line-height: 1.55;
    }

    .route-check-row i {
        flex: 0 0 auto;
        margin-top: 2px;
        color: #2E5FA8;
    }

    .route-map-frame {
        overflow: hidden;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: #edf3ff;
    }

    .route-map-frame iframe {
        display: block;
        width: 100%;
        min-height: 420px;
    }

    .route-testimonial {
        height: 100%;
        padding: 20px;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: #fbfdff;
    }

    .route-testimonial i {
        display: block;
        color: #F5C542;
        font-size: 28px;
        line-height: 1;
        margin-bottom: 10px;
    }

    .route-testimonial p {
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 1.7;
    }

    .route-testimonial strong,
    .route-testimonial span {
        display: block;
    }

    .route-testimonial strong {
        color: #172033;
        font-weight: 900;
    }

    .route-testimonial span {
        color: #2E5FA8;
        font-size: 13px;
        font-weight: 800;
    }

    .route-faq .accordion-item {
        overflow: hidden;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        margin-bottom: 12px;
    }

    .route-faq .accordion-item:last-child {
        margin-bottom: 0;
    }

    .route-faq .accordion-button {
        color: #172033;
        font-weight: 800;
        box-shadow: none;
    }

    .route-faq .accordion-button:not(.collapsed) {
        background: #edf3ff;
        color: #2E5FA8;
    }

    .route-faq .accordion-body {
        color: #667085;
        line-height: 1.75;
    }

    .route-cta-band {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 28px;
        background: linear-gradient(135deg, #172033, #2E5FA8);
        color: #fff;
    }

    .route-cta-band span {
        display: block;
        margin-bottom: 6px;
        color: #F5C542;
        font-weight: 900;
    }

    .route-cta-band h2 {
        margin: 0;
        color: #fff;
        font-size: 24px;
    }

    .route-cta-band a,
    .route-quote-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 46px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 900;
        text-align: center;
        transition: .3s ease;
    }

    .route-cta-band a {
        flex: 0 0 auto;
        padding: 12px 18px;
        background: #F5C542;
        color: #172033;
    }

    .route-sidebar-wrap {
        position: sticky;
        top: 112px;
        display: grid;
        gap: 18px;
        align-self: flex-start;
    }

    .route-side-card,
    .route-contact-card {
        padding: 22px;
    }

    .route-side-card h3,
    .route-contact-card h3 {
        color: #172033;
        font-size: 22px;
        font-weight: 800;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .route-toc-card nav {
        display: grid;
        gap: 9px;
    }

    .route-toc-card a {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 10px 12px;
        border-radius: 8px;
        background: #f7f9fc;
        color: #172033;
        text-decoration: none;
        font-weight: 800;
        transition: .25s ease;
    }

    .route-toc-card a:hover {
        background: #2E5FA8;
        color: #fff;
    }

    .route-toc-card i {
        color: #F5C542;
        font-size: 20px;
        line-height: 1;
    }

    .route-contact-card {
        background:
            linear-gradient(135deg, rgba(23, 32, 51, .96), rgba(46, 95, 168, .94)),
            var(--route-hero-image, url("../images/service/homes.webp"));
        background-size: cover;
        background-position: center;
        color: #fff;
    }

    .route-contact-card > span {
        display: inline-block;
        margin-bottom: 10px;
        color: #F5C542;
        font-weight: 900;
    }

    .route-contact-card h3 {
        color: #fff;
    }

    .route-contact-line {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
        border-top: 1px solid rgba(255, 255, 255, .15);
        color: #fff;
        text-decoration: none;
    }

    .route-contact-line i {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #F5C542;
        color: #172033;
    }

    .route-contact-line strong,
    .route-contact-line small {
        display: block;
    }

    .route-contact-line strong {
        margin-bottom: 2px;
        font-weight: 900;
    }

    .route-contact-line small {
        color: #dbe4f2;
        line-height: 1.45;
        overflow-wrap: anywhere;
    }

    a.route-contact-line:hover {
        color: #F5C542;
    }

    .route-quote-btn {
        width: 100%;
        margin-top: 14px;
        padding: 12px 16px;
        background: #F5C542;
        color: #172033;
    }

    .route-quote-btn:hover,
    .route-cta-band a:hover {
        background: #fff;
        color: #172033;
        transform: translateY(-2px);
    }

    @media(max-width:991px) {
        .breadcrumb-banner.route-hero {
            text-align: center;
            padding: 70px 0;
        }

        .route-hero p {
            margin-left: auto;
            margin-right: auto;
        }

        .banner-info {
            justify-content: center;
        }

        .route-hero h1 {
            font-size: 40px;
        }

        .route-section h2 {
            font-size: 28px;
        }

        .route-sidebar-wrap {
            position: static;
        }

        .route-cta-band {
            align-items: flex-start;
            flex-direction: column;
        }

        .route-cta-band a {
            width: 100%;
        }
    }

    @media(max-width:767px) {
        .route-stat-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .route-service-table td,
        .route-service-table th {
            min-width: 180px;
        }
    }

    @media(max-width:576px) {
        .breadcrumb-banner.route-hero {
            padding: 52px 0;
        }

        .breadcrumb-nav {
            justify-content: center;
        }

        .route-hero h1 {
            font-size: 28px;
        }

        .route-hero p,
        .route-section p {
            font-size: 15px;
        }

        .banner-info {
            flex-direction: column;
        }

        .info-box,
        .route-quote-btn {
            width: 100%;
        }

        .route-section,
        .route-side-card,
        .route-contact-card,
        .route-cta-band {
            padding: 22px 18px;
        }

        .route-section h2,
        .route-cta-band h2 {
            font-size: 24px;
        }

        .route-stat-grid {
            grid-template-columns: 1fr;
        }

        .route-process-item {
            flex-direction: column;
        }

        .route-map-frame iframe {
            min-height: 320px;
        }
    }

/* Extracted from application/modules/packers_movers/views/states.php */
.breadcrumb-banner {
        position: relative;
        overflow: hidden;
        padding: 30px 0;
        min-height: 260px;
        display: flex;
        align-items: center;
        background-image:
            linear-gradient(90deg,
                rgba(247, 249, 252, .98) 0%,
                rgba(247, 249, 252, .92) 35%,
                rgba(247, 249, 252, .60) 60%,
                rgba(247, 249, 252, .15) 100%),
            url("../images/state/ahmedabad.webp");
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .breadcrumb-banner:before {
        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #F5C54220;
        border-radius: 50%;
        right: -120px;
        top: -120px;
    }

    .breadcrumb-banner:after {
        content: "";
        position: absolute;
        left: -120px;
        bottom: -120px;
        width: 320px;
        height: 320px;
        background: #2E5FA810;
        border-radius: 50%;
    }

    .breadcrumb-banner .container {
        position: relative;
        z-index: 2;
    }

    .breadcrumb-nav {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        padding: 8px 15px;
        border-radius: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        margin-bottom: 10px;
    }

    .breadcrumb-nav a {
        text-decoration: none;
        color: #1F3F73;
        font-weight: 600;
    }

    .breadcrumb-nav span {
        color: #2E5FA8;
        font-weight: 700;
    }

    .mini-title {
        display: inline-block;
        background: #F5C542;
        color: #1F3F73;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .breadcrumb-banner h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #1E293B;
    }

    .breadcrumb-banner h1 span {
        color: #2E5FA8;
    }

    .breadcrumb-banner p {
        color: #667085;
        font-size: 15px;
        line-height: 1.5;
        max-width: 520px;
    }

    .banner-info {
        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 13px;
    }

    .info-box {
        background: #fff;
        padding: 10px 18px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    }

    .info-box i {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E5FA8;
        color: #fff;
        font-size: 20px;
    }

    .info-box h6 {
        margin: 0;
        color: #1F3F73;
        font-weight: 700;
    }

    .info-box small {
        color: #777;
    }

    .br-branches-body {
        background: #fff;
        overflow: visible;
    }

    .br-intro-section {
        background: #fff;
    }

    .br-cta-section {
        background: #f7f9fc;
    }

    .br-kicker {
        display: inline-flex;
        align-items: center;
        color: #2E5FA8;
        background: #edf3ff;
        padding: 8px 16px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0;
        margin-bottom: 15px;
    }

    .br-section-title {
        color: #172033;
        font-size: 38px;
        font-weight: 800;
        line-height: 1.22;
        margin-bottom: 16px;
    }

    .br-copy {
        color: #667085;
        font-size: 16px;
        line-height: 1.85;
        margin: 0;
    }

    .br-summary-card {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 18px 42px rgba(46, 95, 168, .13);
    }

    .br-summary-card div {
        padding: 24px;
        background: #2E5FA8;
        color: #fff;
        text-align: center;
    }

    .br-summary-card div:last-child {
        background: #172033;
    }

    .br-summary-card strong {
        display: block;
        color: #F5C542;
        font-size: 38px;
        line-height: 1;
        margin-bottom: 8px;
    }

    .br-summary-card span {
        font-weight: 800;
    }

    .br-location-card {
        height: 100%;
        display: flex;
        flex-direction: column;
        overflow: hidden;
        border-radius: 8px;
        background: #fff;
        border: 1px solid #e7edf6;
        color: #172033;
        text-decoration: none;
        box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
        transition: .3s ease;
    }

    .br-location-card:hover {
        color: #172033;
        transform: translateY(-8px);
        box-shadow: 0 24px 44px rgba(46, 95, 168, .14);
    }

    .br-location-image {
        position: relative;
        display: block;
        aspect-ratio: 16 / 10;
        overflow: hidden;
        background: #edf3ff;
    }

    .br-location-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: .35s ease;
    }

    .br-location-card:hover .br-location-image img {
        transform: scale(1.07);
    }

    .br-location-tag {
        position: absolute;
        left: 14px;
        bottom: 14px;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        max-width: calc(100% - 28px);
        padding: 8px 12px;
        border-radius: 30px;
        background: #F5C542;
        color: #172033;
        font-size: 13px;
        font-weight: 900;
    }

    .br-location-content {
        display: flex;
        flex: 1;
        flex-direction: column;
        padding: 22px;
    }

    .br-location-content strong {
        display: block;
        color: #172033;
        font-size: 24px;
        font-weight: 900;
        line-height: 1.25;
        margin-bottom: 9px;
    }

    .br-location-content > span {
        display: block;
        color: #667085;
        line-height: 1.75;
        margin-bottom: 18px;
    }

    .br-location-content em {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        margin-top: auto;
        color: #2E5FA8;
        font-style: normal;
        font-weight: 600;
    }

    .br-support-strip {
        padding: 28px 0;
        background: #172033;
    }

    .br-support-box {
        height: 100%;
        min-height: 140px;
        padding: 24px 18px;
        border-radius: 8px;
        background: rgba(255, 255, 255, .07);
        border: 1px solid rgba(255, 255, 255, .12);
        text-align: center;
    }

    .br-support-box i {
        display: block;
        color: #F5C542;
        font-size: 30px;
        margin-bottom: 12px;
    }

    .br-support-box strong {
        display: block;
        color: #fff;
        font-size: 21px;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .br-support-box span {
        display: block;
        color: #dbe4f2;
        line-height: 1.45;
    }

    .br-cta-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 24px;
        padding: 36px;
        border-radius: 8px;
        background:
            linear-gradient(135deg, rgba(23, 32, 51, .94), rgba(46, 95, 168, .94)),
            url("../images/state/gujarat.webp");
        background-size: cover;
        background-position: center;
        color: #fff;
        box-shadow: 0 24px 55px rgba(15, 23, 42, .18);
    }

    .br-cta-box .br-kicker {
        background: rgba(245, 197, 66, .16);
        color: #F5C542;
    }

    .br-cta-box h2 {
        color: #fff;
        font-size: 34px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .br-cta-box p {
        color: #dbe4f2;
        line-height: 1.75;
        margin: 0;
        max-width: 660px;
    }

    .br-primary-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        min-height: 48px;
        padding: 13px 24px;
        border-radius: 8px;
        background: #F5C542;
        color: #172033;
        font-weight: 900;
        text-decoration: none;
        box-shadow: 0 14px 28px rgba(245, 197, 66, .18);
        transition: .3s ease;
    }

    .br-primary-btn:hover {
        background: #fff;
        color: #172033;
        transform: translateY(-3px);
    }

    @media(max-width:991px) {
        .breadcrumb-banner {
            text-align: center;
            padding: 70px 0;
        }

        .banner-info {
            justify-content: center;
        }

        .breadcrumb-banner h1 {
            font-size: 42px;
        }

        .br-section-title {
            font-size: 32px;
        }

        .br-cta-box {
            align-items: flex-start;
            flex-direction: column;
        }
    }

    @media(max-width:576px) {
        .breadcrumb-banner {
            padding: 52px 0;
        }

        .breadcrumb-nav {
            max-width: 100%;
            flex-wrap: wrap;
            justify-content: center;
        }

        .breadcrumb-banner h1,
        .br-section-title {
            font-size: 28px;
        }

        .breadcrumb-banner p,
        .br-copy {
            font-size: 15px;
        }

        .banner-info {
            flex-direction: column;
        }

        .info-box,
        .br-primary-btn {
            width: 100%;
        }

        .br-summary-card {
            grid-template-columns: 1fr;
        }

        .br-summary-card div {
            padding: 20px;
        }

        .br-location-content {
            padding: 20px;
        }

        .br-location-content strong,
        .br-cta-box h2 {
            font-size: 26px;
        }

        .br-support-box {
            min-height: 150px;
            padding: 20px 12px;
        }

        .br-cta-box {
            padding: 26px 20px;
        }
    }

/* Extracted from application/modules/packers_movers/views/view_service.php */
.breadcrumb-banner.city-hero {
        position: relative;
        overflow: hidden;
        padding: 34px 0;
        min-height: 280px;
        display: flex;
        align-items: center;
        background-image:
            linear-gradient(90deg, rgba(247, 249, 252, .98) 0%, rgba(247, 249, 252, .92) 38%, rgba(247, 249, 252, .62) 66%, rgba(247, 249, 252, .18) 100%),
            var(--city-hero-image, url("../images/state/ahmedabad.webp"));
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .breadcrumb-banner.city-hero:before,
    .breadcrumb-banner.city-hero:after {
        content: "";
        position: absolute;
        border-radius: 50%;
        pointer-events: none;
    }

    .breadcrumb-banner.city-hero:before {
        width: 350px;
        height: 350px;
        right: -120px;
        top: -120px;
        background: #F5C54220;
    }

    .breadcrumb-banner.city-hero:after {
        width: 320px;
        height: 320px;
        left: -120px;
        bottom: -120px;
        background: #2E5FA810;
    }

    .city-hero .container {
        position: relative;
        z-index: 2;
    }

    .breadcrumb-nav {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        max-width: 100%;
        margin-bottom: 10px;
        padding: 8px 15px;
        border-radius: 40px;
        background: #fff;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        flex-wrap: wrap;
    }

    .breadcrumb-nav a,
    .breadcrumb-nav span {
        font-weight: 700;
        text-decoration: none;
    }

    .breadcrumb-nav a {
        color: #1F3F73;
    }

    .breadcrumb-nav span {
        color: #2E5FA8;
    }

    .mini-title,
    .city-kicker {
        display: inline-flex;
        align-items: center;
        width: fit-content;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0;
    }

    .mini-title {
        margin-bottom: 18px;
        padding: 8px 15px;
        background: #F5C542;
        color: #1F3F73;
    }

    .city-hero h1 {
        margin-bottom: 12px;
        color: #1E293B;
        font-size: 42px;
        font-weight: 800;
        line-height: 1.2;
    }

    .city-hero h1 span {
        color: #2E5FA8;
    }

    .city-hero p {
        max-width: 620px;
        color: #667085;
        font-size: 15px;
        line-height: 1.6;
    }

    .banner-info {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
        margin-top: 16px;
    }

    .info-box {
        display: flex;
        align-items: center;
        gap: 13px;
        padding: 10px 16px;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    }

    .info-box i {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: #2E5FA8;
        color: #fff;
        font-size: 20px;
    }

    .info-box h6 {
        margin: 0;
        color: #1F3F73;
        font-weight: 800;
    }

    .info-box small {
        color: #667085;
    }

    .city-service-page {
        background: #f7f9fc;
        overflow: visible;
    }

    .city-layout-row > * {
        min-width: 0;
    }

    .city-main-col,
    .city-sidebar-col {
        align-self: stretch;
    }

    .city-section,
    .city-side-card,
    .city-contact-card,
    .widget-nearby-cities,
    .city-cta-band {
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
    }

    .city-section {
        margin-bottom: 24px;
        padding: 30px;
        scroll-margin-top: 120px;
    }

    .city-section:last-child {
        margin-bottom: 0;
    }

    .city-kicker {
        margin-bottom: 14px;
        padding: 8px 16px;
        background: #edf3ff;
        color: #2E5FA8;
    }

    .city-section h2,
    .city-cta-band h2 {
        color: #172033;
        font-weight: 800;
        line-height: 1.25;
    }

    .city-section h2 {
        margin-bottom: 14px;
        font-size: 32px;
    }

    .city-section p {
        color: #667085;
        font-size: 16px;
        line-height: 1.8;
    }

    .city-section-head {
        margin-bottom: 18px;
    }

    .city-extra-content {
        color: #667085;
        line-height: 1.8;
    }

    .city-stat-grid {
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 14px;
        margin-top: 24px;
    }

    .city-stat-item {
        display: grid;
        gap: 5px;
        min-height: 132px;
        padding: 18px 12px;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: #fbfdff;
        text-align: center;
    }

    .city-stat-item i {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 5px;
        border-radius: 8px;
        background: #2E5FA8;
        color: #fff;
        font-size: 21px;
    }

    .city-stat-item strong {
        color: #172033;
        font-weight: 900;
    }

    .city-stat-item span {
        color: #667085;
        font-size: 14px;
        font-weight: 700;
    }

    .city-service-table,
    .city-mini-table {
        width: 100%;
        margin: 0;
        border: 1px solid #e7edf6;
    }

    .city-service-table thead th {
        padding: 15px;
        border: 0;
        background: #172033;
        color: #fff;
        font-weight: 800;
    }

    .city-service-table td,
    .city-mini-table td {
        padding: 15px;
        border-color: #e7edf6;
        color: #667085;
        line-height: 1.6;
    }

    .city-service-table td:first-child,
    .city-mini-table td:first-child {
        color: #172033;
        font-weight: 800;
    }

    .city-service-table td:last-child,
    .city-mini-table td:last-child {
        color: #2E5FA8;
        font-weight: 900;
        white-space: nowrap;
    }

    .city-mini-table a {
        color: #172033;
        text-decoration: none;
    }

    .city-mini-table a:hover {
        color: #2E5FA8;
    }

    .city-note {
        margin: 12px 0 0;
        font-size: 13px !important;
        line-height: 1.65 !important;
    }

    .city-process-list {
        display: grid;
        gap: 14px;
    }

    .city-process-item {
        display: flex;
        gap: 16px;
        padding: 18px;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: #fbfdff;
    }

    .city-process-item > span {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #F5C542;
        color: #172033;
        font-weight: 900;
    }

    .city-process-item h3 {
        margin: 0 0 6px;
        color: #172033;
        font-size: 18px;
        font-weight: 800;
    }

    .city-process-item p {
        margin: 0;
        font-size: 15px;
        line-height: 1.65;
    }

    .city-check-row {
        height: 100%;
        display: flex;
        gap: 12px;
        padding: 16px;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: #fbfdff;
        color: #172033;
        font-weight: 700;
        line-height: 1.55;
    }

    .city-check-row i {
        flex: 0 0 auto;
        margin-top: 2px;
        color: #2E5FA8;
    }

    .city-map-frame {
        overflow: hidden;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: #edf3ff;
    }

    .city-map-frame iframe {
        display: block;
        width: 100%;
        min-height: 420px;
    }

    .city-testimonial {
        height: 100%;
        padding: 20px;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: #fbfdff;
    }

    .city-testimonial i {
        display: block;
        color: #F5C542;
        font-size: 28px;
        line-height: 1;
        margin-bottom: 10px;
    }

    .city-testimonial p {
        margin-bottom: 16px;
        font-size: 14px;
        line-height: 1.7;
    }

    .city-testimonial strong,
    .city-testimonial span {
        display: block;
    }

    .city-testimonial strong {
        color: #172033;
        font-weight: 900;
    }

    .city-testimonial span {
        color: #2E5FA8;
        font-size: 13px;
        font-weight: 800;
    }

    .city-faq .accordion-item {
        overflow: hidden;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        margin-bottom: 12px;
    }

    .city-faq .accordion-item:last-child {
        margin-bottom: 0;
    }

    .city-faq .accordion-button {
        color: #172033;
        font-weight: 800;
        box-shadow: none;
    }

    .city-faq .accordion-button:not(.collapsed) {
        background: #edf3ff;
        color: #2E5FA8;
    }

    .city-faq .accordion-body {
        color: #667085;
        line-height: 1.75;
    }

    .city-cta-band {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 28px;
        background: linear-gradient(135deg, #172033, #2E5FA8);
        color: #fff;
    }

    .city-cta-band span {
        display: block;
        margin-bottom: 6px;
        color: #F5C542;
        font-weight: 900;
    }

    .city-cta-band h2 {
        margin: 0;
        color: #fff;
        font-size: 24px;
    }

    .city-cta-band a,
    .city-quote-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 46px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 900;
        text-align: center;
        transition: .3s ease;
    }

    .city-cta-band a {
        flex: 0 0 auto;
        padding: 12px 18px;
        background: #F5C542;
        color: #172033;
    }

    .city-sidebar-wrap {
        position: sticky;
        top: 112px;
        display: grid;
        gap: 18px;
        align-self: flex-start;
    }

    .city-side-card,
    .city-contact-card,
    .widget-nearby-cities {
        padding: 22px;
    }

    .city-side-card h3,
    .city-contact-card h3 {
        color: #172033;
        font-size: 22px;
        font-weight: 800;
        line-height: 1.25;
        margin-bottom: 16px;
    }

    .city-toc-card nav {
        display: grid;
        gap: 9px;
    }

    .city-toc-card a {
        display: flex;
        align-items: center;
        gap: 7px;
        padding: 10px 12px;
        border-radius: 8px;
        background: #f7f9fc;
        color: #172033;
        text-decoration: none;
        font-weight: 800;
        transition: .25s ease;
    }

    .city-toc-card a:hover {
        background: #2E5FA8;
        color: #fff;
    }

    .city-toc-card i {
        color: #F5C542;
        font-size: 20px;
        line-height: 1;
    }

    .city-contact-card {
        background:
            linear-gradient(135deg, rgba(23, 32, 51, .96), rgba(46, 95, 168, .94)),
            var(--city-hero-image, url("../images/state/ahmedabad.webp"));
        background-size: cover;
        background-position: center;
        color: #fff;
    }

    .city-contact-card > span {
        display: inline-block;
        margin-bottom: 10px;
        color: #F5C542;
        font-weight: 900;
    }

    .city-contact-card h3 {
        color: #fff;
    }

    .city-contact-line {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 12px 0;
        border-top: 1px solid rgba(255, 255, 255, .15);
        color: #fff;
        text-decoration: none;
    }

    .city-contact-line i {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #F5C542;
        color: #172033;
    }

    .city-contact-line strong,
    .city-contact-line small {
        display: block;
    }

    .city-contact-line strong {
        margin-bottom: 2px;
        font-weight: 900;
    }

    .city-contact-line small {
        color: #dbe4f2;
        line-height: 1.45;
        overflow-wrap: anywhere;
    }

    a.city-contact-line:hover {
        color: #F5C542;
    }

    .city-quote-btn {
        width: 100%;
        margin-top: 14px;
        padding: 12px 16px;
        background: #F5C542;
        color: #172033;
    }

    .city-quote-btn:hover,
    .city-cta-band a:hover {
        background: #fff;
        color: #172033;
        transform: translateY(-2px);
    }

    .widget-nearby-cities {
        overflow: hidden;
        position: relative;
    }

    .widget-nearby-cities:before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 4px;
        background: linear-gradient(90deg, #2E5FA8, #F5C542);
    }

    .nearby-cities-header {
        display: flex;
        align-items: flex-start;
        gap: 13px;
        margin-bottom: 18px;
        padding-bottom: 16px;
        border-bottom: 1px solid #e7edf6;
    }

    .nearby-icon-circle {
        width: 44px;
        height: 44px;
        flex: 0 0 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #2E5FA8;
        color: #fff;
        font-size: 20px;
        box-shadow: 0 10px 20px rgba(46, 95, 168, .18);
    }

    .nearby-title-wrap {
        min-width: 0;
    }

    .nearby-title {
        margin: 0 0 4px;
        color: #172033;
        font-size: 22px;
        font-weight: 900;
        line-height: 1.2;
    }

    .nearby-subtitle {
        margin: 0;
        color: #667085;
        font-size: 14px;
        line-height: 1.5;
    }

    .nearby-cities-pills {
        display: grid;
        gap: 10px;
    }

    .nearby-city-pill {
        display: flex;
        align-items: center;
        gap: 10px;
        min-height: 46px;
        padding: 11px 12px;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: #f7f9fc;
        color: #172033;
        text-decoration: none;
        font-size: 14px;
        font-weight: 800;
        line-height: 1.35;
        transition: .25s ease;
    }

    .nearby-city-pill i {
        width: 30px;
        height: 30px;
        flex: 0 0 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #edf3ff;
        color: #2E5FA8;
        font-size: 15px;
        transition: .25s ease;
    }

    .nearby-city-pill span {
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .nearby-city-pill:hover {
        border-color: #2E5FA8;
        background: #2E5FA8;
        color: #fff;
        transform: translateX(3px);
    }

    .nearby-city-pill:hover i {
        background: #F5C542;
        color: #172033;
    }

    .nearby-city-pill.active-city {
        border-color: #F5C542;
        background: #fff8dc;
        color: #172033;
    }

    .nearby-city-pill.active-city i {
        background: #F5C542;
        color: #172033;
    }

    @media(max-width:991px) {
        .breadcrumb-banner.city-hero {
            text-align: center;
            padding: 70px 0;
        }

        .city-hero p {
            margin-left: auto;
            margin-right: auto;
        }

        .banner-info {
            justify-content: center;
        }

        .city-hero h1 {
            font-size: 40px;
        }

        .city-section h2 {
            font-size: 28px;
        }

        .city-sidebar-wrap {
            position: static;
            max-height: none;
            overflow: visible;
            padding-right: 0;
        }

        .city-cta-band {
            align-items: flex-start;
            flex-direction: column;
        }

        .city-cta-band a {
            width: 100%;
        }
    }

    @media(max-width:767px) {
        .city-stat-grid {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .city-service-table td,
        .city-service-table th {
            min-width: 180px;
        }

    }

    @media(max-width:576px) {
        .breadcrumb-banner.city-hero {
            padding: 52px 0;
        }

        .breadcrumb-nav {
            justify-content: center;
        }

        .city-hero h1 {
            font-size: 28px;
        }

        .city-hero p,
        .city-section p {
            font-size: 15px;
        }

        .banner-info {
            flex-direction: column;
        }

        .info-box,
        .city-quote-btn {
            width: 100%;
        }

        .city-section,
        .city-side-card,
        .city-contact-card,
        .city-cta-band {
            padding: 22px 18px;
        }

        .city-section h2,
        .city-cta-band h2 {
            font-size: 24px;
        }

        .city-stat-grid {
            grid-template-columns: 1fr;
        }

        .city-process-item {
            flex-direction: column;
        }

        .city-map-frame iframe {
            min-height: 320px;
        }
    }

/* Extracted from application/modules/reviews/views/reviewmodal.php */
.rating {
        display: flex;
        width: 100%;
        justify-content: center;
        overflow: hidden;
        flex-direction: row-reverse;
        position: relative;
    }

    .rating>input {
        display: none;
    }

    .rating>label {
        cursor: pointer;
        width: 40px;
        height: 40px;
        margin-top: auto;
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
        background-repeat: no-repeat;
        background-position: center;
        background-size: 76%;
        transition: .3s;
    }

    .rating>input:checked~label,
    .rating>input:checked~label~label {
        background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
    }

/* Extracted from application/modules/reviews/views/reviews.php */
/* Global Container */
    .our-service-page {
        padding: 30px 0;
        color: #000;
    }

    .fade-in {
        visibility: visible;
        animation: fadeInUp 0.6s ease-in-out;
    }
    .btn:hover {
        background-color: #000;
        color:white;
    }
    /* Button Styling */
    .write-review-btn {
        background-color: #e21b22;
        color: #fff;
        border: none;
        width: 100%;
        font-size: 1rem;
        font-weight: bold;
        border-radius: 5px;
        padding: 10px;
    }

    /* Review Container */
    .single-review {
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 15px;
        margin-bottom: 15px;
        transition: transform 0.3s ease;
        position: relative;
    }

    .single-review:hover {
        transform: scale(1.02);
    }

    .review-icon {
        align-self: center;
        max-width: 70px;
        margin-bottom: 10px;
    }

    .review-img {
        width: 100%;
        border-radius: 50%;
    }

    /* Review Content */
    .review-content {
        flex-grow: 1;
    }

    .review-author {
        color: #f4854a;
        font-size: 0.9rem;
    }

    .author-name {
        background-color: #000;
        padding: 3px;
        border-radius: 5px;
        color: #fff;
    }

    .review-date {
        color: #555;
        font-size: 0.8rem;
    }

    .review-rating {
        margin-top: 10px;
    }

    .rating-value {
        color: #000;
        font-weight: bold;
    }

    .review-title {
        font-weight: bold;
        color: #000;
        margin-top: 5px;
        font-size: 1.1rem;
    }

    .review-body {
        color: #000;
        margin: 5px 0;
    }

    .review-email {
        font-weight: bold;
        color: #555;
    }

    .no-reviews-text {
        color: #888;
        text-align: center;
        font-size: 1.2rem;
        margin: 20px auto;
    }

    /* Read More Button */
    .read-more-btn {
        background-color: #007bff;
        color: #fff;
        border: none;
        border-radius: 5px;
        padding: 8px 12px;
        font-size: 0.9rem;
        margin-top: 10px;
        cursor: pointer;
        align-self: flex-start;
        transition: background-color 0.3s;
    }

    .read-more-btn:hover {
        background-color: #0056b3;
    }

/* Extracted from application/modules/reviews/views/single_review.php */
.feature-content-section {
        box-shadow: 15px 15px 25px rgba(0, 0, 0, 0.1);
        color: black;
    }

    .feature-content-section .single-content {
        padding: 25px 15px;
        transition: .5s;
        margin-bottom: 30px;
        background-color: white;
        border-radius: 12px;
    }

    .content-text {
        padding: 0 10px 0 0;
    }


    .feature-content-section .content-text h4 {
        font-size: 20px;
        font-weight: 500;
        color: #444;
        padding: 0px 0 4px;
    }

    @media (min-width: 992px) and (max-width: 1199px) {
        .feature-content-section .content-text h4 {
            font-size: 18px;
        }
    }

/* Extracted from application/modules/services/views/ac.php */
.breadcrumb-banner {
        position: relative;
        overflow: hidden;
        padding: 30px 0;
        min-height: 260px;
        display: flex;
        align-items: center;

        background-image:
            linear-gradient(90deg,
                rgba(247, 249, 252, .98) 0%,
                rgba(247, 249, 252, .92) 35%,
                rgba(247, 249, 252, .60) 60%,
                rgba(247, 249, 252, .15) 100%),
            url("../images/state/ahmedabad.webp");

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    /* Yellow Circle */

    .breadcrumb-banner:before {

        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #F5C54220;
        border-radius: 50%;
        right: -120px;
        top: -120px;

    }

    /* Blue Wave */

    .breadcrumb-banner:after {

        content: "";
        position: absolute;
        left: -120px;
        bottom: -120px;
        width: 320px;
        height: 320px;
        background: #2E5FA810;
        border-radius: 50%;

    }

    .breadcrumb-nav {

        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        padding: 8px 15px;
        border-radius: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        margin-bottom: 10px;

    }

    .breadcrumb-nav a {

        text-decoration: none;
        color: #1F3F73;
        font-weight: 600;

    }

    .breadcrumb-nav span {

        color: #2E5FA8;
        font-weight: 700;

    }

    .mini-title {

        display: inline-block;
        background: #F5C542;
        color: #1F3F73;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 18px;

    }

    .breadcrumb-banner h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #1E293B;
    }

    .breadcrumb-banner h1 span {
        color: #2E5FA8;
    }

    .breadcrumb-banner p {

        color: #667085;
        font-size: 15px;
        line-height: 1.5;
        max-width: 520px;

    }

    .banner-info {

        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 13px;

    }

    .info-box {

        background: #fff;
        padding: 10px 18px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

    }

    .info-box i {

        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E5FA8;
        color: #fff;
        font-size: 22px;

    }

    .info-box h6 {

        margin: 0;
        color: #1F3F73;
        font-weight: 700;

    }

    .info-box small {

        color: #777;

    }



    @media(max-width:991px) {

        .breadcrumb-banner {

            text-align: center;
            padding: 70px 0;

        }

        .banner-info {

            justify-content: center;

        }

        .breadcrumb-banner h1 {

            font-size: 42px;

        }

        .truck-img {

            margin-top: 40px;

        }

    }

/* Extracted from application/modules/services/views/bike.php */
.breadcrumb-banner {
        position: relative;
        overflow: hidden;
        padding: 30px 0;
        min-height: 260px;
        display: flex;
        align-items: center;

        background-image:
            linear-gradient(90deg,
                rgba(247, 249, 252, .98) 0%,
                rgba(247, 249, 252, .92) 35%,
                rgba(247, 249, 252, .60) 60%,
                rgba(247, 249, 252, .15) 100%),
            url("../images/state/ahmedabad.webp");

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    /* Yellow Circle */

    .breadcrumb-banner:before {

        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #F5C54220;
        border-radius: 50%;
        right: -120px;
        top: -120px;

    }

    /* Blue Wave */

    .breadcrumb-banner:after {

        content: "";
        position: absolute;
        left: -120px;
        bottom: -120px;
        width: 320px;
        height: 320px;
        background: #2E5FA810;
        border-radius: 50%;

    }

    .breadcrumb-nav {

        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        padding: 8px 15px;
        border-radius: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        margin-bottom: 10px;

    }

    .breadcrumb-nav a {

        text-decoration: none;
        color: #1F3F73;
        font-weight: 600;

    }

    .breadcrumb-nav span {

        color: #2E5FA8;
        font-weight: 700;

    }

    .mini-title {

        display: inline-block;
        background: #F5C542;
        color: #1F3F73;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 18px;

    }

    .breadcrumb-banner h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #1E293B;
    }

    .breadcrumb-banner h1 span {
        color: #2E5FA8;
    }

    .breadcrumb-banner p {

        color: #667085;
        font-size: 15px;
        line-height: 1.5;
        max-width: 520px;

    }

    .banner-info {

        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 13px;

    }

    .info-box {

        background: #fff;
        padding: 10px 18px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

    }

    .info-box i {

        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E5FA8;
        color: #fff;
        font-size: 22px;

    }

    .info-box h6 {

        margin: 0;
        color: #1F3F73;
        font-weight: 700;

    }

    .info-box small {

        color: #777;

    }



    @media(max-width:991px) {

        .breadcrumb-banner {

            text-align: center;
            padding: 70px 0;

        }

        .banner-info {

            justify-content: center;

        }

        .breadcrumb-banner h1 {

            font-size: 42px;

        }

        .truck-img {

            margin-top: 40px;

        }

    }

/* Extracted from application/modules/services/views/car.php */
.breadcrumb-banner {
        position: relative;
        overflow: hidden;
        padding: 30px 0;
        min-height: 260px;
        display: flex;
        align-items: center;

        background-image:
            linear-gradient(90deg,
                rgba(247, 249, 252, .98) 0%,
                rgba(247, 249, 252, .92) 35%,
                rgba(247, 249, 252, .60) 60%,
                rgba(247, 249, 252, .15) 100%),
            url("../images/state/ahmedabad.webp");

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    /* Yellow Circle */

    .breadcrumb-banner:before {

        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #F5C54220;
        border-radius: 50%;
        right: -120px;
        top: -120px;

    }

    /* Blue Wave */

    .breadcrumb-banner:after {

        content: "";
        position: absolute;
        left: -120px;
        bottom: -120px;
        width: 320px;
        height: 320px;
        background: #2E5FA810;
        border-radius: 50%;

    }

    .breadcrumb-nav {

        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        padding: 8px 15px;
        border-radius: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        margin-bottom: 10px;

    }

    .breadcrumb-nav a {

        text-decoration: none;
        color: #1F3F73;
        font-weight: 600;

    }

    .breadcrumb-nav span {

        color: #2E5FA8;
        font-weight: 700;

    }

    .mini-title {

        display: inline-block;
        background: #F5C542;
        color: #1F3F73;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 18px;

    }

    .breadcrumb-banner h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #1E293B;
    }

    .breadcrumb-banner h1 span {
        color: #2E5FA8;
    }

    .breadcrumb-banner p {

        color: #667085;
        font-size: 15px;
        line-height: 1.5;
        max-width: 520px;

    }

    .banner-info {

        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 13px;

    }

    .info-box {

        background: #fff;
        padding: 10px 18px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

    }

    .info-box i {

        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E5FA8;
        color: #fff;
        font-size: 22px;

    }

    .info-box h6 {

        margin: 0;
        color: #1F3F73;
        font-weight: 700;

    }

    .info-box small {

        color: #777;

    }



    @media(max-width:991px) {

        .breadcrumb-banner {

            text-align: center;
            padding: 70px 0;

        }

        .banner-info {

            justify-content: center;

        }

        .breadcrumb-banner h1 {

            font-size: 42px;

        }

        .truck-img {

            margin-top: 40px;

        }

    }

/* Extracted from application/modules/services/views/carpen.php */
.breadcrumb-banner {
        position: relative;
        overflow: hidden;
        padding: 30px 0;
        min-height: 260px;
        display: flex;
        align-items: center;

        background-image:
            linear-gradient(90deg,
                rgba(247, 249, 252, .98) 0%,
                rgba(247, 249, 252, .92) 35%,
                rgba(247, 249, 252, .60) 60%,
                rgba(247, 249, 252, .15) 100%),
            url("../images/state/ahmedabad.webp");

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    /* Yellow Circle */

    .breadcrumb-banner:before {

        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #F5C54220;
        border-radius: 50%;
        right: -120px;
        top: -120px;

    }

    /* Blue Wave */

    .breadcrumb-banner:after {

        content: "";
        position: absolute;
        left: -120px;
        bottom: -120px;
        width: 320px;
        height: 320px;
        background: #2E5FA810;
        border-radius: 50%;

    }

    .breadcrumb-nav {

        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        padding: 8px 15px;
        border-radius: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        margin-bottom: 10px;

    }

    .breadcrumb-nav a {

        text-decoration: none;
        color: #1F3F73;
        font-weight: 600;

    }

    .breadcrumb-nav span {

        color: #2E5FA8;
        font-weight: 700;

    }

    .mini-title {

        display: inline-block;
        background: #F5C542;
        color: #1F3F73;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 18px;

    }

    .breadcrumb-banner h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #1E293B;
    }

    .breadcrumb-banner h1 span {
        color: #2E5FA8;
    }

    .breadcrumb-banner p {

        color: #667085;
        font-size: 15px;
        line-height: 1.5;
        max-width: 520px;

    }

    .banner-info {

        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 13px;

    }

    .info-box {

        background: #fff;
        padding: 10px 18px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

    }

    .info-box i {

        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E5FA8;
        color: #fff;
        font-size: 22px;

    }

    .info-box h6 {

        margin: 0;
        color: #1F3F73;
        font-weight: 700;

    }

    .info-box small {

        color: #777;

    }



    @media(max-width:991px) {

        .breadcrumb-banner {

            text-align: center;
            padding: 70px 0;

        }

        .banner-info {

            justify-content: center;

        }

        .breadcrumb-banner h1 {

            font-size: 42px;

        }

        .truck-img {

            margin-top: 40px;

        }

    }

/* Extracted from application/modules/services/views/commercial.php */
.breadcrumb-banner {
        position: relative;
        overflow: hidden;
        padding: 30px 0;
        min-height: 260px;
        display: flex;
        align-items: center;

        background-image:
            linear-gradient(90deg,
                rgba(247, 249, 252, .98) 0%,
                rgba(247, 249, 252, .92) 35%,
                rgba(247, 249, 252, .60) 60%,
                rgba(247, 249, 252, .15) 100%),
            url("../images/state/ahmedabad.webp");

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    /* Yellow Circle */

    .breadcrumb-banner:before {

        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #F5C54220;
        border-radius: 50%;
        right: -120px;
        top: -120px;

    }

    /* Blue Wave */

    .breadcrumb-banner:after {

        content: "";
        position: absolute;
        left: -120px;
        bottom: -120px;
        width: 320px;
        height: 320px;
        background: #2E5FA810;
        border-radius: 50%;

    }

    .breadcrumb-nav {

        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        padding: 8px 15px;
        border-radius: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        margin-bottom: 10px;

    }

    .breadcrumb-nav a {

        text-decoration: none;
        color: #1F3F73;
        font-weight: 600;

    }

    .breadcrumb-nav span {

        color: #2E5FA8;
        font-weight: 700;

    }

    .mini-title {

        display: inline-block;
        background: #F5C542;
        color: #1F3F73;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 18px;

    }

    .breadcrumb-banner h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #1E293B;
    }

    .breadcrumb-banner h1 span {
        color: #2E5FA8;
    }

    .breadcrumb-banner p {

        color: #667085;
        font-size: 15px;
        line-height: 1.5;
        max-width: 520px;

    }

    .banner-info {

        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 13px;

    }

    .info-box {

        background: #fff;
        padding: 10px 18px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

    }

    .info-box i {

        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E5FA8;
        color: #fff;
        font-size: 22px;

    }

    .info-box h6 {

        margin: 0;
        color: #1F3F73;
        font-weight: 700;

    }

    .info-box small {

        color: #777;

    }



    @media(max-width:991px) {

        .breadcrumb-banner {

            text-align: center;
            padding: 70px 0;

        }

        .banner-info {

            justify-content: center;

        }

        .breadcrumb-banner h1 {

            font-size: 42px;

        }

        .truck-img {

            margin-top: 40px;

        }

    }

/* Extracted from application/modules/services/views/home.php */
.breadcrumb-banner {
        position: relative;
        overflow: hidden;
        padding: 30px 0;
        min-height: 260px;
        display: flex;
        align-items: center;

        background-image:
            linear-gradient(90deg,
                rgba(247, 249, 252, .98) 0%,
                rgba(247, 249, 252, .92) 35%,
                rgba(247, 249, 252, .60) 60%,
                rgba(247, 249, 252, .15) 100%),
            url("../images/state/ahmedabad.webp");

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    .hs-service-body {
        background: #f7f9fc;
        max-width: 100%;
        overflow-x: visible;
    }

    .hs-service-body .row > * {
        min-width: 0;
    }

    .hs-content-box,
    .hs-section-box,
    .hs-side-card,
    .hs-contact-card {
        background: #fff;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
        max-width: 100%;
    }

    .hs-content-box,
    .hs-section-box {
        padding: 30px;
        margin-bottom: 24px;
    }

    .hs-label {
        display: inline-block;
        color: #2E5FA8;
        background: #edf3ff;
        padding: 8px 15px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 14px;
    }

    .hs-content-box h2,
    .hs-section-head h3 {
        color: #172033;
        font-weight: 800;
        line-height: 1.25;
    }

    .hs-content-box h2 {
        font-size: 34px;
        margin-bottom: 14px;
    }

    .hs-content-box p,
    .hs-section-box p {
        color: #667085;
        font-size: 16px;
        line-height: 1.8;
    }

    .hs-feature-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 22px;
    }

    .hs-feature {
        padding: 22px 18px;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: #fbfdff;
    }

    .hs-feature i {
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #2E5FA8;
        color: #fff;
        font-size: 22px;
        margin-bottom: 16px;
    }

    .hs-feature h5 {
        color: #172033;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .hs-feature p {
        font-size: 14px;
        line-height: 1.6;
        margin: 0;
    }

    .hs-image-band {
        position: relative;
        overflow: hidden;
        min-height: 280px;
        border-radius: 8px;
        margin-bottom: 24px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
    }

    .hs-image-band img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
    }

    .hs-image-band div {
        position: absolute;
        left: 24px;
        right: 24px;
        bottom: 24px;
        background: rgba(255, 255, 255, .94);
        border-radius: 8px;
        padding: 18px 20px;
        display: grid;
        gap: 5px;
    }

    .hs-image-band strong {
        color: #172033;
        font-size: 20px;
        font-weight: 800;
    }

    .hs-image-band span {
        color: #667085;
        line-height: 1.6;
    }

    .hs-section-head {
        margin-bottom: 18px;
    }

    .hs-process-table,
    .hs-care-table,
    .hs-price-table {
        margin: 0;
        border: 1px solid #e7edf6;
        width: 100%;
    }

    .hs-service-body .table-responsive {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hs-process-table thead th,
    .hs-price-table thead th {
        background: #172033;
        color: #fff;
        border: 0;
        padding: 15px;
        font-weight: 800;
    }

    .hs-process-table td,
    .hs-care-table td,
    .hs-care-table th,
    .hs-price-table td {
        padding: 16px;
        color: #667085;
        border-color: #e7edf6;
        line-height: 1.6;
    }

    .hs-process-table td:first-child {
        color: #172033;
        font-weight: 800;
        min-width: 170px;
    }

    .hs-process-table td span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 8px;
        background: #F5C542;
        color: #172033;
        margin-right: 8px;
        font-weight: 900;
    }

    .hs-care-table th {
        width: 190px;
        color: #172033;
        background: #fbfdff;
        font-weight: 800;
    }

    .hs-price-table thead th {
        padding: 13px 12px;
        font-size: 14px;
    }

    .hs-price-table td {
        padding: 13px 12px;
        font-size: 14px;
    }

    .hs-price-table td:first-child {
        color: #172033;
        font-weight: 800;
    }

    .hs-price-table td:last-child {
        color: #2E5FA8;
        font-weight: 900;
        text-align: right;
        white-space: nowrap;
    }

    .hs-price-note {
        color: #667085;
        font-size: 13px;
        line-height: 1.65;
        margin: 12px 0 0;
    }

    .hs-list-card {
        height: 100%;
        display: flex;
        gap: 12px;
        padding: 16px;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: #fbfdff;
        color: #172033;
        font-weight: 700;
        line-height: 1.5;
    }

    .hs-list-card i {
        color: #2E5FA8;
        font-size: 19px;
        flex: 0 0 auto;
        margin-top: 2px;
    }

    .hs-cta-strip {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 26px;
        border-radius: 8px;
        background: linear-gradient(135deg, #172033, #2E5FA8);
        color: #fff;
        box-shadow: 0 18px 40px rgba(46, 95, 168, .22);
    }

    .hs-cta-strip span {
        display: block;
        color: #F5C542;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .hs-cta-strip strong {
        display: block;
        font-size: 22px;
        line-height: 1.35;
        max-width: 560px;
    }

    .hs-cta-strip a,
    .hs-call-btn,
    .hs-quote-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 46px;
        border-radius: 8px;
        padding: 12px 18px;
        text-decoration: none;
        font-weight: 800;
        transition: .3s;
    }

    .hs-cta-strip a {
        background: #F5C542;
        color: #172033;
        min-width: 0;
        text-align: center;
        white-space: normal;
    }

    .hs-sidebar {
        position: sticky;
        top: 110px;
        align-self: flex-start;
        display: grid;
        gap: 22px;
    }

    .hs-sidebar-col {
        align-self: stretch !important;
        position: relative;
    }

    .hs-side-card,
    .hs-contact-card {
        padding: 24px;
    }

    .hs-side-card h4,
    .hs-contact-card h4 {
        color: #172033;
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 18px;
    }

    .hs-service-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 10px;
    }

    .hs-service-list a {
        display: flex;
        align-items: center;
        min-width: 0;
        gap: 10px;
        padding: 13px 14px;
        border-radius: 8px;
        background: #f7f9fc;
        color: #172033;
        text-decoration: none;
        font-weight: 800;
        transition: .3s;
    }

    .hs-service-list a:hover {
        background: #2E5FA8;
        color: #fff;
        transform: translateX(4px);
    }

    .hs-service-list a,
    .hs-profit-item,
    .hs-contact-card,
    .hs-call-btn,
    .hs-quote-btn {
        max-width: 100%;
    }

    .hs-profit-item {
        display: flex;
        gap: 13px;
        padding: 14px 0;
        border-bottom: 1px solid #e7edf6;
    }

    .hs-profit-item:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .hs-profit-item i {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #edf3ff;
        color: #2E5FA8;
        font-size: 20px;
    }

    .hs-profit-item strong,
    .hs-profit-item span {
        display: block;
    }

    .hs-profit-item strong {
        color: #172033;
        font-weight: 800;
        margin-bottom: 4px;
    }

    .hs-profit-item span {
        color: #667085;
        line-height: 1.55;
        font-size: 14px;
    }

    .hs-contact-card {
        background:
            linear-gradient(135deg, rgba(23, 32, 51, .96), rgba(46, 95, 168, .94)),
            url("../images/state/gujarat.webp");
        background-size: cover;
        background-position: center;
        color: #fff;
    }

    .hs-contact-card span {
        display: inline-block;
        color: #F5C542;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .hs-contact-card h4 {
        color: #fff;
        margin-bottom: 10px;
    }

    .hs-contact-card p {
        color: #dbe4f2;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .hs-call-btn {
        width: 100%;
        background: #F5C542;
        color: #172033;
        margin-bottom: 10px;
        min-width: 0;
        text-align: center;
        white-space: normal;
    }

    .hs-quote-btn {
        width: 100%;
        background: #fff;
        color: #2E5FA8;
        min-width: 0;
        text-align: center;
        white-space: normal;
    }

    .hs-cta-strip a:hover,
    .hs-call-btn:hover,
    .hs-quote-btn:hover {
        transform: translateY(-3px);
    }

    /* Yellow Circle */

    .breadcrumb-banner:before {

        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #F5C54220;
        border-radius: 50%;
        right: -120px;
        top: -120px;

    }

    /* Blue Wave */

    .breadcrumb-banner:after {

        content: "";
        position: absolute;
        left: -120px;
        bottom: -120px;
        width: 320px;
        height: 320px;
        background: #2E5FA810;
        border-radius: 50%;

    }

    .breadcrumb-nav {

        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        padding: 8px 15px;
        border-radius: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        margin-bottom: 10px;

    }

    .breadcrumb-nav a {

        text-decoration: none;
        color: #1F3F73;
        font-weight: 600;

    }

    .breadcrumb-nav span {

        color: #2E5FA8;
        font-weight: 700;

    }

    .mini-title {

        display: inline-block;
        background: #F5C542;
        color: #1F3F73;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 18px;

    }

    .breadcrumb-banner h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #1E293B;
    }

    .breadcrumb-banner h1 span {
        color: #2E5FA8;
    }

    .breadcrumb-banner p {

        color: #667085;
        font-size: 15px;
        line-height: 1.5;
        max-width: 520px;

    }

    .banner-info {

        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 13px;

    }

    .info-box {

        background: #fff;
        padding: 10px 18px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

    }

    .info-box i {

        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E5FA8;
        color: #fff;
        font-size: 22px;

    }

    .info-box h6 {

        margin: 0;
        color: #1F3F73;
        font-weight: 700;

    }

    .info-box small {

        color: #777;

    }



    @media(max-width:991px) {
        .hs-service-body {
            overflow-x: hidden;
        }

        .breadcrumb-banner {

            text-align: center;
            padding: 70px 0;

        }

        .banner-info {

            justify-content: center;

        }

        .breadcrumb-banner h1 {

            font-size: 42px;

        }

        .truck-img {

            margin-top: 40px;

        }

        .hs-feature-grid {
            grid-template-columns: 1fr;
        }

        .hs-sidebar {
            position: static;
        }

        .hs-service-list a:hover {
            transform: none;
        }

        .hs-cta-strip {
            align-items: flex-start;
            flex-direction: column;
        }

        .hs-cta-strip a {
            width: 100%;
        }

    }

    @media(max-width:576px) {

        .hs-content-box,
        .hs-section-box,
        .hs-side-card,
        .hs-contact-card {
            padding: 22px 18px;
        }

        .hs-process-table td:first-child {
            min-width: 0;
        }

        .hs-content-box h2,
        .hs-section-head h3 {
            font-size: 26px;
        }

        .hs-image-band img {
            height: 260px;
        }

        .hs-image-band div {
            position: relative;
            left: auto;
            right: auto;
            bottom: auto;
            border-radius: 0;
        }

        .hs-care-table th,
        .hs-care-table td {
            display: block;
            width: 100%;
        }

        .hs-cta-strip strong {
            font-size: 20px;
        }

    }

/* Extracted from application/modules/services/views/industry.php */
.breadcrumb-banner {
        position: relative;
        overflow: hidden;
        padding: 30px 0;
        min-height: 260px;
        display: flex;
        align-items: center;

        background-image:
            linear-gradient(90deg,
                rgba(247, 249, 252, .98) 0%,
                rgba(247, 249, 252, .92) 35%,
                rgba(247, 249, 252, .60) 60%,
                rgba(247, 249, 252, .15) 100%),
            url("../images/state/ahmedabad.webp");

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    /* Yellow Circle */

    .breadcrumb-banner:before {

        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #F5C54220;
        border-radius: 50%;
        right: -120px;
        top: -120px;

    }

    /* Blue Wave */

    .breadcrumb-banner:after {

        content: "";
        position: absolute;
        left: -120px;
        bottom: -120px;
        width: 320px;
        height: 320px;
        background: #2E5FA810;
        border-radius: 50%;

    }

    .breadcrumb-nav {

        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        padding: 8px 15px;
        border-radius: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        margin-bottom: 10px;

    }

    .breadcrumb-nav a {

        text-decoration: none;
        color: #1F3F73;
        font-weight: 600;

    }

    .breadcrumb-nav span {

        color: #2E5FA8;
        font-weight: 700;

    }

    .mini-title {

        display: inline-block;
        background: #F5C542;
        color: #1F3F73;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 18px;

    }

    .breadcrumb-banner h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #1E293B;
    }

    .breadcrumb-banner h1 span {
        color: #2E5FA8;
    }

    .breadcrumb-banner p {

        color: #667085;
        font-size: 15px;
        line-height: 1.5;
        max-width: 520px;

    }

    .banner-info {

        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 13px;

    }

    .info-box {

        background: #fff;
        padding: 10px 18px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

    }

    .info-box i {

        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E5FA8;
        color: #fff;
        font-size: 22px;

    }

    .info-box h6 {

        margin: 0;
        color: #1F3F73;
        font-weight: 700;

    }

    .info-box small {

        color: #777;

    }



    @media(max-width:991px) {

        .breadcrumb-banner {

            text-align: center;
            padding: 70px 0;

        }

        .banner-info {

            justify-content: center;

        }

        .breadcrumb-banner h1 {

            font-size: 42px;

        }

        .truck-img {

            margin-top: 40px;

        }

    }

/* Extracted from application/modules/services/views/office.php */
.breadcrumb-banner {
        position: relative;
        overflow: hidden;
        padding: 30px 0;
        min-height: 260px;
        display: flex;
        align-items: center;

        background-image:
            linear-gradient(90deg,
                rgba(247, 249, 252, .98) 0%,
                rgba(247, 249, 252, .92) 35%,
                rgba(247, 249, 252, .60) 60%,
                rgba(247, 249, 252, .15) 100%),
            url("../images/state/ahmedabad.webp");

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    /* Yellow Circle */

    .breadcrumb-banner:before {

        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #F5C54220;
        border-radius: 50%;
        right: -120px;
        top: -120px;

    }

    /* Blue Wave */

    .breadcrumb-banner:after {

        content: "";
        position: absolute;
        left: -120px;
        bottom: -120px;
        width: 320px;
        height: 320px;
        background: #2E5FA810;
        border-radius: 50%;

    }

    .breadcrumb-nav {

        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        padding: 8px 15px;
        border-radius: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        margin-bottom: 10px;

    }

    .breadcrumb-nav a {

        text-decoration: none;
        color: #1F3F73;
        font-weight: 600;

    }

    .breadcrumb-nav span {

        color: #2E5FA8;
        font-weight: 700;

    }

    .mini-title {

        display: inline-block;
        background: #F5C542;
        color: #1F3F73;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 18px;

    }

    .breadcrumb-banner h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #1E293B;
    }

    .breadcrumb-banner h1 span {
        color: #2E5FA8;
    }

    .breadcrumb-banner p {

        color: #667085;
        font-size: 15px;
        line-height: 1.5;
        max-width: 520px;

    }

    .banner-info {

        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 13px;

    }

    .info-box {

        background: #fff;
        padding: 10px 18px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

    }

    .info-box i {

        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E5FA8;
        color: #fff;
        font-size: 22px;

    }

    .info-box h6 {

        margin: 0;
        color: #1F3F73;
        font-weight: 700;

    }

    .info-box small {

        color: #777;

    }



    @media(max-width:991px) {

        .breadcrumb-banner {

            text-align: center;
            padding: 70px 0;

        }

        .banner-info {

            justify-content: center;

        }

        .breadcrumb-banner h1 {

            font-size: 42px;

        }

        .truck-img {

            margin-top: 40px;

        }

    }

/* Extracted from application/modules/services/views/service_body.php */
.hs-service-body {
        background: #f7f9fc;
        max-width: 100%;
        overflow-x: visible;
    }

    .hs-service-body .row > * {
        min-width: 0;
    }

    .hs-content-box,
    .hs-section-box,
    .hs-side-card,
    .hs-contact-card {
        background: #fff;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        box-shadow: 0 16px 34px rgba(15, 23, 42, .06);
        max-width: 100%;
    }

    .hs-content-box,
    .hs-section-box {
        padding: 30px;
        margin-bottom: 24px;
    }

    .hs-label {
        display: inline-block;
        color: #2E5FA8;
        background: #edf3ff;
        padding: 8px 15px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 800;
        text-transform: uppercase;
        margin-bottom: 14px;
    }

    .hs-content-box h2,
    .hs-section-head h3 {
        color: #172033;
        font-weight: 800;
        line-height: 1.25;
    }

    .hs-content-box h2 {
        font-size: 34px;
        margin-bottom: 14px;
    }

    .hs-content-box p,
    .hs-section-box p {
        color: #667085;
        font-size: 16px;
        line-height: 1.8;
    }

    .hs-feature-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 22px;
    }

    .hs-feature {
        padding: 22px 18px;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: #fbfdff;
    }

    .hs-feature i {
        width: 46px;
        height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #2E5FA8;
        color: #fff;
        font-size: 22px;
        margin-bottom: 16px;
    }

    .hs-feature h5 {
        color: #172033;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .hs-feature p {
        font-size: 14px;
        line-height: 1.6;
        margin: 0;
    }

    .hs-image-band {
        position: relative;
        overflow: hidden;
        min-height: 280px;
        border-radius: 8px;
        margin-bottom: 24px;
        box-shadow: 0 18px 40px rgba(15, 23, 42, .12);
    }

    .hs-image-band img {
        width: 100%;
        height: 320px;
        object-fit: cover;
        display: block;
    }

    .hs-image-band div {
        position: absolute;
        left: 24px;
        right: 24px;
        bottom: 24px;
        background: rgba(255, 255, 255, .94);
        border-radius: 8px;
        padding: 18px 20px;
        display: grid;
        gap: 5px;
    }

    .hs-image-band strong {
        color: #172033;
        font-size: 20px;
        font-weight: 800;
    }

    .hs-image-band span {
        color: #667085;
        line-height: 1.6;
    }

    .hs-section-head {
        margin-bottom: 18px;
    }

    .hs-process-table,
    .hs-care-table,
    .hs-price-table {
        margin: 0;
        border: 1px solid #e7edf6;
        width: 100%;
    }

    .hs-service-body .table-responsive {
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hs-process-table thead th,
    .hs-price-table thead th {
        background: #172033;
        color: #fff;
        border: 0;
        padding: 15px;
        font-weight: 800;
    }

    .hs-process-table td,
    .hs-care-table td,
    .hs-care-table th,
    .hs-price-table td {
        padding: 16px;
        color: #667085;
        border-color: #e7edf6;
        line-height: 1.6;
    }

    .hs-process-table td:first-child {
        color: #172033;
        font-weight: 800;
        min-width: 170px;
    }

    .hs-process-table td span {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border-radius: 8px;
        background: #F5C542;
        color: #172033;
        margin-right: 8px;
        font-weight: 900;
    }

    .hs-care-table th {
        width: 190px;
        color: #172033;
        background: #fbfdff;
        font-weight: 800;
    }

    .hs-price-table td:first-child {
        color: #172033;
        font-weight: 800;
    }

    .hs-price-table td:last-child {
        color: #2E5FA8;
        font-weight: 900;
        text-align: right;
        white-space: nowrap;
    }

    .hs-price-note {
        color: #667085;
        font-size: 13px;
        line-height: 1.65;
        margin: 12px 0 0;
    }

    .hs-list-card {
        height: 100%;
        display: flex;
        gap: 12px;
        padding: 16px;
        border: 1px solid #e7edf6;
        border-radius: 8px;
        background: #fbfdff;
        color: #172033;
        font-weight: 700;
        line-height: 1.5;
    }

    .hs-list-card i {
        color: #2E5FA8;
        font-size: 19px;
        flex: 0 0 auto;
        margin-top: 2px;
    }

    .hs-cta-strip {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 18px;
        padding: 26px;
        border-radius: 8px;
        background: linear-gradient(135deg, #172033, #2E5FA8);
        color: #fff;
        box-shadow: 0 18px 40px rgba(46, 95, 168, .22);
    }

    .hs-cta-strip span {
        display: block;
        color: #F5C542;
        font-weight: 800;
        margin-bottom: 5px;
    }

    .hs-cta-strip strong {
        display: block;
        font-size: 22px;
        line-height: 1.35;
        max-width: 560px;
    }

    .hs-cta-strip a,
    .hs-call-btn,
    .hs-quote-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 46px;
        border-radius: 8px;
        padding: 12px 18px;
        text-decoration: none;
        font-weight: 800;
        transition: .3s;
    }

    .hs-cta-strip a {
        background: #F5C542;
        color: #172033;
        min-width: 0;
        text-align: center;
        white-space: normal;
    }

    .hs-sidebar {
        position: sticky;
        top: 110px;
        align-self: flex-start;
        display: grid;
        gap: 22px;
    }

    .hs-sidebar-col {
        align-self: stretch !important;
        position: relative;
    }

    .hs-side-card,
    .hs-contact-card {
        padding: 24px;
    }

    .hs-side-card h4,
    .hs-contact-card h4 {
        color: #172033;
        font-size: 22px;
        font-weight: 800;
        margin-bottom: 18px;
    }

    .hs-service-list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: grid;
        gap: 10px;
    }

    .hs-service-list a {
        display: flex;
        align-items: center;
        min-width: 0;
        gap: 10px;
        padding: 13px 14px;
        border-radius: 8px;
        background: #f7f9fc;
        color: #172033;
        text-decoration: none;
        font-weight: 800;
        transition: .3s;
    }

    .hs-service-list a:hover {
        background: #2E5FA8;
        color: #fff;
        transform: translateX(4px);
    }

    .hs-service-list a,
    .hs-profit-item,
    .hs-contact-card,
    .hs-call-btn,
    .hs-quote-btn {
        max-width: 100%;
    }

    .hs-profit-item {
        display: flex;
        gap: 13px;
        padding: 14px 0;
        border-bottom: 1px solid #e7edf6;
    }

    .hs-profit-item:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .hs-profit-item i {
        width: 40px;
        height: 40px;
        flex: 0 0 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
        background: #edf3ff;
        color: #2E5FA8;
        font-size: 20px;
    }

    .hs-profit-item strong,
    .hs-profit-item span {
        display: block;
    }

    .hs-profit-item strong {
        color: #172033;
        font-weight: 800;
        margin-bottom: 4px;
    }

    .hs-profit-item span {
        color: #667085;
        line-height: 1.55;
        font-size: 14px;
    }

    .hs-contact-card {
        background:
            linear-gradient(135deg, rgba(23, 32, 51, .96), rgba(46, 95, 168, .94)),
            url("../images/state/gujarat.webp");
        background-size: cover;
        background-position: center;
        color: #fff;
    }

    .hs-contact-card span {
        display: inline-block;
        color: #F5C542;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .hs-contact-card h4 {
        color: #fff;
        margin-bottom: 10px;
    }

    .hs-contact-card p {
        color: #dbe4f2;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .hs-call-btn {
        width: 100%;
        background: #F5C542;
        color: #172033;
        margin-bottom: 10px;
        min-width: 0;
        text-align: center;
        white-space: normal;
    }

    .hs-quote-btn {
        width: 100%;
        background: #fff;
        color: #2E5FA8;
        min-width: 0;
        text-align: center;
        white-space: normal;
    }

    .hs-cta-strip a:hover,
    .hs-call-btn:hover,
    .hs-quote-btn:hover {
        transform: translateY(-3px);
    }

    @media(max-width:991px) {
        .hs-service-body {
            overflow-x: hidden;
        }

        .hs-feature-grid {
            grid-template-columns: 1fr;
        }

        .hs-sidebar {
            position: static;
        }

        .hs-service-list a:hover {
            transform: none;
        }

        .hs-cta-strip {
            align-items: flex-start;
            flex-direction: column;
        }

        .hs-cta-strip a {
            width: 100%;
        }
    }

    @media(max-width:576px) {
        .hs-content-box,
        .hs-section-box,
        .hs-side-card,
        .hs-contact-card {
            padding: 22px 18px;
        }

        .hs-process-table td:first-child {
            min-width: 0;
        }

        .hs-content-box h2,
        .hs-section-head h3 {
            font-size: 26px;
        }

        .hs-image-band img {
            height: 260px;
        }

        .hs-image-band div {
            position: relative;
            left: auto;
            right: auto;
            bottom: auto;
            border-radius: 0;
        }

        .hs-care-table th,
        .hs-care-table td {
            display: block;
            width: 100%;
        }

        .hs-cta-strip strong {
            font-size: 20px;
        }
    }

/* Extracted from application/modules/services/views/warehouse.php */
.breadcrumb-banner {
        position: relative;
        overflow: hidden;
        padding: 30px 0;
        min-height: 260px;
        display: flex;
        align-items: center;

        background-image:
            linear-gradient(90deg,
                rgba(247, 249, 252, .98) 0%,
                rgba(247, 249, 252, .92) 35%,
                rgba(247, 249, 252, .60) 60%,
                rgba(247, 249, 252, .15) 100%),
            url("../images/state/ahmedabad.webp");

        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
    }

    /* Yellow Circle */

    .breadcrumb-banner:before {

        content: "";
        position: absolute;
        width: 350px;
        height: 350px;
        background: #F5C54220;
        border-radius: 50%;
        right: -120px;
        top: -120px;

    }

    /* Blue Wave */

    .breadcrumb-banner:after {

        content: "";
        position: absolute;
        left: -120px;
        bottom: -120px;
        width: 320px;
        height: 320px;
        background: #2E5FA810;
        border-radius: 50%;

    }

    .breadcrumb-nav {

        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #fff;
        padding: 8px 15px;
        border-radius: 40px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
        margin-bottom: 10px;

    }

    .breadcrumb-nav a {

        text-decoration: none;
        color: #1F3F73;
        font-weight: 600;

    }

    .breadcrumb-nav span {

        color: #2E5FA8;
        font-weight: 700;

    }

    .mini-title {

        display: inline-block;
        background: #F5C542;
        color: #1F3F73;
        padding: 8px 15px;
        border-radius: 30px;
        font-weight: 700;
        margin-bottom: 18px;

    }

    .breadcrumb-banner h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 12px;
        color: #1E293B;
    }

    .breadcrumb-banner h1 span {
        color: #2E5FA8;
    }

    .breadcrumb-banner p {

        color: #667085;
        font-size: 15px;
        line-height: 1.5;
        max-width: 520px;

    }

    .banner-info {

        display: flex;
        gap: 18px;
        flex-wrap: wrap;
        margin-top: 13px;

    }

    .info-box {

        background: #fff;
        padding: 10px 18px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        gap: 15px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

    }

    .info-box i {

        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #2E5FA8;
        color: #fff;
        font-size: 22px;

    }

    .info-box h6 {

        margin: 0;
        color: #1F3F73;
        font-weight: 700;

    }

    .info-box small {

        color: #777;

    }



    @media(max-width:991px) {

        .breadcrumb-banner {

            text-align: center;
            padding: 70px 0;

        }

        .banner-info {

            justify-content: center;

        }

        .breadcrumb-banner h1 {

            font-size: 42px;

        }

        .truck-img {

            margin-top: 40px;

        }

    }

/* Extracted from application/modules/template/views/footer.php */
.footer{

    background:#0f172a;
    color:#cbd5e1;
    padding:80px 0 20px;
    position:relative;

}

.footer-logo img{

    height:60px;
    margin-bottom:20px;

}

.footer-about{

    line-height:1.9;
    color:#94a3b8;
    margin-bottom:30px;

}

.footer h5{

    color:#fff;
    font-size:22px;
    margin-bottom:25px;
    font-weight:700;

}

.footer ul{

    padding:0;
    margin:0;
    list-style:none;

}

.footer ul li{

    margin-bottom:14px;

}

.footer ul li a{

    color:#94a3b8;
    text-decoration:none;
    transition:.35s;

}

.footer ul li a:hover{

    color:#FFC928;
    padding-left:8px;

}

.social-links{

    display:flex;
    gap:12px;

}

.social-links a{

    width:45px;
    height:45px;
    background:#1e293b;
    color:#fff;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.35s;

}

.social-links a:hover{

    background:#355FA8;
    transform:translateY(-6px);

}

.footer-contact{

    display:flex;
    flex-direction:column;
    gap:22px;

}

.contact-item{

    display:flex;
    gap:15px;

}

.contact-item i{

    width:48px;
    height:48px;
    border-radius:12px;
    background:#1e293b;
    color:#FFC928;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:20px;

}

.contact-item strong{

    color:#fff;

}

.contact-item p{

    margin:3px 0 0;
    color:#94a3b8;

}

.footer hr{

    margin:60px 0 25px;
    border-color:#334155;

}

.footer-bottom{

    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:15px;

}

.footer-bottom p{

    margin:0;
    color:#94a3b8;

}

.footer-bottom a{

    color:#94a3b8;
    text-decoration:none;
    transition:.3s;

}

.footer-bottom a:hover{

    color:#FFC928;

}

.back-top{

    position:absolute;
    right:35px;
    top:-25px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:#355FA8;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:22px;
    box-shadow:0 10px 30px rgba(53,95,168,.35);
    transition:.35s;

}

.back-top:hover{

    background:#FFC928;
    color:#222;
    transform:translateY(-6px);

}

@media(max-width:991px){

.footer{

padding-top:60px;

}

.footer-bottom{

flex-direction:column;
text-align:center;

}

.back-top{

right:20px;

}

}

/* Extracted from application/modules/template/views/header_error.php */
.uk-sticky-fixed {animation-duration: 0.3s;}
.quickqbtn{position:fixed;z-index:99;bottom:1%;left:1.5%;padding:5px 0px 0px 7px;height:35px;width:155px;color:#fff;background-image: linear-gradient(-20deg, #fc6076 0%, #ff9a44 100%);}
.quickqbtn a {color:#fff;font-size: 14px;}
.services-carousel-single-item{padding:5px}
.blinking{animation:blinkingText 1.5s infinite;padding: 10px;border-radius: 10px;}
@keyframes blinkingText{
	0%{		border: 2px solid #f7b1b1;	}
	49%{	border: 2px solid #ee6262;	}
	50%{	border: 2px solid #da0202;	}
	99%{	border: 2px solid #f33535;	}
	100%{	border: 2px solid #f79393;	}
}

/* Extracted from application/modules/template/views/navigation.php */
:root {

    --sec-col: #f6cc07;

  }

  #top-header {
    font-family: 'Inter', --system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    max-width: 100%;
    overflow-x: hidden;
  }

  .navbar {
    max-width: 100%;
    overflow: visible;
  }

  .header-link {
    font-size: 15px;
    apple font-weight: 500;
    letter-spacing: 0.2px;
    transition: opacity 0.2s ease;
  }

  .header-link:hover {
    opacity: 0.7;
    color: #000 !important;
  }

  /* Social Icon Styling */
  .social-icon-link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.2s ease;
    font-size: 14px;
    border: 1px solid var(--sec-col);
  }

  .social-icon-link:hover {
    background-color: #000;
    color: #ffc107 !important;
    transform: scale(1.05);
  }

  #top-header .bi {
    font-size: 14px;
  }

  .navbar {
    font-family: var(--bs-body-font-family, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif);
  }

  .navbar-brand img {
    max-width: min(190px, 58vw);
  }

  .nav-link {
    font-size: 16px;
    font-weight: 600;
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
    color: #1a1a1a !important;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
  }

  .nav-link:hover {
    color: #dc3545 !important;
  }

  .dropdown-toggle::after {
    display: none;
  }

  .dropdown-menu {
    border-radius: 12px;
    margin-top: 0px !important;
    background-color: #ffffff !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12) !important;
    border: none !important;
  }

  .dropdown-item {
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    font-size: 15px;
    color: #1a1a1a !important;
    transition: all 0.3s ease;

    background-color: transparent !important;
  }

  .dropdown-item:hover {
    background-color: #fff5f5 !important;
    color: #dc3545 !important;
    padding-left: 1.8rem;
  }


  .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
  }

  /* Button Style */
  .btn-red-solid {
    display: inline-block;
    border: none;
    color: #ffffff !important;
    background-color: #dc3545;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
  }

  .btn-red-solid:hover {
    background-color: #bd2130;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(220, 53, 69, 0.3);
  }

  @media (min-width: 992px) {
    .navbar {
      height: 90px;
    }
  }

  @media (max-width: 991px) {
    #top-header {
      padding-top: 6px !important;
      padding-bottom: 6px !important;
    }

    #top-header .container {
      padding-left: 12px;
      padding-right: 12px;
    }

    #top-header .row {
      --bs-gutter-x: 0;
      margin-left: 0;
      margin-right: 0;
    }

    .top-social-col,
    .top-email-link,
    .top-header-divider {
      display: none !important;
    }

    .top-contact-col {
      width: 100%;
      padding-left: 0;
      padding-right: 0;
    }

    .top-contact-row {
      justify-content: center !important;
      align-items: center !important;
      gap: 0 !important;
    }

    .top-phone-link {
      width: 100%;
      justify-content: center;
      min-width: 0;
      white-space: normal;
      font-size: 15px;
      line-height: 1.2;
    }

    .top-phone-link span {
      min-width: 0;
      overflow-wrap: anywhere;
    }

    .navbar {
      min-height: 72px !important;
      overflow-x: hidden;
      overflow-y: visible;
    }

    .navbar>.container {
      max-width: 100%;
    }
  }


  /* Mobile Offcanvas Menu */
  #mobileMenu {
    width: min(320px, 88vw);
    max-width: 100vw;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
  }

  #mobileMenu,
  .mobile-nav-content,
  .dropdown-collapse-content {
    overflow-x: hidden;
  }

  .mobile-nav-item {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 14px 24px;
    color: #444;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
  }

  .mobile-nav-item:hover,
  .mobile-nav-item.active {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
    border-left-color: #dc3545;
  }

  .mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    color: #444;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s ease;
    border-left: 4px solid transparent;
  }

  #mobileMenu .dropdown-item,
  .mobile-dropdown-toggle span {
    min-width: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .mobile-dropdown-toggle:hover {
    background: rgba(0, 0, 0, 0.02);
  }

  .chevron-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
  }

  .mobile-dropdown-toggle[aria-expanded="true"] {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.03);
  }

  .mobile-dropdown-toggle[aria-expanded="true"] .chevron-icon {
    transform: rotate(180deg);
  }

  /* Dropdown Sub-items */
  .mobile-dropdown-item {
    display: block;
    padding: 10px 0;
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

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

  .mobile-dropdown-item:hover {
    color: #dc3545;
  }

  .mobile-call-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 8px;
    background: var(--primary-color);
    color: var(--sec-col);
    text-decoration: none;
    font-weight: 800;
    min-width: 0;
    text-align: center;
    white-space: normal;
  }

  .mobile-call-link:hover {
    color: var(--sec-col);
    opacity: .9;
  }

  /* Utility Classes */
  .pulse {
    animation: pulse-red 2s infinite;
  }

  .icon-coll {
    color: #4a71b4;
    font-weight: bold;
  }

  @keyframes pulse-red {
    0% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7);
    }

    70% {
      transform: scale(1.02);
      box-shadow: 0 0 0 10px rgba(220, 53, 69, 0);
    }

    100% {
      transform: scale(1);
      box-shadow: 0 0 0 0 rgba(220, 53, 69, 0);
    }
  }

  .offcanvas-header .btn-close:focus {
    box-shadow: none;
  }

/* Extracted from application/modules/template/views/slider.php */
.move-hero-slider {
        --move-logo-blue: #4f79bd;
        --move-logo-blue-dark: #293654;
        --move-logo-blue-deep: #17233c;
        --move-logo-blue-light: #7fb1d6;
        --move-logo-yellow: #ffd322;
        position: relative;
        overflow: hidden;
        background: var(--move-logo-blue-deep);
        color: #fff;
    }

    .move-hero-slide {
        min-height: 620px;
        position: relative;
        isolation: isolate;
        background:
            linear-gradient(105deg, rgba(23, 35, 60, 0.95) 0%, rgba(41, 54, 84, 0.88) 48%, rgba(79, 121, 189, 0.62) 100%),
            url("../images/service/homes.webp");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }

    .move-hero-slide::before,
    .move-hero-slide::after {
        content: "";
        position: absolute;
        inset: auto;
        z-index: -1;
        pointer-events: none;
    }

    .move-hero-slide::before {
        width: 46%;
        height: 72%;
        right: -8%;
        bottom: -18%;
        background: rgba(127, 177, 214, 0.24);
        transform: rotate(-12deg);
    }

    .move-hero-slide::after {
        width: 280px;
        height: 280px;
        left: 48%;
        top: 14%;
        border: 40px solid rgba(255, 255, 255, 0.08);
        border-radius: 50%;
    }

    .min-vh-hero {
        min-height: 620px;
        padding: 64px 0 72px;
    }

    .move-hero-copy {
        max-width: 760px;
    }

    .move-hero-kicker {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
        padding: 8px 14px;
        border: 1px solid rgba(255, 255, 255, 0.22);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.08);
        color: var(--move-logo-yellow);
        font-size: 14px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0;
    }

    .move-hero-kicker::before {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: var(--move-logo-yellow);
        box-shadow: 0 0 0 5px rgba(255, 211, 34, 0.2);
    }

    .move-hero-copy h1 {
        max-width: 780px;
        margin: 0 0 18px;
        color: #fff;
        font-size: clamp(38px, 5vw, 68px);
        line-height: 1.04;
        font-weight: 800;
        letter-spacing: 0;
    }

    .move-hero-copy p {
        max-width: 650px;
        margin: 0;
        color: rgba(255, 255, 255, 0.86);
        font-size: 18px;
        line-height: 1.75;
    }

    .move-hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 32px;
    }

    .move-hero-actions .btn {
        min-height: 52px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border-radius: 8px;
        font-weight: 700;
        line-height: 1.1;
        white-space: nowrap;
    }

    .move-hero-primary {
        padding: 14px 22px;
        border: 1px solid var(--move-logo-yellow);
        background: var(--move-logo-yellow);
        color: var(--move-logo-blue-deep);
        box-shadow: 0 16px 35px rgba(255, 211, 34, 0.2);
    }

    .move-hero-primary:hover {
        border-color: #ffe063;
        background: #ffe063;
        color: #10192c;
        transform: translateY(-2px);
    }

    .move-hero-secondary {
        padding: 14px 22px;
        border: 1px solid rgba(255, 255, 255, 0.32);
        background: rgba(255, 255, 255, 0.11);
        color: #fff;
        backdrop-filter: blur(12px);
    }

    .move-hero-secondary:hover,
    .move-hero-icon:hover {
        border-color: #fff;
        background: #fff;
        color: var(--move-logo-blue);
    }

    .move-hero-icon {
        width: 52px;
        padding: 0;
        border: 1px solid rgba(255, 255, 255, 0.32);
        background: rgba(255, 255, 255, 0.11);
        color: #fff;
    }

    .move-hero-trust {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-top: 30px;
        color: rgba(255, 255, 255, 0.86);
        font-size: 15px;
        font-weight: 600;
    }

    .move-hero-trust span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }

    .move-hero-trust i {
        color: var(--move-logo-yellow);
    }

    .move-hero-visual {
        min-height: 420px;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 34px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
        backdrop-filter: blur(8px);
    }

    .move-hero-visual img {
        width: min(68%, 270px);
        height: auto;
        filter: brightness(0) invert(1) drop-shadow(0 16px 24px rgba(0, 0, 0, 0.26));
    }

    .move-hero-badge,
    .move-hero-company {
        position: absolute;
        border-radius: 8px;
        background: #fff;
        color: #151515;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
    }

    .move-hero-badge {
        top: 24px;
        left: 24px;
        width: 112px;
        padding: 14px;
    }

    .move-hero-badge span {
        display: block;
        color: var(--move-logo-blue);
        font-size: 28px;
        font-weight: 800;
        line-height: 1;
    }

    .move-hero-badge small,
    .move-hero-company small,
    .move-hero-company a {
        display: block;
    }

    .move-hero-badge small,
    .move-hero-company small {
        color: #5f6368;
        font-size: 13px;
        font-weight: 600;
    }

    .move-hero-company {
        right: 24px;
        bottom: 24px;
        width: min(78%, 300px);
        padding: 16px 18px;
    }

    .move-hero-company strong {
        display: block;
        margin-bottom: 4px;
        font-size: 18px;
        line-height: 1.2;
    }

    .move-hero-company a {
        margin-top: 8px;
        color: var(--move-logo-blue);
        font-weight: 800;
        text-decoration: none;
    }

    .move-hero-control {
        width: 44px;
        height: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        background: rgba(0, 0, 0, 0.38);
        color: #fff;
        font-size: 22px;
        transition: all 0.2s ease;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 7%;
        opacity: 1;
    }

    .carousel-control-prev:hover .move-hero-control,
    .carousel-control-next:hover .move-hero-control {
        background: var(--move-logo-yellow);
        color: var(--move-logo-blue-deep);
    }

    .move-hero-slider .carousel-indicators {
        bottom: 22px;
        margin-bottom: 0;
    }

    .move-hero-slider .carousel-indicators [data-bs-target] {
        width: 34px;
        height: 4px;
        border: 0;
        border-radius: 999px;
        background-color: rgba(255, 255, 255, 0.5);
        opacity: 1;
    }

    .move-hero-slider .carousel-indicators .active {
        background-color: var(--move-logo-yellow);
    }

    .move-hero-slider .move-hero-visual {
        display: none;
    }

    .move-quote-container {
        position: absolute;
        inset: 0;
        z-index: 3;
        pointer-events: none;
    }

    .move-quote-container .row {
        pointer-events: none;
    }

    .move-quote-container .col-lg-5,
    .move-quote-container .service-quote-card,
    .move-quote-container .service-quote-card * {
        pointer-events: auto;
    }

    .move-quote-panel {
        max-width: 430px;
        margin-left: auto;
        border-radius: 8px;
        background: #fff;
        color: var(--move-logo-blue-deep);
        box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
        overflow: hidden;
        pointer-events: auto;
    }

    .move-quote-header {
        padding: 18px 22px;
        background:
            linear-gradient(135deg, rgba(79, 121, 189, 0.96), rgba(41, 54, 84, 0.98)),
            linear-gradient(90deg, transparent, rgba(255, 211, 34, 0.2));
        color: #fff;
    }

    .move-quote-header span {
        display: inline-flex;
        margin-bottom: 6px;
        padding: 5px 9px;
        border-radius: 8px;
        background: var(--move-logo-yellow);
        color: var(--move-logo-blue-deep);
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .move-quote-header h2 {
        margin: 0 0 8px;
        color: #fff;
        font-size: 24px;
        line-height: 1.15;
        font-weight: 800;
        letter-spacing: 0;
    }

    .move-quote-header p {
        margin: 0 0 12px;
        color: rgba(255, 255, 255, 0.82);
        font-size: 15px;
        line-height: 1.55;
    }

    .move-quote-header a,
    .move-form-alt-phone {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--move-logo-yellow);
        font-weight: 800;
        text-decoration: none;
    }

    .move-slider-form {
        padding: 18px 22px 20px;
    }

    .move-slider-form .row {
        --bs-gutter-x: 0.65rem;
        --bs-gutter-y: 0.65rem;
    }

    .move-form-field {
        position: relative;
    }

    .move-form-field i {
        position: absolute;
        top: 50%;
        left: 13px;
        z-index: 2;
        color: var(--move-logo-blue);
        font-size: 14px;
        transform: translateY(-50%);
    }

    .move-form-textarea i {
        top: 18px;
        transform: none;
    }

    .move-slider-form .form-control {
        min-height: 42px;
        padding-left: 38px;
        border: 1px solid #d9e2ef;
        border-radius: 8px;
        color: var(--move-logo-blue-deep);
        font-size: 14px;
        font-weight: 600;
        box-shadow: none;
    }

    .move-slider-form textarea.form-control {
        min-height: 74px;
        padding-top: 12px;
        resize: none;
    }

    .move-slider-form .form-control:focus {
        border-color: var(--move-logo-blue);
        box-shadow: 0 0 0 4px rgba(79, 121, 189, 0.14);
    }

    .move-slider-form .form-control::placeholder {
        color: #7a8495;
        font-weight: 500;
    }

    .move-form-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 12px;
    }

    .move-form-actions .btn {
        min-height: 42px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        border-radius: 8px;
        font-weight: 800;
    }

    .move-form-submit {
        flex: 1 1 180px;
        border: 1px solid var(--move-logo-yellow);
        background: var(--move-logo-yellow);
        color: var(--move-logo-blue-deep);
    }

    .move-form-submit:hover {
        border-color: #ffe063;
        background: #ffe063;
        color: var(--move-logo-blue-deep);
    }

    .move-form-clear {
        flex: 1 1 120px;
        border: 1px solid #d9e2ef;
        background: #f7f9fc;
        color: #516078;
    }

    .move-form-clear:hover {
        border-color: var(--move-logo-blue-light);
        background: #eef5fb;
        color: var(--move-logo-blue-dark);
    }

    .move-form-alt-phone {
        margin-top: 16px;
        color: var(--move-logo-blue);
    }

    .move-form-result {
        margin-top: 10px;
    }

    .move-form-message {
        padding: 10px 12px;
        border-radius: 8px;
        font-weight: 700;
        font-size: 14px;
    }

    .move-form-wait {
        background: #fff8d9;
        color: #6f5700;
    }

    .move-form-success {
        background: #eaf6ee;
        color: #226b38;
    }

    .move-stats-container {
        position: relative;
        margin-top: 0;
        padding-bottom: 22px;
        z-index: 5;
        pointer-events: none;
    }

    .move-stats-row {
        width: 100%;
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        overflow-x: auto;
        overflow-y: hidden;
        border-radius: 28px;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
        scrollbar-width: none;
        pointer-events: auto;
    }

    .move-stats-row::-webkit-scrollbar {
        display: none;
    }

    .move-stat-item {
        min-width: 150px;
        min-height: 68px;
        flex: 1 0 150px;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 12px 18px;
        color: var(--move-logo-blue-deep);
        border-right: 1px solid #e7eaf0;
        white-space: nowrap;
    }

    .move-stat-item:last-child {
        border-right: 0;
    }

    .move-stat-icon {
        width: 38px;
        height: 38px;
        flex: 0 0 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border: 1.5px solid #ff253a;
        border-radius: 50%;
        color: #ff253a;
        font-size: 18px;
        line-height: 1;
    }

    .move-google-icon {
        font-family: Arial, sans-serif;
        font-size: 20px;
        font-weight: 800;
        color: #4285f4;
    }

    .move-stat-copy {
        min-width: 0;
        display: grid;
        gap: 1px;
    }

    .move-stat-copy strong {
        display: block;
        color: var(--move-logo-blue-deep);
        font-size: 17px;
        line-height: 1.05;
        font-weight: 900;
    }

    .move-stat-copy span {
        display: block;
        color: #293654;
        font-size: 11px;
        line-height: 1.15;
        font-weight: 800;
    }

    .move-stat-rating {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .move-stat-stars {
        color: #f7a600 !important;
        font-size: 12px !important;
        letter-spacing: 0;
        line-height: 1;
    }

    @media (max-width: 991.98px) {
        .move-hero-slide,
        .min-vh-hero {
            min-height: auto;
        }

        .min-vh-hero {
            padding: 48px 0 76px;
        }

        .move-hero-copy h1 {
            font-size: 38px;
        }

        .move-hero-copy p {
            font-size: 16px;
        }

        .move-hero-visual {
            min-height: 320px;
        }

        .carousel-control-prev,
        .carousel-control-next {
            display: none;
        }

        .move-quote-container {
            position: relative;
            inset: auto;
            padding-bottom: 18px;
        }

        .move-quote-container .min-vh-hero {
            padding: 0;
        }

        .move-stats-container {
            position: relative;
            margin-top: 0;
            padding: 0 0 26px;
        }

        .move-stats-row {
            border-radius: 18px;
        }

        .move-stat-item {
            min-width: 144px;
            flex-basis: 144px;
            padding: 11px 14px;
        }
    }

    @media (max-width: 575.98px) {
        .move-hero-copy h1 {
            font-size: 32px;
            line-height: 1.12;
        }

        .move-hero-actions {
            display: grid;
            grid-template-columns: 1fr;
        }

        .move-hero-actions .btn,
        .move-hero-icon {
            width: 100%;
        }

        .move-hero-trust {
            display: grid;
            gap: 10px;
        }

        .move-hero-visual {
            padding: 24px;
        }

        .move-quote-header,
        .move-slider-form {
            padding-left: 18px;
            padding-right: 18px;
        }

        .move-form-actions {
            display: grid;
            grid-template-columns: 1fr;
        }

        .move-form-actions .btn {
            width: 100%;
        }

        .move-hero-badge {
            top: 16px;
            left: 16px;
        }

        .move-hero-company {
            right: 16px;
            bottom: 16px;
            width: calc(100% - 32px);
        }

        .move-stats-container .container {
            max-width: 100%;
            padding-right: 8px;
            padding-left: 8px;
        }

        .move-stats-row {
            border-radius: 16px;
        }

        .move-stat-item {
            min-width: 132px;
            min-height: 62px;
            flex-basis: 132px;
            gap: 9px;
            padding: 9px 11px;
        }

        .move-stat-icon {
            width: 34px;
            height: 34px;
            flex-basis: 34px;
            font-size: 16px;
        }

        .move-stat-copy strong {
            font-size: 15px;
        }

        .move-stat-copy span {
            font-size: 10px;
        }

        .move-stat-stars {
            font-size: 10px !important;
        }
    }

/* Extracted from application/navigation.php */
#top-header {
    font-family: 'Inter', --system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  }

  .header-link {
    font-size: 15px;apple
    font-weight: 500; 
    letter-spacing: 0.2px;
    transition: opacity 0.2s ease;
  }
  
  .header-link:hover {
    opacity: 0.7;
    color: #000 !important;
  }

  /* Social Icon Styling */
  .social-icon-link {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: all 0.2s ease;
    font-size: 14px;
    border: 1px solid rgba(0, 0, 0, 0.1);
  }

  .social-icon-link:hover {
    background-color: #000;
    color: #ffc107 !important; 
    transform: scale(1.05);
  }

  #top-header .bi {
    font-size: 14px;
  }

  .navbar {
    font-family: var(--bs-body-font-family, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif);
  }

  .nav-link {
    font-size: 16px;
    font-weight: 600; 
    padding-left: 1.2rem !important;
    padding-right: 1.2rem !important;
    color: #1a1a1a !important;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
  }
  
  .nav-link:hover {
    color: #dc3545 !important;
  }

  .dropdown-toggle::after {
    display: none; 
  }

  .dropdown-menu {
    border-radius: 12px;
    margin-top: 0px !important;
    background-color: #ffffff !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.12) !important;
    border: none !important;
  }

  .dropdown-item {
    font-weight: 600; 
    padding: 0.7rem 1.5rem;
    font-size: 15px;
    color: #1a1a1a !important;
   transition:all 0.3s ease;

    background-color: transparent !important;
  }

  .dropdown-item:hover {
    background-color: #fff5f5 !important;
    color: #dc3545 !important;
    padding-left: 1.8rem;
  }


 .nav-item.dropdown:hover .dropdown-menu{
    display:block;
    margin-top:0;
 }

  /* Button Style */
  .btn-red-solid {
    display: inline-block;
    border: none;
    color: #ffffff !important;
    background-color: #dc3545;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.2);
  }

  .btn-red-solid:hover {
    background-color: #bd2130;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(220, 53, 69, 0.3);
  }
  
  @media (min-width: 992px) {
    .navbar {
      height: 90px; 
    }
  }

  
 /* Mobile Offcanvas Menu */
  #mobileMenu {
    width: 320px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
 }

 .mobile-nav-item {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    color: #444;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.2s ease;
    border-left: 4px solid transparent;
   } 

   .mobile-nav-item:hover, .mobile-nav-item.active {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.05);
    border-left-color: #dc3545;
  }

 .mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
    color: #444;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s ease;
    border-left: 4px solid transparent;
  }

 .mobile-dropdown-toggle:hover {
    background: rgba(0,0,0,0.02);
 }

 .chevron-icon {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
 }

 .mobile-dropdown-toggle[aria-expanded="true"] {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.03);
 }

  .mobile-dropdown-toggle[aria-expanded="true"] .chevron-icon {
    transform: rotate(180deg);
  }

 /* Dropdown Sub-items */
 .mobile-dropdown-item {
    display: block;
    padding: 10px 0;
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
  }

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

 .mobile-dropdown-item:hover {
    color: #dc3545;
 }

 /* Utility Classes */
 .pulse {
    animation: pulse-red 2s infinite;
 }

  @keyframes pulse-red {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 10px rgba(220, 53, 69, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(220, 53, 69, 0); }
 }

 .offcanvas-header .btn-close:focus {
    box-shadow: none;
  }
/* === End extracted inline page styles from application views === */
/* Shared floating contact buttons */
.floating-contact-actions {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 1055;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.floating-contact-btn {
    min-width: 148px;
    height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    letter-spacing: 0;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .2);
    transition: transform .25s ease, box-shadow .25s ease, color .25s ease;
    pointer-events: auto;
}

.floating-contact-btn i {
    font-size: 19px;
    line-height: 1;
}

.floating-contact-btn:hover {
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, .28);
}

.floating-contact-call {
    background: linear-gradient(135deg, #2E5FA8, #193F78);
}

.floating-contact-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C4A);
}

@media(max-width:576px) {
    .floating-contact-actions {
        left: 12px;
        right: 12px;
        bottom: 12px;
        flex-direction: row;
        gap: 10px;
    }

    .floating-contact-btn {
        min-width: 0;
        flex: 1 1 0;
        height: 46px;
        padding: 0 12px;
        font-size: 14px;
    }
}
