/* @import url('https://fonts.googleapis.com/css2?family=Cal+Sans&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap'); */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');



:root {
    --white: #fff;
    --black: #000;
    --dark-blue: #080822;
    --line-border-fill: #3498db;
    --theme-color: #006cb4;
    --line-border-empty: #e0e0e0;
    --dark-blue: #006cb4;
    --heading: "Sora", sans-serif;
    --body-font: "Inter", sans-serif;
}

/* 

font-family: 'Poppins', sans-serif;

*/

html,
body {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
}

a {
    text-decoration: none !important;
    display: inline-block;
}

p:last-of-type {
    margin-bottom: 0px;
}

p {
    font-size: 1.05rem;
    line-height: 1.7rem;
}

li {
    color: #dbdbdb;

}


.form-control,
.form-select {
    background: transparent;
    border: 0px;
    box-shadow: none;
    outline: none;
    border-radius: 0px;
}

.form-control:focus,
.form-select:focus {
    /* background: #ffffff00; */
    border: 0px;
    box-shadow: none !important;
    outline: none !important;
}

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

/*=== Common Css Start ===*/

/*--- Section Spacing Start ---*/

.sec-space-40 {
    padding: 40px 0;
}

.sec-space {
    padding: 80px 0;
}

.sec-space-top {
    padding: 80px 0 0;
}

.sec-space-bottom {
    padding: 0 0 80px;
}

/*--- Section Spacing End ---*/

/*--- Section Heading Start ---*/

.section-head {
    margin-bottom: 20px;
}

.section-head h2 {
    padding-bottom: 20px;
    position: relative;
    font-weight: bold;
    font-size: 40px;
    line-height: 1.2;
}

.section-head p {
    margin-top: 20px;
}

.section-head h6 {
    position: relative;
    display: inline-block;
    padding-left: 50px;
    font-size: 17px;
    color: var(--theme-color);
    font-weight: 600;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading);
}


/*--- Section Heading End ---*/

/*--- Button Start ---*/

.btn {
    font-size: 14px;
    border-radius: 8px;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.btn:focus,
.btn:hover {
    outline: none;
    box-shadow: none;
}

.btn-solid {
    transition: all 0.2s ease-out;
    font-size: 17px;
    padding: 16px 28px 16px 28px;
    line-height: 1;
    display: inline-block;
    margin: 0;
    margin-top: 20px;
    white-space: nowrap;
    vertical-align: middle;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    text-transform: capitalize;
    cursor: pointer;
    border: 1px solid transparent;
    outline: 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: var(--dark-blue);
    /* box-shadow: 12px 12px 20px 0 rgba(1, 96, 231, .3); */
    color: var(--white);
}

.btn-solid:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 1;
    -webkit-transform: translate(-105%, 0);
    transform: translate(-105%, 0);
    background-color: rgba(255, 255, 255, .8);
}

.btn-solid:hover:before {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.btn-solid:hover {
    color: var(--white);
}

.btn-hamburger {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-block;
    background: #000814;
    position: relative;
    transition: all .5s;
}

.btn-hamburger:hover {
    background: var(--white);
    transition: all .5s;
}

.btn-hamburger::before,
.btn-hamburger::after {
    position: absolute;
    height: 2px;
    right: 10px;
    content: '';
    background: var(--white);
    transition: all .5s;
}

.btn-hamburger:hover::before,
.btn-hamburger:hover::after {
    background: #0b0c54;
    transition: all .5s;
}

.btn-hamburger::before {
    top: 15px;
    content: '';
    width: 12px;
    transition: all .5s;
}

.btn-hamburger::after {
    bottom: 15px;
    content: '';
    width: 20px;
}

.btn-hamburger:hover::before {
    transition: all .5s;
    width: 20px;
}

/*--- Button End ---*/

/*=== Common Css End ===*/

/*--- Animation Start ---*/

@-webkit-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@-o-keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}

@keyframes animationFade {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        -o-transform: none;
        transform: none;
    }
}


/*--- Animation End ---*/

/*--- Header Start ---*/
.main-header {
    position: relative;
    background-color: var(--white);
    width: 100%;
    border-style: solid;
    border-width: 0px 0px 1px 0px;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 8px 8px 30px 0px rgba(41.999999999999986, 67.00000000000004, 113, 0.15);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    z-index: 999;
}

.header-show {
    position: fixed;
    left: 0;
    top: 0;
    background: var(--white);
    width: 100%;
    -webkit-animation-name: animationFade;
    -o-animation-name: animationFade;
    animation-name: animationFade;
    -webkit-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.navbar-brand {
    width: 170px;
    height: auto;
    padding: 10px 0;
    margin: 0;
}

.navbar {
    padding: 0px;
}

.navbar-collapse {
    height: 110px;
}

.navbar-nav {
    height: 100%;
    align-items: center;
}

.nav-item,
.nav-link {
    height: 100%;
}

.nav-link {
    display: flex;
    align-items: center;
    font-weight: 500;
}

.navbar-collapse ul>li {
    margin-right: 35px;
}

.navbar-collapse ul>li>a {
    padding: 3px 0 !important;
    color: var(--black) !important;
    font-weight: 600;
    text-transform: capitalize;
    position: relative;
    z-index: 9;
    font-size: 16px;
    transition: all .5s;
}

.navbar-collapse ul>li>a.active,
.navbar-collapse ul>li>a:hover {
    color: #006cb4 !important;
    transition: all .5s;
}

.navbar-collapse ul>li>a::before {
    position: absolute;
    height: 5px;
    width: 0%;
    bottom: -3px;
    right: 0;
    background: #006cb4;
    content: "";
    display: block;
    border-top-left-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 0;
    left: auto;
    right: 0;
    transition: all 0.3s linear;
}

.navbar-collapse ul>li>a.active::before,
.navbar-collapse ul>li>a:hover::before {
    left: 50%;
    width: 50%;

}

.navbar-collapse ul>li>a::after {
    position: absolute;
    height: 5px;
    width: 0%;
    bottom: -3px;
    left: 0;
    background: #006cb4;
    content: "";
    display: block;
    border-top-left-radius: 5px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 5px;
    transition: all 0.3s linear;
}

.navbar-collapse ul>li>a.active::after,
.navbar-collapse ul>li>a:hover::after {
    left: auto;
    right: 50%;
    width: 50%;
}

/* .navbar-text .btn-solid {
    padding: 8px 20px;
    margin-top: 0px;
} */


/*=== Header End ===*/


/*--- Banner Start ---*/
/* 
.home-slider {
    position: relative;
}

.carousel {
    position: relative;
}

.carousel-inner:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    content: '';
    z-index: 9;
}

.banner-wrapper {
    position: absolute;
    left: 0;
    top: 40%;
    transform: translateY(-50%);
    width: 100%;
    height: auto;
    z-index: 99;
}

.banner-text {
    max-width: 670px;
}

.banner-text h1 {
    color: var(--white);
    font-size: 70px;
    line-height: 80px;
    font-weight: 800;
    margin-bottom: 40px;
}

.banner-text p {
    font-size: 1.05rem;
    line-height: 1.7rem;
    color: var(--white);
    margin-top: 25px;
    margin-bottom: 25px;
}

.banner-text .btn {}

.banner-logo {
    width: 80px;
    height: auto;
}

.carousel-indicators {
    position: relative;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    padding: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    list-style: none;
    align-items: center;
    justify-content: flex-start;
}

.carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 30px;
    padding: 0;
    margin-right: 30px;
    margin-left: 0px;
    text-indent: 0;
    cursor: pointer;
    background-color: transparent;
    background-clip: padding-box;
    border: 2px solid var(--sky) !important;
    border-radius: 50%;
    position: relative;
    color: var(--sky);
}

.carousel-indicators button.active {
    width: 40px;
    height: 40px;
    border: 1px solid var(--blue) !important;
    color: var(--blue);
}

.indicator-cover {
    position: absolute;
    left: 0;
    bottom: 10%;
    width: 100%;
    height: auto;
}


.banner-thumb img {
    height: 400px;
}

.btn-text {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.btn-text img {
    width: 34px;
}

.banner-btn {
    background-color: var(--theme-color) !important;
} */

/*--- Banner End ---*/




/* Clientele Start  */

/* 
.slider-clientele .cli-image img {
    filter: brightness(0) invert(1);
    object-fit: contain;
}

.slider-clientele .cli-image {
    height: 60px;
    position: relative;
}

.slider-clientele .cli-image::before {
    height: 14px;
    position: absolute;
    width: 14px;
    top: 0;
    right: 0;
    border-radius: 50%;
    z-index: 9;
    content: '';
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(94, 125, 255, 1) 15%, rgba(43, 57, 249, 0.7) 30%, rgba(21, 28, 125, 0.6895133053221288) 49%, rgba(6, 9, 38, .3) 87%);
} */


/* Clientele End */





/*--- About Home Start ---*/

.about-home {
    background-image: url(../images/main-slider-shape-1.png);
    background-position: top right;
    background-repeat: no-repeat;
    position: relative;
    background-size: contain;
}


.about-home-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    box-shadow: 0px 10px 20px 0px rgba(130, 136, 147, 0.15);
}

.about-home-image .image:hover img {
    -webkit-animation: movebounce 3s linear infinite;
    animation: movebounce 2s linear infinite;
}

