@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body,
html {
    overflow-x: hidden;
    background-color: #000;
}

/* =========VARIABLES========= */
:root {
    --offset-value: 10;
    --btn-size: 60;
    --green: #4ECA78;
}

a {
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'jeko-bold';
    color: rgb(255, 255, 255);
}

p {
    color: #BABABA;
    font-family: 'Poppins', sans-serif;
}

ul {
    list-style: none !important;
}

ul li {
    text-decoration: none;
}

img {
    width: 100%;
}


/* Usable Css */

.btn-primary {
    color: #fff;
    border: 2px solid #fff;
    padding: 6px 12px 6px;
    display: inline-block;
    border-radius: 40px;
    width: 49px;
    font-size: 22px;
    transition: all ease-in 0.2s;
}

.btn-primary:hover {
    width: 192px;
    color: #fff;
}

.btn-primary i {
    margin-right: 15px;
}

.gradient-text {
    background: linear-gradient(242deg, #714BF5 68.75%, #8B77DE 83.34%, #3117B7 97.47%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.circle-shape {
    width: 300px;
    height: 300px;
    background-color: #714BF5;
    border-radius: 50%;
    position: absolute;
    top: 30%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.7;
}

.circle-shape-2 {
    width: 200px;
    height: 200px;
    background-color: #3117B7;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    filter: blur(100px);
    right: 0;
    opacity: 0.5;
}

.section-title {
    font-size: 50px;

}

.sub-title {
    color: #7851FC;
}

.section-gap {
    padding: 100px 0;
}

.text-white span,
.text-white h4 {
    color: #fff !important;
}

.line-shape {
    position: absolute;
    top: 0;
    opacity: 0.3;
    z-index: -1;
}

.Main-title {
    width: 50%;
    margin-bottom: 50px;
}

/* =======Header Section Style======= */

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    backdrop-filter: blur(100px);
}

.header ul li {
    padding: 10px 20px !important;
}

.header ul li a {
    color: #fff;
    font-weight: 500;
    transition: all ease-in .2s;
    font-size: 17px;
}

.header ul li:hover a {
    color: #7851FC;
}

.header .link-active {
    color: #7851FC !important;
}

.header .navbar-brand {
    width: 250px;
}


/* =======Mobile Menu Style======= */

/* NAVIGATION BACKGROUND */
#nav-bg {
    transform-origin: center center;
    transition: transform .3s;
    transform: translate(var(--translate-x), var(--translate-y)) scale(var(--scale));
    will-change: transform;
    pointer-events: none;
}


/* BUTTON */
.btn-bg {
    position: fixed;
    height: calc(var(--btn-size)*1px);
    width: calc(var(--btn-size)*1px);
    top: calc((var(--offset-value))*1px);
    right: calc(var(--offset-value)*1px);
    border-radius: 50%;
    /* background: #fafafa; */
    background: linear-gradient(45deg, #2B12B1 22.34%, #7851FC 77.73%);
    cursor: pointer;
    margin: 0;
    padding: 0 15px;
    border: none;
    z-index: 100;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

#toggle-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--green);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .1);
    transition: transform .3s;
}

#toggle-btn span {
    position: relative;
    width: 100%;
}

#toggle-btn span {
    margin-top: -4px;
}

#toggle-btn span+span {
    margin-top: 8px;
}

#toggle-btn span:before,
#toggle-btn span:after {
    content: '';
    position: absolute;
    top: 0;
    background: #fff;
    opacity: .8;
    height: 100%;
    width: 50%;
    height: 2px;
    transition: .25s cubic-bezier(.6, 0, .3, 1);
    transform-origin: center center;
}

#toggle-btn span:before {
    left: 0;
    border-radius: 3px 0 0 3px;
}

#toggle-btn span:after {
    right: 0;
    border-radius: 0 3px 3px 0;
}

#toggle-btn.shown span:nth-of-type(1):before {
    transform: translate3d(3px, 3.5px, 0) rotate(45deg);
}

