/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
}
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: unset;
  }
html::-webkit-scrollbar {
    width: 6px;
    background-color: #3A7BBD;
}
html::-webkit-scrollbar-thumb {
    background-color: #72CA40;
    border-radius: 50rem;
}
a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}
ol,
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}
body {
    font-size: 20px;
    font-family: "Roboto Condensed";
    font-weight: 400;
    color: #171717;
}
a,
a:hover,
a:focus {
    color: #ffffff;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}
h1,
h2,
h3,
h4 {
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
}
main {
    overflow: clip;
}
img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}
.w-100 {
    width: 100% !important;
}
.mx-auto {
    margin-left: auto;
    margin-right: auto;
}
.text-center {
    text-align: center;
}
.container-fluid {
    padding: 0 40px;
}
.fixed-btn {
    position: fixed;
    right: -10px;
    top: 40%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0px;
    z-index: 9999;
}
.call {
    width: 55px;
    height: 55px;
    background-color: #FFD900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 6px;
    img{
        filter: brightness(0) saturate(100%) invert(0%) sepia(100%) saturate(7500%) hue-rotate(211deg) brightness(115%) contrast(115%);
    }
}
.enq-btn {
    color: #ffffff;
    font-size: 18px;
    font-style: normal;
    font-weight: normal;
    text-align: center;
    overflow: clip;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    position: relative;
    padding-left: 0;
    border-radius: 20px;
    background: linear-gradient(90deg, #177EE5 0%, #1B548E 100%);
    width: 59px;
    height: 157px;
    z-index: 1;
    &:after{
    inset: 0;
    background: linear-gradient(90deg, #379729 0%, #249E11 100%);
    content: "";
    z-index: -1;
    position: absolute;
    scale: 0 1;
    transition: all .5s;
    transform-origin: right;
    }
    &:hover:after{
        scale: 1 1;
    }
}
.call-wp {
    position: fixed;
    bottom: 5%;
    right: 15px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 9999;
}
.enq-btn:hover::after,
.enq-btn:focus-visible::after {
    scale: 1 1;
    transform-origin: right;
}
.call:hover,
.fw:hover {
    transform: scale(1.1);
}
.vertical {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-style: normal;
    font-style: normal;
}
/* Popup */
.popup {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.64);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    text-align: center;
    z-index: 999999;
    opacity: 0;
    transform: translateY(10px);
    z-index: -1;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
}
.popup.show {
    opacity: 1;
    transform: translateY(0px);
    z-index: 999999;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    -webkit-transition: opacity 0.5s ease, transform 0.5s ease;
    -moz-transition: opacity 0.5s ease, transform 0.5s ease;
    -ms-transition: opacity 0.5s ease, transform 0.5s ease;
    -o-transition: opacity 0.5s ease, transform 0.5s ease;
}
.popup .popup__content {
    width: 50%;
    padding: 0px;
    background: white;
    color: black;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    overflow: hidden;
    z-index: 99999;
}
.popup .popup__content .close {
    position: absolute;
    right: 0px;
    top: 0px;
    width: 20px;
    display: block;
    width: 40px;
    height: 40px;
    opacity: 1;
    color: #000;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    border-radius: 50% 10px 50% 50%;
    flex-direction: column;
    gap: 5px;
    background-color: #FFD900;
    transition: all .5s;
    z-index: 9;
}
.popup .popup__content .close:hover {
    background-color: #ffffff;
}
.popup .popup__content .close:hover span {
    background-color: #15222B;
}
.popup .popup__content .close span {
    cursor: pointer;
    position: fixed;
    width: 20px;
    height: 3px;
    background: #000;
}
.popup .popup__content .close span:nth-child(1) {
    transform: rotate(45deg);
}
.popup .popup__content .close span:nth-child(2) {
    transform: rotate(135deg);
}
.left {
    background: url(../img/banner.webp);
    display: flex;
    justify-content: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
        background-position: 65%;
    &::after{
        position: absolute;
        content: '';
        width: 100%;
        height: 100%;
        background: #000000b5;

    }
}
.left .logo{
    height: auto;
    position: relative;
    z-index: 1;
}
.right {
    padding: 30px;
    text-align: left;
    background: #000;
    .primary-btn{
        border: 0;
        padding: 12px 50px;
        cursor: pointer;
        &:hover {
            background: #FFF;
            color: #000;
        }
    }
    label,.title{
        color: #fff;
    }
    .form-control{
        background: #FFF;
    }
    .form-control:focus {
        border-color: #FFD900;
    }
}

/**************************************
                Helper Class
**************************************/
.sec-gap {
    padding: 60px 0;
}
.pb-80 {
    padding-bottom: 60px;
}
.mb-20 {
    margin-bottom: 20px;
}
.mb-40{
    margin-bottom: 40px;
}
p{
    color: #222;
    font-size: 20px;
    font-style: normal;
    font-weight: normal;
    line-height: 135%;
}
.dec{
    color: #212121;
font-size: 20px;
font-style: normal;
font-weight: normal;
line-height: 170%;
}
.title {
    color: #252525;
    font-family: "Roboto Condensed Bold";
    font-size: 30px;
    font-style: normal;
    font-weight: normal;
    line-height: 90%;
    margin-bottom: 10px;
}
.section-title {
    background: linear-gradient(180deg, #EA0327 0%, #83081C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Roboto Condensed Bold";
    font-size: 67px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.card-title{
color: #1D1D1D;
font-family: "Roboto Condensed Bold";
font-size: 30px;
font-style: normal;
font-weight: normal;
line-height: normal;
margin-bottom: 8px;
}
.small-line {
    display: inline-block;
    margin-top: 22px;
    margin-bottom: 0px;
    background: #EA0327;
    width: 90px;
    height: 3px;
}
.primary-btn {
border-radius: 60px;
background: linear-gradient(180deg, #EA0327 0%, #83081C 100%);
box-shadow: 0 0 0 6px rgba(177, 177, 177, 0.607);
padding: 25px 30px;
color: #FFF;
font-family: "Roboto Condensed Bold";
font-size: 25px;
font-style: normal;
font-weight: normal;
line-height: normal;
letter-spacing: 0.75px;
text-transform: uppercase;
transition: all .5s;
-webkit-transition: all .5s;
-moz-transition: all .5s;
-ms-transition: all .5s;
-o-transition: all .5s;
position: relative;
overflow: hidden;
z-index: 1;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
overflow: hidden;
}
.primary-btn:before,
.primary-btn:after,
.secondary-btn::before,
.secondary-btn::after {
  content: "";
  z-index: -1;
  width: calc(100% + 40px);
  height: 100%;
  position: absolute;
  top: 0;
  clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
  transition: transform 0.6s;
}
.primary-btn:before,
.secondary-btn::before {
  left: calc(-100% - 40px);
}
.primary-btn:after,
.secondary-btn::after {
  left: 100%;
  transform: rotate(180deg);
  background: linear-gradient(90deg, #83081C 0%, #83081C 100%);
}
.primary-btn:hover:before,
.secondary-btn:hover:before {
  transform: translateX(100%);
}
.primary-btn:hover:after,
.secondary-btn:hover:after {
  transform: rotate(180deg) translateX(100%);
}
.primary-btn:hover {
  color: #fff;
}

.call-btn{
    box-shadow: none;
    background: transparent;
    border: none;
    color: #FFF;
    gap: 8px;
    padding-block: 0;
    font-family: "Roboto Condensed Bold";
    font-size: 36px;
    font-style: normal;
    font-weight: normal;
    line-height: 40px;
    background: linear-gradient(180deg, #EA0327 0%, #83081C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    small{
    background: #000;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-family: "Roboto Condensed";
    font-size: 19px;
    font-style: normal;
    font-weight: normal;
    line-height: 15px;
    letter-spacing: 0.76px;
    text-transform: uppercase;
    border-bottom: 2px solid #FFE500;
    }
    &:hover{
        &::after, &::before{
            display: none;
        }
    }
    img{
        margin-top: 9px;
    }
}
.form-control {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    color: #000000;
    padding: 12px 15px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #C1C1C1;
    width: 100%;
    border-radius: 4px;
    outline: none;
}
.form-control:focus {
    border-color: #83081C;
}
form .btn-group {
    justify-content: center;
}
.form-group {
    margin-bottom: 10px;
}
input,
input:focus {
    outline: none;
    box-shadow: none !important;
}
label {
    font-size: 18px;
    margin-bottom: 5px;
    display: block;
}
.form-control::placeholder {
    color: rgba(46, 49, 58, 0.5);
}
.form-group {
    position: relative;
}
.italic {
    font-style: italic;
}
.enq-mobile {
    position: fixed;
    right: 3px;
    top: 29%;
    border-radius: 10px;
    transform: rotate(-90deg);
    transform-origin: bottom right;
}
.mobile {
    display: none;
}
/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}
/* Animations */
[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}
/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}
/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}
.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}
.slideInRight {
    animation-name: slideInRight;
}
/* Fade Animations */
.fadeIn {
    animation-name: fadeIn;
}
/* Zoom Animations */
.zoomIn {
    animation-name: zoomIn;
}
.zoomReverseIn {
    animation-name: zoomReverseIn;
}
/* Flip Animations */
.flipInY {
    animation-name: flipInY;
}
.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}
/*******************************
	Menu
*******************************/
header {
    position: fixed;
    z-index: 999;
    right: 0;
    left: 0;
    background: #00000000;
    padding-block: 40px;
    transition: all .5s;
    .menu-btn{
        font-size: 20px;
        padding: 16px 25px;
        gap: 5px;
    }
}