@keyframes movebounce {
    0% {
        -webkit-transform: translateY(0px);
        transform: translateY(0px);
    }

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

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

.about-home-image .row .col-lg-6:nth-child(1),
.about-home-image .row .col-lg-6:nth-child(2) {
    margin-bottom: 20px;
}

.about-home-image .row .col-lg-6:nth-child(1) .image img {
    border-radius: 25px 0 0 0;
}

.about-home-image .row .col-lg-6:nth-child(2) .image img {
    border-radius: 0 25px 0 0;
}

.about-home-image .row .col-lg-6:nth-child(3) .image img {
    border-radius: 0 0 0 25px;
}

.about-home-image .row .col-lg-6:nth-child(4) .image img {
    border-radius: 0 0 25px 0;
}

.about-content {
    height: 100%;
    position: relative;
    padding-left: 60px;
}

.about-content p {
    margin-bottom: 15px;
}

.about-content ul li {
    font-size: 16px;
    padding: 5px 5px 5px 30px;
    position: relative;
}

.about-content ul li span {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}


/*--- About Home End ---*/




/* ---- about page start ----- */
/* 
.Short-Story {
    padding: 60px 0;
}

.swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    padding: 120px 0;
}

.about-swiper-slider {
    height: 90vh;
    overflow: hidden;
}

.slider-img {
    width: 100%;
    height: auto;
}

.slider-img img {
    width: 100%;
    height: auto;
    vertical-align: middle;
    display: inline-block;
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
    left: 2% !important;
    right: auto !important;
}

span.swiper-pagination-bullet.swiper-pagination-bullet {
    width: 15px;
    height: 15px;
    background-color: #ffffffce !important;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: transparent !important;
    border: 3px solid var(--line-border-empty) !important;
}

.team {
    padding: 80px 0;
    background: #181818;
}

.team-box .image-box img {
    border-radius: 15px;
}

.testimoniam {
    padding: 80px 0;
}

.testimoniam .customer-box {
    background: rgba(0, 0, 0, 0.8);
    padding: 50px 60px;
}

.testimoniam .customer-box {
    border: 1px solid #3f405c;
}

.testimoniam .cust-image img {
    width: 100%;
    border-radius: 50%;
    height: 100%;
}

.testimoniam .customer-name span {
    color: #0ac6ff;
    font-weight: 600;
}

.testimoniam-slider.owl-theme .owl-dots {
    text-align: left !important;
}

.testimoniam-slider.owl-theme .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    margin: 5px 5px;
    background-color: #f2f4ff6b;
}

.testimoniam-slider.owl-theme .owl-dots .owl-dot.active span {
    background: transparent;
    border: 3px solid #0ac6ff;
}

.clients {
    padding: 80px 0;
    border-top: 1px solid #121230;
    border-bottom: 1px solid #121230;
}

.client-img {
    padding: 20px 20px;
    width: 48%;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.048);
    border-radius: 4px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    border-left: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 25px 45px rgba(255, 255, 255, .03);
}

.client-img img {
    max-width: 100%;
} */

/* ---- about page end ----- */




/* ----- Feature part start ------- */
.feature-list li {
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--black);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.feature-list li a {
    font-size: 16px;
    color: var(--black);
    font-weight: 600;
}

.feature-list li span i {
    color: var(--theme-color);
    margin-right: 14px;
    transform: rotate(45deg);
}

/* .feature-home-image {
    background-color: #fff;
    height: 450px;
    animation: coloranimate 3s linear infinite;
} */

.feature-home-image {
    position: relative;
    z-index: 5;
}

.feature-shapImg1,
.feature-shapImg2 {
    position: absolute;
    height: 300px;
    object-fit: contain;
    z-index: 2;
    -webkit-animation-name: float-bob-x;
    animation-name: float-bob-x;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}


@keyframes float-bob-x {
    0% {
        transform: translateX(-30px);
    }

    50% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(-30px);
    }
}

.feature-shapImg1 {
    top: 0;
    left: -160px;
}

.feature-shapImg2 {
    bottom: 0;
    right: -130px;
}


@keyframes coloranimate {
    0% {
        filter: hue-rotate(0deg);
    }

    100% {
        filter: hue-rotate(360deg);
    }
}

/* ------ Feature part start ------- */

/* 
.our-projects {
    overflow: hidden;
}

.gallery-grid {
    max-width: 100%;
    margin: auto;
}

.gallery-item {
    position: relative;
    width: 33.333%;
    padding: 20px;
}

.item-inner {
    width: 100%;
    height: 100%;
    border: 1px solid var(--line-border-empty);
    border-radius: 15px;
    -webkit-box-shadow: 8px 8px 30px 0 rgba(42, 67, 113, .15);
    overflow: hidden !important;
}

.gallery-item .item-inner::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity .5s ease-out;
    background-image: -moz-linear-gradient(90deg, rgb(0, 32, 74) 0%, rgba(0, 32, 74, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, rgb(0, 32, 74) 0%, rgba(0, 32, 74, 0) 100%);
    background-image: -ms-linear-gradient(90deg, rgb(0, 32, 74) 0%, rgba(0, 32, 74, 0) 100%);
    z-index: 1;
}

.gallery-item:hover.gallery-item .item-inner::before {
    opacity: 1;
}

.gallery-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    background-color: var(--white);
    color: var(--dark-blue);
    text-align: center;
    padding: 13px 10px 20px;
    background-position: center bottom;
    transition-delay: .1s;
    transition-timing-function: ease-in-out;
    transition-duration: .5s;
    transition-property: all;
    transform-origin: bottom;
    transform-style: preserve-3d;
    transform: scaleY(0);
    z-index: 2;
}

.gallery-item:hover .gallery-content {
    transform: scaleY(1.0);
}

.gallery-title {
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
    line-height: 27px;
    letter-spacing: -0.02em;
    margin: 0;
    font-family: var(--heading);
}

.gallery-content .item-author {
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    color: var(--white);
}

.gallery-arrow {
    position: absolute;
    right: 40px;
    bottom: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: var(--dark-blue);
    color: var(--theme-color);
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    -webkit-transition: all 500ms ease;
    transition: all 500ms ease;
    z-index: 3;
}

.gallery-item:hover .gallery-arrow {
    -webkit-transform: scale(1);
    transform: scale(1);
    transition-delay: 500ms;
    opacity: 1;
}

.filter-buttons button {
    margin-right: 14px;
}
@media (max-width: 768px) {
    .gallery-item {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .gallery-item {
        width: 100%;
    }
} */



/* portfolio end---- */





/* Service List Start  */

.text-uppercase::after,
.text-uppercase::before {
    position: absolute;
    content: "";
    height: 2px;
    background: var(--theme-color);
    top: 4.5px;
    left: 0;
}

.text-uppercase::after {
    width: 20px;
    /* height: 1px; */
    left: 0;
    top: 12px;
}

.text-uppercase::before {
    width: 35px;
}