#toggle-btn.shown span:nth-of-type(1):after {
    transform: translate3d(-3px, 3.5px, 0) rotate(-45deg);
}

#toggle-btn.shown span:nth-of-type(3):before {
    transform: translate3d(3px, -3.5px, 0) rotate(-45deg);
}

#toggle-btn.shown span:nth-of-type(3):after {
    transform: translate3d(-3px, -3.5px, 0) rotate(45deg);
}

#toggle-btn.shown span:nth-of-type(2):before,
#toggle-btn.shown span:nth-of-type(2):after {
    opacity: 0.0001;
}

#toggle-btn.shown span:nth-of-type(2):before {
    transform: translateX(-200%);
}

#toggle-btn.shown span:nth-of-type(2):after {
    transform: translateX(200%);
}

#toggle-btn.shown:before {
    transform: scale(.6);
    transition: .2s;
}

#toggle-btn:before {
    content: '';
    transition: .2s .2s;
    position: absolute;
    top: 3px;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .1);
    border-radius: inherit;
    filter: blur(5px);
    z-index: -2;
}

#toggle-btn:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    /* background: #fafafa; */
    background: linear-gradient(45deg, #2B12B1 22.34%, #7851FC 77.73%);
    z-index: -1;
}

/* NAVIGATION */
.mobile-nav nav {
    width: 100%;
    height: 100%;
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    display: flex;
    z-index: 200;
    pointer-events: none;
}

.mobile-nav nav ul {
    margin: auto;
    pointer-events: auto;
    text-align: center;
}

.mobile-nav nav li {
    font-size: 30px;
    color: #212121;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transform: translate(-20px, 20px) scale(.9);
    transition: 0s;
    opacity: 0.0001;
    visibility: hidden;
    will-change: transform;
}

.mobile-nav nav li+li {
    margin-top: 30px;
}

#toggle-btn.shown~.mobile-nav nav li {
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: .35s cubic-bezier(.4, 2.08, .55, 1);
}

#toggle-btn.shown~.mobile-nav nav li:nth-child(1) {
    transition-delay: .15s;
}

#toggle-btn.shown~.mobile-nav nav li:nth-child(2) {
    transition-delay: .125s;
}

#toggle-btn.shown~.mobile-nav nav li:nth-child(3) {
    transition-delay: .1s;
}

/* LINK EFFECT */
.link {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    color: #fff;
    font-family: jeko-bold;
}

.link:hover {
    color: #fff;
    text-decoration: underline;
}

.mobile-header {
    display: none;
}

.mobile-logo {
    width: 220px;
    position: absolute;
    z-index: 5;
    top: 25px;
    left: 10px;
}

@media (max-width: 992px) {
    .mobile-header {
        display: block;
    }

    .header {
        display: none;
    }
}


/* =======Banner Section Style======= */

