@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body,
html {
    width: 100%;
    font-family: "Manrope", sans-serif;
    background-color: var(--dark);
}

:root {
    --primary: #0309D9;
    --secondary: #02CDF6;
    --sc-bg: #000A29;
    --dark: #000C34;
    --light: #fff;
    --sec-text: #D3D3D3;
    --background-gradient: linear-gradient(135deg, rgba(2, 205, 246, 1) 10%, rgba(3, 9, 217, 1) 29%);
    --text-gradient: linear-gradient(135deg, var(--primary), var(--secondary));
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    width: 100%;
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1400px;
    }
}

.section-gap {
    padding: 120px 0;
}

.section-span {
    position: relative;
    color: var(--light);
    display: inline-block;
    margin-bottom: 35px;
}

.section-span::before {
    content: "";
    position: absolute;
    top: 12px;
    right: -110px;
    height: 1px;
    width: 100px;
    background-color: var(--light);
}

.section-title {
    font-size: 52px;
    color: var(--light);
    margin-bottom: 120px;
}

.section-title span {
    background: var(--text-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: var(--primary);
}

.title-wrapper {
    gap: 150px;
    display: flex;
    justify-content: space-between;
}

.prmr-btn {
    display: inline-block;
    color: var(--light);
    padding: 8px 20px 8px 12px;
    background: transparent;
    border: 1px solid var(--light);
    border-radius: 50px;
    transition: all ease-in-out .3s;
}

.prmr-btn i {
    background: var(--text-gradient);
    border-radius: 10px;
    padding: 0 2.5px;
    margin-right: 7px;
    color: var(--light);
}

.prmr-btn:hover {
    background: var(--light);
    color: var(--dark);
    border: 1px solid transparent;
}

.prmr-btn:hover i {
    color: var(--light);
}

.seprater {
    border-bottom: 1px solid #d9d9d946;
    margin-top: 70px;
}

.arrow {
    color: var(--light);
    border: 1px solid var(--light);
    border-radius: 50px;
    padding: 3px 24px;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.btn:active {
    border: none;
}


/* =====Header Section===== */



.header {
    width: 100%;
    /* background-color: #000C34; */
    padding: 0px 15px;
    position: fixed;
    top: 0;
    z-index: 9999;
    border-bottom: 1px solid rgba(256, 256, 256, 20%);
    transition: 0.3s ease;
}

.header .nav {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.header .nav li {
    color: var(--light);
}

.header .nav li a {
    color: var(--light);
    padding: 29px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2px;
}

.header .nav li .active {
    position: relative;
}

.header .nav li .active::before {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    background-color: var(--light);
    top: 45%;
    left: -10px;
    border-radius: 50%;
}


.header .inner {
    display: flex;
    align-items: center;
    gap: 130px;
}

.header .inner .btn a {
    padding: 10px 20px;
    background-color: transparent;
    color: var(--light);
    border: 1px solid var(--light);
    border-radius: 50px;
    transition: .3s;
}

.header .inner .btn a:hover {
    background-color: var(--light);
    color: var(--dark);
}


.sticky {
    background-color: var(--dark);
    color: white;

}

.close {
    display: none;
}

.mobile-menu {
    display: none;
}



.sub-menu {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: start !important;
    justify-content: start;
    gap: 0 !important;
    background-color: var(--dark);
    top: 83px;
    height: 0;
    opacity: 0;
    transition: all .3s;
    overflow: hidden;
    border: 1px solid #fff3;
    padding: 15px 0;
}


.submenu-link:hover .sub-menu {
    height: inherit;
    opacity: 1;
    /* padding: 20px 0; */
}


.sub-menu li {
    padding: 10px 20px;
    width: 100%;
    transition: all .2s;
}

.sub-menu li:hover {
    background-color: var(--primary);
}

.sub-menu li a {
    padding: 0 !important;
    display: block;
}

.details-title {
    font-size: 52px;
    color: var(--light);
    position: relative;
    z-index: 0;
    font-weight: 600;
}

.insights-banner-details {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 100px 0;
    position: relative;
}

.insights-banner-details::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(3, 9, 217, 0.4);
}

.b-content-wrapper p {
    color: var(--sec-text);
    font-size: 18px;
}

.b-content-wrapper {
    color: var(--primary);
}

.b-content-wrapper h2,
.b-content-wrapper h3,
.b-content-wrapper h4 {
    color: var(--light);
}

.b-content-wrapper .last-t {
    margin-bottom: 70px;
}

.b-sec-title {
    font-size: 42px;
    margin-bottom: 45px;
}

.b-th-title {
    font-size: 28px;
    margin-bottom: 35px;
}

.list-head {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.list-head i {
    font-size: 22px;
    color: var(--primary);
}

.b-fh-title {
    font-size: 22px;
    margin-bottom: 20px;
}

.b-list {
    margin-top: 50px;
}



/* =====Bannner Section===== */

.banner {
    height: 100vh;
    background: var(--text-gradient);
    position: relative;
    overflow: hidden;
}

.circle {
    background: var(--background-gradient);
    width: 250px;
    height: 250px;
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 50%;

}

.circle:nth-child(1) {
    z-index: 5;
    transform: scale(4);
}

.circle:nth-child(2) {
    transform: scale(6);
    z-index: 4;
}

.circle:nth-child(3) {
    transform: scale(8);
    z-index: 3;
}

.circle:nth-child(4) {
    transform: scale(10);
    z-index: 2;
}

.circle:nth-child(5) {
    transform: scale(13);
    z-index: 1;
}

.banner-title {
    position: relative;
    z-index: 6;
    text-align: right;
}

.banner-title .banner-btn {
    color: var(--light);
    font-size: 22px;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.banner-title .banner-btn i {
    transition: .3s;
}

.banner-btn:hover i {
    transform: translateX(5px) !important;
}


.banner-title h1 {
    font-size: 48px;
    font-weight: 600;
    color: var(--light);
    text-align: right;
    margin-bottom: 50px;
}

.banner-desc {
    display: flex;
    gap: 10px;
    align-items: center;
}

.banner-desc p {
    color: var(--light);
}

.banner-desc i {
    color: var(--light);
    border: 1px solid var(--light);
    border-radius: 50px;
    padding: 3px 24px;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.content {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
}

/* =====About Section===== */

.abt-content p {
    color: var(--sec-text);
    margin-bottom: 30px;
    font-size: 18px;
}

.abt-content p span {
    color: var(--light);
}

.about-content-wrapper {
    padding-right: 50px;
}

.about img {
    position: sticky;
    top: 50px;
}


/* =====Service Section Section===== */

.service .swiper {
    width: 100%;
    height: 100%;
}

.service .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.service .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service .swiper-slide {
    text-align: left;
    padding: 50px;
    align-items: end;
    border-radius: 20px;
}

.service .swiper-slide h3 {
    color: #fff;
    font-size: 36px;
    font-weight: 500;
}

.service .swiper-slide {
    height: 500px;
    background-position: center;
    background-size: cover !important;
    background-repeat: no-repeat !important;
}

.service .swiper-slide:nth-child(1) {
    margin-left: calc((100% - 1400px) / 2) !important;
}



/* =====CTA Section===== */

.cta {
    height: 100vh;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

}

.cta h2 {
    font-size: 80px;
    font-weight: 500;
    color: var(--light);
    margin-bottom: 80px;
    width: 85%;
    line-height: 1;
}

/* =====Industries Section===== */

.industries .card {
    background: var(--background-gradient);
    padding: .8px;
    border-radius: 20px;
    height: 250px;
    margin-bottom: 25px;
}

.card-content {
    background: var(--dark);
    padding: 35px;
    border-radius: 18px;
    background-clip: padding-box;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all .2s;
}

.card-content:hover {
    background-color: var(--text-gradient);
}

.card-content img {
    width: 50px;
}

.card-content h4 {
    font-size: 28px;
    color: var(--light);
    font-weight: 500;
}

/* =====Blog Section===== */

.blog {
    background: var(--background-gradient);
}

.blogSwiper .swiper {
    width: 100%;
    height: 100%;
}

.blogSwiper .swiper-slide {
    text-align: left;
    padding: 50px;
    align-items: end;
    background-color: transparent;
    border: 1px solid var(--light);
    height: 400px;
}

.blogSwiper .swiper-slide:nth-child(1) {
    margin-left: calc((100% - 1400px) / 2) !important;
}


.blog-content-wrapper .blog-title {
    font-size: 30px;
    color: var(--light);
    margin: 20px 0 30px 0;
}

.blog-content-wrapper .tag {
    color: var(--light);
    padding: 5px 10px;
    border: 1px solid var(--light);
    font-size: 12px;
    border-radius: 20px;
    margin-right: 10px;

}

.blog-content-wrapper .blog-desc {
    color: var(--light);
}

.blog-content-wrapper:hover .blog-title {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.swiperBtn {
    position: relative;
}

.swiperBtn .swiper-button-next,
.swiperBtn .swiper-button-prev {
    border: 1px solid var(--light);
    width: 65px;
    height: 65px;
    border-radius: 50px;
}

.swiperBtn .swiper-button-next::after {
    content: "" !important;
}

.swiperBtn .swiper-button-prev::after {
    content: "" !important;
}

.swiperBtn i {
    font-size: 32px;
    color: var(--light);
}

/* =====Footer Section===== */

.footer {
    border-top: 1px solid #ffffff33;
}

.footer-logo {
    width: 250px;
}

.footer .link-head {
    color: var(--light);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer ul li {
    color: #7C7C7C;
}

.footer ul li a {
    color: #7C7C7C;
}

.footer ul li a:hover {
    text-decoration: underline;
    text-decoration-thickness: 1px;
}

.footer ul {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-contact li {
    display: flex;
    gap: 10px;
}

.copyright-section {
    border-top: 1px solid #7c7c7c8e;
    padding: 20px 0;

}

.copyright {
    display: flex;
    align-items: center;
    justify-content: center;
}

.copyright-text {
    color: var(--light);
    font-size: 15px;
    font-weight: 300;
}

.privacylink a {
    color: var(--light);
    font-size: 15px;
    font-weight: 300;
}


/* =====About Page==== */

.section-banner {
    height: 100vh;
    overflow: hidden;
    background: var(--text-gradient);
}

.section-banner .content-wrapper {
    position: absolute;
    z-index: 10;
    bottom: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.section-banner .content-wrapper h1 {
    font-size: 120px;
    color: var(--light);
}

.page-about-section {
    background-color: #000A29;
}

.page-about-section p {
    font-size: 22px;
    color: var(--light);
    margin-bottom: 35px;
}


/* =====Contact us Page==== */

.form {
    background-color: var(--dark);
    height: 100%;
    position: relative;
    z-index: 10;
    padding: 0 20px 0 20px;
}

.form h1 {
    font-size: 52px;
    color: var(--light);
    margin-bottom: 35px;
}

.fp-btn_cta {
    display: block;
    overflow: hidden;
    transform: translateZ(0);
    transition: transform .3s;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--light);
    cursor: pointer;
    border: none;
    background: var(--text-gradient);
}

.cntc-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.cntc-content a {
    color: var(--sec-text);
}

.cntc-content a:hover {
    text-decoration: underline;
}

.form-input-field {
    border-style: none none solid;
    border-width: 1px 1px 1px;
    border-color: #fff3;
    color: var(--sec-text);
    background-color: #0000;
    border-radius: 0;
    height: 44px;
    margin-bottom: 5px;
    padding-left: 0;
    font-size: 14px;
    line-height: 32px;
    padding: 8px 0px;
    width: 100%;
}

.contact-form-label {
    color: var(--light);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group {
    margin-bottom: 20px;
}

.form-input-field:focus {
    border-color: var(--primary);
    outline: 0;
}

.form-message-input-field {
    min-height: 80px;
    margin-bottom: 30px;
    padding-top: 0;
}

.contact-page {
    padding-top: 150px;
}

.error-message {
    color: red;
    font-size: 12px;
}


/* =====Career Page===== */

.career-about {
    background-color: var(--sc-bg);
}

.career-about p {
    color: var(--sec-text);
    font-size: 26px;
}

.career-about .sec-para {
    font-size: 18px;
}

.career-about a {
    color: var(--light);
    text-decoration: underline;

}

/* =====Service Details Page===== */

.service-title {
    font-size: 52px;
    color: var(--light);
    margin-bottom: 45px;
}

.white-text {
    color: var(--light);
}

.srvc-img {
    position: relative;
}

.srvc-img img {
    aspect-ratio: 4/3;
    object-fit: cover;
    object-position: center;
}

.srvc-img::before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;

}

.sec-bg {
    background-color: var(--sc-bg);
}

.key-features {
    color: var(--light);
}

.key-features .section-span {
    margin-bottom: 65px;
}

.feature-card {
    padding: 35px 25px;
    border-radius: 20px;
    background-color: var(--dark);
    height: 100%;
    border: 1px solid #ffffff33;
}

.feature-card h3 {
    margin-top: 50px;
    font-size: 32px;
    margin-bottom: 35px;
}

.feature-card p {
    color: var(--sec-text);
}

.srvc-abt {
    padding-right: 50px;
}

/* =====Industry Page===== */

.industry-page h3 {
    font-size: 36px;
    color: var(--light);
    margin-bottom: 50px;
}

.industry-page img {
    aspect-ratio: 4/2.5;
    object-fit: cover;
    object-position: center;

}

.industry-page .section-title {
    margin-bottom: 35px;
}

.industry-page .main {
    margin-bottom: 70px;
}

.industry-page p {
    color: var(--sec-text);
}

.we-help {
    padding-left: 50px;
}

.we-help ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--sec-text);
}

.we-help ul li {
    display: flex;
    gap: 10px;
    font-size: 18px;
}

.we-help ul li i {
    color: var(--primary);
}

/* =====Insights Page===== */

.insights-banner {
    height: 50vh;
    background-color: var(--dark);
    display: flex;
    align-items: end;
}

.insight-banner-title {
    font-size: 100px;
    color: var(--light);
}

.blog-wrapper {
    padding: 20px;
    border: 1px solid #fff3;
    display: block;
    height: 100%;
}

.blog-wrapper img {
    aspect-ratio: 4/2.5;
    object-fit: cover;
    object-position: center;
}

.blog-wrapper:hover h3 {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}


.blog-wrapper h3 {
    color: var(--light);
    margin: 20px 0;
}

.blog-wrapper p {
    color: var(--sec-text);
}






/* =====Responsive===== */

/* ===Header=== */

@media (max-width: 1024px) {

    .header {
        padding: 12px 15px;
    }

    .sub-menu {
        padding: 0;
    }

    .section-gap {
        padding: 70px 0;
    }

    .contact-page {
        padding-top: 120px;
    }

    .section-title {
        margin-bottom: 70px;
    }

    .title-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .header .inner {
        gap: 10px;
        align-items: center;
    }

    .inner .nav {
        position: absolute;
        width: 350px;
        background-color: var(--dark);
        display: block;
        align-items: start;
        transform: translateX(100%);
        height: 100vh;
        overflow-y: auto;
        top: 0;
        right: 0;
        padding: 100px 20px 20px 35px;
        border-left: 1px solid #7c7c7c8e;
        transition: all ease-in-out .3s;
    }

    .mobile-menu {
        display: block;
        color: var(--light);
        font-size: 22px;
        width: 40px;
        height: 40px;
        border: 1px solid var(--light);
        border-radius: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .close {
        display: block;
        color: var(--light);
        width: 35px;
        height: 35px;
        border: 1px solid var(--light);
        border-radius: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        top: 30px;
    }

    .hidden {
        overflow: hidden;
        position: relative;
    }

    .hidden::before {
        content: "";
        background-color: #000c348c;
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        z-index: 10;
    }

    .service .swiper-slide {
        padding: 35px;
        height: 400px;
    }

    .cta h2 {
        font-size: 70px;
    }

    .service .swiper-slide:nth-child(1) {
        margin-left: 0 !important;
    }

    .blogSwiper .swiper-slide:nth-child(1) {
        margin-left: 0 !important;
    }

    .swiperBtn {
        display: none;
    }

    .header .nav li a {
        padding: 10px 0;
        display: block;
    }

    .form {
        padding: 0;
        margin-top: 100px;
    }

    .sub-menu {
        position: inherit;
        opacity: 1;
        border: 0;
        height: auto;
        margin-left: 15px;
        background-color: transparent;
    }

    .sub-menu li a {
        color: var(--sec-text) !important;
    }

    .sub-menu li {
        padding: 10px 0;
    }

    .submenu-link a {
        display: flex !important;
    }

    .submenu-link a img {
        width: 15px;
    }
}

@media (max-width: 992px) {

    .banner-desc {
        justify-content: end;
        margin-bottom: 20px;
    }

    .about img {
        margin-bottom: 70px;
    }

    .about-content-wrapper {
        padding-right: 0px;
    }

    .section-banner .content-wrapper h1 {
        font-size: 60px;
    }

    .section-banner .content-wrapper {
        width: 95%;
    }

    .blogSwiper .swiper-slide {
        padding: 35px;
    }

    .we-help {
        padding-left: 0px;
    }

    .industry-page img {
        margin-bottom: 50px;
    }

    .footer-logo {
        margin-bottom: 50px;
    }

    .srvc-abt {
        margin-bottom: 35px;
    }

    .insight-banner-title {
        font-size: 72px;
    }

    .details-title {
        font-size: 42px;
    }

    .b-sec-title {
        font-size: 32px;
    }

    .b-th-title {
        font-size: 24px;
    }

    .b-fh-title {
        font-size: 20px;
    }

}


@media (max-width: 600px) {

    .circle:nth-child(1) {
        z-index: 5;
        transform: scale(1);
    }

    .circle:nth-child(2) {
        transform: scale(2);
        z-index: 4;
    }

    .circle:nth-child(3) {
        transform: scale(3);
        z-index: 3;
    }

    .circle:nth-child(4) {
        transform: scale(4);
        z-index: 2;
    }

    .circle:nth-child(5) {
        transform: scale(5);
        z-index: 1;
    }

    .inner .nav {
        width: 100%;
    }

    .banner-title h1 {
        font-size: 42px;
        text-align: left;
    }

    .section-title {
        font-size: 36px;
    }

    .cta h2 {
        font-size: 52px;
        width: 100%;
    }

    .service .swiper-slide h3 {
        font-size: 30px;
    }

    .industry-page h3 {
        font-size: 30px;
    }

    .card-content h4 {
        font-size: 24px;
    }

    .blog-content-wrapper .blog-title {
        font-size: 24px;
    }

    .service-title {
        font-size: 36px;
    }

    .feature-card h3 {
        font-size: 24px;
    }

    .content {
        bottom: 100px;
    }

    .section-banner .content-wrapper {
        bottom: 100px;
    }

    .banner-desc i {
        display: none;
    }

    .insight-banner-title {
        font-size: 52px;
    }

    .sub-menu li {
        padding: 5px 0;
        font-size: 15px;
    }
}