.service-box {
    position: relative;
    padding: 37px 35px 32px 35px;
    -webkit-box-shadow: 8px 8px 30px 0 rgba(42, 67, 113, .15);
    background-color: var(--white);
    border-radius: 15px;
    transition: all .7s;

}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    opacity: .8;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.service-box .overlay {
    background-color: #0039e4;
    background-image: linear-gradient(145deg, #0039e4, #04dbf1);
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    border-radius: 15px;
    opacity: 0;
}

.service-box:hover .overlay {
    opacity: 1;
}

.service-box:hover {
    background: none;
    color: var(--white);
    transition: all 0.3s ease-in-out;
}

.section-head {
    max-width: 700px;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background-image: linear-gradient(145deg, #0039e4, #04dbf1);
    box-shadow: 8px 8px 20px 0 rgba(42, 67, 113, .3);
    -webkit-box-shadow: 8px 8px 20px 0 rgba(42, 67, 113, .3);
    margin: 0 0 20px;
    transition: all 0.3s ease-in-out;
}

.service-icon img {
    width: 40px;
    height: 28px;
    object-fit: cover;
    transition: all 0.3s ease-in-out;
}

.service-icon img+img {
    display: none;
    transition: all 0.3s ease-in-out;
}

.service-box:hover .service-icon {
    background: var(--white);
    transition: all 0.3s ease-in-out;
}

.service-box:hover .read-more {
    background: var(--dark-blue);
    transition: all 0.3s ease-in-out;
}

.service-box:hover img {
    display: none;
    transition: all 0.3s ease-in-out;
    /* filter: invert(1); */
}

.service-box:hover img+img {
    display: block;
    transition: all 0.3s ease-in-out;
}

.service-box .big-number {
    position: absolute;
    right: 20px;
    bottom: -13px;
    font-size: 75px;
    font-weight: 900;
    font-family: "Red Hat Display", sans-serif;
    line-height: 1;
    color: rgba(165, 183, 210, .2);
    z-index: 0;
    transition: all ease;
}

.service-box:hover .big-number {
    color: rgba(255, 255, 255, .2);
    transition: all ease;
}

.service-body p {
    font-size: 1rem;
    line-height: 1.6rem;
}

.service-body h5 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-body .read-more {
    padding: 18px;
    border-radius: 8px;
    margin-top: 15px;
    color: #73ffd8;
    background: transparent;
}

.service-body .read-more span {
    /* font-size: 14px; */
    /* margin-left: 5px; */
}

.theme-color {
    color: var(--theme-color);
    margin-left: 6px;
    font-size: 15px;
}

/* Service List End  */

/* service  start */
.domain-input .form-control.s-form-control {
    flex: 0 0 74%;
}

.domain-input .submit-btn {
    padding: 15px 30px;
    background-color: var(--white);
    color: var(--dark-blue);
    border-radius: 40px;
    text-transform: uppercase;
    transition: all .6s;
}

.domain-input .submit-btn:hover {
    border: 1px solid #6d74ff;
    /* box-shadow: rgb(255 255 255 / 30%) -1px 1px 22px; */
    transition: all .6s;
}

/* service end */

/* Work Progress Start  */


.work-progress .section-head {
    max-width: 650px;
    margin: 0 auto;
}

.work-progress-box {
    text-align: center;
}

.work-progress-image {
    margin: 0 auto 20px;
    width: 150px;
    height: 150px;
    background: linear-gradient(to left, #2163ff, #55f8db);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    border-radius: 50%;
}

.work-progress-image::after {
    position: absolute;
    left: 2px;
    top: 2px;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    background: var(--dark-blue);
    content: '';
    border-radius: 50%;
    z-index: -1;
}

.work-progress-image img {
    width: 64px;
    height: 64px;
}

.work-progress-content h5 {
    margin-bottom: 15px;
    text-transform: uppercase;
}

.work-progress-content p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
    line-height: 24px;
    color: #ebebeb;
}

.workflow-btn {
    margin-top: 50px;
}

/* Work Progress End  */


/* Portfolio Start  */
.portfolio-works {
    position: relative;
}

.portfolio-works::before {
    position: absolute;
    left: 50%;
    top: -25px;
    transform: translateX(-50%);
    width: 3px;
    height: 50px;
    border-radius: 2px;
    background: linear-gradient(to top, #2163ff, #55f8db);
    content: '';
}

.portfolio-works::after {
    position: absolute;
    left: 50%;
    bottom: -25px;
    transform: translateX(-50%);
    width: 3px;
    height: 50px;
    border-radius: 2px;
    background: linear-gradient(to top, #2163ff, #55f8db);
    content: '';
}

.portfolio-wrapper {
    column-gap: 10px;
}

.portfoliopanel {
    color: var(--white);
    height: 380px;
    cursor: pointer;
    flex: 0.5;
    position: relative;
    z-index: 1;
    border-radius: 20px;
    transition: flex 0.6s ease-in;
    overflow: hidden;
}

.portfoliopanel.inn::before {
    transition: all .5s;
    opacity: 1;
}

.portfoliopanel h5 {
    position: absolute;
    left: 20px;
    bottom: 20px;
    opacity: 0;
    margin: 0;
}

.portfoliopanel.inn {
    flex: 1.3;
    box-shadow: rgb(255 255 255 / 20%) -1px 1px 22px;
}

.portfoliopanel.inn h5 {
    opacity: 1;
}

.portfoliopanel img {
    object-fit: cover;
    opacity: .9;
    transition: all flex .8s ease-in;
}

.portfoliopanel .visit-link {
    position: absolute;
    right: 20px;
    bottom: 20px;
    color: #00dcff;
    font-size: 16px;
    transition: all .5s;
    opacity: 0;
}

.portfoliopanel .visit-link:hover {
    color: var(--white);
    transition: all .5s;
}

.portfoliopanel.inn .visit-link {
    opacity: 1;
    transition: all .5s;

}

/* Portfolio End  */

/* Website Portfolio Start  */

.project-content {
    padding: 15px 0px 20px;
    border-bottom: 1px solid #202040;
}

.project-content h4 {
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 32px;
}

.btn-learn {
    color: #73ffd8;
    margin-top: 20px;
    border-radius: 0px;
    text-transform: capitalize;
}

.btn-learn span {
    margin-left: 7px;
}



/* Website Portfolio End  */

/* Domain Search Start  */

.domain-main {
    position: relative;
    background: url(../images/bg-domain.webp) no-repeat center;
    background-size: cover;
    padding: 120px 0;
}

.domain-input {
    max-width: 550px;
    margin: 0 auto;
}

.domain-input .form-control {
    border: 1px solid #9c9c9c;
    color: var(--white);
    flex: 0 0 76%;
    border-radius: 30px;
    height: 48px;
    text-indent: 15px;
}

.domain-input .btn {
    flex: 0 auto;
    margin: 0px;
    height: 48px;
    line-height: 48px;
    padding: 0 35px;
    background: var(--white);
    color: var(--dark-blue);
}

/* Domain Search End  */


/* How Its Works Start  */

.how-it-works .section-head {
    max-width: 650px;
    margin: 0 auto;
}

.progress-cover {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
    padding-bottom: 40px;
}

.np-buttons {
    width: fit-content;
}

.progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 30px;
    max-width: 100%;
    width: 80%;
}

.progress-container::before {
    content: ' ';
    background-color: var(--line-border-empty);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    height: 4px;
    width: 100%;
    z-index: -1;
}

.circle {
    color: #999;
    border-radius: 50%;
    height: 150px;
    width: 150px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: .4s ease;
    position: relative;
    z-index: 1;
}


.circle::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, #2163ff, #55f8db);
    content: '';
    border-radius: 50%;
    z-index: -1;
}

.circle::after {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 145px;
    height: 145px;
    background: var(--dark-blue);
    content: '';
    border-radius: 50%;
    z-index: -1;
}

.circle img {
    width: 64px;
    height: 64px;
}

.circle h5 {
    flex: 0 0 100%;
    position: absolute;
    bottom: -50px;
    color: var(--white);
    transition: all .4s;
}

.circle.active h5 {
    transition: all .4s;
}

.circle.active {
    border-color: var(--line-border-fill);
}

.btn:disabled {
    color: #b8b791;
    cursor: not-allowed;
}



/* How Its Works End  */




/* Home Contact Start  */

.home-contact {
    position: relative;
    z-index: 1;
}

.home-contact::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 49.6%;
    height: 100%;
    content: '';
    background-size: cover;
    z-index: -1;
}

.map-home {
    height: 100%;
    width: 100%;
    /* filter: grayscale(1); */
}

.map-home iframe {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.hcontact-form {
    padding-left: 60px;
}

.hcontact-form .btn {
    border-radius: 5px;
    width: 100%;
}

.hcontact-form .section-head h2 {
    font-size: 40px;
}

.hcontact-form .section-head p {
    font-size: 18px;
    font-weight: 500;
    margin: 15px 0 25px;
}

.hcontact-form .single-input textarea {
    font-size: 16px;
    font-weight: 500;
}

.hcontact-form .single-input input {
    height: 48px;
    font-weight: 500;
    font-size: 16px;
}

.hcontact-form .single-input input::placeholder,
.hcontact-form .single-input textarea::placeholder {
    font-size: 16px;
}


.hcontact-form .single-input input,
.hcontact-form .single-input textarea {
    background: #fff;
    border: 0px !important;
}

.hcontact-form .btn {
    margin-top: 20px;
    padding: 13px 0;
}

/* Home Contact End  */


/* Testimonial Start  */



.testimonial-image {
    height: 100px;
    width: 100px;
    border-radius: 100%;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: auto;
}

.testi-profile-detail {
    padding-left: 20px;
}

.testi-profile-detail h5 {
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    transition: all .7s;
    padding-bottom: 7px;
}

.testimonial-wrap:hover .testi-profile-detail h5 {
    color: #fff;
    transition: all .7s;
}

.testi-profile-detail h6 {
    font-size: 16px;
    font-weight: 500;
    line-height: 20px;
    color: var(--red);
    transition: all .7s;
}

.testi-profile-detail h6 span {
    font-style: italic;
    color: #aeaeae;
    margin-left: 10px;
}

.testimonial-wrap:hover .testi-profile-detail h6 {
    color: #fff;
    transition: all .7s;
}

.testimonial-bottom {
    padding: 30px 0 0;
    border-top: 1px solid #a7a7a7;
    position: relative;
    z-index: 9;
}

.testimonial-bottom p {
    font-style: italic;
    font-size: 16px;
    line-height: 22px;
    transition: all .7s;
}

/* Testimonial End  */

/*--- Testimonial Start   ---*/


.testimonial {
    position: relative;
    width: 100%;
    z-index: 1;
}

.testimonial-video,
.testimonial-wrapper {
    border: 1px solid #3f405c;
}

.testimonial-video img {
    opacity: .9;
}

.play-btn {
    position: absolute;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    line-height: 78px;
    text-align: center;
    background: #ffffff;
    color: #000;
    font-size: 28px;
    z-index: 1;
    top: 50%;
    left: 50%;
    padding-left: 3px;
    transition: all .5s;
    transform: translate(-50%, -50%);
}

.play-btn:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    z-index: -1;
    -webkit-animation: pulse-border 1500ms ease-out infinite;
    animation: pulse-border 1500ms ease-out infinite;
}


@-webkit-keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

.testimonial-slider {
    position: relative;
    margin-top: -80px;
    padding: 0 60px;
}

.testimonial-wrapper {
    background: rgba(0, 0, 0, 0.8);
    padding: 25px;
}

.slider-cover {
    padding: 0px 120px;
}

.testi-image {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.testi-image img {
    width: 80px !important;
    height: 80px;
    border-radius: 50%;
}

.testi-content {
    color: #fff;
    flex: 0 0 100%;
}

.testi-content p {
    color: #dedede;
    font-size: 16px;
    font-weight: 500;
    line-height: 30px;
}

.author-name {
    margin-left: 10px;
}

.author-name h6 {
    font-size: 20px;
}

.author-name p {
    font-size: 17px;
    color: #0ac6ff;
}

.rating {
    color: #dd9a18;
}

.testimonial-slider .owl-nav {
    position: absolute;
    right: 0;
    left: 0%;
    top: 50%;
    transform: translateY(-100%);
    bottom: auto;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.testimonial-slider .owl-nav .owl-prev,
.testimonial-slider .owl-nav .owl-next {
    width: 44px;
    height: 44px;
    border: 1px solid transparent !important;
    line-height: 44px !important;
    text-align: center;
    position: relative;
    z-index: 1;
    background: transparent !important;
    font-size: 20px !important;
    color: var(--white) !important;
    overflow: hidden;
}

.testimonial-slider .owl-nav .owl-prev:hover,
.testimonial-slider .owl-nav .owl-next:hover {
    border: 1px solid var(--red) !important;
}

.testimonial-slider .owl-nav .owl-prev::after,
.testimonial-slider .owl-nav .owl-next::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    width: 4px;
    height: 4px;
    content: '';
    opacity: 0;
    z-index: -1;
    transition: all .3s;
    border-radius: 50%;
}

.testimonial-slider .owl-nav .owl-prev:hover::after,
.testimonial-slider .owl-nav .owl-next:hover::before {
    width: 100%;
    height: 100%;
    opacity: 1;
    transition: all .3s;
}

.testimonial-slider .owl-nav .owl-prev:hover,
.testimonial-slider .owl-nav .owl-next:hover {
    color: var(--white) !important;
}


/*--- Testimonial End   ---*/

/* contact start--- */
.contact-info {
    padding: 120px 0;
}

/* .contact .glass-box{
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 14px;
    backdrop-filter: blur(5px);
    box-shadow: 1px 25px 45px rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
} */

.contact-info .image {
    width: 64px;
    height: 64px;
}

.contact-info p span {
    font-weight: 600;
}

.contact-info .info-panel {
    padding: 2rem 1rem;
    border: 1px solid rgba(4, 109, 230, 0.411);
    border-top: 0.28rem solid var(--theme-color);
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    transition: all .6s;
}

.contact-info .info-panel:hover {
    box-shadow: rgb(255 255 255 / 30%) -1px 1px 22px;
    transition: all .6s;
}

.form {
    padding: 120px 0;
}

.form-box .input-box {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .25);
    color: var(--dark-blue);
    /* border-radius: 50px; */
}

.form-box .input-box input:focus,
.form-box .input-box textarea:focus {
    outline: 1px solid var(--theme-color);
}

.form-box .input-box input {
    width: 100%;
    padding: 16px 20px;
    background-color: transparent;
    border: 0;
    outline: 0;
    color: var(--white);
}

.form-box .input-box textarea {
    background-color: transparent;
    width: 100%;
    min-height: 26px;
    border: 0;
    outline: 0;
    color: var(--white);
    padding: 16px 20px;
}

/* contact end--- */


/* USP Start  */

.usp {
    padding-bottom: 130px !important;
}

.counter-box {
    padding: 40px 30px;
    background: #181818;
    border-radius: 5px;
}

.counter {
    font-weight: 600;
    font-size: 52px;
    background: linear-gradient(90deg, rgba(20, 60, 173, 1) 0%, rgb(97 182 255) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.counter-box img {
    width: 64px;
    height: 64px;
    margin-bottom: 15px;
}

.counter-box h6 {
    font-size: 20px;
    text-transform: uppercase;
}


/* USP End  */

/* Circular Rotation Start  */
.circle-cover {
    padding: 34px;
    width: 584px;
    height: 584px;
    position: absolute;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
}

.circular {
    width: 550px;
    height: 550px;
    border-radius: 50%;
    border: 1px solid #313161;
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotatePoint 30s linear infinite;

}

.circular-point {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: 50% 50%;
    background: #fff;
    overflow: hidden;
    border: 1px solid #313161;
    animation: rotatePoint 30s linear infinite, rotateSelf 30s linear infinite;
    /* Rotate animation */
}

.acircle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    border: 1px solid #313161;
    border-radius: 50%;
}

.bcircle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border: 1px solid #313161;
    border-radius: 50%;
}

.ccircle {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 1px solid #313161;
    border-radius: 50%;
}

.circular-point img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes rotatePoint {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes rotateSelf {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

/* Circular Rotation End  */

/*--- Blog Home Start ---*/

.latest-news .section-head h6 {
    width: fit-content;
    margin: 0 auto 8px;
}

.blog-box {
    border-radius: 15px;
    overflow: hidden;
}

.blog-image {
    height: 250px;
    position: relative;
}

.blog-image::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #00052a;
    opacity: 0;
    transition: all .4s;
    content: '';
}

.blog-box:hover .blog-image::before {
    opacity: .8;
    transition: all .4s;
}

.blog-image img {
    object-fit: cover;
}

.blog-image .blog-link-chain {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -100%);
    background: var(--white);
    color: #0b0c54;
    height: 44px;
    width: 44px;
    line-height: 44px;
    text-align: center;
    font-size: 20px;
    border-radius: 50%;
    opacity: 0;
    transition: all .5s;
}

.blog-image .blog-link-chain:hover {
    color: var(--white);
    background: var(--red);
    transition: all .5s;
}

.blog-box:hover .blog-image .blog-link-chain {
    opacity: 1;
    transform: translate(-50%, -50%);
    transition: all .5s;
}

.blog-content {
    padding: 20px 15px 20px 15px;
    background: #f9f9f9;
}

.blog-content a h5 {
    color: var(--blue);
    padding-bottom: 5px;
    font-weight: 600;
    transition: all .4s;
}

.blog-content a:hover h5 {
    color: var(--red);
    transition: all .4s;
}

.blog-footer {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid #dedede;
}

.blog-date img,
.blog-author img {
    width: 18px;
    height: auto;
}

.blog-date span,
.blog-author span {
    font-size: 16px;
    color: var(--red);
    margin-right: 4px;
}

.blog-date,
.blog-author {
    font-size: 14px;
    font-weight: 500;
}

.read-btn {
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-top: 12px;
    color: var(--red);
    font-weight: 600;
    font-size: 13px;
}


/*--- Blog Home End ---*/


/*--- Footer Start   ---*/

.footer-main {
    /* background: #000814; */
    /* background-color: transparent !important;
    background-image: linear-gradient(145deg, #002cae 47%, #04b6f1 100%); */
    padding: 0 0 0 0;
    /* background: var(--dark-blue); */

    background: url(../images/footer-background-img.jpg) no-repeat center center;
    background-size: cover;
    position: relative;
}

/* .footer-main::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 2;
    width: calc(142% + 1.3px) !important;
    transform: translateX(-50% -50%) !important;

} */

.footer-about {
    padding-right: 60px;
}

.ft-logo img {
    width: 250px;
    height: auto;
}

.ft-text {
    padding: 30px 0 30px;
    margin-bottom: 25px;
    position: relative;
}

.ft-text p {
    color: #ffffff;
}

.ft-text:before {
    position: absolute;
    width: 120px;
    height: 1px;
    background: #d5d5d5;
    content: '';
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

.link-box h4 {
    font-size: 20px;
    text-transform: capitalize;
    color: var(--white);
    font-weight: 500;
    padding-bottom: 25px;
    position: relative;
}

.link-box h4::before {
    position: absolute;
    left: 0;
    bottom: 10px;
    background: #d5d5d5;
    width: 30px;
    height: 1px;
    content: '';

}

.link-box ul {
    list-style: none;
    padding-left: 0px;
}

.link-box ul li {
    margin-bottom: 10px;
    position: relative;
    font-weight: 500;
    color: #e3e3e3;
    transition: all .3s;
}

.link-box ul li a {
    color: #ffffff;
    font-weight: 400;
    transition: all .3s;
    padding: 5px 0;
    font-size: 16px;
    position: relative;
}

.link-box ul li a:hover {
    color: var(--red);
    transition: all .3s;
}

.footer-contact ul li a {
    padding-left: 40px;
}

.footer-contact ul li a::before {
    left: 0;
    top: 7px;
    position: absolute;
    font-family: "Font Awesome 6 Pro";
}

.footer-contact ul li a.fc-address::before {
    content: '\f3c5';
    font-size: 22px;
}

.footer-contact ul li a.fc-call::before {
    content: '\f590';
    font-size: 22px;
    top: 1px;
}

.footer-contact ul li a.fc-telephone::before {
    content: '\f8d3';
    font-size: 20px;
    top: 0px;
}

.footer-contact ul li a.fc-email::before {
    content: '\f0e0';
    font-size: 20px;
    top: 0px;
}


.copyright {
    border-top: 1px solid #d5d5d5;
    padding: 10px 0;
    font-size: 14px;
    margin-top: 30px;
}

.copyright p {
    font-weight: 500;
    font-size: 14px;
    color: var(--white);
    margin: 10px 0;
}

.copyright p span {
    font-weight: 600;
}

.copyright p span a {
    color: var(--white);
}

.ft-social-media ul li {
    margin-right: 10px;
    padding-left: 0px;
}

.ft-social-media ul li a {
    font-size: 17px;
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: var(--white);
    border-radius: 50%;
    text-align: center;
    padding: 0px;
    color: #0b0c54;
}



/*--- Footer End   ---*/



/*-- CMS BANNER Start  --*/
.cms-banner {
    position: relative;
    overflow: hidden;
}

.cms-bann-img {
    height: 400px;
    margin-top: 0px;
    opacity: 0.4;
}

.cms-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*--- CMS Banner End  ---*/


/*--- Breadcrumb Start  ---*/

.breadcrumb-cover {
    position: absolute;
    left: 0;
    top: 70%;
    transform: translateY(-70%);
    width: 100%;
    height: fit-content;
}

.breadcrumb-cover h1 {
    font-weight: 600;
    font-size: 60px;
    color: var(--white);
    text-transform: uppercase;
}

/*--- Breadcrumb End ---*/


/*--- About CMS Start ---*/

.story-images {
    padding: 80px 0 0 80px;
    z-index: 1;
}

.story-images .small-image {
    left: 0;
    top: 0;
    width: 350px;
    height: 200px;
    z-index: -1;
}

/*--- About CMS End ---*/


/*----   Contact Us  Start  ---*/

.contact-info h3 {
    font-size: 28px;
    color: #0b0c54;
    padding-bottom: 25px;
    position: relative;
    width: fit-content;
    font-weight: 700;
}

.ci-icon {
    height: 44px;
    width: 44px;
    text-align: center;
    line-height: 44px;
    font-size: 20px;
    border: 1px solid var(--red);
    border-radius: 50%;
    display: inline-block;
    flex: 0 0 44px;
    color: var(--red);
}

.ci-wrap {
    margin-bottom: 30px;
}

.ci-content h6 {
    font-weight: 600;
    font-size: 18px;
    color: #000;
    margin-bottom: 5px;
}

.ci-content p a {
    color: #000;
}

.contact-info .ci-wrap:last-child {
    margin-bottom: 0px;
}

.con-map {
    height: 100%;
}

.con-map iframe {
    height: 400px;
    width: 100%;
    object-fit: cover;
}

.single-input input.form-control {
    border: 1px solid var(--black);
    height: 44px;
    line-height: 44px;
    margin-bottom: 15px;
    transition: all .4s;
    -webkit-transition: all .4s;
}

.single-input input.form-control:focus {
    border: 1px solid var(--black);
    transition: all .4s;
    -webkit-transition: all .4s;
}

.single-input textarea.form-control {
    border: 1px solid var(--black);
    height: 130px;
}

.single-input textarea.form-control:focus {
    border: 1px solid var(--black);
    transition: all .4s;
    -webkit-transition: all .4s;
}

/*----   Contact Us  End  ---*/

/* --- Company Growth Start --- */

.company-growth {
    background: url(../images/range-bg.jpg) no-repeat center;
    background-size: cover;
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.company-growth::before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    content: '';
    z-index: -1;
}

.range {
    margin-bottom: 30px;
}

.progress {
    height: 5px;
    border-radius: 0px;
    overflow: visible;
    background: #858585;
}

.progress-bar {
    position: relative;
    background: #00dcff;
    overflow: visible;
}

.range h6 {
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 10px;
}

.progress-bar span {
    position: absolute;
    right: 0;
    top: -30px;
    font-size: 16px;
}


/* --- Company Growth End --- */










/* banner */
/* Slider */





/* --about--- */

.aboutImgBx {
    position: relative;
    padding-top: 85px;

    -webkit-animation-name: topToBottom;
    animation-name: topToBottom;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

@keyframes topToBottom {
    0% {
        transform: translateY(-30px);
    }

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

    100% {
        transform: translateY(-30px);
    }
}

.imageAnimationTopBottom {
    -webkit-animation-name: topToBottom;
    animation-name: topToBottom;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.aboutImgBx img {
    border-radius: 20px;
}

.abtImg1 {
    width: 340px;
    position: absolute;
    top: -60px;
    right: 0;
    /* height: 400px; */
}

.aboutUs {
    padding: 110px 0 0 0;
    position: relative;
    background: url(../images/testimonial-one-shape-1.png) no-repeat;
    background-position: right;
}

.listArea li {
    font-size: 16px;
    color: #212529;
    font-weight: normal;
    position: relative;
    background: url(../images/correct.png) no-repeat;
    background-size: 22px;
    padding-left: 35px;
}

/* .listArea li::before {
  content: '\f058';
  position: absolute;
  font-family: 'Font Awesome 7 Free';
  font-size: 18px;
  font-weight: 900;
  color: var(--dark-blue);

  top: 0;
  left: 0;
} */

.our-projects .section-head {
    max-width: 100% !important;
    text-align: center;
}

.filter-buttons {
    display: flex;
    justify-content: center;
}

.featureImg {
    position: relative;
    z-index: 10;
    filter: drop-shadow(0px 15px 30px rgba(0, 0, 0, 0.1));


    -webkit-animation-name: topToBottom;
    animation-name: topToBottom;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.bannerBtn {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.bannerBtn a {
    border: 1px solid #fff;
    border-radius: 12px;
    color: #fff;
    padding: 8px 25px;
    font-size: 16px;
    font-weight: bold;
}

.header-content p {
    color: #fff;
}

.Process {
    background-color: #F5F3EF;
}

.processItmes {
    text-align: center;
    /* border: 1px solid; */
    padding: 22px;
    border-radius: 20px;
    box-shadow: 1px 2px 5px #00000036;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.processItmes::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-blue);
    transform: translateY(101%);
    transition: 0.5s;

}

.processItmes:hover.processItmes::before {
    transform: translateY(0%);
    transition: 0.5s;
}

.processItmes:hover .processIcon img {
    filter: invert(1) !important;
}

.processItmes:hover.processItmes span {
    color: #fff;
}

.processIcon {
    position: relative;
}

.processIcon img {
    height: 55px;
    object-fit: contain;
    position: relative;
}

.processItmes span {
    position: relative;
    font-size: 20px;

    font-weight: bold;

    margin-top: 16px;

    display: block;

    font-family: var(--heading);
}

.uspItmes {
    height: 100%;
}

.usp_iconBx img {
    height: 60px;
    object-fit: contain;
}

.usp .section-head {
    max-width: 100% !important;
}

.uspItmes {
    text-align: center;
    border-radius: 20px;
    box-shadow: 2px 1px 11px #0000006b;
    padding: 25px;
    transition: all .7s;
}

.uspItmes:hover {
    background: var(--dark-blue);
    color: var(--white);
    transition: all .7s;
}

.uspItmes:hover .usp_iconBx img {
    filter: invert();
}

.uspItmes span {

    font-size: 20px;

    font-weight: bold;

    margin: 13px 0;

    display: block;

    font-family: var(--heading);
}

.st_mrt {
    transform: translateY(40px);
}


/* testimonial */

.sec_testimonial {
    position: relative;
}

.creative-testimonial--slider {
    background-image: linear-gradient(to bottom, #f7f7ff, #f4f4fb, #f8f7fc, #fbfbfe, #ffffff);
    padding: 50px 0px;
}

.creative-testimonial--slider .testimonial-inner {
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
    background-repeat: no-repeat;
    background-size: cover;
}

.testimonial-inner .testimonial-heading {
    text-align: center;
    max-width: 60%;
    margin: auto;
    font-size: 2.813rem;
    line-height: 3.125rem;
    letter-spacing: -1px;
    margin-top: 0px;
    margin-bottom: 50px;
}

.testimonial-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 6%;
}

.swiper-slide .swiper-slide--inner {
    padding-left: 15%;
    padding-right: 15%;
    /* display: flex;
    align-items: center;
    column-gap: 50px; */
    position: relative;
    overflow-x: hidden;
    text-align: center;
}

.swiper-slide--inner .testimonial-detail img {
    height: 35px;
}

.swiper-slide--inner .slide-avatar {
    margin-bottom: 20px;
}

.swiper-slide--inner .slide-avatar img {
    height: 100px;
    object-fit: contain;
}

.swiper-slide--inner .testimonial-detail p {
    margin: 0px;
    color: #242e45;
    font-size: 18px;
    line-height: 30px;
    font-weight: 500;
    margin-bottom: 12px;
}

.swiper-slide--inner .testimonial-detail span {
    color: var(--theme-color);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 18px;
    line-height: normal;
}

.swiper-slide--inner .testimonial-detail h5 {
    font-size: 16px;
    font-style: italic;
}


.company-details--row {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;

}

.company-details--row .company-box {
    flex: 0 0 auto;
    width: 33.33333333%;
    padding: 0px 15px;
}

.company-details--row .company-box .company-box-inner {
    -webkit-box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .08);
    -webkit-transition: all 350ms cubic-bezier(.37, 0, .63, 1);
    transition: all 350ms cubic-bezier(.37, 0, .63, 1);
    background: #fff;
    text-align: center;
    border-radius: 6px;
}

.company-box-inner .company-box-top {
    padding-top: 10%;
    padding-bottom: 10%;
    border-bottom: 1px solid #dee2e6;
}

.company-box-inner .company-box-top img {
    height: 40px;
}

.company-box-inner .company-box-bottom {
    padding: 15px;
}

.company-box-inner .company-box-bottom span {
    font-size: 15px;
    color: #878898;
    line-height: 30px;
}

.company-box-inner .company-box-bottom span strong {
    color: #242e45;
}

/* Responsive Ipad */
@media only screen and (max-width: 981px) {
    /* body {
        background-color: lightblue;
    } */

    .creative-testimonial--slider {
        padding-left: 10px;
        padding-right: 10px;
    }

    .testimonial-inner .testimonial-heading {
        max-width: 100%;
    }

    .swiper-slide .swiper-slide--inner {
        padding-left: 0%;
        padding-right: 0%;
    }

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

    .company-details--row .company-box {
        padding: 0px 5px;
    }
}

/* Responsive Ipad */
@media only screen and (max-width: 460px) {
    .testimonial-inner .testimonial-heading {
        font-size: 1.813rem;
        line-height: 2.125rem;
    }

    .swiper-slide .swiper-slide--inner {
        flex-direction: column;
        text-align: center;
    }

    .company-details--row {
        justify-content: center;
        flex-direction: column;
    }

    .company-details--row .company-box {
        padding: 0px 0px;
        margin-bottom: 20px;
        width: 100%;
    }
}

.sec_testimonial .section-head {
    max-width: 100%;
    margin-bottom: 50px;
}


/* footer */

.footerShap {
    padding: 0px 0px 115px 0px;
    /* background-color: transparent;
    background-image: linear-gradient(145deg, #002cae 47%, #04b6f1 100%); */
    position: relative;
    /* background: var(--dark-blue); */
    /* border: 1px solid red; */
}

.footerShapArea {
    transform: rotate(180deg);
    direction: ltr;
    left: 0;
    line-height: 0;
    overflow: hidden;
    position: absolute;
    width: 100%;
}

.footer-main svg {
    width: calc(142% + 1.3px) !important;
    z-index: -1;
    display: block;
    left: 50%;
    /* left: 0; */
    position: relative;
    transform: translateX(-50%) !important;
    transform: rotate(360deg);
    /* width: 100% !important; */
}

.footerShapArea .elementor-shape-fill {
    fill: #fff;
}

.main-header .navbar-text {
    padding-top: 0 !important;
}

.swiper-button-next,
.swiper-button-prev {
    color: #006cb4 !important;
}


/* modal */


.modal-header {
    position: relative;
    text-align: center;
}

.modal-title {
    text-align: center;
    width: 100%;
    font-weight: bold;
    font-size: 24px;
    color: #fff;
}

.modal-header .btn-close {
    padding: 0.5rem 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto;
    position: absolute;
    top: -12px;
    right: -7px;
    background-color: var(--dark-blue) !important;
    opacity: 1;
    background: url();
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border: 2px solid #fff;
    border-radius: 50%;
}

.modal-content {
    background-color: var(--dark-blue) !important;
    border: 8px solid #fff;
    border-radius: 20px;
}

.modal .form-label {
    color: #fff;
}

.modal .form-control,
.form-select {
    border: 1px solid #fff !important;
    border-radius: 5px;
    color: #fff;
}

.modal .btn {
    background-color: #fff;
    font-weight: bold;
}

.header_sideBer {
    margin-left: 20px;
    height: auto;
    margin-top: 15px;
    background-color: #006cb429;
    padding: 17px;
    border-radius: 12px;
    padding-bottom: 8px;
}

.header_sideBer ul {
    margin: 0;
    padding: 0;
    display: flex;
    gap: 3px;
}

.header_sideBer ul:last-child {
    margin-top: 5px;
}

.header_sideBer ul li {
    list-style: none;
    max-width: 8px;
    width: 8px;
    height: 8px;
    border: 2px solid var(--dark-blue);
    border-radius: 50%;

}


/* offcanvas */


/* Custom Design */
.offcanvas {
    width: 320px;
    border-radius: 20px 0 0 20px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
}

/* Header */
.offcanvas-header {
    border-bottom: 1px solid #eee;
}

/* Menu */
.menu a {
    display: block;
    padding: 12px 0;
    font-size: 18px;
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.menu a:hover {
    color: #0d6efd;
    transform: translateX(8px);
}

/* Stagger Animation */
.menu a {
    opacity: 0;
    transform: translateX(40px);
}

.offcanvas.show .menu a {
    opacity: 1;
    transform: translateX(0);
}

.offcanvas.show .menu a:nth-child(1) {
    transition: 0.3s 0.1s;
}

.offcanvas.show .menu a:nth-child(2) {
    transition: 0.3s 0.2s;
}

.offcanvas.show .menu a:nth-child(3) {
    transition: 0.3s 0.3s;
}

.offcanvas.show .menu a:nth-child(4) {
    transition: 0.3s 0.4s;
}

/* Button style */
.open-btn {
    /* margin-top: 20px; */
    border-radius: 30px;
    padding: 10px 20px;
    margin-bottom: 0 !important;
}

/* scroll top */

#scroll {
    position: fixed;
    right: 10px;
    bottom: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    text-indent: -9999px;
    display: none;
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    border-radius: 60px;

}

#scroll span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -8px;
    margin-top: -12px;
    height: 0;
    width: 0;
    border: 8px solid transparent;
    border-bottom-color: #ffffff;
}

#scroll:hover {
    background-color: #e74c3c;
    opacity: 1;
    filter: "alpha(opacity=100)";
    -ms-filter: "alpha(opacity=100)";
}

button:focus:not(:focus-visible) {
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}


/* about page */

.innerBanner {
    position: relative;
}

.innerBnrContent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}

.badcome {
    margin: 0;
    padding-left: 0;
    display: flex;
    gap: 10px;
}

.badcome li {
    color: var(--dark-blue);
    list-style: none;
}

.badcome li a {
    color: var(--dark-blue);
}

.badcomeActive {
    font-weight: bold;
}

.innerBntTitle {
    font-size: 40px;
}

.weWork {
    /* background-color: var(--dark-blue); */
    background: url(../images/weWorkBgImg.png) no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    margin-top: 80px;
    padding: 120px 0;
}

.whiteDesh::after,
.whiteDesh::before {
    background-color: #fff !important;
}

.workContent {
    padding: 0 100px;

}

.commitmentImgArea img {
    border-radius: 20px;
}

.PdnLeft-30 {
    padding-left: 30px;
}

.BgShap1 {
    background: url(../images/bgShap1.jpg) no-repeat center center;
    background-size: cover;
}

.BgShap4 {
    background: url(../images/bg-shape4.jpg) no-repeat center center;
    background-size: cover;
}

.teamItems {
    border-radius: 20px;
    box-shadow: 2px 1px 11px #0000006b;
    padding: 25px;
    position: relative;
}

.teamConten {
    position: absolute;
    bottom: -38px;
    background-color: #006cb4;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: #fff;
    width: 90%;
    text-align: center;
    padding: 10px;
    border-radius: 20px;
}

.teamConten h3 {
    font-size: 22px;
}

.teamConten span {
    font-style: italic;
}

.slide-avatar img {
    border-radius: 50%;
    border-bottom: 5px solid #006cb4;
}

.slide-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    margin-bottom: 20px;
}

.Valuable .section-head {
    margin: 0 auto;
}

.clientsItems img {
    height: 110px;
}

.clientsItems {
    text-align: center;
}

.contactAddress {
    margin-bottom: 0;
    padding-left: 0;
    margin-top: 30px;
}

.contactAddress li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.contactAddress li i {
    width: 50px;
    max-width: 50px;
    min-width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--theme-color);
    color: #fff;
    border-radius: 50%;
    font-size: 20px;
}

