/* Font Awesome v6 compatibility for legacy v7/pro class names in templates. */
.fa-light,
.fa-thin,
.fa-sharp-light{
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.fa-regular,
.fa-sharp-regular{
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.fa-solid,
.fa-sharp,
.fa-sharp-solid{
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}
.fa-brands{
    font-family: "Font Awesome 6 Brands";
    font-weight: 400;
}

/* Legacy class aliases used in templates but unavailable in FA Free set. */
.fa-arrow-up-right::before{
    content: "\f061"; /* fa-arrow-right */
}

#normalHeader {
    position: relative;
    z-index: 10;
    background-color: var(--bb-white-color);
}
#stickyHeader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    background-color: var(--bb-white-color);
}
#stickyHeader.show {
    transform: translateY(0);
}
.header-logo{
    width: 200px;
}
.menu-button{
    height: 50px;
    width: 50px;
    background-color: var(--bb-primary-color);
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-button::before{
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--bb-secondary-color);
    border-radius: inherit;
    transform: scale(0);
    transition: transform 0.35s ease;
}
.menu-button:hover::before{
    transform: scale(1);
}
ul.sub-menu ,span.menu-arrow{
    display: none;
}

.menu-text{
    position: absolute;
    left: 16px;
    white-space: nowrap;
    color: var(--bb-white-color);
    font-size: 14px;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1;
}
.menu-button i{
    position: relative;
    z-index: 1;
    color: var(--bb-white-color);
    font-size: 22px;
    transition: transform 0.45s ease;
}
.menu-button:hover{
    width: 115px;
    justify-content: flex-end;
    padding-right: 16px;
}
.menu-button:hover .menu-text{
    opacity: 1;
    transform: translateX(0);
}
/* Hero Slider */
.bb-hero-slider{
    height: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background:var(--bb-white-color);
}
.bb-slider{
    height:100%;
    position:relative;
}
.bb-slide{
    position:absolute;
    inset:0;
    pointer-events:none;
}
.bb-content-wrap{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1400px;
    height:100%;
    margin:0 auto;
    padding-left:15px;
    display:flex;
    align-items:center;
}
.bb-slide-content{
    width:40%;
    max-width: 550px;
    padding:50px;
    background:rgba(255,255,255,0.55);
    backdrop-filter: blur(15px);
    border-radius:20px;
    transform: translateY(-110%);
    opacity:0;
    will-change: transform, opacity;
}
.bb-slide-image{
    position:absolute;
    top:0;
    right:0;
    width:75%;
    height:100%;
    overflow:hidden;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
.bb-slide-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transform: translateY(110%);
    opacity:0;
    will-change: transform, opacity;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}
