*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
body{
    font-family: "Poppins", sans-serif;

     --primary-color: #015fc9;
    --white-text:#fff;
    --black-text:#000;
    --box-shadow:#80808069;
    --header-bg:#03356d;
    --menu-text:#464645;
    --service-bg-color:rgb(1 95 201 / 10%);
    --border-color:#1d75b9;
}
ul{
    padding-left:0rem;
    list-style: none;
}
a{
    text-decoration:none;
}
img{
    width:100%;
}

.header-main .navbar-toggler:focus{
    box-shadow:unset!important;
}

body{
    overflow-x: hidden;
}

.header-main .navbar {
    padding: 0;
}

.main-menu {
    gap: 15px;
}

.main-menu li{
    position: relative;
}

.main-menu li a {
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    color: var(--menu-text);
}

.main-menu li a:before{
    position: absolute;
    display: block;
    content: "";
    bottom: 0px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
    transform: scale(0);
    transform-origin: 50%;
    transition: transform 200ms ease-in-out;
}

.main-menu li a:hover:before{
    transform: scale(1);
}

.main-menu li a.active:before{
    transform: scale(1);
}

.main-menu li a.active {
    color: var(--primary-color) !important;
}
.main-menu li a:hover {
    color: var(--primary-color) !important;
}

/* header css */
.header-main .header-topbar{
    position: relative;
    display: block;
    padding: 30px 0 50px;
    /* background-color: rgb(22, 36, 61); */
    background-color: var(--header-bg);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.header-main {
    /* background-color: var(--white-text); */
    background-color: transparent;
    /* padding: 22px 0; */
}

.header-main .navbar{
    margin-top: -40px;
}

.navbar-inner{
    display: flex;
    justify-content: space-between;
    background-color: var(--white-text);
    width:100%;
    padding: 10px 20px;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
    box-shadow: 0px 0px 12px var(--box-shadow);
}

.topbar-contact {
    display: flex;
    gap: 25px;
}

.topbar-contact img{
   width: 100%;
   filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(510%) hue-rotate(254deg) brightness(119%) contrast(100%);
}

.topbar-inner{
    display: flex;
    justify-content: space-between;
}

.contact-icons{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    /*background-color: var(--primary-color);*/
    background-color: rgb(1 95 201 / 50%);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    cursor: pointer;
}

.topbar-contact li:hover img{
    animation: rotate-icon 2s;
    -webkit-animation: rotate-icon 2s;
}

.topbar-contact li:hover .contact-icons{
   background-color: var(--primary-color);
}

.topbar-contact li{
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--white-text);
}

.topbar-contact li a{
    color: var(--white-text);
}

.main-header-social{
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}

.main-header-social a{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    /*background-color: var(--primary-color);
    */background-color: rgb(1 95 201 / 50%);
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
}

.main-header-social a i{
   color: var(--white-text);
   font-size: 18px;
}

.main-menu {
    gap:12px;
}

.main-header-social a:hover i{
    animation: rotate-icon 2s;
    -webkit-animation: rotate-icon 2s;
}

.main-header-social a:hover{
   background-color: var(--primary-color);
}