.contactAddress li a {
    font-size: 18px;
    color: #000;
}

.map {
    height: 382px;
}

.form-control,
.input-text {
    height: calc(2.25rem + 27px);
    padding: 14px 30px;
    outline: 0;
    background-color: #f4f5f8;
    border: 1px solid #f4f5f8;
    color: #686a6f;
    font-size: 0.9rem;
    width: 100%;
    border-radius: 10px;
}

textarea.form-control {
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #fff;
    height: 180px;
    border-radius: 10px;
}

.contactForm {
    background-color: #eef0f6;
    padding: 30px;
    border-radius: 20px;
}

.serversPage .service-icon img {
    width: 70px;
    height: 70px;
}

.serversPage .service-icon {
    width: 100px;
    height: 100px;
}

.serversPage .service-icon {
    border-radius: 50%;
}


/* process */



.tabs-container {
    width: 100%;
    margin: auto;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Tab Buttons */
.tabs {
    display: flex;
    border-bottom: 2px solid #eee;
}

.tab-btn {
    flex: 1;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    background: #fafafa;
    border: none;
    outline: none;
    font-size: 16px;
    transition: 0.3s;
    font-family: var(--heading);
}

.tab-btn:hover {
    background: #f1f1f1;
}

.tab-btn.active {
    background-color: var(--theme-color);
    color: #fff;
    font-weight: bold;

}

/* Tab Content */
.tab-content {
    display: none;
    padding: 25px;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media(max-width: 600px) {
    .tabs {
        flex-direction: column;
    }
}

.secSubTitle {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.secSubTitle::after {
    content: " ";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--black);
}

.secSubTitle::before {
    content: " ";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100px;
    height: 4px;
    background-color: var(--theme-color);
}

.borderLine {
    width: 100%;
    height: 2px;
    background-color: #ccf5ff;
    margin: 40px 0;
}


/* ---services--- */

.innerServices {
    position: relative;
}

.servicesArea {
    background-color: #EDF9FC;
    border-radius: 20px;
    overflow: hidden;
    margin-right: 30px;
    position: sticky;
    top: 150px;
    box-shadow: -1px 1px 14px 5px #00000021;
}

.servicesArea span {
    font-size: 20px;
    line-height: 1.3em;
    color: var(--white);
    background: var(--theme-color);
    font-weight: bold;
    padding: 18px 30px;
    width: 100%;
    display: inline-block;
    font-family: var(--heading);
}

.servicesList {
    margin-bottom: 0;
    padding-left: 0;
    position: relative;

}

.servicesList li {
    list-style: none;
    border-bottom: 1px solid #08363B1A;
    transition: all 0.4s ease-in-out;
}

.servicesList li:hover {
    border-bottom: 1px solid var(--theme-color);
    transition: all 0.4s ease-in-out;
}

.servicesList li a {
    padding: 20px 30px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    position: relative;
    transition: all 0.4s ease-in-out;
}

.servicesList li a:hover {
    color: var(--theme-color);
    transition: all 0.4s ease-in-out;
}

.servicesList li a::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    background: url(../images/arrow-primary.svg) no-repeat;
    background-position: center center;
    background-size: cover;
    width: 18px;
    height: 18px;
    transition: all 0.4s ease-in-out;
}

.servicesList li a:hover::after {
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.4s ease-in-out;
}

.servicesListActive {
    color: var(--theme-color) !important;
}

.servicesListActive::after {
    transform: translateY(-50%) rotate(45deg) !important;
}

.ServicesImg {
    border-radius: 30px;
    position: relative;
    margin-bottom: 25px;
}

.ServicesImg::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 8;
}