.home-banner {
    height: 100vh;
    background-position: calc(100% - 0px) calc(100% - -387px) !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    display: flex;
    align-items: end;
    position: relative;
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.home-banner::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.banner-content {
    width: 90%;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.banner-content h1 {
    font-size: 60px;
    margin-bottom: 50px;
}


/* =======Home About Style======= */

.home-about {
    width: 100%;
    background-color: rgba(9, 9, 9, 0.3);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.home-about .line-shape {
    transform: rotate(21deg);
}

.home-about .section-title {
    margin-bottom: 50px;
}

.home-about .row img {
    aspect-ratio: 5/2.5;
    object-fit: cover;
    width: 100%;
}

.abt-srvc .gallery {
    display: flex;
}

.abt-srvc h3 {
    font-size: 36px;
    margin-bottom: 30px;
}

.abt-srvc .left {
    width: 50%;
}

.abt-srvc .detailsWrapper {
    margin-right: auto;
    width: 95%;
}

.abt-srvc .details {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.abt-srvc .right {
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.abt-srvc .photos {
    width: 40vw;
    height: 40vw;
    position: relative;
}

.abt-srvc .photo {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 80px;
}

.abt-srvc .right .photos img {
    margin-top: 30px;
}

.abt-srvc {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.abt-srvc .circle-shape {
    position: fixed;
    top: 30px;
}

/* =======Home Service Style======= */

.home-service {
    z-index: 1;
}

.Service-details {
    width: 60%;
}

.Service-details p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.Service-details img {
    transform: rotate(-10deg);
    display: inline-block;
    margin-top: 30px;
    margin-left: 40px;
    aspect-ratio: 3/3.5;
    object-fit: cover;
    width: 100%;
}

.home-service .service {
    margin-bottom: 25px;
}

.home-service .service span {
    color: #7D7D7D;
    font-family: jeko-medium;
    transition: all ease-in .1s;
}

.home-service .service h4 {
    font-size: 32px;
    color: #7D7D7D;
    font-family: Poppins;
    font-weight: 600;
    transition: all ease-in .1s;
}

.home-service .service:hover h4,
.home-service .service:hover span {
    color: #fff;
    cursor: pointer;
}

.Service-details {
    display: none;
}

.home-service .line-shape {
    top: 30%;
    transform: rotate(210deg);
    opacity: .2 !important;
}

.home-service .btn-primary {
    border: 2px solid #fff;
    padding: 6px 10px 6px;
    width: 38px;
    font-size: 16px;
    margin-top: 20px;
}


.home-service .btn-primary:hover {
    width: 135px;
}


/* =======Home Blog Style======= */

.home-blog {
    z-index: 1;
}

.blog-thumb {
    margin-bottom: 30px;
    overflow: hidden;
}

.blog-thumb img {
    aspect-ratio: 3/3.5;
    object-fit: cover;
    object-position: center;
    -o-object-fit: cover;
    -o-object-position: center;
    width: 100%;
}

.blog-article h4 {
    font-family: 'jeko-medium';
}

.blog-thumb i {
    position: absolute;
    bottom: 10px;
    right: 10px;
    font-size: 35px;
    /* background-color: rgba(256, 256, 256, 0.5); */
    color: #ffffff;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: -60px;
    transition: all ease-in-out .3s;
    background: linear-gradient(242deg, #714BF5 68.75%, #8B77DE 83.34%, #3117B7 97.47%);
    opacity: 0.8;
}

.blog-content:hover .blog-thumb i {
    transform: rotate(-45deg);
    margin-bottom: 0;
}


/* =======Testimonials Style======= */

.testimonials {
    z-index: 1;
}

.testimonials .swiper-slide {
    position: relative;
    padding: 20px;
}

.testimonials .swiper-slide::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, rgba(133, 133, 133, 0.00) 0%, #7851FC 47.4%, rgba(133, 133, 133, 0.00) 100%);
}

.testimonials .swiper-slide i {
    color: #ffffff43;
    position: absolute;
    left: -8px;
    top: -22px;
    font-size: 50px;
    z-index: -1;
}

.testimonials .swiper-container {
    padding-top: 20px;
}

.testimonials .swiper-container::before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, rgba(133, 133, 133, 0.00) -9.89%, #7A54F9 50.22%, rgba(133, 133, 133, 0.00) 101.09%);
}

.testimonials .swiper-container::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, rgba(133, 133, 133, 0.00) -9.89%, #7A54F9 50.22%, rgba(133, 133, 133, 0.00) 101.09%);
}



/* =======Client Logo Slider style======= */

.clients {
    padding: 50px 0;
    background-color: #000;
}

.logo-slider {
    padding: 20px;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    position: relative;
    display: flex;
}

.clients:hover div {
    animation-play-state: paused;
}

.logo-slider div {
    display: flex;
    position: relative;
    animation: marquee 20s linear infinite;
    justify-content: space-around;
}

.logo-slider-2 div {
    display: flex;
    position: relative;
    animation: marquee-2 20s linear infinite;
    justify-content: space-around;
}

.logo-slider img {
    display: block;
    object-fit: contain;
    margin: 0 20px;
    padding: 20px;
    border: 1px solid rgba(121, 88, 237, 0.50);
    width: inherit;
}

.clients .container-fluid:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: linear-gradient(to right, rgb(0, 0, 0), rgba(255, 255, 255, 0) 150px, rgba(255, 255, 255, 0) calc(100% - 150px), rgb(0, 0, 0));
}

@media (max-width: 900px) {
    .logo-slider {
        --image-size: 50px;
        --image-size: min(max(50px, 10vw), 100px);
    }
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-100%);
    }
}

@keyframes marquee-2 {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(0%);
    }
}