@keyframes rotate-icon {
    0% {
        transform: rotateY(0);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* ...................Banner css................  */

.banner-main {
    position: relative;
    padding: 80px 0;
    /* background-image: linear-gradient(#fff, #015fc9); */
}

.side-shape{
    position: absolute;
    left: 0;
    top: -42px;
    opacity: 1;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(-200px);
    z-index: 9;
    /*position: fixed;
    left: 0;
    top: 136px;
    opacity: 1;
    transition: transform 1200ms ease, opacity 1200ms ease;
    transform: translateX(-200px);
    z-index: 9999;
     */
    -webkit-transition: transform 1200ms ease, opacity 1200ms ease;
    -moz-transition: transform 1200ms ease, opacity 1200ms ease;
    -ms-transition: transform 1200ms ease, opacity 1200ms ease;
    -o-transition: transform 1200ms ease, opacity 1200ms ease;
}

.side-shape img{
   width:80%;
   display: block;
   animation: img-move1 3s infinite alternate;
   -webkit-animation: img-move1 3s infinite alternate;
}

@keyframes img-move1 {
    from {
        transform: translateX(-10px);
        -webkit-transform: translateX(-10px);
        -moz-transform: translateX(-10px);
        -ms-transform: translateX(-10px);
        -o-transform: translateX(-10px);
}
     to {
        transform: translateX(10px)     ;
        -webkit-transform: translateX(10px)     ;
        -moz-transform: translateX(10px)     ;
        -ms-transform: translateX(10px)     ;
        -o-transform: translateX(10px)     ;
}
}

.banner-content h2{
    font-size: 52px;
    font-weight: 600;
    color: var(--menu-text);
    text-transform: capitalize;
    margin-bottom: 25px;
    /* text-align: center; */
}

.banner-content p{
    font-size: 22px;
    color: var(--menu-text);
    font-weight: 400;
    margin-bottom: 40px;
    /* text-align: center; */
}

/* .banner-content {
    max-width: 80%;
    margin: auto;
} */

.banner-content h2 span{
    color: var(--primary-color);
}

.main-slider-one__title__inner::before, .main-slider-one__title__inner::after {
    content: "";
    position: absolute;
    width: calc(50% + 2px);
    height: 100%;
    background-color: var(--insuba-base, #0365d3);
    z-index: 2;
    transition: all 1000ms ease;
}

.banner-img{
    width: 100%;
    position: relative;
    padding: 0 50px;
}

.banner-img .banner-image{
    position: absolute;
    top: 10px;
    left: 84px;
    width: 65%;
    /* transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%); */
    animation: img-move 3s infinite alternate;
}
@keyframes img-move {
    from {
        transform: translateY(-10px);
    }
     to {
        transform: translateY(10px)
     }
}

.popup-video{
    transition: all 0.3s 0s ease-out;
}

.working-process-2__box {
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
    position: relative;
    border-radius: 500px;
    background: var(--white-text);
    animation: zooming 1S infinite alternate;
    box-shadow: 0px 0px 12px var(--box-shadow);
}

@keyframes zooming {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.working-process-2__box .play {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.working-process-2__media svg {
    max-width: 100%;
}

.working-process-2__box .play svg path{
   fill: var(--primary-color);
}

.working-process-2__box .rotate-text {
    top: 16px;
    left: 16px;
    position: absolute;
    animation: animName 5s linear infinite;
    -webkit-animation: animName 5s linear infinite;
}

.banner-details{
    margin: auto;
}

@keyframes animName {
    0%{
       transform: rotate(0deg);
      }
   100%{
       transform: rotate(360deg);
      }
   }

.banner-btn {
    display: flex;
    justify-content: start;
    gap: 50px;
    align-items: center;
}

.bottom-wave {
    position: relative;
    top: -96px;
}



.abc{
    animation: img-move2 2s infinite alternate;
    -webkit-animation: img-move2 2s infinite alternate;
}

@keyframes img-move2 {
    from {
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
    }
     to {
        transform: translateY(10px)     ;
        -webkit-transform: translateY(10px)     ;
        -moz-transform: translateY(10px)     ;
        -ms-transform: translateY(10px)     ;
        -o-transform: translateY(10px)     ;
    }
}

.purchase-now__bottom-shape{
    overflow-x: hidden;
}

.purchase-now__bottom-shape img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(91%) saturate(6604%) hue-rotate(204deg) brightness(99%) contrast(99%);
}

.purchase-now__bottom-shape .image-1 {
    -webkit-animation: rotate360 60s linear infinite;
    animation: rotate360 60s linear infinite;
    position: absolute;
    right: 0px;
    top: 0px;
}

/* .purchase-now__bottom-shape .image-2 {
    top: -5px;
    right: -763px;
    position: absolute;
    -webkit-animation: rotate-360 60s linear infinite;
    animation: rotate-360 60s linear infinite;
}

.purchase-now__bottom-shape .image-3 {
    -webkit-animation: rotate360 60s linear infinite;
    animation: rotate360 60s linear infinite;
    width: auto;
    position: absolute;
    right: -497px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    bottom: -354px;
} */



@keyframes rotate360 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate-360 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
        -webkit-transform: rotate(-360deg);
        -moz-transform: rotate(-360deg);
        -ms-transform: rotate(-360deg);
        -o-transform: rotate(-360deg);
}
}

.xyz {
    height: 100%;
}

.service-btn {
    /* margin-top: 50px; */
    display: flex;
    justify-content: end;
}

.service-btn .sakkal-btn a{
    /* padding: 16px; */
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
}

.service-btn .sakkal-btn a:hover span{
    background: var(--primary-color);
    color: var(--white-text);
}

.service-btn .sakkal-btn a:hover i{
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transition: all 0.5s ease;
}

.service-btn span{
    width: 50px;
    height: 50px;
    background-color: var(--white-text);
    background-color: #fff;
    color: var(--primary-color);
    height: 32px;
    width: 32px;
    border-radius: 50%;
    display: inline-block;
    line-height: 32px;
    text-align: center;
    margin-right: 10px;
    transition: all 0.2s;
}



/* .side-shape3{
    position: absolute;
    width: auto;
    left: -450px;
    top: 973px;
} */


/* ...................our service css................  */

.service-main{
    padding: 120px 0;
    background-color: rgb(1 95 201 / 10%);
    position: relative;
    overflow: hidden;
}

.service-title{
    display: flex;
        /* justify-content: left; */
        flex-direction: column;
        /* align-items: center; */
}

.service-subtitle{
    justify-content: space-between;
    align-items: center;
    z-index: 9;
}

.service-subtitle p{
    width: 80%;
}

.service-subtitle a{
    white-space: nowrap;
}

.service-title h4{
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
    position: relative;
    /*top: -10px;*/
       
}

.service-title h4:before{
    content: '';
    width: 43px;
    height: 3px;
    background-color: var(--primary-color);
    border-radius: 4px;
    margin-right: 10px;
       
}

.service-title p{
    text-align: left;
    font-size: 20px;
    font-weight: normal;
    color: var(--menu-text);
    margin-top: 5px;
}

.service-icon{
    width: 50px;
    height: 50px;
}

.services-inner{
    position: relative;
    z-index: 2;
    background-color: var(--white-text);
    border-radius: 10px;
    padding: 1px 40px 32px;
    margin-top: 25px;
    box-shadow: 2px 4px 30px 0px rgba(0, 0, 0, 0.08);
    transition: all 500ms ease;
    height: 100%;
}

.services-image {
    position: relative;
    z-index: 2;
    border-radius: 10px;
    overflow: hidden;
    margin-top: -25px;
    box-shadow: 0px 0px 12px var(--box-shadow);
    height: 280px;
}

.services-image img {
    height: 280px;
}

.service-inner-content{
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: -8px;
    margin-bottom: 21px;
}

.services-icon {
    width: 78px;
    height: 88px;
    background-color: var(--primary-color);
    border-radius: 0 0 0 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    color: var(--white-text);
    transition: all 400ms ease;
}

.services-icon img{
    filter: brightness(0) saturate(100%) invert(100%) sepia(95%) saturate(0%) hue-rotate(128deg) brightness(105%) contrast(105%);
    width: 60%;
    display: block;
    top: 2px;
    position: relative;
}

.services-inner:hover .services-inner-title {
    color: var(--white-text);
}

.services-inner-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 0;
    position: relative;
    top: -5px;
    color: var(--primary-color);
    margin-top: 20px;
}

.service-inner-content::after {
    position: absolute;
    left: 78px;
    bottom: 0;
    width: calc(100% - 78px);
    height: 1px;
    content: "";
    background-color: var(--primary-color);
    transition: all 400ms ease;
}

.service-inner-text {
    line-height: 30px;
    font-weight: 500;
    margin: 0;
    transition: all 400ms ease;
    color: #5c5a5a;
    font-size: 18px;
}

p.service-inner-text:after{
    position: absolute;
    right: 0;
    bottom: 0;
    height: 93px;
    width: 93px;
    content: "";
    z-index: -1;
    background-color: #7ebbff;
    transition: all 500ms ease;
    mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 93 93" xmlns="http://www.w3.org/2000/svg"><path d="M53.7656 64.3846C44.5389 92.7651 3 92.3621 0 93H83C88.5229 93 93 88.5228 93 83V22.8923V0C82.1861 47.9899 65.9651 26.86 53.7656 64.3846Z"/></svg>');
    mask-repeat: no-repeat;
    mask-position: top right;
    mask-size: cover;
}

.services-inner:hover::before {
    opacity: 1;
    height: 100%;
}

.services-inner:hover  .service-inner-text{
    color: var(--white-text);
}

.services-inner:hover .services-icon {
    background-color: var(--white-text);
    color: var(--primary-color);
}

.services-inner:hover .services-icon img{
    filter: brightness(0) saturate(100%) invert(22%) sepia(93%) saturate(2204%) hue-rotate(198deg) brightness(94%) contrast(108%);
    transform: rotateY(180deg);
    display: inline-block;
    transition: all 0.5s ease;
}

.services-inner:hover .services-inner-title a{
    color: var(--white-text);
}

.services-inner:hover .service-inner-content::after {
    background-color: var(--white-text);

}

/* active */
.services-inner.active::before {
    opacity: 1;
    height: 100%;
}

.services-inner.active  .service-inner-text{
    color: var(--white-text);
}

.services-inner.active .services-icon {
    background-color: var(--white-text);
    color: var(--primary-color);
}

.services-inner.active .services-icon img{
    filter: brightness(0) saturate(100%) invert(22%) sepia(93%) saturate(2204%) hue-rotate(198deg) brightness(94%) contrast(108%);
    transform: rotateY(180deg);
    display: inline-block;
    transition: all 0.5s ease;
}

.services-inner.active .services-inner-title a{
    color: var(--white-text);
}

.services-inner.active .service-inner-content::after {
    background-color: var(--white-text);

}

.services-inner::before {
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    height: 0;
    left: 0;
    right: 0;
    content: "";
    transition: all 500ms ease;
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
}

.service-inner-boxes{
    padding: 80px 0 0;
}

.services-box {
    height: 100%;
}

.rr-upDown {
    -webkit-animation: upDown 1.3S infinite alternate;
    animation: upDown 1.3S infinite alternate;
}

.what-we-do-2__text {
    font-style: normal;
    font-weight: 700;
    font-size: 200px;
    line-height: 252px;
    color: var(--primary-color);
    opacity: 0.06;
    -webkit-writing-mode: tb-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: tb-rl;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    left: 20px;
    top: 70px;
    position: absolute;
    content: '';
}

@keyframes upDown {
    0% {
        transform: translateY(0px);
    }
    100% {
        transform: translateY(-15px);
        -webkit-transform: translateY(-15px);
        -moz-transform: translateY(-15px);
        -ms-transform: translateY(-15px);
        -o-transform: translateY(-15px);
    }
}

@keyframes rr-zooming {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
}
    100% {
        transform: scale(1);
    }
}