.ServicesImg:hover::after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
    border: 1px solid red;
}

.image-anime {
    display: block;
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.image-anime img {
    width: 100%;
    aspect-ratio: 1 / 0.598;
    object-fit: cover;
    border-radius: 30px;
}

.image-anime:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, .3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after {
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.service-box:hover .service-body img {
    display: table !important;
    width: 100% !important;
    filter: invert();
}

.ft-social-media ul li a:hover {
    color: var(--theme-color);
}

.list2 {
    column-count: 2;
}

.link-box ul li img {
    height: 20px !important;
    width: 20px;
    display: none;
}

/* .q-links ul li{
  display: flex;
} */

.q-links ul li {
    position: relative;
    padding-left: 24px;
}

.q-links ul li::after {
    content: ' ';
    position: absolute;
    top: 14px;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d5d5d5;
}



/* new services design */


.services-title h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(to right, #ffffff, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services-title p {
    color: #cbd5e1;
    max-width: 700px;
    margin: auto;
    line-height: 1.8;
}



.service-card {
    position: relative;
    padding: 40px 35px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.4s ease;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.25);
}

.service-card::before {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    top: -80px;
    right: -80px;
    border-radius: 50%;
    opacity: 0.2;
    transition: 0.4s;
}

.service-card:hover {
    transform: translateY(-12px);
    border-color: #60a5fa;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.25);
}

.service-card:hover::before {
    transform: scale(1.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 18px;
    font-weight: 600;
}

.service-card p {
    color: #2b2b2b;
    line-height: 1.9;
    font-size: 15px;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    text-decoration: none;
    color: #3498db;
    font-weight: 600;
    transition: 0.3s;
    font-size: 16px;
}

.service-btn:hover {
    gap: 15px;
    color: #000000;
}

@media(max-width:768px) {

    .services-title h2 {
        font-size: 34px;
    }

    .service-card {
        padding: 30px 25px;
    }

}






/* =========================
   SECTION
========================= */

.process-section {
    width: 100%;
    padding: 100px 20px;
}

.process-container {
    max-width: 1450px;
    margin: auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
    position: relative;
}

/* =========================
   LEFT IMAGE
========================= */

.process-left {
    width: 38%;
    position: sticky;
    top: 100px;
    height: 85vh;
}

.image-wrapper {
    width: 100%;
    height: 100%;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
    background: #111827;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
}

.step-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.08);
    transition: 0.7s ease;
}

