@import url(root.css);

.heroSectionWrapper {
    padding: 220px 0 50px 0;
}

.subTitleHeroSection {
    font-size: var(--FS-24px);
    font-weight: var(--FW-500);
    color: var(--Secondary-color);
    opacity: 0;
}

.titleHeroSection {
    font-size: 5.2vw;
    font-weight: var(--FW-500);
    color: var(--Secondary-color);
    font-family: var(--cyberformcond-font-family);
    letter-spacing: 5px;
    opacity: 0;
}

.heroSectionGIFWrap {
    width: 250px;
    height: 130px;
    border-radius: 50px;
    overflow: hidden;
}

.heroSectionGIFWrap video {
    border-radius: 150px;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arrowButtonHeroSection {
    cursor: pointer;
    position: relative;
    padding: 24px 24px;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    color: var(--Secondary-color);
    border: 2px solid var(--Secondary-color);
    border-radius: 50%;
    background-color: transparent;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
}

.arrowButtonHeroSection::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 50px;
    height: 50px;
    border-radius: inherit;
    scale: 0;
    z-index: -1;
    background-color: var(--Secondary-color);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.arrowButtonHeroSection:hover::before {
    scale: 3;
}

.arrowButtonHeroSection:active,
.arrowButtonHeroSection:hover {
    scale: 1;
}

.arrowButtonHeroSection:active svg g,
.arrowButtonHeroSection:hover svg g {
    mix-blend-mode: difference;
}


.connectText {
    font-size: var(--FS-24px);
    font-weight: var(--FW-500);
    color: var(--Secondary-color);
}

.heroSectionTextWrap {
    width: 50%;
    height: auto;
    margin-left: 10%;
}

.heroSectionText {
    font-size: var(--FS-22px);
    font-weight: var(--FW-300);
    color: var(--Secondary-color);
    will-change: transform;
    opacity: 0;
}

.heroSectionTextLists li {
    font-size: var(--FS-22px) !important;
    font-weight: var(--FW-300) !important;
    color: var(--Secondary-color) !important;
}

.heroSectionText * {
    will-change: transform;
}

.sparkStarWrap {
    top: 100px;
    right: 10%;
    transform: translateX(0);
    will-change: transform;
}

.sparkStarWrap img {
    width: 200px;
    height: 200px;
}

.whatWeDoSectionWrapper {
    padding: 100px 0 0 0;
}

.greenEarth,
.whatWeDoContentWrapper {
    width: 50%;
}

.whatWeDoBadge {
    padding: 10px 20px;
    font-size: var(--FS-22px);
    font-weight: var(--FW-500);
    color: var(--Primary-color);
    background: var(--Secondary-color);
    border-radius: 30px;
}

.greenEarth img {
    width: 100%;
    height: auto;
    transform-origin: center center;
    will-change: transform;
}

.animatedButtonZoon {
    will-change: transform;
}

.whatWeDoTitleFonts {
    font-size: var(--FS-60px);
    font-weight: var(--FW-500);
    color: var(--Secondary-color);
    font-family: var(--cyberformcond-font-family);
}

.whatWeDoTitle {
    font-size: var(--FS-60px);
    font-weight: var(--FW-500);
    color: var(--Secondary-color);
    margin-bottom: 50px;
}

.whatWeDoDesc {
    width: 70%;
    font-size: var(--FS-24px);
    font-weight: var(--FW-400);
    color: var(--Secondary-color);
    margin: 50px auto;
}

.earthBgWrap {
    top: 25%;
    left: 5%;
}

.earthstoneWrap {
    bottom: 25%;
    right: 20%;
    z-index: 9999;
}

.peragraphTextAnimate {
    opacity: 0;
    will-change: transform;
}

.peragraphTextAnimate * {
    will-change: transform;
}

.imagesHoverdiv {
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 380px;
    z-index: 99999;
}

.hero-image-container {
    position: relative;
    height: 380px;
    width: 16.6%;
    overflow: hidden;
    background: var(--Transparent);
    margin: 0;
    cursor: pointer;
}

.hero-image-inner {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 0.3s ease;
}

.hero-image-container.hovered .hero-image-inner {
    bottom: 0;
    opacity: 1;
}

.hero-image-inner img {
    width: 100%;
    height: auto;
    display: block;
}

.rotateInfinite {
    animation: spin 60s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


/* How We do section */

.howWeDoSectionWrapper {
    background: url(../../images/home/howWeDoBg.webp);
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 0 100px 0;
    background-size: 100% 100%;
}

.howWeDoCardsWrapper {
    padding: 70px 100px 100px 100px;
}

.howWeDoCardsWrap {
    width: 100%;
    height: 600px;
    border: solid 3px var(--Border-color);
    border-radius: 30px;
    overflow: hidden;
}

.howWeDoCardContent {
    padding: 0 30px;
}

.howWeDoCardNumber {
    font-family: var(--cyberformcond-font-family);
    font-size: 60px;
    font-weight: var(--FW-500);
    color: var(--Secondary-color);
    margin-bottom: 0;
    white-space: nowrap;
}

.howWeDoCardTitle {
    font-size: var(--FS-36px);
    font-weight: var(--FW-500);
    color: var(--Secondary-color);
}

.howWeDoCarddescription {
    font-size: var(--FS-18px);
    font-weight: var(--FW-400);
    color: var(--Secondary-color);
}

.howWeDoCardImage {
    bottom: -35px;
    right: 0;
    width: auto;
    height: 250px;
    z-index: -99;
}

.customButtoms {
    margin-top: 70px !important;
    gap: 10px !important;
}

.custom-nav-btn {
    width: 60px !important;
    height: 60px !important;
    border: 1px solid var(--Secondary-color) !important;
    border-radius: 50% !important;
    background: transparent !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: var(--Secondary-color) !important;
    font-size: 18px !important;
    cursor: pointer !important;
    transition: background 0.3s ease !important;
    position: unset !important;
}

.custom-nav-btn:hover {
    background-color: rgba(255, 255, 255, 0.2) !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    display: none !important;
}

/* Featured In Section */

.featuresSectionWrapper {
    padding: 200px 0 0 0;
}

.downstarWrap {
    bottom: 0;
    left: 50%;
    right: 50%;
    transform: translate(-50%, 0%);
    width: 50vh;
}

.downstarWrap img {
    width: 100%;
    height: auto;
}

.featuredInStoneWrap {
    top: 5%;
    right: -4%;
}

.featureInCardWrap {
    width: 25%;
    height: 100px;
    text-align: center;
    position: relative;
}

.featureInLogoWrap {
    width: auto;
    height: 60px;
    margin: auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.featureInHoverImage {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: auto;
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.featureInCardWrap.hover-active .featureInHoverImage {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Case Studies Section */

.caseStudiesSectionWrapper {
    padding: 100px 0;
}

.caseStudieCardContent,
.caseStudieCardImage {
    width: 50%;
}

.caseStudiTitle {
    padding: 20px 30px;
    font-size: var(--FS-24px);
    font-weight: var(--FW-400);
    color: var(--Secondary-color);
    background: var(--Transparent);
    border: solid 1px var(--Secondary-color);
    border-radius: 50px;
    margin-bottom: 200px !important;
}

.caseStudieCardImage img {
    width: 80%;
    height: auto;
    margin-left: 20%;
}

.caseReachStudiesWrapper {
    padding: 30px 50px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(7px);
    width: fit-content;
    text-align: center;
    border-radius: 30px;
    top: 10%;
    left: 7%;
}

.caseReachCount {
    font-family: var(--cyberformcond-font-family);
    font-size: var(--FS-60px);
    font-weight: var(--FW-500);
    color: var(--Secondary-color);
}

.caseReachContent {
    font-size: var(--FS-26px);
    font-weight: var(--FW-400);
    color: var(--Secondary-color);
}

/* What Client Says */

.clientSaysSectionWrapper {
    padding: 0 0 100px 0;
}

.clientSaysSunWrap {
    top: 0;
    right: 0;
}

.clientSaysCardsWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 0 100px;
    flex-wrap: wrap;
}

.clientSaysCard {
    width: 30%;
    height: -webkit-fill-available;
}

.testimonialCard {
    color: var(--Secondary-color);
    background: var(--Primary-color);
    border: solid 2px rgba(255, 255, 255, 0.2);
    padding: 20px;
    border-radius: 12px;
    position: relative;
    min-height: 285px;
    height: -webkit-fill-available;
}

.testimonialText {
    font-size: var(--FS-24px);
    font-weight: var(--FW-300);
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--Secondary-color);
}

.testimonialUser {
    display: flex;
    align-items: center;
    gap: 10px;
}

.userImage {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.userName {
    font-size: var(--FS-22px);
    font-weight: var(--FW-400);
    color: rgba(250, 250, 250, 0.7);
    text-transform: uppercase;
}

/* Contact Us Banner */

.contactSectionWrapper {
    padding: 100px;
}

.contactSection {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 50px;
}

.contactBgImage {
    width: 100%;
    height: 600px;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.5s ease;
    object-fit: cover;
}

.contactCard {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: var(--LightBlack-color);
    backdrop-filter: blur(20px);
    padding: 40px 30px;
    border-radius: 50px;
    color: var(--Secondary-color);
    text-align: center;
    transition: background 0.3s ease;
    width: 80%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.contactSubtitle {
    font-size: var(--FS-24px);
    font-weight: var(--FW-400);
    margin-bottom: 10px;
    color: var(--Secondary-color);
}

.contactTitle {
    font-size: var(--FS-40px);
    font-weight: var(--FW-500);
    margin: 0 0 20px;
    line-height: 1.2;
    color: var(--Secondary-color);
}

.contactBtn {
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
    padding: 10px 20px;
    font-size: var(--FS-22px);
    font-weight: var(--FW-500);
    color: var(--Primary-color);
    background: var(--Secondary-color);
    border-radius: 30px
}

.contactSection:hover .contactBgImage {
    filter: grayscale(0%) brightness(1.1) contrast(1.05);
}

/* Get Started Section   */

.timelineCardsWrapper {
    width: 80%;
    margin: auto;
    position: relative;
}

.timelineCard {
    position: relative;
}

.timelineLine {
    position: absolute;
    top: 0;
    left: -4%;
    width: 4px;
    height: 100%;
    background: var(--Border-color);
}

.timelineLineGradient {
    position: absolute;
    top: 0;
    left: -4%;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, white 0%, #ffaa66 50%, #00cfff 100%);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
    border-radius: 50px;
}

.timelineCardDot {
    position: absolute;
    top: 0;
    left: -4.75%;
    width: 30px;
    height: 30px;
    background: var(--Secondary-color);
    border-radius: 50%;
}

.timelineCardTitle {
    font-size: var(--FS-60px);
    font-weight: var(--FW-500);
    color: var(--Secondary-color);
}

.timelineCardNumber {
    font-family: var(--cyberformcond-font-family);
    font-size: 200px;
    font-weight: var(--FW-700);
    color: var(--Secondary-color);
    white-space: nowrap;
}

.timelineCardImage img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    margin-bottom: 100px;
}

/* With Without Wrapper */

.compareSectionWrapper {
    background: url(../../images/home/howWeDoBg.webp);
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 0 100px 0;
    background-size: 100% 100%;
}

.compareCardsWrapper {
    padding: 50px;
}

.withGlobeWrapper {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -9;
}

.withGlobeWrapper img {
    width: auto;
    height: 100%;
}

.with-outSectionWrapper {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 100px;
    margin: 0;
}

.with-outTitle {
    min-width: 250px;
    font-size: var(--FS-60px);
    font-weight: var(--FW-500);
    color: var(--Secondary-color);
    font-family: var(--cyberformcond-font-family);
    text-align: end;
    mix-blend-mode: difference;
}

.with-outCardsWrapper {
    width: 80%;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: nowrap;
    overflow: hidden;
    gap: 30px;
}

.with-outCard {
    height: 250px;
    min-width: 500px;
    width: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 3px var(--Border-color);
    border-radius: 30px;
    margin: 25px 0;
}

.with-outCard p {
    padding: 30px;
    font-size: var(--FS-26px);
    font-weight: var(--FW-400);
    color: var(--Secondary-color);
}

.sync-scroll {
    position: relative;
    cursor: grab;
}

.sync-scroll:active {
    cursor: grabbing;
}

body.dragging {
    cursor: none;
}

#dragCursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Trusted Partners Section */

.trustLogosWrapper {
    padding: 0 0 300px 0;
    position: relative;
    overflow: hidden;
}

.trustedPartnersSectionWrapper {
    padding: 100px 0 0 0;
}

.trustLogosWrapper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.marqueeContainer {
    overflow: hidden;
    width: 100%;
    position: relative;
    height: 100px;
    display: flex;
}

.marqueTrustLogos {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 20px;
    white-space: nowrap;
    will-change: transform;
    border: solid 1px var(--Secondary-color);
    border-width: 1px 0;
}

.marqueTrustLogos img {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.marqueeContainerOne {
    transform: rotate(5deg);
    transform-origin: 0 100%;
}

.marqueeContainerTwo {
    transform: rotate(-5deg);
    transform-origin: 125% 0%;
    background: var(--Primary-color);
}

/* Who We Are Section */

.whoWeAreSectionWrapper {
    width: 100%;
    height: auto;
    margin: -400px 0 -200px 0;
    z-index: -9;
}

.welcomeImageWrapper {
    width: 100%;
    height: auto;
    z-index: -9;
}

.welcomeImageWrapper img {
    width: 100%;
    height: auto;
}

.whoWeAreContentWrap {
    /* width: 600px; */
    position: absolute;
    top: 53%;
    left: 51%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.whoWeAreTitle {
    font-size: var(--FS-80px);
    font-weight: var(--FW-700);
    color: var(--Secondary-color);
    font-family: var(--cyberformcond-font-family);
    mix-blend-mode: difference;
}

.whoWeAreDesc {
    font-size: var(--FS-38px);
    font-weight: var(--FW-400);
    color: var(--Secondary-color);
    mix-blend-mode: difference;
}

.whoWeAreGridWrap {
    width: 100%;
    overflow: hidden;
}

/* FAQ */

.faqSectionWrapper {
    padding: 0 100px 100px 100px;
}

.faq-list {
    border-top: 1px solid var(--Border-color);
    border-bottom: 1px solid var(--Border-color);
}

.faq-item {
    position: relative;
    overflow: hidden;
    border: 0;
    border-bottom: 1px solid var(--Border-color);
}

.faq-item.active {
    border-radius: 20px;
}

.faq-item:last-child {
    border-bottom: 0;
}

.faq-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--ActiveMenu-color) 0%, rgba(109, 74, 255, .6) 10%, rgba(109, 74, 255, 0) 25%);
    opacity: 0;
    transition: opacity .25s ease;
    pointer-events: none;
}

.faq-item.active::before {
    opacity: 1;
}

.faq-header {
    width: 100%;
    background: transparent;
    border: 0;
    color: inherit;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2.5rem 1rem 2.5rem 15rem;
    position: relative;
}

.faq-item.active .faq-header {
    padding-bottom: 1rem;
}

.faq-number {
    font-family: var(--cyberformcond-font-family);
    font-weight: var(--FW-500);
    font-size: var(--FS-40px);
    color: var(--Secondary-color);
    position: absolute;
    left: 1.25rem;
    top: 1.35rem;
    letter-spacing: .15em;
    opacity: .85;
}

.faq-question {
    font-weight: var(--FW-400);
    font-size: var(--FS-24px);
    color: var(--Text-color);
    line-height: 1.4;
    margin: 0;
}

.faq-answer {
    display: none;
    padding: 0 1rem 1.25rem 15rem;
    font-weight: var(--FW-400);
    font-size: var(--FS-20px);
    color: var(--Text-color);
    max-width: 980px;
}

/* Call To Action Wrapper */

.callToActionSectionWrapper {
    padding: 0;
}

.callToActionContent {
    /* background-color: var(--); */
    background-image: url('../../images/global/call-to-action.svg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    padding: 100px;
    border-radius: 0;
}

.callToActionContent a {
    min-width: fit-content;
}

/* Banner Section Wrapper */

.bannerSectionWrapper {
    padding: 100px;
}

.bannerContentWrapper {
    /* border: solid 1px var(--Secondary-color); */
    border-radius: 30px;
    padding: 50px;
    background-color: var(--Primary-color);
    background: radial-gradient(circle, transparent 20%, var(--Primary-color) 20%, var(--Primary-color) 80%, transparent 80%, transparent), radial-gradient(circle, transparent 20%, var(--Primary-color) 20%, var(--Primary-color) 80%, transparent 80%, transparent) 20px 20px, linear-gradient(var(--Background-circle-color) 1.6px, transparent 1.6px) 0 -0.8px, linear-gradient(90deg, var(--Background-circle-color) 1.6px, var(--Primary-color) 1.6px) -0.8px 0;
    background-size: 40px 40px, 40px 40px, 20px 20px, 20px 20px;
}

.bannerSectionWrapper .connectText {
    white-space: nowrap;
}