.rr-zooming{
    animation: rr-zooming 3S infinite alternate;
}

img.image-1.rr-zooming {
    filter: brightness(0) saturate(100%) invert(25%) sepia(75%) saturate(2453%) hue-rotate(200deg) brightness(88%) contrast(103%);
    opacity: 0.8;
    position: absolute;
    left: -218px;
    top: -148px;
    width: 15%;
    overflow: hidden;
}

.ready-theme__shape {
    overflow: hidden;
}

img.image-2.rr-zooming {
    filter: brightness(0) saturate(100%) invert(25%) sepia(75%) saturate(2453%) hue-rotate(200deg) brightness(88%) contrast(103%);
    opacity: 0.8;
    position: absolute;
    left: unset;
    top: -148px;
    width: 13%;
    overflow: hidden;
    position: absolute;
    right: 178px;
    top: 552px;
    z-index: -1;
}

/* .service-main::after{
    background-image: url(../image/background.png);
    background-repeat: no-repeat;
    background-size: 100%;
    content: '';
    width: 100%;
    height: 100%;
} */

.services-image::before, .services-image::after {
    content: "";
    background: #fff;
    height: 0;
    width: 0;
    z-index: 1;
    position: absolute;
    -webkit-transition-duration: 1.3s;
    -o-transition-duration: 1.3s;
    transition-duration: 1.3s;
}

.services-image:hover::after, .services-image:hover::before {
    height: 100%;
    opacity:0;
    width: 100%;
}

.services-image::after {
    bottom: 0;
    opacity: .7;
    left: 0;
}

.services-image::before {
    right: 0;
    opacity: 0.5;
    top: 0;
}

 .podact-line {
    position: absolute;
    right: 0;
    bottom: 0;
    animation: rots 2s linear infinite;
    width: 9%;
    filter: brightness(0) saturate(100%) invert(25%) sepia(75%) saturate(2453%) hue-rotate(200deg) brightness(88%) contrast(103%);
}

@keyframes rots{
    50% {
        transform: rotate(5deg);
    }
}

.site-footer-shape-1 {
    position: absolute;
    top: 0;
    right: -30px;
    opacity: 1;
    z-index: 1;
}

.site-footer-shape-1 img{
    filter: brightness(0) saturate(100%) invert(25%) sepia(75%) saturate(2453%) hue-rotate(200deg) brightness(88%) contrast(103%);
    opacity: 0.1;
    animation: animate-img 2s linear infinite;
    -webkit-animation: animate-img 2s linear infinite;
}

@keyframes animate-img {
    0% {
        transform: translateX(-30px);
        -webkit-transform: translateX(-30px);
        -moz-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        -o-transform: translateX(-30px);
}
50% {
    transform: translateX(-10px);
    -webkit-transform: translateX(-10px);
    -moz-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    -o-transform: translateX(-10px);
}
    100% {
        transform: translateX(-30px);
        -webkit-transform: translateX(-30px);
        -moz-transform: translateX(-30px);
        -ms-transform: translateX(-30px);
        -o-transform: translateX(-30px);
}
}


/* banner video */
   

.banner-video .modal-dialog {
    max-width: 600px;
    width: 100%;
}

.banner-video .modal-dialog .modal-content {
    height: 500px;
    background-color: transparent;
    border: none;
}

.banner-video .modal-header {
    padding-bottom: 0;
    border-bottom: none;
}

.banner-video .modal-content .modal-body iframe {
    border-radius: 4px;
}


.close-popup {
    color: #fff !important;
    background-image: none;
    opacity: 1;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary-color);
    border-radius: 100%;
    box-shadow: none;
    border: 1px solid transparent;
    position: absolute;
    right: -20px;
    top: -15px;
}

.close-popup i {
    font-size: 20px;
}

.close-popup:focus {
    box-shadow: none;
}

.close-popup:hover {
    opacity: 1;
}



/* ...................about us section css................  */
.about-us-main{
    padding: 120px 0 15px;
    position: relative;
}

.about__image__one {
    position: relative;
    transform: rotate(10deg);
}

.about__image__one img {
    border-radius: 40px;
    max-width: 80%;
    height: auto;
    position: relative;
}