.bb-slide.active{
    pointer-events:auto;
}
.bb-slide.active .bb-slide-content{
    transform: translateY(0);
    opacity:1;
    transition: transform 2.2s cubic-bezier(0.22,1,0.36,1), opacity 1.6s ease;
}
.bb-slide.active .bb-slide-image img{
    transform: translateY(0);
    opacity:1;
    transition: 2.5s cubic-bezier(0.22,1,0.36,1), opacity 1.8s ease;
}
.bb-slide.leaving .bb-slide-content{
    transform: translateY(110%);
    opacity:0;
    transition: transform 2s cubic-bezier(0.22,1,0.36,1), opacity 1.6s ease;
}
.bb-slide.leaving .bb-slide-image img{
    transform: translateY(-110%);
    opacity:0;
    transition: transform 2.3s cubic-bezier(0.22,1,0.36,1), opacity 1.8s ease;
}
.bb-slider-dots{
    position: absolute;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 5;
}
.bb-dot{
    position:relative;
    width:10px;
    height:10px;
    border-radius:50%;
    background:#ccc;
    cursor:pointer;
}
.bb-dot.active{
    background:var(--bb-primary-color);
}
.bb-dot svg{
    position:absolute;
    top:-6px;
    left:-6px;
    width:22px;
    height:22px;
    transform:rotate(-90deg);
}
.bb-dot circle{
    fill:none;
    stroke:var(--bb-primary-color);
    stroke-width:2;
    stroke-dasharray:63;
    stroke-dashoffset:63;
}
.bb-dot.active circle{
    animation: progressRing 5s linear forwards;
}
@keyframes progressRing{
    to{
        stroke-dashoffset:0;
    }
}
.footer-logo{
    width: 200px;
}
.footer-heading::after{
    content: "";
    height: 2px;
    width: calc(100% - 30%);
    background-color: #ffffff57;
    position: absolute;
    bottom: -2px;
    left: 0px;
}
.footer-link-list a{
    color: var(--bb-white-color);
    transition: all .3s;
}
.footer-link-list a:hover{
    color: var(--bb-primary-color);
}
.footer-border-top{
    border-top: solid 1px #ffffff57;
}
.social-btn{
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bb-white-color);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.social-btn::before{
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bb-primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.social-btn i{
    position: relative;
    z-index: 1;
    font-size: 16px;
    color: var(--bb-black-color);
    transition: color 0.3s ease;
}
.social-btn:hover::before{
    transform: scale(1);
}
.social-btn:hover i{
    color: var(--bb-white-color);
}
.brands-grid{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    text-align: center;
}
.brand-circle{
    width: 220px;
    height: 220px;
    margin: 0 auto 12px;
    border-radius: 50%;
    position: relative;
    padding: 5px;
    background: linear-gradient(
        180deg,
        #EEE 0%,
        var(--bb-off-white-color) 30%,
        var(--bb-primary-color) 100%
    );
    box-shadow: 0 14px 24px rgba(0,0,0,0.18);
    overflow: hidden;
}
.brand-circle > img:not(.brand-logo){
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}
.brand-overlay{
    position: absolute;
    inset: 5px;
    border-radius: 50%;
    background: rgba(0,0,0,0.70);
    z-index: 1;
}
.brand-logo{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 65%;
    max-height: 65%;
    z-index: 2;
}
.brand-circle{
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.brand-item:hover .brand-circle{
    transform: translateY(-6px);
    box-shadow: 0 22px 34px rgba(0,0,0,0.3);
}
.easy-left-img-container{
    background-size:cover;
    background-position: center;
    border-radius: 30px;
    min-height: 250px;
}
.easy-left-button-wrapper{
    position: absolute;
    left: 0px;
    bottom: 0px;
}
.easy-left-button-wrapper >div{
    background-color: var(--bb-white-color);
    padding: 20px 20px 0 0;
    border-top-right-radius: 30px;
}
.easy-left-button-top-left-shape{
    position: absolute;
    top: -39px;
    left: 0px;
    transform: rotate(90deg);
    width: 40px;
}
.easy-left-button-bottom-right-shape{
    position: absolute;
    bottom: 0px;
    right: -39px;
    transform: rotate(90deg);
    width: 40px;
}
.circle-button{
    position: relative;
    width: 150px;
    height: 150px;
    display: inline-block;
    border-radius: 50%;
    text-decoration: none;
    border: solid 2px var(--bb-off-white-color);
}
.circle-center{
    position: absolute;
    inset: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bb-black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: solid 3px var(--bb-primary-color);
}
.circle-center img{
    width: 65px;
    aspect-ratio: 1.3/1;
    object-fit: cover;
    object-position: top;
}
.circle-text{
    width: 100%;
    height: 100%;
    animation: rotateText 14s linear infinite;
}
.circle-text text{
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
@keyframes rotateText{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}
.custom-layout .item{
    width: 100%;
}
.easy-right-content-wrapper{
    background-color: var(--bb-off-white-color);
    overflow: hidden;
    border-radius: 30px;
}
.easy-right-content-heading-wrapper{
    position: relative;
}
.easy-right-content-heading-wrapper >div{
    background-color: var(--bb-white-color);
    padding: 20px 30px 20px 30px;
    border-bottom-right-radius: 40px;
}
.easy-right-content-top-right-shape{
    position: absolute;
    top: 0px;
    right: -40px;
    width: 40px;
    transform: rotate(180deg);
}
.easy-right-content-bottom-left-shape{
    position: absolute;
    bottom: -40px;
    left: 0px;
    width: 40px;
    transform: rotate(180deg);
}
.easy-right-content-para{
    padding: 20px 30px;
}
.easy-right-img{
    aspect-ratio: 1/.4;
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
}
.franchise-carousel .owl-item,
.franchise-content-box{
    height: auto;
}
.franchise-item{
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    transition: all .4s ease;
    border: 1px solid var(--bb-off-white-color);
    position: relative;
}
.franchise-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    border-radius: 15px;
}
.franchise-carousel .owl-item.center .franchise-item{
    border: 2px solid var(--bb-primary-color);
}
.franchise-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.0) 60%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    pointer-events: none;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
.franchise-overlay-title{
    color: var(--bb-white-color);
    margin: 0;
}
.franchise-content-box-wrapper{
    position: relative;
}
.franchise-content-box{
    opacity: 1;
    transform: translateX(0);
    transition: opacity .4s ease, transform .4s ease;
}
.franchise-content-box.fade-out{
    opacity: 0;
    transform: translateX(40px);
}
.desktop-arrows{
    position: relative;
    display: flex;
    gap: 10px;
    justify-content: end;
}
.desktop-arrows button,
.carousel-mobile-arrows button{
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: solid 1px var(--bb-primary-color);
    background: var(--bb-primary-color);
    color: var(--bb-white-color);
    cursor: pointer;
    font-size: 18px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}
.desktop-arrows button::before, .carousel-mobile-arrows button::before{
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bb-white-color);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.35s cubic-bezier(0.22,1,0.36,1);
}
.desktop-arrows button i, .carousel-mobile-arrows button i{
    position: relative;
    z-index: 1;
    color: var(--bb-white-color);
    transition: color 0.3s ease;
}
.desktop-arrows button:hover::before, .carousel-mobile-arrows button:hover::before{
    transform: scale(1);
}
.desktop-arrows button:hover i, .carousel-mobile-arrows button:hover i{
    color: var(--bb-primary-color);
}
.carousel-bottom-nav{
    margin-top: 20px;
}
.fraction{
    display: flex;
    align-items: center;
    gap: 10px;
}
.fraction .line{
    position: relative;
    width: 45%;
    height: 2px;
    background: rgba(0,0,0,0.18);
    overflow: hidden;
}
.fraction .line::after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--progress, 0%);
    background: var(--bb-black-color);
    transition: width 0.5s ease;
}
.mobile-content{
    display: none;
    padding: 14px 8px 0 8px;
}
.franchise-mobile-btn{
    display: none;
}
.mobile-content p{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}
.custom-faq .accordion-item{
    border: none;
    border-bottom: 1px solid #8E8C8C;
    border-radius: 0px;
}
.custom-faq .accordion-button{
    background: transparent;
    box-shadow: none;
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--bb-black-color);
    font-size: 16px;
}
.custom-faq .accordion-button::after{
    display: none;
}
.faq-number{
    color: var(--bb-primary-color);
    min-width: 40px;
}
.faq-title{
    flex: 1;
}
.faq-icon{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--bb-black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.custom-faq .accordion-item:first-child{
    border-top: solid 1px #8E8C8C;
}
.faq-icon::before, .faq-icon::after{
    content: "";
    position: absolute;
    background: var(--bb-black-color);
    transition: all .3s ease;
}
.faq-icon::before{
    width: 12px;
    height: 2px;
}
.faq-icon::after{
    width: 2px;
    height: 12px;
}
.custom-faq .accordion-button:hover{
    color: var(--bb-primary-color);
}
.custom-faq .accordion-button:not(.collapsed){
    color: var(--bb-primary-color);
}
.custom-faq .accordion-button:not(.collapsed) .faq-icon{
    border-color: var(--bb-primary-color);
}
.custom-faq .accordion-button:not(.collapsed) .faq-icon::before{
    background-color: var(--bb-primary-color);
}
.custom-faq .accordion-button:not(.collapsed) .faq-icon::after{
    opacity: 0; /* plus to minus */
}
.custom-faq .accordion-body{
    padding: 0 0 20px 54px;
    color: var(--bb-black-color);
}
.blog-carousel .owl-stage{
    display: flex;
}
.blog-carousel .owl-item{
    padding-right: 24px;
}
.blog-card{
    height: 100%;
}
.blog-card-inner{
    position: relative;
    display: flex;
    gap: 20px;
    background: var(--bb-white-color);
    border-radius: 30px;
    padding: 20px;
    overflow: hidden;
    transition: color .3s ease;
    border: solid 1px #DDD;
}
.blog-card-inner::before{
    content: "";
    position: absolute;
    inset: 0;
    background: var(--bb-off-white-color);
    border-radius: 50%;
    transform: scale(0);
    transition: transform .6s ease;
    z-index: 0;
}
.blog-card-inner:hover::before{
    transform: scale(3);
}
.blog-image{
    flex: 0 0 40%;
    aspect-ratio: 1 / 1.2;
    border-radius: 18px;
    overflow: hidden;
    z-index: 1;
}
.blog-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}
.blog-card-inner:hover .blog-image img{
    transform: scale(1.2) rotate(5deg);
}
.blog-content{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}
.blog-bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 16px;
}
.blog-date{
    font-size: 13px;
    color: #666;
}
.testimonial-item {
    padding: 30px;
    border: 1px dashed #CCC;
    border-radius: 25px;
    background: transparent;
}
.t-header {
    margin-bottom: 15px;
}
.t-header.no-designation {
    align-items: center;
}
.t-header img {
    width: 52px;
    max-width: 52px;
    height: 52px;
    min-width: 52px;
    min-height: 52px;
    border-radius: 50%;
    object-fit: cover;
}
.t-meta .designation {
    color: #777;
    display: block;
}
.t-content {
    margin-bottom: 16px;
}
.t-meta h4{
    line-height: 1em;
}
.t-stars {
    display: flex;
    gap: 5px;
    font-size: 15px;
    margin-top: auto;
}
.t-stars i {
    color: #cfcfcf;
    transition: color 0.3s ease;
}
.t-stars i.active {
    color: #f4b400;
}
/* Dots */
.testimonial-carousel .owl-theme .owl-dots {
    margin-top: 25px;
}
.testimonial-carousel .owl-theme .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    background: #d0d0d0;
    transition: all 0.3s ease;
}