/* =======CTA Section Style======= */

.cta {
    z-index: 1;
}

.cta-card {
    background-color: rgba(66, 66, 66, 0.5);
    padding: 20px 30px;
}

.cta-card h2 {
    font-size: 70px;
}

.cta-card span {
    color: #BABABA;
    font-family: Poppins;
    font-size: 24px;
}

.cta-card .btn-primary {
    border: 1px solid #fff;
    padding: 6px 10px 6px;
    width: 38px;
    font-size: 16px;
}

.cta-card .btn-primary:hover {
    border: 1px solid #fff;
    padding: 6px 10px 6px;
    width: 160px;
    font-size: 16px;
}

.cta .circle-shape {
    width: 150px;
    height: 150px;
}

.cta .circle-shape-2 {
    width: 100px;
    height: 100px;
}

/* =======Footer Style======= */

.footer {
    padding-top: 100px;
    background-size: cover !important;
    background-position: calc(100% - 0px) calc(100% - -200px) !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.footer::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.footer-main {
    position: relative;
    z-index: 1;
}

.footer-content p {
    width: 80%;
}

.footer .brand-logo {
    width: 200px;
    margin-bottom: 30px;
}

.footer h6 {
    margin-bottom: 30px;
}

.footer ul {
    padding: 0;
}

.footer ul li {
    list-style: none;
    padding: 5px 0;
}

.footer ul li:hover a {
    text-decoration: underline;
}

.footer ul li,
.footer ul li a {
    color: #bababa;
    transition: .2s;
}

.copyright {
    padding: 20px 0;
    border-top: 1px solid #24035B;
    margin-top: 50px;
}




/* =======About Us Page======= */

.about-us {
    padding-top: 250px !important;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: #000;
}

.about-us .line-shape {
    position: absolute;
    top: 30px;
    opacity: 0.1;
    z-index: -1;
    transform: rotate(200deg);
}

.scale-img {
    aspect-ratio: 5/1.5;
    overflow: hidden;
    position: relative;
}

.scale-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    /* scale: 1.5; */
    object-position: center;
    position: fixed;
    top: 0;
}

.abt-srvc .gallery {
    display: flex;
}

.abt-srvc h3 {
    font-size: 36px;
    margin-bottom: 30px;
}

.abt-srvc .left {
    width: 50%;
}

.abt-srvc .detailsWrapper {
    margin-right: auto;
    width: 95%;
}

.abt-srvc .details {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.abt-srvc .right {
    width: 50%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.abt-srvc .photos {
    width: 40vw;
    height: 40vw;
    position: relative;
}

.abt-srvc .photo {
    position: absolute;
    width: 100%;
    height: 100%;
    padding: 80px;
}

.abt-srvc .right .photos img {
    margin-top: 30px;
}

.abt-srvc {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: #000;
}

.abt-srvc .circle-shape {
    position: fixed;
    top: 30px;
}

/* =======Service Page Style======= */


.service-details {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
}

.service-details .container {
    position: relative;
    z-index: 1;
}

.service-details .container .section-title {
    margin-bottom: 70px;
}

.service-details .container .row {
    margin-bottom: 50px;
}

.service-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .9);
    width: 100%;
    height: 100%;
}