.step-image.active {
    opacity: 1;
    transform: scale(1);
}

/* IMAGE CONTENT */

.image-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    z-index: 5;
}

.image-content span {
    color: #c084fc;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.image-content h2 {
    font-size: 42px;
    margin-top: 15px;
    line-height: 1.2;
}

.image-content p {
    color: #e2e8f0;
    margin-top: 15px;
    line-height: 1.9;
}

/* =========================
   CENTER LINE
========================= */

.process-line {
    width: 80px;
    height: 100vh;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
}

/* BASE LINE */

.process-line::before {
    content: '';
    position: absolute;
    top: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
}

/* ACTIVE LINE */

.line-progress {
    position: absolute;
    top: 0;
    width: 3px;
    height: 0%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.9);
    animation: lineGrow 8s linear infinite;
}

/* ARROW */

.line-arrow {
    position: absolute;
    top: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.45);
    animation: arrowMove 8s linear infinite;
}

/* ANIMATION */

@keyframes lineGrow {

    0% {
        height: 0%;
    }

    100% {
        height: 100%;
    }

}

@keyframes arrowMove {

    0% {
        top: 0%;
    }

    100% {
        top: 92%;
    }

}

/* =========================
   RIGHT CONTENT
========================= */

.process-right {
    width: 54%;
    display: flex;
    flex-direction: column;
    gap: 140px;
}