.flex-box {
    display: flex;
    align-items: center;
    gap: 15px;
    height: 100%;
}

.logo{
    transition: all .5s;
}
header.sticky {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.35s ease-out;
    background: linear-gradient(45deg, #ffffff, #ffffff);
    padding-block: 10px;
}
@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}
nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: auto;
    z-index: 999;
    transition: ease-in-out .4s;

}
.social {
    display: flex;
    align-items: center;
    gap: 10px;
}
.social a{
    border: 1px solid rgba(255, 255, 255, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    stroke-width: 1px;
    width: 34px;
    height: 34px;
    flex-shrink: 0;
}
.social a:hover{
    transform: scale(1.2);
    border-color: #FFD900;
    img{
        filter: brightness(0) saturate(100%) invert(70%) sepia(92%) saturate(530%) hue-rotate(0deg) brightness(104%) contrast(104%);
    }
}
.mobile-menu{
    display: none;
}
/************************************* Home Page **************************************/
.banner {
    overflow: hidden;
    position: relative;
    height: 970px;
    .banner-img{
        clip-path: polygon( 0% 0%,100% 0%,100% 85.048%,50% 100%,0% 85.048%,0% 0% );
        position: relative;
        height: 100%;
        &::after{
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(0deg, rgba(255, 255, 255, 0.00) 0%, #E6FAFF 85%);
            z-index: 1;
        }
        img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        }

    }
    .banner-shape {
    position: absolute;
    bottom: 0;
    z-index: -1;
}
    .container{
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
    }
    .banner-content{
        position: relative;
        width: 80%;
        z-index: 1;
        text-align: center;
        margin-inline: auto;
        h1{
            font-family: "Roboto Condensed Bold";
            font-size: 96px;
            font-style: normal;
            font-weight: normal;
            line-height: 110.125%;
            background: linear-gradient(180deg, #EA0327 0%, #83081C 100%);
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            border-bottom: 4px solid #EA0327;
            display: inline-block;
            margin-bottom: 12px;
        }
        h3{
            color: #000;
            text-align: center;
            font-family: "Roboto Condensed Bold";
            font-size: 64px;
            font-style: normal;
            font-weight: normal;
            line-height: 109.375%;
            margin-bottom: 25px;
            text-shadow: 0px 4px 0px rgb(167 167 167);
        }
    }
    
}
.btn-group {
    display: flex;
    gap: 25px;
}
.category {
    margin-top: -150px;
    .row{
        .col:first-child,
        .col:last-child{
            .category-box{
                margin-top: -46px;
            }
        }
    }
}
.category-box{
    width: 194px;
    height: 194px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.607);
    flex-direction: column;
    gap: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin-inline: auto;
    transition: all .5s;
    &::after{
        content: "";
        position: absolute;
        inset: 0;
        background: #000000a8;
        z-index: -1;
        transition: all .5s;
    }
    &:hover{
        transform: scale(1.1);
        &::after{
            background: #00000063;
        }
    }
    h4{
        color: #FFF;
        text-align: center;
        font-family: "Roboto Condensed Bold";
        font-size: 24px;
        font-style: normal;
        font-weight: normal;
        line-height: 104.167%;
    }
}
.services{
    .col-lg-4{
        margin-bottom: 33px;
    }
}
.service-item{
    position: relative;
    text-align: center;
    border-radius: 0;
    z-index: 1;
    border: 1px solid #ABABAB;
    height: 100%;
    padding-bottom: 33px;
    transition: all .5s;
    .service-img{
        width: 100%;
        clip-path: polygon( 0% 0%,100% 0%,100% 85.048%,50% 100%,0% 85.048%,0% 0% );
    }
    &:hover{
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
        transform: translateY(-10px);
        .service-img{
                transform: scale(1.01);
        }
    }
.service-content {
  padding: 25px;
    .primary-btn{
        gap: 6px;
        position: absolute;
        bottom: -33px;
    }
    }
    

}
.top-shape {
    margin-bottom: -185px;
}
.bottom-shape {
    margin-top: -163px;
    transform: translateY(-18px);
}
.why-choose-us{
    background-image: url(../img/why-choose-img.webp);
    background-repeat: no-repeat;
    position: relative;
    padding-block: 150px;
    clip-path: polygon( 50% 0%, 100% 15%, 100% 85%, 50% 100%, 0% 85%, 0% 15% );
        background-size: cover;
    background-position: left;
    &::after{
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(236, 236, 236, 0.00) 40%, #ffffff 70%);
        z-index: -1;
    }
    .feature-box{
        position: relative;
        margin-bottom: 50px;
        padding-left: 121px;
        .icon-box{
            width: 104px;
            height: 104px;
            background: #FFE500;
            box-shadow: 0 4px 34px 4px rgba(0, 0, 0, 0.25) inset;
            position: relative;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            left: 0;
            top: 0;
        }
        &:hover{
            .icon-box{
                img{
                    transform: rotateY(180deg);
                    filter: brightness(0) saturate(100%) invert(8%) sepia(83%) saturate(6800%) hue-rotate(341deg) brightness(112%) contrast(120%);
                }
            }
            .card-title{
                color: #EA0327;
            }
            
        }
    }
   

}

.other-service{
.tab-container {
  display: flex;
  gap: 50px;
}

.tab-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 346px;
}

.tab-menu li {
  background: #83081C;
  border-bottom: 1px solid #fff;
  color: #fff;
  padding: 15px 20px;
  position: relative;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s;
  font-size: 22px;
  font-family: "Roboto Condensed Bold";
  font-weight: normal;
}

.tab-menu li.active {
  &::after{
    content: '';
    height: 100%;
    clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
    background: #83081C;
    display: inline-block;
    position: absolute;
    right: -22px;
    top: 0px;
    z-index: -1;
    left: 50%;
  }
}

.tab-menu li:hover {
  background: #b8002b;
}

.tab-content {
  flex: 1;
  padding: 20px;
  background: #ECECEC;
}

.tab {
  display: none;
}

.tab.active {
  display: block;
  animation: fadeIn 0.4s ease-in-out;
}

h3 {
  margin-bottom: 10px;
}

p {
  margin-bottom: 15px;
}
.other-service-content{
    padding: 20px;
}

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

@media (max-width: 768px) {
  .tab-container {
    flex-direction: column;
  }

  .tab-menu {
    display: flex;
    width: 100%;
    overflow-x: auto;
  }

  .tab-menu li {
    flex: 1;
    text-align: center;
    margin: 0 3px 0 0;
    padding: 12px 10px;
    font-size: 14px;
    clip-path: none; /* remove arrow for small screen */
    border-radius: 4px;
  }

  .tab-content {
    padding: 15px;
  }
}
}
.cta{
    background-image: url(../img/cta-left.webp);
    background-repeat: no-repeat;
    padding-block: 90px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    .card-title,p{
        color: #FFF;
    }
    .section-title{
            background: #FFE500;
            background-clip: text;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 16px;
    }
    p{
        margin-bottom: 22px;
    }
    .primary-btn{
        padding: 20px 30px;
    }
}
.cta-right{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}
.our-works{
.slider-container {
  margin: 0 auto;
  position: relative;
  width: 100%;
  max-width: 800px;
  height: 400px;
  border-radius: 0.7rem;
  overflow: hidden;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Styling the Before/After text */
.before-text,
.after-text {
  position: absolute;
  font-family: system-ui;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  z-index: 4;
  padding: 10px 20px;
  background-color: #000000c5;
  border-radius: 0;
  letter-spacing: 2px;
  transition: opacity 0.3s ease-in-out;
}

/* Before text */
.before-text {
  left: 0px; /* Position text to the left */
  top: 20px;
  z-index: 5;
}

/* After text */
.after-text {
  right: 0px; /* Position text to the right */
  top: 10px;
  z-index: 3;
}

/* Hide the After text initially */
.after-image .after-text {
  visibility: visible;
  z-index: 3;
}

.after-image {
  clip-path: inset(0 50% 0 0);
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0px;
  height: 100%;
  background-color: #fff;
  cursor: pointer;
  z-index: 2;
}

.slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
  z-index: 1;
}
.pulse-container {
  position: relative;
  display: inline-block;
}

.pulse-container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: #ffffff;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.slider-line svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  cursor: pointer;
}