.about__image__two{
    position: relative;
    transform: rotate(10deg);
    display: flex;
    justify-content: flex-end;
    margin-top: -180px;
    margin-right: 92px;
}

.about__image__two img {
    border-radius: 40px;
    max-width: 65%;
    height: auto;
    border: 10px solid var(--white-text);
}

.about__image__three{
    /* position: absolute;
    left: -48px;
    bottom: -56px;
    max-width: 38%;
    width: 100%;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    flex-direction: column;
    padding: 45px 20px;
    transform: rotate(10deg); */
    position: relative;
    left: -54px;
    bottom: 139px;
    border-radius: 20px;
    transform: rotate(10deg);
}

.about__image__three img {
    /* max-width: 100%;
    border-radius: 20px; */
    /* max-width: 100%;  */
    border-radius: 20px;
    max-width:35%;
    height: auto;
   
}
 

.about-info-icon .about-inner-image{
    position: relative;
    height: 60px;
    width: 60px;
    background: #fff;
    box-shadow: 0px 7px 14px rgba(33, 68, 216, 0.13);
    border-radius: 50%;
    display: inline-block;
    line-height: 64px;
    text-align: center;
}

.about-info-icon .about-inner-image img{
    width: 50%;
    filter: brightness(0) saturate(100%) invert(22%) sepia(90%) saturate(1812%) hue-rotate(198deg) brightness(101%) contrast(105%);
}

.about-info {
    margin-top: 25px;
}

.about-subtitle p{
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 600;
    color: var(--menu-text);
    margin-top: 15px;
    text-transform: capitalize;
}

.about-subtitle p span{
    color: var(--primary-color);
}

.about-info-details {
    display: flex;
    gap: 40px;
    justify-content: start;
    align-items: center;
    margin-bottom: 30px;
}

.about-info-details p{
    line-height: 30px;
    font-weight: 500;
    margin: 0;
    transition: all 400ms ease;
    color: #5c5a5a;
    font-size: 18px;
}

.about-inner-image:after {
    position: absolute;
    content: "";
    border: 2px dashed var(--primary-color);
    opacity: 0.3;
    height: 74px;
    width: 74px;
    border-radius: 50%;
    top: -7px;
    left: -7px;
    animation: tprotate 5s ease-in-out 3s forwards infinite alternate;
}

@keyframes tprotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.about-us-main .shape-mockup{
    position: absolute;
    top: 48%;
     left: 2%;
}

.spin{
    animation: spin 10s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


.pattern {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 42%;
}

.about__image__one:after {
    top: -21px;
    right: 106px;
    bottom: 20px;
    opacity: 1;
    border: 5px solid var(--primary-color);
    transition: all 0.2s linear 0s;
    content: '';
    position: absolute;
    width: 73%;
    height: 100%;
    border-radius: 40px;
    z-index: -1;
}


.about-shape{
    position: absolute;
    bottom: 120px;
    right: 130px;
    animation: zoomInOut 5s ease-in-out infinite;
    -webkit-animation: zoomInOut 5s ease-in-out infinite;
}

@keyframes zoomInOut {
    0%{
        transform: rotate(0deg) scale(0.7);
        opacity: 0;
    }
    50%{
        transform: rotate(180deg) scale(1);
        opacity: 1;
    }
    100%{
        transform: rotate(0deg) scale(0.7);
        opacity: 0;
    }
}

.more-btn{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -40px;
}

.more-btn .sakkal-btn a {
    padding: 16px 60px;
    text-transform: uppercase;
    font-size: 18px;
}

/* .about__image__one .overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all .3s cubic-bezier(.785,.135,.15,.86);
    -ms-transition: all .3s cubic-bezier(.785, .135, .15, .86);
    transition: all .3s cubic-bezier(.785,.135,.15,.86);
}

.about__image__one:hover .pqr .overlay {
    background-color: rgba(0, 0, 0, .05);
} */

.line{
    animation: wave-animation 2s linear infinite ;
    opacity:0;
}

@keyframes wave-animation {
    50% {
        transform: translateX(40px);
    }  
}

/* ...................what-we-do section css................  */

.we-do-main{
    padding: 120px 0 200px;
    background-color: var(--primary-color);
    position: relative;
    z-index: 1;
}

.we-section .wedo-flex h2{
    color: var(--white-text);
    font-size: 40px;
    /* text-align: center; */
    font-weight: 600;
}

.we-do-main:after {
    position: absolute;
    content: '';
    background-image: url(../image/trust-bg-1-1.png);
    width: 100%;
    height: 100%;
    top: 0;
    opacity: 0.02;
    z-index: -1;
}

.we-section  p{
    color: var(--white-text);
    font-size: 18px;
    /* text-align: center; */
    font-weight: 400;
}

.contact-us-btn .sakkal-btn{
    background-color: var(--white-text);
    color: var(--primary-color);
}

.contact-us-btn{
   display: flex;
   justify-content: start;
}

.contact-us-btn .sakkal-btn a{
    color: var(--primary-color);
}



.do-image-main{
    display: flex;
        justify-content: center;
        margin-top: 0px;
        position: relative;
        z-index: 9;
}

.do-image-main img{
    border-radius: 50%;
    width: 320px;
    height: 320px;
}



.testimonials-bg-shape12 img {
    animation: rotateme 25s linear infinite;
    z-index: 9;
    position: relative;

}

@keyframes rotateme {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}


@keyframes rotateme-reverse {
    0% {
        transform: rotate(360deg);
       
}
    100% {
        transform: rotate(0deg);
       
}
}

.image-container{
    position: relative;
}

.testimonials-bg-shape12 {
    z-index: 1;
    position: absolute;
    top: 50%;
    content: "";
    left: 50%;
    transform: translate(-50%, -50%);
}

.do-img-1 {
    position: absolute;
    top: 0;
    /* animation: fRotate-reverse 50s linear infinite;  */
}

.do-img-1 img{
    animation:  rotateme-reverse 25s linear infinite;
    -webkit-animation:  rotateme-reverse 25s linear infinite;
}


.do-img-1 .img1{
    top: 122px;
    left: -12px;
    position: absolute;
     
}


.do-img-1 .img2{
    top: 103px;
    left: 473px;
    position: absolute;

}



.do-img-1 .img3{
    top: 505px;
    left: 259px;
    position: absolute;
}

.do-img-1 img {
   
    width: 80px;
   
}

@keyframes fRotate-reverse {
    0% {
        transform: rotate(360deg);
}
    100% {
        transform: rotate(0deg);
    }
   
}

.inner-image{
    position: relative;
    top: 0;
    animation: rotateme 25s linear infinite;
    width: 550px;
    height: 550px;
}

.we-do-shape1{
    width: 20%;
    position: absolute;
    left: 0;
    bottom:0;
}

.we-do-shape2{
    width: 20%;
    position: absolute;
    right: 0;
    bottom:0;
}

.image-container {
    width: 60%;
    margin-top: 80px;
}

.we-section{
    width: 40%;
}

.we-do-container{
    display: flex;
    align-items: center;
}


/* ...................portfolio css................  */ 

.portfolio-main{
    padding: 120px 0;
    /* background-color: var(--service-bg-color); */
    background-color: var(--white-text);
    position: relative;
    overflow: hidden;
}

.image_box img{
    box-shadow: 0px 0px 60px 0px rgb(1 95 201 / 5%);
    border: 1px solid rgb(70 70 69 / 10%);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: all 0.5s;
}

.project_box {
    margin-bottom: 120px;
    border-radius: 20px;
    position: relative;
    margin-left: 40px;
}

.portfolio-content {
    position: absolute;
    left: 20px;
    bottom: -75px;
    right: 20px;
    background: var(--white-text);
    display: block;
    padding: 20px 30px;
    padding-right: 10px;
    border-radius: 5px;
    z-index: 2;
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--primary-color);
}