.service-details .row span {
    color: #fff;
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    border-radius: 50px;
    display: inline-block;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;

}


/* =======Contact Page Style======= */

.contact-page {
    padding-top: 200px !important;
}

.contact-page .container {
    position: relative;
    z-index: 2;
}

.contact-page .circle-shape {
    z-index: 1;
}

.contact-page .line-shape {
    z-index: 1;
    transform: rotate(200deg);
    opacity: .1;
}

.contact-page h1 {
    font-size: 60px;
    margin-bottom: 100px;
}

.contact-page form {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
}

.input-field {
    display: flex;
    flex-direction: column;
    margin: 0 0 30px 30px;
    width: 46%;
}

.input-field label {
    color: #fff;
    margin-bottom: 20px;
    /* display: flex; */
}

.input-field input,
.input-field textarea {
    padding: 10px 10px;
    border: none;
    border-bottom: 1px solid #fff;
    background: transparent;
    color: #fff;
}

.input-field input:focus-visible,
.input-field textarea:focus-visible {
    outline: none;
}

.input-field span {
    font-size: 25px;
    color: #2B12B1;
    display: inline-block;
    margin-left: 5px;
}

.submit-btn button {
    padding: 15px 30px;
    background: #fff;
    color: #000000;
    display: inline-block;
    margin-top: 20px;
    border: none;
    font-family: Poppins;
    font-weight: 500;
    border: 2px solid transparent;
    transition: .3s;
}

.submit-btn button:hover {
    background: #00000000;
    color: #ffffff;
    border: 2px solid #fff;
}



/* =======Media Queries======= */

@media (max-width: 992px) {

    .section-gap {
        padding: 50px 0;
    }

    .Main-title {
        width: 70%;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 36px;
    }

    .banner-content h1 {
        font-size: 45px;
        margin-bottom: 30px;
    }

    .home-banner {
        height: 80vh;
        background-position: calc(100% - 0px) calc(100% - -236px) !important;
    }

    /* about */

    .home-about .section-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    /* service */

    .home-service .service h4 {
        font-size: 24px;
        font-family: Poppins;

    }
}


@media (max-width: 768px) {

    .Main-title {
        width: 90%;
        margin-bottom: 30px;
    }

    .section-title {
        font-size: 34px;
    }

    .banner-content h1 {
        font-size: 40px;
        margin-bottom: 30px;
    }

    /* about */

    .home-about .section-title {
        font-size: 34px;
        margin-bottom: 30px;
    }

    .home-about .row img {
        margin-bottom: 30px;
    }

    /* service */

    .home-service .service h4 {
        font-size: 24px;
        font-family: Poppins;

    }

    .none-in-sm {
        display: none;
    }

    .blog-thumb img {
        aspect-ratio: 3/2.5;
    }

    .blog-content {
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {

    .header .navbar-brand {
        width: 180px;
    }

    .banner-content h1 {
        font-size: 36px;
    }

    .home-banner {
        height: 100vh;
        background-position: center !important;
    }

    .banner-content {
        width: 100%;
        margin-bottom: 250px;
        position: relative;
        z-index: 1;
    }

    .clients .container-fluid:after {
        background: linear-gradient(to right, rgb(0, 0, 0), rgba(255, 255, 255, 0) 20px, rgba(255, 255, 255, 0) calc(100% - 20px), rgb(0, 0, 0));
    }

    .cta-card h2 {
        font-size: 45px;
    }

    .footer h6 {
        margin-bottom: 15px;
    }

    /* Contact Page */

    .input-field {
        width: 100%;
        margin: 0 0 30px 5px;
    }

    .abt-srvc .gallery {
        display: block !important;
    }

    .abt-srvc .left {
        width: 100% !important;
    }

    .abt-srvc .details {
        height: 80vh !important;
    }

    .abt-srvc h3 {
        font-size: 24px !important;
        margin-bottom: 30px;
    }

    .abt-srvc .right {
        display: none !important;
    }

}