.slider-container,
.before-image img,
.after-image img {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  width: 100%;
}

.slider-handle,
.slider-line {
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
}
.about-us{
    background-image: url(../img/about-bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 1;
    clip-path: polygon(0% 0%, 100% 0%, 100% 85.048%, 50% 100%, 0% 85.048%, 0% 0%);
    padding-bottom: 130px;
    &::after{
        content: '';
        position: absolute;
        inset: 0;
        background: #ffffff9e;
        z-index: -1;
    }
}
.back-item{
    background: #FFF;
    box-shadow: 0 14px 24px 0 rgba(0, 0, 0, 0.12);
    padding: 18px;
    text-align: center;
    padding-top: 30px;
    height: 100%;
    transition: all .5s;
    &:hover{
        box-shadow: 0 20px 40px 0 rgba(0, 0, 0, 0.2);
        transform: translateY(-10px);
        .card-title{
            color: #EA0327;
        }
        img{
            transform: rotateY(360deg);
        }
    }
}
.background {
    margin-top: -160px;
    padding-inline: 6%;
}
.testi-item{
    text-align: center;
}
.testi-content {
    background: #F0F0F0;
    padding: 30px;
    padding-bottom: 60px;
    transition: all .5s;
    img{
        margin-inline: auto;
    }
    &:hover{
        background: #83081C;
        p{
            color: #fff;
        }
    }
}
.user{
    margin-top: -50px;
    img{
        width: 112px;
        height: 112px;
        object-fit: cover;
        border-radius: 50%;
        margin-inline: auto;
        margin-bottom: 8px;
    }
    h4{
        color: #EA0327;
        text-align: center;
        font-family: "Roboto Condensed Bold";
        font-size: 20px;
        font-style: normal;
        font-weight: normal;
        line-height: 30px;
        text-transform: uppercase;
    }
}
.testi-slider{
    .slick-list{
        margin: 0 -15px;
    }
    .slick-slide{
        margin: 0 20px;
    }
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    border-radius: 15px;
    background: #D9D9D9;
    &.slick-active{
        background: #000000;
    }
    button{
        opacity: 0;
    }
}
.slick-dots {
    position: absolute;
    bottom: -50px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.partner-box{
    background: #EEE;
    padding: 20px 40px;
    .col:hover{
        img{
            transform: scale(1.1);
        }
    }
}
.form-box{
    clip-path: polygon( 0% 0%,100% 0%,100% 88.589%,50.169% 100%,0% 88.589%,0% 0% );
    background-color: #FFE500;
    padding: 14px;
    padding-bottom: 35px;
    h2{
        text-align: center;
        color: #000;
        font-family: "Roboto Condensed Bold";
        font-size: 60px;
        font-style: normal;
        font-weight: normal;
    }
    form{
        clip-path: polygon( 0% 0%,50% 8.351%,100% 0%,100% 91.455%,50.169% 100%,0% 91.455%,0% 0% );
        background: #FFF;
        padding: 80px 18px 40px 18px;
    }
    .form-control{
        border: 1px solid #C2BFBF;
        background: #F7F7F7;
        margin-bottom: 15px;
        font-size: 18px;
        font-weight: normal;
        border-radius: 0;
        padding: 25px 12px;
        &:focus {
            border-color: #83081C;
            box-shadow: 0 0 5px rgba(131, 8, 28);
        }
    }
.primary-btn {
    box-shadow: 0 0 0 4px rgba(177, 177, 177, 0.607);
    padding: 20px 60px;
}
}
.get-in-touch{
    background-size: cover;
    &::after {
        background: linear-gradient(to right, rgba(236, 236, 236, 0.00) 40%, #ffffff61 70%);
    }
}
/*******************************
Faq 
*******************************/
.faq{
    .section-title{
        span{
            &::after{
                bottom: -43px;
            }
        }
    }
}
.accordion__item {
    margin: 12px auto;
    transition: .5s;
    border: 1px solid #FFE500;
    background: #F0F0F0;
    position: relative;
}
.accordion__title:hover{
    transform: translateY(-5px);
}
.accordion__item .accordion__title {
    position: relative;
    display: block;
    padding: 20px 16px;
    padding-right: 32px;
    margin-bottom: 0px;
    color: #000000;
    font-size: 28px;
    font-style: normal;
    font-family: "Roboto Condensed Bold";
    font-weight: normal;
    line-height: 125%;
    text-decoration: none;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
    cursor: pointer;
    transition: all .5s;
}
.accordion__title::after {
    content: ' ';
    position: absolute;
    right: 16px;
    top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .5s;
    clip-path: polygon(22.556% 0%, 77.444% 0%, 100% 50%, 77.444% 100%, 22.556% 100%, 0% 50%, 22.556% 0%);
    background: #83081C url(../img/plus.webp);
    background-repeat: no-repeat;
    background-position: center;
    width: 75px;
    height: 46px;
}
.accordion__title.accordion-active::after{
    background: #83081C url(../img/minus.webp);
    background-repeat: no-repeat;
    background-position: center;
}
.accordion__item .accordion__content {
    padding: 16px;
    margin-bottom: 0;
    display: none;
    padding-top: 0;
    p{
        color: #000000;
        line-height: 135%;
    }
}
.map{
    iframe{
        width: 100%;
        height: 800px;
        border-radius: 0;
        border: 0;
    }
}

/****************************
        Footer
******************************/
footer {
    position: relative;
}
.main-footer{
    width: 100%;
    margin-top: -155px;
    padding-top: 145px;
    padding-bottom: 100px;
    background: #242424;
    clip-path: polygon( 0% 21.773%,50% 0%,100% 21.773%,100% 100%,0% 100%,0% 21.773% );
    text-align: center;
    .logo{
        margin-bottom: 8px;
    }
    .col-lg-4{
        border-left: 1px solid rgba(255, 255, 255, 0.10);
        border-right: 1px solid rgba(255, 255, 255, 0.10);
    }
}
.footer-vector {
    position: absolute;
    top: -20px;
}
.footer-title {
   color: #FFF;
    font-family: "Roboto Condensed Bold";
    font-size: 28px;
    font-style: normal;
    font-weight: normal;
    line-height: 27px;
    margin-bottom: 20px;
}

footer p,
footer p a {
color: #FFF;
text-align: center;
font-size: 18px;
font-style: normal;
font-weight: normal;
line-height: 34px;
}
footer p a:hover {
    color: #ea0327;
}

.copyright {
    text-align: center;
   margin-top: -30px;
   p{
    margin: 0;
   }
}
.copyright a {
    color: #F67809;
    text-decoration: underline;
}

textarea{
    font-family: "Roboto Condensed";
}
footer .social{
    justify-content: center;
    margin-top: 20px;
    a{
        width: 50px;
        height: 50px;
        background: rgba(217, 217, 217, 0.212);
        &:hover{
            background: #ea0327;
        }
    }
}
.warranty-box{
    border-style: solid;
    border-width: 0px 0px 0px 4px;
    border-color: #ffe500;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    --e-column-margin-right: 5%;
    --e-column-margin-left: 0%;
    padding: 9% 6% 10% 6%;
    background-color: #F5F5F5;
    border-radius: 14px;
    background-size: 36%;
    background-position: right center;
    background-repeat: no-repeat;
    padding-right: 25%;
    height: 100%;
    p{
        font-size: 24px;
        margin: 0;
        line-height: normal;
    }
}
/*******************************
  Responsive
********************************/
/*************************************
    Home Page
*************************************/
@media (max-width: 1600px),
(max-width: 1536px) {
    
}
@media (max-width: 1440px),
(max-width: 1366px) {
header{
    .logo {
        width: 220px;
    }
    .call-btn{
        padding-block: 0;
    }
}
.sec-gap {
    padding: 40px 0;
}

p {
    font-size: 16px;
}
.mb-60 {
    margin-bottom: 40px;
}
.banner {
    & .banner-content {
        h1 {
            font-size: 86px;
        }
        h3 {
            font-size: 54px;
        }
    }
}
.why-choose-us {
    padding-block: 70px;
}
.top-shape {
    margin-bottom: -134px;
}
.section-title {
    font-size: 57px;
}
.primary-btn {
    box-shadow: 0 0 0 4px rgba(177, 177, 177, 0.607);
    padding: 17px 30px;
    font-size: 22px;
}
.card-title {
    font-size: 26px;
    margin-bottom: 4px;
}
.why-choose-us {
    .feature-box {
        position: relative;
        margin-bottom: 35px;
        padding-left: 105px;
        .icon-box {
            width: 90px;
            height: 90px;
            padding: 18px;
        }
    }
}
.other-service {
    .tab-menu li {
        font-size: 20px;
    }
}
.call-btn {
    box-shadow: none;
    background: transparent;
    border: none;
    gap: 8px;
    font-size: 36px;
    font-style: normal;
    font-weight: normal;
    line-height: 40px;
    background: linear-gradient(180deg, #EA0327 0%, #83081C 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.about-us {
    padding-bottom: 130px;
}
.back-item {
    padding: 10px;
    padding-top: 30px;
}
.form-box {
    .form-control {
        font-size: 16px;
        padding: 14px 12px;
    }
    h2{
        font-size: 46px;
        line-height: 74%;
        margin-top: 10px;
    }
    form {
        padding: 60px 18px 33px 18px;
    }
    .primary-btn {
        box-shadow: 0 0 0 3px rgba(177, 177, 177, 0.607);
        padding: 12px 40px;
    }
}
.get-in-touch {
    background-size: cover;
    padding-block: 80px;
    padding-top: 110px;
}
footer{
    .footer-title{
        font-size: 20px;
        margin-bottom: 22px;
    }
    p{
        font-size: 16px;
    }
}
.footer-vector {
    position: absolute;
    top: -8px;
}
.main-footer {
    width: 100%;
    margin-top: -155px;
    padding-top: 100px;
    padding-bottom: 40px;
}
.map {
    iframe {
        width: 100%;
        height: 600px;
        border-radius: 0;
        border: 0;
    }
}
}
@media (max-width:1199.99px){
        .banner {
            height: auto;
        & .banner-content {
            h1 {
                font-size: 38px;
            }
            p {
                font-size: 15px;
            }
        }
    }
    .service-item {
    .overlay-content {
        padding: 15px;
        .title{
            margin-bottom: 10px;
        }
    }
}
.title {
    font-size: 20px;
    line-height: normal;
}
.why-choose-us {
    .features-container {
        padding-inline: 20px;
    }
    .card-title {
            font-size: 14px;
    }
    & .feature-box {
            .icon-box {
                width: 66px;
                height: 66px;
                &:after {
                    width: 77px;
                    height: 77px;
                }
            }
        }
                & .features-left {
            .feature-box {
                padding-right: 80px;
            }
        }
                & .features-right {
            .feature-box {
                padding-left: 80px;
            }
        }
                p {
            font-size: 12.9px;
            margin: 0;
        }
                .feature-box {
            margin-bottom: 8px;
        }
                .features-left, .features-right {
            padding-bottom: 10px;
        }
}
    .cta-bar {
        & .flex-box {
            p {
                font-size: 24px;
            }
            .number {
                font-size: 34px;
            }
        }
    }
    .cta-content {
        padding-right: 5%;
        h2 {
            font-size: 30px;
        }
        p {
            font-size: 16px;
        }
    }
    .locations {
        padding: 25px;
        padding-right: 7%;
        width: 56%;
    }
    .map {
        iframe {
            transform: translate(-70px, 20px);
            height: 644px;
            width: 408px;
        }
    }
        .your-office-shine {
        & .container {
            & .content-box {
                h2 {
                    font-size: 26px;
                }
            }
        }
    }
}

@media (max-width: 991.99px) {
.banner {
.banner-content {
    width: 55%;
    h5 {
        font-size: 16px;
        line-height: normal;
    }
    h1 {
        font-size: 30px;
    }
    p {
        font-size: 16px;
        line-height: 120%;
    }
}
.btn-group {
    gap: 16px;
}
.primary-btn {
        font-size: 13px;
        padding: 11px 14px;
    }
}
    .call {
        width: 48px;
        height: 48px;
    }
    .sec-gap{
        padding: 30px 0;
    }
    .section-title {
        font-size: 30px;
    }
    .dec{
        font-size: 16px;
    }
    .primary-btn {
        font-size: 14px;
        padding: 15px 18px;
    }
    header{
        .logo {
            width: 220px;
        }
    }
    footer{
        .logo {
            width: 320px;
        }
    }
    header {
        padding-block: 10px;
        
    }
    .cta-bar {
    & .flex-box {
            padding-block: 5px;
        .content {
            width: 54%;
        }
        p {
                font-size: 17px;
        }
        .number {
            font-size: 26px;
            img{
                width: 40px;
            }
        }
    }
}
.service-item {
    .title {
        bottom: 20px;
    }
    .overlay-content {
        padding: 6px;
        .title{
            margin-bottom: 5px;
        }
        p {
        font-size: 12px;
        margin-bottom: 5px;
    }
    img {
            margin-bottom: 2px;
            width: 45px;
        }
    .primary-btn {
        padding-inline: 30px;
        padding-block: 13px;
        img{
            margin: 0;
            width: auto;
        }
    }
    }
}
    .why-choose-us {
        .features-container {
            padding-inline: 20px;
            align-items: center;
        }
    }
        .cta-content {
        padding-right: 8%;
            width: 61%;
    margin-left: auto;
    padding-block: 60px;
    padding-left: 80px;

            h2 {
            font-size: 25px;
        }
                p {
            font-size: 14px;
        }
    }
.title {
    font-size: 17px;
    line-height: normal;
}
.areas-map {
    flex-wrap: wrap;
}
    .locations {
        padding: 25px;
        padding-right: 7%;
        width: 100%;
    }
    .map {
        width: 100%;
            & iframe {
            transform: translate(0px, 0px);
            height: 440px;
            width: 100%;
            margin-top: 20px;
        }
    }
   
    .faq {
        & .section-title {
            & span {
                &::after {
                    bottom: -30px;
                }
            }
        }
        .accordion__item .accordion__content p {
            font-size: 17px;
        }
    }
    
    .popup .popup__content {
        width: 70%;
    }
    .left {
        background: #101010;
    }
    footer{
        text-align: center;
        .justify-content-between {
    justify-content: center !important;
}
        .logo {
            width: 360px;
            margin-inline: auto;
        }
        .footer-title {
            font-size: 20px;
            margin-bottom: 0;
        }
    }
    .copyright {
    p {
        margin: 0;
        display: block;
        width: 100%;
    }
}
.popup{
        .title {
        font-size: 28px;
        line-height: normal;
        text-align: center;

}
.left .logo {
    padding-block: 10px;
}
}
.enq-btn {
    font-size: 16px;
    border-radius: 10px;
    width: 50px;
    height: 157px;
}
    .your-office-shine {
        & .container {
            & .content-box {
                h2 {
                    font-size: 20px;
                    margin-bottom: 0;
                }
            }
        }
    }
    .mobile{
        display: inherit;
    }
    header {
    .menu-btn {
        display: none;
    }
}
    header {
        .call-btn {
           line-height: normal;
        }
    }
    .call-btn {
    small {
        font-size: 9px;
    }
}
}
@media (max-width: 575.98px) {
.popup .popup__content {
    width: 90%;
}
.left .logo {
    width: 60%;
}
.right {
    padding: 14px;
    .primary-btn {
        padding: 10px 20px;
    }
}
.title {
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 6px;
}
label {
    font-size: 14px;
    margin-bottom: 2px;
}
.form-control {
    font-size: 14px;
    padding: 7px 8px;
}
.form-group {
    margin-bottom: 6px;
}

header {
    .logo {
        width: 180px;   
    }
    
    .menu-btn{
        width: 45px;
        height: 45px;
        padding: 12px;
        box-shadow: 0 0 0 3px rgba(177, 177, 177, 0.607);
        span{
            display: none;
        }
    }
}

    .banner {
        height: 460px;
        
        & .banner-content {
            width: 95%;
            h3 {
                font-size: 22px;
            }
        }
    }
.category {
    margin-top: -75px;
    & .row {
        & .col:first-child, & .col:last-child {
            .category-box {
                margin-top: 0;
            }
        }
    }
    .category-box {
    width: 164px;
    height: 164px;
    h4 {
        font-size: 20px;
    }
}
}
.popup {
    .title {
        font-size: 22px;
        line-height: normal;
        text-align: center;
    }
}
.why-choose-us {
        clip-path: unset;
        position: relative;
        z-index: 1;
        padding-block: 30px;
        background-position: right;
.feature-box {
margin-bottom: 20px;
padding-left: 75px;
}
    &::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgb(236 236 236 / 75%) 40%, #ffffff 70%);
        z-index: -1;
    }
}
.tab-menu {
    overflow-x: auto;
    flex-wrap: wrap;
}
.other-service {
    .tab-container {
       gap: 10px;
    }
    .tab-menu li {
            font-size: 16px;
            white-space: nowrap;
            border: 1px solid #fff;
    }
    & .tab-menu li.active {
        background: #000;
        &::after {
            display: none;
        }
    }
    .other-service-content {
        padding: 10px 20px;
    }
    }
    .primary-btn {
        font-size: 16px;
        padding: 9px 18px;
        img{
            width: 25px;
        }
    }
        .banner {
        .primary-btn {
            font-size: 16px;
            padding: 9px 26px;
        }
    }
    .service-item {
    .service-content {
        padding: 15px;
    }
}
.service-item {
    padding-bottom: 22px;
    & .service-content {
        .primary-btn {
            gap: 6px;
            position: absolute;
            bottom: -23px;
        }
    }
}
.cta-right {
    height: 100%;
}
.cta {
    text-align: center;
    .btn-group{
        justify-content: center;
    }
        .card-title {
        font-size: 22px;
        margin-bottom: 4px;
    }
        .section-title {
        font-size: 38px;
    }
}
.our-works {
    .slider-container {
        height: 280px;
    }
}
.mb-40 {
    margin-bottom: 30px;
}
.background {
    margin-top: -70px;
    padding-inline: 6%;
}
.about-us{
    clip-path: unset;
}
.accordion__item .accordion__title {
    font-size: 18px;
    padding: 16px 16px;
    padding-right: 50px;
}
.accordion__title::after {
    right: 5px;
    top: 10px;
    width: 40px;
    height: 35px;
}
.map {
    & iframe {
        height: 290px;
        width: 100%;
        margin-top: 0;
    }
}
    .main-footer {
        width: 100%;
        margin-top: -7px;
        padding-top: 16px;
        padding-bottom: 40px;
        clip-path: unset;
    }
        .footer-vector {
        position: absolute;
        top: -8px;
        display: none;
    }
    .warranty-box {
    p {
        font-size: 13px;
    }
}
}   
.enq-mobile {
    position: fixed;
    right: 3px;
    top: 29%;
    border-radius: 4px;
    transform: rotate(-90deg);
    transform-origin: bottom right;
    font-size: 12px;
    box-shadow: 0 0 0 2px rgba(177, 177, 177, 0.607);
    font-size: 14px;
    padding: 6px 8px;
    z-index: 999;
}
.enq-form{
    cursor: pointer;
}