.testimonial-carousel.owl-theme .owl-dots .owl-dot.active span {
    width: 40px;
    background: var(--bb-black-color);
    border-radius: 10px;
}
.testimonial-carousel .owl-stage {
    display: flex;
    transition-timing-function: linear !important;
}
.testimonial-carousel:hover .owl-stage {
    transition-play-state: paused;
}
.owl-carousel .owl-stage {
    transition-timing-function: linear !important;
}
.testimonial-item {
    transition: transform 0.3s ease;
     display: flex;
    flex-direction: column;
    height: 100%;
}
.testimonial-carousel.owl-carousel .owl-item {
    display: flex;
    padding-left: 2px;
}
.testimonial-carousel.owl-carousel .owl-dots {
    display: block !important;
    text-align: center;
}
#normalHeader.inner-header{
    background-color: transparent !important;
    margin-bottom: -120px;
    height: 120px;
}
#normalHeader.inner-header .menu-button{
    background-color: var(--bb-white-color);
}
#normalHeader.inner-header .menu-text{
    color: var(--bb-primary-color);
}
#normalHeader.inner-header .menu-button i{
    color: var(--bb-primary-color);
}
#normalHeader.inner-header .menu-button:hover .menu-text{
    color: var(--bb-white-color);
}
#normalHeader.inner-header .menu-button:hover i{
    color: var(--bb-white-color);
}
.title-bar .title-bar-wrapper{
    background-color: var(--bb-primary-color);
    min-height: 340px;
    border-radius: 25px;
    background-size: cover;
    background-position: center;
}
.title-bar-button-wrapper{
    background-color: var(--bb-white-color);
    padding: 20px 20px 15px 20px;
    position: absolute;
    bottom: 0px;
    right: 0px;
    border-top-left-radius: 40px;
}
.title-bar .title-bar-wrapper h1{
    margin-right: 30%;
}
.title-bar-top-right-shape{
    width: 40px;
    height: 40px;
    position: absolute;
    top: -39px;
    right: 0;
}
.title-bar-bottom-left-shape{
    width: 40px;
    height: 40px;
    position: absolute;
    bottom: 0px;
    left: -39px;
}
.bramd-form-wrapper{
    border: solid 1px #DDD;
    border-radius: 25px;
}
.form-select {
    padding: 14px 20px;
    outline: none !important;
    box-shadow: none !important;
    border: solid 1px #DDD !important;
    border-radius: 10px !important;
    background-color: var(--bb-white-color) !important;
}
.brand-list-card .card-image{
    position: relative;
    /*aspect-ratio: 1/.6;*/
    border-radius: 20px;
    overflow: hidden;
}
.brand-list-card .card-image > img {
    width: 100%;
    transition: all .3s;
    aspect-ratio: 1 / 0.6;
    object-fit: cover;
}
.brand-list-card .card-logo > img {
    max-width: 100%;
    width: auto;
    
}
.brand-list-card:hover .card-image >img{
    transform: scale(1.1) rotate(5deg);
}
.brand-list-card .card-image{
    position: relative;
}
.brand-list-card .card-image::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
}
.brand-list-card .card-content{
    color: var(--bb-black-color);
    transition: all .3s;
}
.brand-list-card:hover .card-content{
    color: var(--bb-primary-color);
}
.brand-list-card .card-logo{
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 50%;
    /*max-height: 60px;*/
    z-index: 2;
}
.services-grid-images{
    border-radius: 30px;
    aspect-ratio: 1/.6;
    object-fit: cover;
    width: 100%;
}
.service-contact-form-wrapper{
    background-color: var(--bb-off-white-color);
    border-radius: 25px;
}
.form-control {
    border-radius: 10px;
    padding: 14px 20px;
    border: 1px solid #DDD !important;
    box-shadow: none !important;
    outline: none !important;
}
.message-box {
  resize: none;
  min-height: 140px;
}
.contact-form-wrapper{
    background-image: linear-gradient(to bottom, #e0e0e0f6 0%, #e0e0e0f6 100%), url('../images/cate-img.jpg') !important;
    border: solid 1px var(--bb-primary-color);
}
.contact-form-wrapper >div{
    background-color: #6fd1d457;
    border-radius: 15px;
}
.custom-check {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.custom-check input {
    display: none;
}
.custom-check span {
    width: 18px;
    height: 18px;
    border: 2px solid var(--bb-white-color);
    border-radius: 50%;
    display: inline-block;
    position: relative;
}
.custom-check input:checked + span {
    background: var(--bb-primary-color);
}
.custom-check input:checked + span::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--bb-white-color);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.custom-check-group:not(.no){
    border-bottom: solid 1px var(--bb-white-color);
    padding-bottom: 20px;
    margin-bottom: 5px;
}
.contact-info-wrapper{
    border: solid 1px var(--bb-primary-color);
    border-radius: 10px;
    background-color: var(--bb-off-white-color);
    min-height: 150px;
}
.contact-info-list i{
    font-size: 22px;
    color: var(--bb-primary-color);
}
.contact-info-list a{
    color: var(--bb-black-color);
}
.contact-map{
    height: 450px;
}
.blog-grid-card .blog-grid-img-wrapper{
    aspect-ratio: 1 / 0.8;
    max-height: 450px;
    overflow: hidden;
    width: 100%;
    border-radius: 25px;
}
.blog-grid-card .blog-grid-img-wrapper a{
    display: block;
    width: 100%;
    height: 100%;
}
.blog-grid-card .blog-grid-img-wrapper img{
    width: 100%;
    max-height: 450px;
    object-fit: cover;
    transition: all .3s;
    height: 100%;
}
.blog-grid-card:hover .blog-grid-img-wrapper img{
    transform: scale(1.05) rotate(1deg);
}
.blog-grid-card .blog-grid-title{
    transition: all .3s;
    color: var(--bb-black-color);
}
.blog-grid-card .blog-grid-title:hover{
    color: var(--bb-primary-color);
}
.blog-detail-title-wrapper{
    max-width: 70%;
}
.blog-detail-big-img{
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 25px;
}
.blog-detail-small-img{
    aspect-ratio: 1/0.7;
    object-fit: cover;
    border-radius: 25px;
}
.easy-right-content-heading-wrapper.small-box >div{
    padding: 10px 20px 10px 20px;
    border-bottom-right-radius: 20px;
}
.easy-right-content-heading-wrapper.small-box .easy-right-content-top-right-shape{
    top: -10px;
    right: -20px;
    width: 20px;
}
.easy-right-content-heading-wrapper.small-box .easy-right-content-bottom-left-shape{
    bottom: -30px;
    left: 0px;
    width: 20px;
}
.easy-right-content-heading-wrapper.small-box .easy-right-content-top-right-shape svg, .easy-right-content-heading-wrapper.small-box .easy-right-content-bottom-left-shape svg{
    width: 20px;
}
.easy-right-content-wrapper.small-box-wrapper{
    border-radius: 20px;
    transition: all .3s;
}
.easy-right-content-wrapper.small-box-wrapper:hover{
    margin-bottom: 5px;
    margin-top: -5px;
    box-shadow: 0 6px 5px -3px rgba(0, 0, 0, 0.15);
}
.images-card-with-center-heading{
    border-radius: 40px;
}
.image-top-right-side-shape-wrapper{
}
.blank-space-off-white{
    width: 200px;
    height: 100px;
    background-color: var(--bb-off-white-color);
    z-index: 1;
}
.border-top-left-40{
    border-top-left-radius: 39px;
}
.border-bottom-right-40{
    border-bottom-right-radius: 39px;
}
.image-center-heading{
    padding: 100px 30px 150px 30px;
}
.blank-space-off-white.blank-right-side{
    transform: scale(-1, 1);
}
.image-center-heading-center-block{
    padding: 180px 30px 180px 30px;
}
.blank-bottom-left-side{
    transform: scale(1, -1);;
}
.blank-bottom-right-side{
    transform: scale(-1, -1);;
}
.image-bottom-center-heading{
    padding: 150px 30px 100px 30px;
}
.the-bnb-overlay{
    background-color: var(--bb-off-white-color);
    position: absolute;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
    border-radius: 40px;
    top: 0px;
    left: 12px;
    z-index: 0;
}
.z-index-2{
    z-index: 2;
}
.brand-detail-featured-img-with-logo .brand-detail-featured-img{
    aspect-ratio: 1/.8;
    overflow: hidden;
    object-fit: cover;
    border-radius: 25px;
}
.brand-detail-featured-img-with-logo::before{
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.40);
    border-radius: 25px;
    z-index: 1;
}
.brand-detail-featured-img-with-logo .brand-detail-featured-image-logo{
    width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
}
.brand-detail-featured-img-without-logo{
    aspect-ratio: 1/.6;
    overflow: hidden;
    object-fit: cover;
    border-radius: 25px;
}
.info-item {
    display: flex;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid #bdbdbd;
}
.info-number {
    min-width: 32px;
}
.info-text h3 {
    margin: 0;
}
.info-text p {
    margin: 4px 0 0;
}
.brand-detail-image-1-8{
    aspect-ratio: 1/.8;
    overflow: hidden;
    object-fit: cover;
    border-radius: 25px;
}
.benefits-img{
    aspect-ratio: 1/.35;
    overflow: hidden;
    object-fit: cover;
    border-radius: 25px;
}
.filter-tabs {
    border: 1px solid var(--bb-black-color);
    border-radius: 30px;
    padding: 6px;
    display: flex;
    gap: 6px;
}
.filter-tabs button {
    background: transparent;
    border: none;
    padding: 6px 20px;
    border-radius: 200px;
    cursor: pointer;
    transition: all .3s;
    white-space: nowrap;
    flex-shrink: 0;
}
.filter-tabs button.active, .filter-tabs button:hover {
    background: var(--bb-primary-color);
    color: var(--bb-black-color);
}
.gallery-tabs-wrapper{
    margin-left: auto;
    margin-bottom: 25px;
}
.grid-item a {
    overflow: hidden;
    border-radius: 18px;
    display: block;
}
.grid-item img {
    width: 100%;
    aspect-ratio: 1 / 0.8;
    object-fit: cover;
    border-radius: 18px;
    transition: transform 0.4s ease;
}
.grid-item:hover img {
    transform: scale(1.05);
}
.glightbox-clean img {
    max-width: 90vw;
    max-height: 95dvh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    display: block;
}
.glightbox-container {
    overflow: hidden;
}
.fullscreen-menu{
    position:fixed;
    inset:0;
    background: rgba(255, 255, 255, 0.75); /* semi white */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display:flex;
    align-items:center;
    justify-content:center;
    opacity:0;
    visibility:hidden;
    transform:translateY(-50px);
    transition:all .6s ease;
    z-index:9999;
}
.fullscreen-menu.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.menu-wrapper{
    display:flex;
    width:90%;
    height:95%;
    gap:80px;
}
.menu-image{
    flex:1;
    opacity:0;
    transition:opacity .6s ease;
}
.image-mask{
    width:0%;
    overflow:hidden;
    height:100%;
    transition:width 1s cubic-bezier(.77,0,.18,1);
}
.image-mask img{
    width:100%;
    max-width: 400px;
    height:100%;
    object-fit:cover;
    border-radius: 25px;
}
.fullscreen-menu.image-show .menu-image{
    opacity:1;
}
.fullscreen-menu.image-show .image-mask{
    width:100%;
}
.menu-content{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    height:100%;
    min-height:0;
}
.menu-top{
    padding-top:40px;
    flex:1;
    min-height:0;
    overflow-y:auto;
    padding-right:8px;
}
.menu-bottom{
    padding-bottom:40px;
    flex-shrink:0;
}
.menu-contact{
    margin-bottom:30px;
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 10px;
}
.menu-contact a{
    display:inline-block;
    color:#000;
    text-decoration:none;
    margin-bottom:10px;
}
.contact-link{
    position:relative;
    display:inline-block;
    color:var(--bb-black-color);
    text-decoration:none;
    margin-bottom:12px;
}
.contact-line{
    position:absolute;
    left:0;
    bottom:-4px;
    height:1px;
    width:20px;
    background:var(--bb-black-color);
    transition:width .4s ease;
}
.contact-link:hover .contact-line{
    width:100%;
}
.menu-social{
    display:flex;
    justify-content:space-between;
    gap:40px;
}
.menu-social a{
    display:block;
    text-decoration:none;
    color:var(--bb-black-color);
    transition: all .3s;
    margin-bottom:8px;
}
.menu-social a:hover{
    color: var(--bb-primary-color);
}
.main-menu{
    list-style:none;
    padding:0;
    margin:0;
    display:inline-block;
}
.main-menu li{
    margin:0px 0 20px 0;
    opacity:0;
    transform:translateY(30px);
    transition:all .5s ease;
    position: relative;
}
.main-menu li.show{
    opacity:1;
    transform:translateY(0);
}
.has-sub{
    position:relative;
}
.main-menu a{
    text-decoration:none;
    color:var(--bb-black-color);
}
.menu-link{
    position:relative;
    display:inline-flex;
    align-items:center;
    gap:10px;
}
.menu-arrow-toggle{
    border:0;
    background:transparent;
    padding:0;
    margin-left:10px;
    color:var(--bb-black-color);
    cursor:pointer;
}
.menu-line{
    position:absolute;
    left:0;
    bottom:-5px;
    height:1px;
    width:20px;
    background:var(--bb-black-color);
    transition:width .4s ease;
}
.main-menu li:hover .menu-link .menu-line{
    width:100%;
}
.menu-arrow{
    transition:transform .3s ease;
    font-size:16px;
}
.sub-menu{
    list-style: none;
}
.menu-close{
    height: 50px;
    width: 50px;
    background-color: var(--bb-primary-color);
    border-radius: 50px;
    position: absolute;
    top: 20px;
    right: 16px;
    border: none !important;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.menu-close::before{
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--bb-secondary-color);
    border-radius: inherit;
    transform: scale(0);
    transition: transform 0.35s ease;
}
.menu-close:hover::before{
    transform: scale(1);
}
.menu-close .menu-text{
    position: absolute;
    left: 16px;
    white-space: nowrap;
    color: var(--bb-white-color);
    font-size: 14px;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1;
}
.menu-close i{
    position: relative;
    z-index: 1;
    color: var(--bb-white-color);
    font-size: 22px;
    transition: transform 0.45s ease;
}
.menu-close:hover{
    width: 115px;
    justify-content: flex-end;
    padding-right: 16px;
}
.menu-close:hover .menu-text{
    opacity: 1;
    transform: translateX(0);
}
.whatsapp-sticky{
    position:fixed;
    left:30px;
    bottom:100px;
    width:55px;
    height:55px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--bb-white-color);
    font-size:26px;
    text-decoration:none;
    z-index:20;
}
.whatsapp-sticky i{
    background:#25D366;
    width:55px;
    height:55px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    z-index:2;
}
.wa-ripple{
    position:absolute;
    width:55px;
    height:55px;
    border-radius:50%;
    background:rgba(37, 211, 102, 0.3);
    animation:ripple 2s infinite;
    z-index:1;
}
.wa-ripple.delay{
    animation-delay:1s;
}
@keyframes ripple{
    0%{
        transform:scale(1);
        opacity:0.6;
    }
    70%{
        transform:scale(1.8);
        opacity:0;
    }
    100%{
        opacity:0;
    }
}
.enquiry-sticky{
    position: fixed;
    right: 0;
    bottom: 100px;
    width: 30px;
    height: 107px;
    display: none;
    align-items: center;
    justify-content: center;
    color: var(--bb-white-color);
    background: transparent;
    z-index: 20;
    writing-mode: vertical-rl;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    border-radius: 2px;
    font-size: 14px;
    padding: 5px;
    font-weight: 400 !important;
}
.enquiry-sticky-icon{
    background:var(--bb-black-color);
    width:55px;
    height:55px;
    border-radius:50%;
    color:var(--bb-white-color);
    position:relative;
    z-index:2;
    font-size:22px;
}
.enquiry-sticky-ripple{
    position:absolute;
    width:55px;
    height:55px;
    border-radius:50%;
    background:rgba(17, 17, 17, 0.25);
    animation:rippleEnquiry 2s infinite;
    z-index:1;
}
.enquiry-sticky-ripple.delay{
    animation-delay:1s;
}
@keyframes rippleEnquiry{
    0%{
        transform:scale(1);
        opacity:0.6;
    }
    70%{
        transform:scale(1.8);
        opacity:0;
    }
    100%{
        opacity:0;
    }
}
.back-to-top{
    position:fixed;
    right:30px;
    bottom:100px;
    width:60px;
    height:60px;
    border:none;
    border-radius:50%;
    background:var(--bb-primary-color);
    color:var(--bb-black-color);
    font-size:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    z-index:20;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:all .4s ease;
}
.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
.top-ripple{
    position:absolute;
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(127,211,209,0.4);
    animation:rippleTop 2s infinite;
    z-index:1;
}
.top-ripple.delay{
    animation-delay:1s;
}
.back-to-top i{
    position:relative;
    z-index:2;
}
@keyframes rippleTop{
    0%{
        transform:scale(1);
        opacity:0.6;
    }
    70%{
        transform:scale(1.8);
        opacity:0;
    }
    100%{
        opacity:0;
    }
}
.testimonial-wrapper {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    gap: 20px; 
    will-change: transform;
}