/* STEP CARD */

.step-card {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.step-content {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    border-radius: 35px;
    padding: 55px;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    background-color: #1b2335;
}

/* TOP GLOW */

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #006cb4, #3b464eed);
}

.step-content:hover {
    transform: translateY(-10px);
    border-color: rgba(192, 132, 252, 0.4);
}

/* STEP NUMBER */

.step-number {
    width: 95px;
    height: 95px;
    border-radius: 28px;
    /* background:linear-gradient(135deg,#7c3aed,#a855f7); */
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 35px;
    box-shadow: 0 20px 45px rgba(124, 58, 237, 0.35);
}

/* TEXT */

.step-content h3 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.step-content p {
    color: #cbd5e1;
    line-height: 2;
    margin-bottom: 20px;
    font-size: 15px;
}

/* LIST */

.step-content ul {
    margin-top: 35px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 0;
}

.step-content ul li {
    list-style: none;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 18px;
    border-radius: 15px;
    color: #e2e8f0;
    line-height: 1.7;
    transition: 0.3s ease;
}

.step-content ul li:hover {
    background: rgba(124, 58, 237, 0.18);
    transform: translateY(-5px);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px) {

    .process-container {
        flex-direction: column;
    }

    .process-left {
        width: 100%;
        position: relative;
        top: 0;
        height: 550px;
    }

    .process-right {
        width: 100%;
    }

    .process-line {
        display: none;
    }

    .step-card {
        min-height: auto;
    }

}

@media(max-width:768px) {

    .process-section {
        padding: 70px 15px;
    }

    .step-content {
        padding: 35px;
    }

    .step-content h3 {
        font-size: 32px;
    }

    .step-content ul {
        grid-template-columns: 1fr;
    }

    .image-content h2 {
        font-size: 30px;
    }

}

.process-right h5 {
    color: #fff;
}

.contactForm input {
    outline: none !important;
    border: none !important;
}



/* new modal */




/* BUTTON */

.open-btn {
    padding: 16px 34px;
    border: none;
    border-radius: 14px;
    /* background: linear-gradient(135deg, #7c3aed, #0ac6ff); */
    background: var(--dark-blue);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    /* box-shadow: 0 15px 35px rgba(124, 58, 237, 0.3); */
}

.open-btn:hover {
    transform: translateY(-4px);
}

/* POPUP */

.popup {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s ease;
    padding: 20px;
    z-index: 99999999;
}

.popup.active {
    opacity: 1;
    visibility: visible;
}

/* FORM BOX */

.popup-box {
    width: 100%;
    max-width: 520px;
    background: #ffffff;
    border-radius: 30px;
    padding: 45px;
    position: relative;
    overflow: hidden;
    animation: popupShow 0.4s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

/* TOP GLOW */

.popup-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    /* background: linear-gradient(to right, #7c3aed, #c084fc); */

    /* background: linear-gradient(135deg, #7c3aed, #0ac6ff); */

    background-color: var(--theme-color);
}

/* CLOSE BUTTON */

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: #f3f4f6;
    color: #111827;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s ease;
}

.close-btn:hover {
    background: linear-gradient(135deg, #7c3aed, #0ac6ff);
    color: #fff;
    transform: rotate(90deg);
}

/* CONTENT */

.popup-title {
    font-size: 34px;
    color: #111827;
    margin-bottom: 12px;
}

.popup-text {
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* FORM */

.form-group {
    margin-bottom: 22px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    outline: none;
    font-size: 15px;
    transition: 0.3s ease;
    background: #f9fafb;
}

.form-group textarea {
    height: 140px;
    resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #7c3aed;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.1);
}

/* SUBMIT BUTTON */

.submit-btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 16px;
    /* background: linear-gradient(135deg, #7c3aed, #a855f7); */
    /* background: linear-gradient(135deg, #7c3aed, #0ac6ff); */
    background-color: var(--theme-color);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    /* box-shadow: 0 15px 35px rgba(124, 58, 237, 0.25); */
}

.submit-btn:hover {
    transform: translateY(-4px);
}

/* ANIMATION */

@keyframes popupShow {

    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

}

/* RESPONSIVE */

@media(max-width:600px) {

    .popup-box {
        padding: 35px 25px;
    }

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

}

.servicesContent .image-anime {
    /* border: 4px solid #006cb48a; */
    padding: 20px 0px;
    box-shadow: -1px 1px 14px 5px #00000021;
}

.contact-shareBtn {
    display: flex;
    gap: 15px;
    border-top: 1px dashed #00000051;
    padding-top: 20px;
}


/* portfolio */






.gallery-section {
    max-width: 1300px;
    margin: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
}

.section-title p {
    font-size: 16px;
    color: #666;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    background: #00000017;
    color: #333;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.4s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.filter-btn:hover {
    transform: translateY(-3px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #3498db, #3498db);
    color: #fff;
    /* box-shadow: 0 10px 25px rgba(79, 70, 229, 0.35); */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.4s;
}

.gallery-item.hide {
    display: none;
}

.gallery-item:hover {
    transform: translateY(-8px);
}

.gallery-image {
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgb(0 0 0 / 90%), rgb(0 0 0 / 0%));
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.gallery-content h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 0;
}

.gallery-content p {
    color: #ddd;
    font-size: 15px;
}

@media(max-width:991px) {

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

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

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .filter-btn {
        width: 100%;
    }

}

.Register {
    background: url(../images/RegisterBgimg4.jpg) no-repeat center center fixed;
    padding: 150px 0;
    background-size: cover;
    position: relative;
}

.Register .section-title {
    text-align: left;
}

.Register::before {
    content: ' ';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000072;
}

.RegisterContent {
    text-align: center;
    position: relative;
    z-index: 5;
    color: #fff;

}

.RegisterContent h2,
.RegisterContent p {
    color: #fff !important;
}

.RegisterContent p {
    font-size: 18px;
}

.RegisterBx {
    display: flex;
    gap: 15px;
    width: 56%;
}

.RegisterBx input {
    padding: 18px;
    border-radius: 50px;
    border: none;
    width: 70%;
    background-color: #ffffff;
    outline: none;
}

.RegisterBx button {
    padding: 18px 50px;
    border-radius: 50px;
    border: none;
    background-color: #006cb4;
    color: #fff;
    font-size: 16px;
}

.slideBgWhite {
    background-color: #fff;
}

.sideSecContent {
    width: 100%;
    display: flex;
    justify-content: end;
}








/*  */

.client-section {
    width: 100%;
    padding: 80px 0;
    background: #f6f8ff;
    overflow: hidden;
}


/* =========================
   TITLE
========================= */

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 42px;
    color: #111827;
    margin-bottom: 15px;
    /* font-weight: 700; */
}

.section-title p {
    color: #6b7280;
    font-size: 17px;
}

/* =========================
   LOGO SLIDER
========================= */

.logo-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Fade Left Right */

.logo-slider::before,
.logo-slider::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.logo-slider::before {
    left: 0;
    background: linear-gradient(to right, #f6f8ff, transparent);
}

.logo-slider::after {
    right: 0;
    background: linear-gradient(to left, #f6f8ff, transparent);
}

/* =========================
   TRACK
========================= */

.logo-track {
    display: flex;
    align-items: center;
    gap: 30px;
    width: max-content;
    animation: scroll 25s linear infinite;
    /* background-color:  rgba(0, 0, 0, 0.06); */
    /* padding: 50px 0; */
}

/* STOP ANIMATION ON HOVER */

.logo-slider:hover .logo-track {
    animation-play-state: paused;
}

/* Right To Left Animation */

@keyframes scroll {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

/* =========================
   LOGO BOX
========================= */

.logo-box {
    width: 220px;
    height: 120px;
    background: #0000000a;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    flex-shrink: 0;
    /* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06); */
    transition: 0.4s;
}

.logo-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.logo-box img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    /* filter: grayscale(100%);
    opacity: 0.8; */
    transition: 0.4s;
}

.logo-box:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px) {

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

    .logo-box {
        width: 170px;
        height: 100px;
    }

    .logo-slider::before,
    .logo-slider::after {
        width: 70px;
    }

}


.footerFixedIcon {
    position: fixed;
    /* bottom: 80px; */
    right: 0;
    z-index: 9999;
    /* transform: translate(0px, -40%); */
    top: 42%;
    background-color: var(--theme-color);
    /* border: 1px solid #c98d07; */
    padding: 0 12px;
    padding-top: 26px;
    padding-bottom: 26px;
    border-right: none;
    border-radius: 20px 0px 0px 20px;
    border: 1px solid #fff;
    border-right: none;
}

.footerFixedIcon ul {
    margin: 0;
    padding-left: 0;
}

.footerFixedIcon ul li {
    list-style: none;
    margin-bottom: 20px;
    animation-name: trin;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.footerFixedIcon ul li:last-child {
    margin-bottom: 0;
}

.footerFixedIcon ul li i {
    color: #fff;
    font-size: 20px;
}

.footerFixedIcon img {
    height: 24px;
    margin-bottom: 25px;
    animation-name: trin;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}


@keyframes trin {

    from {
        transform: rotate3d(0, 0, 1, 0deg);
    }

    20%,
    32%,
    44%,
    56%,
    68% {
        transform: rotate3d(0, 0, 1, 0deg);
    }

    23%,
    35%,
    47%,
    59%,
    71% {
        transform: rotate3d(0, 0, 1, 15deg);
    }

    26%,
    38%,
    50%,
    62%,
    74% {
        transform: rotate3d(0, 0, 1, 0deg);
    }

    29%,
    41%,
    53%,
    65%,
    77% {
        transform: rotate3d(0, 0, 1, -15deg);
    }

    80% {
        transform: rotate3d(0, 0, 1, 0deg);
    }

}


/* mobile header */

.services-toggle {
    display: flex !important;
    align-items: center;
    position: relative;
}

.services-submenu {
    list-style: none;
    margin-left: 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.services-submenu.open {
    max-height: 100%;
}

.services-submenu li a {
    display: block;
    padding: 8px 12px;
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: 14px !important;
    border-radius: 8px;
    transition: .3s;
    font-weight: normal !important;
}

.services-submenu li a:hover {
    color: #00C8FF;
    padding-left: 18px;
}

.sub_arrow {
    font-size: 12px;
    transition: transform .3s ease;
    position: absolute;
    right: 20px;
}

.sub_arrow.rotate {
    transform: rotate(180deg);
}

.mobile-navbar {
    display: none !important;
}

.dropdown {
    display: none;
}


@media (max-width:991px) {
    .slider {
        margin-top: 68px;
    }

    .mobile-navbar {
        display: flex !important;
    }

    .main-header {
        display: none;
    }

    .dropdown {
        display: block;
    }

    .innerBanner {
        margin-top: 65px;
    }

    .open-btn {
        margin-top: 0 !important;
    }
}













:root {
    --navy: #0B1120;
    --deep: #111827;
    --accent: #00C8FF;
    --accent2: #0084FF;
    --white: #FFFFFF;
    --muted: rgba(255, 255, 255, 0.55);
    --glass: rgba(11, 17, 32, 0.92);
    --border: rgba(0, 200, 255, 0.18);
    --radius: 14px;
}

/* body {
      background: var(--deep);
      font-family: 'DM Sans', sans-serif;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
    } */

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ mobile-navbar ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.mobile-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgb(255 255 255 / 92%);
    /* backdrop-filter: blur(18px) saturate(160%); */
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border-bottom: 1px solid var(--border);
    padding: 0 20px;
    height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ LOGO ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--accent2), var(--accent));
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: #fff;
    letter-spacing: -0.5px;
    box-shadow: 0 0 14px rgba(0, 200, 255, 0.35);
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: var(--white);
    line-height: 1;
}