.portfolio-content .portfolio-icon {
   background-color: var(--white-text);
   padding: 10px;
   border-radius: 100%;
   width: 60px;
   height: 60px;
   margin-left: auto;
   margin-right: auto;
   position: absolute;
   left: 0;
   right: 0;
   text-align: center;
   top: -32px;
   opacity: 0;
   visibility: hidden;
   -webkit-transform: scale(0);
   transform: scale(0);
   transition:all ease 0.8s ;
   -webkit-transition:all ease 0.8s ;
   -moz-transition:all ease 0.8s ;
   -ms-transition:all ease 0.8s ;
   -o-transition:all ease 0.8s ;
   animation: pulse-animation 2s infinite;
   -webkit-animation: pulse-animation 2s infinite;
}


@keyframes pulse-animation {
    0% {
      box-shadow: 0 0 0 0px rgba(255, 255, 255, 0.2);
    }
    100% {
      box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.portfolio-content .portfolio-icon a i {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 0;
    right: 0;
    text-align: center;
    color: var(--black-text);
    font-size: 22px;
}

.portfolio-content h3 {
    position: relative;
    font-size: 20px;
    line-height: 22px;
    font-weight: 700;
    margin: 5px 0 10px;
    text-transform: uppercase;
    color: var(--menu-text);
}

.portfolio-content h3 a {
    color: var(--menu-text);
}

.portfolio-content p {
    position: relative;
    color: #798795;
    font-size: 18px;
    line-height: 22px;
    margin: 0;
    transition: all 0.2s ease-in-out 0.3s;
}

.project_box:hover .portfolio-content:before {
    height: 100%;
}

.project_box .portfolio-content:before {
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    height: 0px;
    content: '';
    border-radius: 5px;
    transition: all 700ms ease;
    background-color: var(--primary-color);
}

.project_box:hover .portfolio-content h3 a{
    color: var(--white-text);
}

.project_box:hover .portfolio-content p{
    color: var(--white-text);
}

.project_box:hover .portfolio-content .portfolio-icon {
    opacity: 1;
    visibility: visible;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.project_box:hover .image_box img {
    transform: scale(1.05) rotate(1.1deg);
}

.project_box .image_box{
    position: relative;
    display: block;
    overflow: hidden;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.row.portfolio{
    margin-top: 150px;
    position: relative;
    z-index: 9;
}

.project_box:hover .overlay {
    opacity: 1;
}

.project_box .overlay {
    background-color: rgba(3, 13, 40, 0.70);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .7s;
    transition-property: all;
    opacity: 0;
    z-index: 1;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.project_box:hover .portfolio-content {
    border-top: none;
}

.portfoio-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    background-image: url(../image/service_bg_3.jpg);
    z-index: 0;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

/* 
.portfolio{
    padding: 120px 0;
} */

.portfolio-title p{
    text-align: center;
    width: 100%;
}

.portfolio-title h4 {
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 18px;
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    line-height: 1;
    position: relative;
    z-index: 9;
    /* top: -10px; */
    width: 100%;
    text-align: center;
    margin: auto;
    justify-content: center;
}

.what-we-do-2__text2 {
    font-style: normal;
    font-weight: 700;
    font-size: 200px;
    color: var(--primary-color);
    opacity: 0.06;
    -webkit-writing-mode: tb-rl;
    left: 20px;
    /* top: -105px; */
    top:-80px;
    position: absolute;
    content: '';
    width: 100%;
    margin: auto;
    text-align: center;
}

.rr-upDown2 {
    -webkit-animation: upDown2 1.3S infinite alternate;
    animation: upDown2 1.3S infinite alternate;
    position: relative;
    z-index: 9;
}


@keyframes upDown2 {
    0% {
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
        -moz-transform: translateX(0px);
        -ms-transform: translateX(0px);
        -o-transform: translateX(0px);
}
    100% {
        transform: translateX(-15px);
        -webkit-transform: translateX(-15px);
        -moz-transform: translateX(-15px);
        -ms-transform: translateX(-15px);
        -o-transform: translateX(-15px);
}
}

.view-all-btn{
    margin-top: 0;
}

.portfolio-bg-shape{
    animation: upDown 1.3S infinite alternate;
    right: 100px;
    position: absolute;
    z-index: 999999999;
    bottom: 30px;
}

.portfolio-bg-shape-1{
    position: absolute;
    top: 4px;
    right: -13px;
    opacity: 0.3;
    transform: rotate(45deg);
    filter: brightness(0) saturate(100%) invert(25%) sepia(75%) saturate(2453%) hue-rotate(200deg) brightness(88%) contrast(103%);
    animation: portfolio-animate 2s linear infinite;
}


@keyframes portfolio-animate {
    0% {
        transform: translateY(-20px);
}
    50% {
        transform: translateY(-10px);
        -webkit-transform: translateY(-10px);
        -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        -o-transform: translateY(-10px);
    }
    100% {
        transform: translateY(-20px);
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
}
}

.prev-arrow {
    position: absolute;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 100%;
    text-align: center;
    display: inline-block;
    color: var(--white-text);
    /* background-color: var(--top-header-color); */
    background-color: var(--primary-color);
    font-size: 20px;
    top: -44px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
    right: 63px;
}



.next-arrow {
    position: absolute;
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 100%;
    text-align: center;
    display: inline-block;
    color:  var(--white-text);
    /* background-color: var(--top-header-color); */
    background-color: var(--primary-color);
    font-size: 20px;
    top: -44px;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 1;
    right: 8px;
}


.portfolio-bg-shape-2{
    position: absolute;
    bottom: 73px;
    left: 121px;
    opacity: 0.3;
    transform: rotate(45deg);
    filter: brightness(0) saturate(100%) invert(25%) sepia(75%) saturate(2453%) hue-rotate(200deg) brightness(88%) contrast(103%);
    animation: portfolio-animate 2s linear infinite;

}

/* ...................faq section css................  */
.faq-main{
    padding: 120px 0;
    background-color: var(--service-bg-color);
    position: relative;
    overflow: hidden;
}

.faqs{
    position: relative;
}

.faq-image{
    position: absolute;
    left: 8px;
    bottom: -120px;
    z-index: 9;
}

.faq-image img{
    position: relative;
    z-index: 1;
    max-width: 100%;
    height: auto;
}
.faq-inner-image {
    position: relative;
}

.que-mark {
    position: absolute;
    top: 0;
    right: -201px;
    z-index: 99999999;
}

.que-mark img {
    width: 44%;
    /* animation: animate-img 2s linear infinite; */
}

.faq-section{
    margin-top: 50px;
}

.faq-section .card-header{
    position: relative;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 30px;
    border-bottom: none;
    background-color: transparent;
    border: 1px solid var(--border-color);
    box-sizing: border-box;
}

.faq-section .card{
    background: transparent;
    border: none;
    background-color: var(--white-text);
    border-radius: 30px;
    /* border: 1px solid #1d75b9; */
    margin-bottom: 20px;
}

.faq-section .card .card-body{
    padding: 18px 37px 20px;
}

.faq-section .card .card-body p{
    margin-bottom: 0;
    position: relative;
}

.faq-section .card .card-body p:before{
    content: "";
    width: 2px;
    height: calc(100% - 14px);
    position: absolute;
    top: 50%;
    left: -11px;
    transform: translateY(-50%);
    background-color: var(--primary-color);
}

.faq-section .card-header a{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 8px 16px;
}
.faq-section .card-header a:active{
    border-color: transparent;
}

.faq-section .card-header a:active{
    border-color: transparent;
}

.header-info{
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-info i{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--primary-color);
    border-radius: 50%;
    color: var(--white-text);
    font-size: 16px;
}

.faq-header.active{
    background-color: var(--primary-color);
    color: var(--white-text); 
    border-radius: 30px;
}

.faq-header.active .header-info i{
    background-color: var(--white-text); 
    color: var(--primary-color);
    transform: rotate(-45deg);
}

.faq-header.active .faq-arrow i{
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

.faq-section .card:last-child{
    margin-bottom: 0;
}

.faq-collapse{
    position: relative;
    animation: moveHorizontal 2s linear infinite;
}

@keyframes moveHorizontal {
    0% {
        transform: translateZ(0);
    }
    50% {
        transform: translate3d(15px, 0, 0);
    }
    100% {
        transform: translateZ(0);
    }
   
}

.faq-two__image__shape {
    width: calc(100% - 76px);
    height: 427px;
    background-color: var(--primary-color);
    position: relative;
    position: absolute;
    left: calc(50% - 53px);
    bottom: -120px;
    transform: translateX(-50%)!important;
    clip-path: polygon(0 0, 100% 68%, 100% 100%, 0% 100%);
    -webkit-transform: translateX(-50%)!important;
    -moz-transform: translateX(-50%)!important;
    -ms-transform: translateX(-50%)!important;
    -o-transform: translateX(-50%)!important;
}

.faq-two__image__shape:after {
    content: "";
    width: calc(100% - 86px);
    height: 100%;
    position: absolute;
    left: 50%;
    bottom: 43px;
    transform: translateX(-50%);
    background-color: rgb(227 236 247);
}

.faq-main .shape-mockup{
    position: absolute;
    top: 48%;
    right: 2%;
}

.faq-shape .image-1 {
    animation: rotate360 60s linear infinite;
    position: absolute;
    left: -988px;
    top: -543px;
}

.faq-shape img {
    width: 55%;
}

.faq-shape .image-2 {
    width: 57%;
}

.faq-shape .image-2 {
    left: -988px;
    top: -543px;
    position: absolute;
    -webkit-animation: rotate-360 60s linear infinite;
    animation: rotate-360 60s linear infinite;
}

.faq-shape .image-3 {
    animation: rotate360 60s linear infinite;
    width: auto;
    position: absolute;
    left: -135px;
    display: flex;
    top: -328px;
}

.faq-shape{
    overflow-x: hidden;
}

.faq-shape img {
    filter: brightness(0) saturate(100%) invert(15%) sepia(91%) saturate(6604%) hue-rotate(204deg) brightness(99%) contrast(99%);
    -webkit-filter: brightness(0) saturate(100%) invert(15%) sepia(91%) saturate(6604%) hue-rotate(204deg) brightness(99%) contrast(99%);
}



/* ...................testimonial section css................  */
.testimonials-item {
    position: relative;
    max-width: 96%;
    padding: 0 30px 34px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    border: 1px solid #d7d7d7;
    border-radius: 182px;
}

.testimonials-content {
    position: relative;
    z-index: 1;
}

.testimonials-image {
    position: relative;
    margin: -73px auto 28px;
    width: 156px;
    height: 156px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.testimonials-image img {
    position: relative;
    top: -5px;
    width: 156px !important;
    height: 156px;
    border-radius: 50%;
    transition: all 300ms ease;
}

.testimonials-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    right: 2px;
    padding: 3px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--white-text);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.2);
}

.testimonials-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: inherit;
    /* background-color: var(--primary-color); */
    font-size: 14px;
    color: var(--white-text);
}

.testimonials-ratings {
    margin-bottom: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.testimonials-icon-i {
    position: relative;
    display: inline-flex;
    font-size: 16px;
    color: var(--primary-color);
    transition: all 500ms ease;
}

.testimonials-icon-i i{
    font-size: 22px;
}

.testimonials-icon {
    position: relative;
    display: inline-flex;
    font-size: 16px;
    color: #ffa415;
    transition: all 500ms ease;
}



.testimonials-icon:nth-child(1) {
    top: -19px;
}

.testimonials-icon:nth-child(2) {
    top: -10px;
}

.testimonials-icon:nth-child(4) {
    top: -10px;
}

.testimonials-icon:nth-child(5) {
    top: -19px;
    color: #dddddd;
}

.testimonials-quote {
    max-width: 502px;
    margin: 0 auto 20px;
    font-style: italic;
    color: var(--menu-text);
}

.testimonials-name {
    margin-bottom: 6px;
    font-size: 22px;
    font-weight: 700;
    text-transform: capitalize;
    line-height: 1.318;
    color: var(--primary-color);
}

.testimonials-designation {
    margin: 0;
    font-size: 17px;
    text-transform: capitalize;
}

.testimonials-shape {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    overflow: hidden;
}

.testimonials-shape__one {
    display: inline-block !important;
    width: auto !important;
    height: auto;
    position: absolute;
    top: -205px;
    left: -205px;
}

.testimonials-shape__two {
    display: inline-block !important;
    width: auto !important;
    height: auto;
    position: absolute;
    right: -345px;
    bottom: -10px;
}

.testimonials-shape__one {
    display: inline-block !important;
    width: auto !important;
    height: auto;
    position: absolute;
    top: -205px;
    left: -205px;
}

.testimonials-two__thumb__shape-right {
    position: absolute;
    top: 62%;
    right: -72px;
    transform: translateY(-50%);
    z-index: 1;
    width: 200px;
}

.testimonials-two__thumb__shape-left {
    position: absolute;
    top: 62%;
    left: -72px;
    transform: translateY(-50%);
    z-index: 1;
    width: 200px;
}

.testimonials-two__thumb__item {
    cursor: pointer;
    width: 102px;
    height: 102px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    z-index: 2;
    transition: all 500ms ease;
}

.testimonials-two__thumb__item img {
    cursor: pointer;
    width: 98px;
    height: 98px;
    border-radius: 50%;
}

.testimonials-two__thumb__item:hover, .testimonials-two__thumb__item.owl-dot.active {
    background-color: var(--primary-color);
}

.testimonials-two__thumb__item--6 {
    position: absolute;
    right: 49px;
    bottom: -53px;
}

.testimonials-two__thumb {
    width: 100%;
    height: calc(100% + 77px);
    position: relative;
    position: absolute;
    left: 0;
    bottom: 0;
}

.testimonials-two__thumb__item--1 {
    position: absolute;
    top: 19px;
    left: 49px;
}

.testimonials-two__thumb__item--2 {
    position: absolute;
    top: 57%;
    left: -63px;
    transform: translateY(-50%);
}

.testimonials-two__thumb__item--3 {
    position: absolute;
    left: 49px;
    bottom: -53px;
}

.testimonials-two__thumb__item--4 {
    position: absolute;
    top: 19px;
    right: 49px;
}

.testimonials-two__thumb__item--5 {
    position: absolute;
    top: 57%;
    right: -63px;
    transform: translateY(-50%);
}

.next-section{
    padding: 120px 0;
}


.testimonial-details{
    position: relative;
    margin-top: 130px;
}


.testimonials-main{
    padding: 120px 0 150px;
}

.testimonial-slider{
    width: 70%;
    margin: auto;
}

.testimonials-title{
    text-align: center;
}

.testimonials-title p{
    text-align: center;
    line-height: 44px;
    margin-bottom: 10px;
}

.testimonials-title h4 {
    display: flex;
    justify-content: center;
}

.testimonials-title h2{
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 600;
    color: var(--menu-text);
    margin-top: 15px;
    text-transform: capitalize;
}

.testimonials-title h2  span {
    color: var(--primary-color);
}

.testimonials-title p{
    font-size: 20px;
    font-weight: normal;
    color: var(--menu-text);
    margin-top: 5px;
}

.testimonial-slider .slick-slide{
    padding-top: 80px;
}

/* ..................blog section css................  */

.blog-main{
    padding: 0px 0 120px;
}

.blog-title{
    /* padding: 120px 0; */
    padding: 80px 0 150px;
    background: var(--primary-color);
    color: var(--white-text);
    background-image: url(../image/blog-section.png);
    background-repeat: no-repeat;
    background-size: cover;
}

.blog-title h4{
    color: var(--white-text);
}

.blog-title h4:before {
    content: '';
    width: 43px;
    height: 3px;
    background-color: var(--white-text);
    border-radius: 4px;
    margin-right: 10px;
}

.blog-title h2{
    margin-bottom: 0;
    font-size: 40px;
    font-weight: 600;
    color: var(--white-text);
    margin-top: 15px;
    text-transform: capitalize;
}

.blog-title p{
    color: var(--white-text);
}
.sakkal-btn.blog-btn{
    background-color: var(--white-text);
}

.sakkal-btn.blog-btn a{
    color: var(--primary-color);
}

.blog-box {
    position: relative;
    padding: 9px;
    border: 1px solid #dddddd;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--white-text);
}

.recent-update-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    z-index: 1;
    width: 100%;
}

.recent-update-image img{
    border-radius: 20px;
}

.recent-update-image img.update1-img{
    height: 350px;
}

.recent-update-details {
    position: relative;
    /* padding: 35px 42px 32px; */
    padding: 20px;
    z-index: 1;
}

.recent-update-details span{
    color: #5c5a5a;
    font-size: 18px;
}

.recent-update-details a h3{
    color: var(--primary-color);
    font-size: 24px;
    font-weight: 600;
    text-transform: capitalize;
}

.recent-update-details a h3{
    margin-bottom: 0;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 460px;
    line-height: 1.5;
}

.blog-box{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 5px;
}

.read-more-btn{
    margin-top: 10px;
}

.blog-details{
    margin-top: -125px;
}

.blog-inner .blog-box{
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.blog-inner{
    display: flex;
    gap: 24px;
}

.blog-info{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.blog-inner .recent-update-details  a h3 {
    font-size: 20px;
}

.sakkal-btn.read-more-btn i{
    display: flex;
    align-items: center;
}

.sakkal-btn.read-more-btn a.arrow-btn{
    padding: 20px;
}

.sakkal-btn.read-more-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.blog-box.aos-init.aos-animate:after {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 150px;
    width: 150px;
    content: "";
    z-index: -1;
    background-color: #7ebbff;
    transition: all 500ms ease;
    mask: url('data:image/svg+xml;utf8,<svg viewBox="0 0 93 93" xmlns="http://www.w3.org/2000/svg"><path d="M53.7656 64.3846C44.5389 92.7651 3 92.3621 0 93H83C88.5229 93 93 88.5228 93 83V22.8923V0C82.1861 47.9899 65.9651 26.86 53.7656 64.3846Z"/></svg>');
    mask-repeat: no-repeat;
    mask-position: top right;
    mask-size: cover;
}

.blog-box:hover::before {
    opacity: 1;
    height: 100%;
}
.blog-box::before {
    background-color: var(--primary-color);
    position: absolute;
    top: 0;
    height: 0;
    left: 0;
    right: 0;
    content: "";
    transition: all 500ms ease;
    border-radius: 10px;
    z-index: -1;
    opacity: 0;
}

.blog-box:hover .recent-update-details span{
    color: var(--white-text);
}

.blog-box:hover .recent-update-details a h3{
    color: var(--white-text);
}

.blog-box:hover .sakkal-btn.read-more-btn{
    border: 1px solid var(--white-text);
}

a.arrow-btn::before{
    content: unset!important;
}

a.arrow-btn::after{
    content: unset!important;
}

.sakkal-btn.read-more-btn a.arrow-btn:hover {
    color: var(--primary-color);
    background: var(--white-text);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.update-img::before, .update-img::after {
    content: "";
    background: var(--white-text);
    height: 0;
    width: 0;
    z-index: 1;
    position: absolute;
    -webkit-transition-duration: 1.3s;
    -o-transition-duration: 1.3s;
    transition-duration: 1.3s;
}

.update-img:hover::after, .update-img:hover::before {
    height: 100%;
    opacity:0;
    width: 100%;
}

.update-img::after {
    bottom: 0;
    opacity: .7;
    left: 0;
}

.update-img::before {
    right: 0;
    opacity: 0.5;
    top: 0;
}


/* ...................sakkal btn css................  */

.sakkal-btn {
    background-color: var(--primary-color);
    border-radius: 4px;
    transition: all 0.5s;
    border: 1px solid var(--primary-color);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display:inline-block;
    border-radius: 30px;
    /* height: 100%; */
}

.sakkal-btn a {
     padding: 16px 32px;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 600;
    color: var(--white-text);
    display: inline-block;
    z-index: 2;
    position: relative;
}

.sakkal-btn a:before {
    position: absolute;
    content: "";
    background-color: var(--primary-color);
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0);
    z-index: -1;
}

.sakkal-btn a:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: "";
    background-color:  var(--primary-color);
    transform: translate3d(0, -100%, 0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
    z-index: -1;
}

.sakkal-btn a:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.sakkal-btn a:hover::after {
    transform: translate3d(0, 0, 0);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear;
}

.sakkal-btn a::before, .sakkal-btn a::after {
    background-color: var(--white-text);
}

.sakkal-btn a:hover{
    color: var(--primary-color);
}

/*scroll to top */
.scrollTop a {
    color: var(--white-text);
    font-size: 20px;
    display:block;
}

.scrollTop {
    position: fixed;
    right: 4%;
    border-radius: 50%;
    z-index: 9;
    bottom: 5%;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    opacity: 0;
    transition: all 0.4s ease-in-out 0s;
    background-color: var(--primary-color);
    border: 1px solid var(--white-text);
    animation: pulse-animation 1.5s infinite;
}

/*.......................... top banner css ........................ */
.stricky-header{
    /* top:0%;
    position:sticky;
    background-color:var(--white-text);
    z-index:99;
    box-shadow: 0px 0px 12px var(--box-shadow);
    transform:translateY(0%);
    transition:all 0.5s ease;
    visibility: hidden; */
    /* margin-top: -136px!important; */

    position: fixed;
    z-index: 991;
    top: 0;
    left: 0;
    background-color: #fff;
    width: 100%;
    visibility: hidden;
    -webkit-transform: translateY(-120%);
    transform: translateY(-120%);
    -webkit-transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: visibility 500ms ease, -webkit-transform 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease;
    transition: transform 500ms ease, visibility 500ms ease, -webkit-transform 500ms ease;
    -webkit-box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 10px 60px 0px rgba(0, 0, 0, 0.05);
}

.stricky-header.stricky-fixed{
    transform: translateY(0);
    visibility: visible;
}

.stricky-header.stricky-fixed .navbar-inner {
    box-shadow: none;
}



/* .........................service package css.....................  */



/* ......................footer section css.......................  */



/* our service */



/* about us */


/* team member */



/* recent update */



/*.........................team-listing page css......................*/

/* ...........................services page css........................  */


/*------ Price Page CSS ------*/



/*------ Portfolio Page CSS ------*/


/*.....contact page css.....*/


 
    /* ...................blog page css .................. */


 /* ------------terms & condition-------------- */
  
    
/* ...................blog details page css .................. */


/*index page responsive css */

@media only screen and (min-width:1401px) and (max-width:1599px){
  
}


@media only screen and (max-width: 1400px) {

   

}

@media only screen and (max-width: 1200px) {

}

@media only screen and (max-width: 992px) {

    /* navbar */
    .header-main .navbar-expand-md .navbar-nav .nav-link {
        padding-left: 5px;
        padding-right: 5px;
    }

    .header-main .navbar-expand-md .navbar-nav {
        gap: 8px;
    }
    

    .sakkal-btn a {
        padding: 8px 16px;
        font-size: 14px;
    }

    .main-menu li a {
        font-size: 16px;
    }
    
    .project_details {
        width: 85%;
        margin: auto;
        padding: 8px 12px;
        border-radius: 10px;
    }

  
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
   
    
}




@media only screen and (max-width: 768px) {

    /* navbar */
    .header-main .navbar-expand-md .navbar-nav .nav-link {
        padding-left: 8px;
        padding-right: 8px;
    }

    .main-menu li a {
        font-size: 16px;
    }

    .header-main .navbar-expand-md .navbar-nav {
        margin: 16px 0;
    }

    .sakkal-btn a {
        padding: 12px 24px;
        font-size: 16px;
    }

   

}

@media only screen and (max-width:767px){
   
}



@media only screen and (max-width: 576px) {

    /* navbar */
    .header-main .navbar-expand-md .navbar-nav {
        gap: 4px;
    }

   
}


@media only screen and (max-width:375px){
  
    
}



@media only screen and (max-width:320px){
        

}