.testimonial-group {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

/* FIX: fixed card width instead of % */
.testimonial-item {
    flex: 0 0 450px;
}
.testimonial-item {
    box-sizing: border-box;
}
/* Pause on hover */
.testimonial-wrapper:hover .testimonial-track {
    animation-play-state: paused;
}
.h6.mobile-para {
    font-size: 23px;
    font-weight: 600;
}
.modal-header.border-0 {
    position: absolute;
    top: 0px;
    right: 20px;
    z-index: 1;
}
.modal-header button.btn-close {
    /* background: #b4d6d7; */
    border: 0px;
    border-radius: 50%;
    padding: 15px;
    font-size: 19px;
    color: #fff;
    box-shadow: none;
}
@keyframes scrollTestimonials {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.hero-anim {
    opacity: 0;
    transform: translateY(40px);
}

.bb-slide.active .hero-anim {
    animation: heroFadeUp 0.8s ease forwards;
}

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

@media (max-width: 576px){
    .mob-testimonial-carousel .testimonial-item{
        max-width: 100% !important;
    }
}

/* Thank You Modal */
.thank-you-modal .modal-dialog{
    max-width: 780px;
    padding: 12px;
}
.thank-you-modal .modal-content{
    background: transparent;
    border: 0;
    box-shadow: none;
}
.thank-you-modal .modal-body{
    overflow: visible;
}
.thank-you-envelope{
    position: relative;
    max-width: 640px;
    margin: 16px auto 30px;
    filter: drop-shadow(0 9px 14px rgba(0, 0, 0, 0.11));
}
.thank-you-envelope-note{
    position: relative;
    z-index: 4;
    width: 100%;
    margin: 0 auto -8px;
    padding: 30px 34px 24px;
    background: #f7f8fa;
    border-radius: 4px 4px 0 0;
}
.thank-you-envelope-note::before{
    content: "";
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 46px solid transparent;
    border-right: 46px solid transparent;
    border-bottom: 24px solid #f7f8fa;
}
.thank-you-envelope-title{
    margin: 0;
    font-family: "Lancelot", serif;
    font-size: 82px;
    line-height: 0.82;
    font-weight: 400;
    letter-spacing: 0;
}
.thank-you-envelope-title-dark{
    color: #1f1f1f;
}
.thank-you-envelope-title-accent{
    color: var(--bb-primary-color);
}
.thank-you-envelope-message{
    max-width: 390px;
    margin: 0 auto;
    color: #2f2f2f;
    font-size: 25px;
    line-height: 1.38;
    letter-spacing: 0;
}
.thank-you-envelope-button{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bb-primary-color);
    border: 1px solid #56bcbf;
    border-radius: 999px;
    padding: 8px 10px 8px 16px;
    color: #111111;
    font-size: 16px;
    line-height: 1;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.thank-you-envelope-button:hover{
    color: #111111;
    transform: translateY(-1px);
    box-shadow: 0 8px 12px rgba(68, 172, 176, 0.28);
}
.thank-you-envelope-button-icon{
    width: 23px;
    height: 23px;
    border-radius: 50%;
    border: 1px solid #56bcbf;
    background: #ffffff;
    color: #56bcbf;
    font-size: 11px;
}
.thank-you-envelope-lip{
    position: relative;
    z-index: 3;
    width: 100%;
    height: 18px;
    background: #f7f8fa;
    margin-top: -1px;
}
.thank-you-envelope-body{
    position: relative;
    z-index: 1;
    width: 100%;
    height: 278px;
    border-radius: 0 0 4px 4px;
    background:
        linear-gradient(149deg, transparent 48.8%, rgba(181, 240, 241, 0.58) 50%, transparent 51.2%) left top / 50% 100% no-repeat,
        linear-gradient(31deg, transparent 48.8%, rgba(181, 240, 241, 0.58) 50%, transparent 51.2%) right top / 50% 100% no-repeat,
        linear-gradient(180deg, #70d0d3 0%, #6ccdd0 100%);
    overflow: hidden;
}
.thank-you-envelope-body::before,
.thank-you-envelope-body::after{
    content: "";
    position: absolute;
    top: 0;
    width: 52px;
    height: 36px;
    background: #f7f8fa;
}
.thank-you-envelope-body::before{
    left: 0;
    border-bottom-right-radius: 18px;
}
.thank-you-envelope-body::after{
    right: 0;
    border-bottom-left-radius: 18px;
}
.thank-you-envelope-flap{
    position: absolute;
    top: 264px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 320px solid transparent;
    border-right: 320px solid transparent;
    border-top: 158px solid #f7f8fa;
    z-index: 2;
    pointer-events: none;
}
.thank-you-envelope-seal{
    position: absolute;
    top: 378px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 162px;
    height: 162px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #dddddd;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thank-you-envelope-seal-text{
    position: absolute;
    inset: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    transform: rotate(-90deg);
}
.thank-you-envelope-seal-text text{
    font-family: "Madimi One", sans-serif;
    font-size: 10px;
    letter-spacing: 1.05px;
    fill: #1f1f1f;
}
.thank-you-envelope-seal-core{
    width: 74px;
    height: 74px;
    border-radius: 50%;
    border: 2px solid #d9d9d9;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.thank-you-envelope-seal-core img{
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: invert(1) brightness(0.2);
}
body.thank-you-modal-open .modal-backdrop.show{
    background-color: #8b8b8b;
    opacity: 0.72;
}

@media (max-width: 767.98px){
    .thank-you-modal .modal-dialog{
        max-width: 96vw;
        padding: 8px;
    }
    .thank-you-envelope{
        max-width: 468px;
        margin: 14px auto 24px;
    }
    .thank-you-envelope-note{
        width: 100%;
        margin-bottom: -2px;
        padding: 26px 20px 18px;
    }
    .thank-you-envelope-note::before{
        top: -18px;
        border-left-width: 34px;
        border-right-width: 34px;
        border-bottom-width: 18px;
    }
    .thank-you-envelope-title{
        font-size: 66px;
    }
    .thank-you-envelope-message{
        font-size: 22px;
        max-width: 300px;
    }
    .thank-you-envelope-button{
        font-size: 15px;
        padding: 8px 8px 8px 13px;
    }
    .thank-you-envelope-button-icon{
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    .thank-you-envelope-lip{
        height: 14px;
    }
    .thank-you-envelope-body{
        height: 214px;
    }
    .thank-you-envelope-flap{
        top: 216px;
        border-left-width: 234px;
        border-right-width: 234px;
        border-top-width: 116px;
    }
    .thank-you-envelope-seal{
        top: 308px;
        width: 130px;
        height: 130px;
    }
    .thank-you-envelope-seal-text text{
        font-size: 8.2px;
        letter-spacing: 0.9px;
    }
    .thank-you-envelope-seal-core{
        width: 60px;
        height: 60px;
    }
    .thank-you-envelope-seal-core img{
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 575.98px){
    .thank-you-envelope-title{
        font-size: 56px;
    }
    .thank-you-envelope-message{
        font-size: 18px;
        line-height: 1.3;
        max-width: 250px;
    }
    .thank-you-envelope-button{
        font-size: 14px;
    }
    .thank-you-envelope-lip{
        height: 11px;
    }
    .thank-you-envelope-body{
        height: 178px;
    }
    .thank-you-envelope-flap{
        top: 182px;
        border-left-width: 180px;
        border-right-width: 180px;
        border-top-width: 94px;
    }
    .thank-you-envelope-seal{
        top: 258px;
        width: 110px;
        height: 110px;
    }
    .thank-you-envelope-seal-core{
        width: 52px;
        height: 52px;
    }
    .thank-you-envelope-seal-core img{
        width: 28px;
        height: 28px;
    }
}