.logo-text span {
    color: var(--accent);
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ CTA BUTTON ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.cta-btn {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    /* background: linear-gradient(135deg, var(--accent2) 0%, var(--accent) 100%); */
    background-color: #006cb4;
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 9px 14px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    /* box-shadow: 0 4px 18px rgba(0, 132, 255, 0.38); */
    transition: transform 0.18s, box-shadow 0.18s;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fff2, transparent);
    opacity: 0;
    transition: opacity 0.2s;
}

.cta-btn:hover::before {
    opacity: 1;
}

.cta-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 26px rgba(0, 132, 255, 0.48);
}

.cta-btn:active {
    transform: scale(0.96);
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ HAMBURGER ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.burger {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: rgb(0 108 180) !important;
    border: 1px solid var(--border);
    border-radius: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    transition: background 0.2s;
    padding: 0;
}

.burger:hover {
    background: rgba(0, 200, 255, 0.12);
}

.burger span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(.77, 0, .175, 1), opacity 0.25s, width 0.25s;
    transform-origin: center;
}

.burger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.burger.open span:nth-child(2) {
    opacity: 0;
    width: 0;
}

.burger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ DROPDOWN MENU ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.dropdown {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--navy);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.42s cubic-bezier(.77, 0, .175, 1);
}

.dropdown.open {
    max-height: 250vh;
    height: 250vh;
    /* 
    max-height:100%;
    height: 100%; */
}

.dropdown-inner {
    padding: 20px 24px 28px;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 0 !important;
}

.nav-links li {
    opacity: 0;
    transform: translateX(-14px);
    transition: opacity 0.3s, transform 0.3s;
}

.dropdown.open .nav-links li {
    opacity: 1;
    transform: translateX(0);
}

.dropdown.open .nav-links li:nth-child(1) {
    transition-delay: 0.06s;
}

.dropdown.open .nav-links li:nth-child(2) {
    transition-delay: 0.10s;
}

.dropdown.open .nav-links li:nth-child(3) {
    transition-delay: 0.14s;
}

.dropdown.open .nav-links li:nth-child(4) {
    transition-delay: 0.18s;
}

.dropdown.open .nav-links li:nth-child(5) {
    transition-delay: 0.22s;
}

.dropdown.open .nav-links li:nth-child(6) {
    transition-delay: 0.26s;
}

.dropdown.open .nav-links li:nth-child(7) {
    transition-delay: 0.30s;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--muted);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    padding: 11px 12px;
    border-radius: 10px;
    transition: background 0.18s, color 0.18s, padding-left 0.18s;
    position: relative;
}

.nav-links a .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0;
    flex-shrink: 0;
    transition: opacity 0.18s;
}

.nav-links a:hover {
    color: var(--white);
    background: rgba(0, 200, 255, 0.08);
    padding-left: 18px;
}

.nav-links a:hover .dot {
    opacity: 1;
}


/* ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ ACTIVE STATE ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã‚ÂÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬ */
.nav-links a.active {
    color: var(--accent);
    background: rgba(0, 200, 255, 0.10);
    padding-left: 18px;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    border-left: 3px solid var(--accent);
}

.nav-links a.active .dot {
    opacity: 1;
    background: var(--accent);
    box-shadow: 0 0 6px var(--accent);
}


.nav-links li:first-child a {
    color: var(--white);
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 16px;
}

.divider {
    height: 1px;
    background: var(--border);
    margin: 14px 0;
}

.footerFiexedBtn {
    position: fixed;
    bottom: 0;
    z-index: 9999;
}

.innerServices .secSubTitle::before,
.innerServices .secSubTitle::after {
    display: none;
}


/* new services style */



/* HERO */

.hero {
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.heroBannerShap {
    position: absolute;
    top: 70px;
    left: 350px;
    animation: rotateCircle 10s linear infinite;
}

.heroBannerShap img {
    height: 200px;
    opacity: 0.5;
}

@keyframes rotateCircle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.heroBannerShap svg path {
    fill: #006cb429;
}

.badge {
    display: inline-block;
    background: #006cb41f;
    color: #006cb4;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: 50px;
    line-height: 1.1;
    /* font-weight: 800; */
}

.hero p {
    max-width: 800px;
    margin: 30px auto;
    font-size: 20px;
    color: #666;
}

.hero-image {
    margin-top: 70px;
    border-radius: 35px;
    overflow: hidden;
}

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

/* SERVICES */

.section {
    padding: 120px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 42px;
    line-height: 1.2;
    font-weight: 400;
    margin-bottom: 25px;
}

.section-title p {
    max-width: 850px;
    margin: auto;
    color: #666;
    font-size: 18px;
}



.service-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.service-icon {
    font-size: 50px;
    color: #cfc6ff;
    margin-bottom: 25px;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 18px;
}

.service-card p {
    color: #666;
}

/* PROCESS */

.service_process {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.service_process .process-image img {
    width: 100%;
    border-radius: 35px;
}

.service_process .process-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
    line-height: 1.2;
}

.service_process .process-step {
    display: flex;
    gap: 25px;
    margin-bottom: 40px;
}

.service_process .process-step .step-number {
    font-size: 34px;
    color: #006cb469;
    font-weight: 800;
    background-color: transparent !important;
    background: transparent;
    box-shadow: none;
    width: auto !important;
    height: fit-content !important;
}

.service_process .process-step .step-content {
    background-color: transparent !important;
    padding: 10px !important;
    border-radius: 10px !important;
}

.service_process .process-step .step-content h3 {
    font-size: 26px;
    margin-bottom: 10px;
    color: #000 !important;

}

.service_process .process-step .step-content p {
    color: #666;
}

/* FEATURE IMAGE */

.banner-image {
    border-radius: 35px;
    overflow: hidden;
}

.banner-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* FEATURES */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.feature-box {
    background: white;
    padding: 40px 25px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.feature-icon {
    width: 70px;
    height: 70px;
    box-shadow: rgba(59, 130, 246, 0.4) 0px 10px 30px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgb(59, 130, 246), rgb(139, 92, 246));
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ft_icon_img {
    height: 40px !important;
    object-fit: contain !important;
}

.feature-box h3 {
    font-size: 22px;
}

/* CTA */

.cta-box {
    background: #006cb30f;
    border-radius: 35px;
    padding: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cta-box h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-box p {
    color: #555;
    font-size: 18px;
}

@media(max-width: 992px) {

    .hero h1,
    .section-title h2,
    .process-content h2,
    .cta-box h2 {
        font-size: 40px;
    }

    .process-section,
    .cta-box {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    /* .nav-links {
        display: none;
    } */
}

.text-math {
    text-transform: math-auto;
}

.RegisterContent .section-title p {
    max-width: stretch;
}

.innerServicesCard .service-card:hover {
    transform: translateY(0px) !important;
    border-color: none !important;
    box-shadow: none !important;
}



/* dropdown menu */
.header_dropdown {
    position: relative;
}

.navbar .header_dropdown_menu {
    position: absolute;
    top: 100%;
    left: 0;
    border: none;
    border-radius: 12px;
    box-shadow: 2px 1px 30px rgb(0 0 0 / 25%);
    padding: 17px;
    min-width: 625px;
    background: #fff;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all .3s ease;
    z-index: 999;
}

.navbar .header_dropdown_item {
    display: block;
    padding: 12px 18px;
    border-radius: 8px;
    font-size: 15px;
    color: #222;
    text-decoration: none;
    transition: all .3s ease;
}

.navbar .header_dropdown_item:hover {
    transition: all .3s ease;
    margin-left: 8px;
}

/* .header_dropdown_toggle::after {
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-size: 10px;
    margin-left: 8px;
    vertical-align: middle;
} */
.header_dropdown {
    /* background: url(../images/down_arrow.png);
   background-size: 20px; */
    position: relative;
}

.down_arrow {
    position: absolute;
    right: -20px;
    bottom: 1px;
    min-height: 63px;
}

.down_arrow i {
    color: #000;
}

@media (min-width: 992px) {
    .header_dropdown:hover .header_dropdown_menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.menu_list2 {
    column-count: 2;
}

.header_dropdown_menu a::after,
.header_dropdown_menu a::before {
    display: none !important;
}

.header_dropdown_menu {
    list-style: circle !important;
}

.header_dropdown_menu li {
    color: #000 !important;
    margin-left: 12px;
    margin-right: 12px !important;
}

.load-more-wrap {
    text-align: center;
    margin-top: 40px;
}

#loadMoreBtn {
    padding: 15px 35px;
    border: none;
    border-radius: 10px;
    background: var(--dark-blue);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: .3s;
}

#loadMoreBtn:hover {
    transform: translateY(-3px);
}