@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Poppins", sans-serif;
}

:root {
    --background-color: #111827;
    --white-color: #fff;
    --orange-color-1: #FF7A00;
    --orange-color-2: #FA843D;
    --golden-color: #D4AF37;
    --linear-gradient-color-1: linear-gradient(106deg, #FF7A00 0%, #D4AF37 100%);
    --linear-gradient-font-color: -webkit-linear-gradient(34deg, #FF7A00 0%, #D4AF37 100%);
    --linear-gradient-color-2: linear-gradient(90deg, #fa803b 0%, #f4c165 100%);
    --linear-gradient-color-3: linear-gradient(90deg, #FF7A00 0%, #D4AF37 100%);
    --linear-gradient-color-4: linear-gradient(90deg, rgba(255, 122, 0, 0) 0%, #f4c165 50%, rgba(255, 122, 0, 0) 100%);
    --text-color: #111827;
    --primary-color-rgb: 17, 24, 39;
    --border-color: #505050;
}

body {
    background-color: var(--background-color);
}


/*-------header-------*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 9;
    transition: all 0.3s;
}

.header.is-sticky {
    background-color: rgba(17, 24, 39, 0.8);
    backdrop-filter: blur(20px);
    padding: 20px 0;
}

.header .navbar {
    padding: 0;
}

.header .offcanvas-body .nav-item .nav-link {
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    color: var(--white-color);
    text-transform: uppercase;
    padding: 0;
    position: relative;
}

.header .offcanvas-body .nav-item .nav-link::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--linear-gradient-color-3);
    transition: all 0.3s;
}

.header .offcanvas-body .nav-item .nav-link.active::after {
    width: 100%;
}

.header .offcanvas-body {
    justify-content: center;
}

.header .offcanvas-body .navbar-nav {
    gap: 60px;
    justify-content: center;
}

.btn-book-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--linear-gradient-color-2);
    color: var(--text-color);
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
    border-radius: 100px;
    padding: 9px 25px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

.btn-book-call::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--white-color);
    transition: all 0.5s;
    z-index: -1;
}

.btn-book-call img {
    flex-shrink: 0;
    width: 25px;
}

.header .navbar-brand {
    padding: 0;
    margin: 0;
}

.offcanvas-backdrop.show {
    opacity: 60%;
}


/*-------hero section-------*/

.hero-section {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content h6 {
    font-weight: 600;
    color: var(--white-color);
    font-size: 44px;
    line-height: 44px;
    margin-bottom: 20px;
}

.hero-content p {
    font-weight: 500;
    color: var(--white-color);
    opacity: 60%;
    font-size: 20px;
    line-height: 20px;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-weight: 700;
    font-size: 85px;
    line-height: 95px;
    text-transform: uppercase;
    margin-bottom: 25px;
    background: var(--linear-gradient-font-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h5 {
    font-weight: 400;
    color: var(--white-color);
    opacity: 60%;
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 40px;
}

.hero-img-carousel {
    padding-left: 30px;
}

.hero-navigate-button {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-navigate-button a {
    text-decoration: none;
    display: inline-flex;
    animation: bounce 1600ms infinite cubic-bezier(0.445, 0.05, 0.55, 0.95);
}

@keyframes bounce {
    50% {
        transform: translateY(-15px);
    }
}

.hero-navigate-button a img {
    width: 25px;
    flex-shrink: 0;
}


/*-------trust strip section-------*/

.custom-padding {
    padding: 90px 0;
}

.trust-strip-section-title h6 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 30px;
    line-height: 30px;
    color: var(--white-color);
    text-align: center;
}

.trust-strip-section-title h6 span {
    background: var(--linear-gradient-font-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trust-strip-logo-section {
    margin-top: 50px;
}

.trust-strip-logo-slider {
    overflow: hidden;
}

.trust-strip-logo-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

.trust-strip-logo-slider .swiper-slide {
    width: auto;
    flex-shrink: 0;
}

.trust-strip-logo-slider .swiper-slide img {
    height: 35px;
    object-fit: cover;
    display: block;
    opacity: 30%;
}


/*-------event section-------*/

.event-box {
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.event-box::after {
    content: "";
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    background: linear-gradient(310deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 10px;
    z-index: -1;
}

.event-box-content .event-logo img {
    height: 150px;
    object-fit: cover;
}

.event-box-content .event-content h5 {
    font-weight: 600;
    font-size: 44px;
    line-height: 44px;
    text-transform: capitalize;
    margin-bottom: 10px;
    color: var(--white-color);
}

.event-box-content .event-content h5 span {
    color: var(--orange-color-2);
    display: inline-block;
}

.event-box-content .event-content p {
    font-weight: 500;
    font-size: 30px;
    line-height: 30px;
    text-transform: capitalize;
    margin-bottom: 0;
    color: var(--white-color);
}

.event-box-content .event-content p span {
    color: var(--orange-color-2);
    display: inline-block;
}

.event-content {
    display: flex;
    flex-direction: column;
}

.event-content .hero-button {
    margin-top: auto;
}

.event-box-content {
    position: relative;
    padding: 60px 0;
    overflow: hidden;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(14px);
    display: flex;
    justify-content: center;
    gap: 100px;
}

.event-ellipse-1,
.event-ellipse-2 {
    width: 130px;
    height: 130px;
    border-radius: 100%;
    opacity: 80%;
    filter: blur(100px);
    position: absolute;
    background-color: var(--orange-color-1);
    z-index: -1;
}

.event-ellipse-1 {
    top: -20px;
    right: -20px;
}

.event-ellipse-2 {
    bottom: -20px;
    left: -20px;
}


/*-------solutions section-------*/

.section-title-block h6 {
    font-weight: 700;
    font-size: 24px;
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: 12px;
    background: var(--linear-gradient-font-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.section-title-block h1 {
    font-weight: 700;
    font-size: 40px;
    line-height: 44px;
    color: var(--white-color);
    margin-bottom: 0;
}

.section-block-margin {
    margin-top: 70px;
}

.solutions-section-block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.web-box {
    border-radius: 10px;
    position: relative;
    z-index: 1;
    transition: all 0.5s;
    transform: translateY(0);
}

.web-box::after {
    content: "";
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    background: linear-gradient(310deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 10px;
    z-index: -1;
}

.web-box-content {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(14px);
    height: 100%;
}

.glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    height: 150px;
    background: radial-gradient( circle at center, rgba(255, 122, 0, 0.2), transparent 80%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: transform;
    z-index: -3;
}

.web-box:hover .glow {
    opacity: 1;
}

.solutions-section-block .web-box-content {
    padding: 30px;
}

.solutions-box-icon {
    text-align: center;
    margin-bottom: 30px;
}

.solutions-box-content h5 {
    color: var(--white-color);
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.solutions-box-content h6 {
    color: var(--white-color);
    font-weight: 400;
    font-size: 15px;
    line-height: 18px;
    text-transform: capitalize;
    margin-bottom: 20px;
    opacity: 60%;
}

.solutions-box-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 15px;
}

.solutions-box-row p span {
    width: 5px;
    height: 5px;
    background-color: var(--orange-color-1);
    display: inline-flex;
    border-radius: 50%;
}

.solutions-box-row p {
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    color: var(--white-color);
    text-transform: capitalize;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

.web-ellipse-1 {
    width: 100px;
    height: 100px;
    background-color: var(--orange-color-1);
    border-radius: 100%;
    filter: blur(70px);
    position: absolute;
    top: -30px;
    right: -30px;
    z-index: -1;
}


/*-------use-cases section-------*/

.use-cases-section-block {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.use-cases-box-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    margin-bottom: 25px;
}

.use-cases-box-icon img {
    width: 35px;
    flex-shrink: 0;
}

.use-cases-box-content p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    color: var(--white-color);
    text-transform: capitalize;
}

.use-cases-section-block .web-box-content {
    padding: 25px 20px;
}


/*-------proof section-------*/

.proof-section-block .web-box-content {
    padding: 20px 30px;
}

.proof-section-box-row-1 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    padding: 20px 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-section-box-row-1 .proof-box:last-child {
    border-right: 0;
}

.proof-box .proof-icon {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(14px);
    flex-shrink: 0;
}

.proof-box .proof-icon img {
    width: 45px;
    flex-shrink: 0;
}

.proof-box .proof-box-content p {
    margin-bottom: 0;
    color: var(--white-color);
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    text-transform: capitalize;
}

.proof-section-box-row-2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding-top: 20px;
}

.proof-section-box-row-2 .proof-box:last-child {
    border-right: 0;
}

.web-ellipse-2 {
    width: 100px;
    height: 100px;
    background-color: var(--orange-color-1);
    border-radius: 100%;
    filter: blur(70px);
    position: absolute;
    bottom: -30px;
    left: -30px;
    z-index: -1;
}

.text-slider-block {
    margin-top: 70px;
}

.text-slider-block .swiper-slide h1 {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 50px;
    line-height: 50px;
    text-transform: uppercase;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    display: block;
}

.text-slider-block .swiper-wrapper {
    transition-timing-function: linear !important;
}

.text-slider-block .swiper-slide {
    width: auto;
    flex-shrink: 0;
}

.textSwiper-reverse-slider {
    margin-top: 30px;
}


/*-------differentiator section-------*/

.differentiator-section-box {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background-image: url(../images/diff-bg.jpg);
    background-color: #111827;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-blend-mode: luminosity;
}

.differentiator-section-box::after {
    content: "";
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    background: linear-gradient(310deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 10px;
    z-index: -1;
}

.differentiator-section-box-content {
    background-color: rgba(17, 24, 39, 0.5);
    width: 100%;
    height: 100%;
    backdrop-filter: blur(6px);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.differentiator-section-box .web-ellipse-1 {
    width: 250px;
    height: 250px;
    filter: blur(100px);
    top: -50px;
    right: -50px;
    z-index: -1;
}

.differentiator-content h6 {
    font-weight: 500;
    font-size: 24px;
    line-height: 24px;
    text-transform: capitalize;
    margin-bottom: 20px;
    background: var(--linear-gradient-font-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    display: inline-block;
}

.differentiator-content p {
    font-weight: 500;
    color: var(--white-color);
    font-size: 50px;
    line-height: 50px;
    margin-bottom: 0;
}

.differentiator-content h1 {
    font-weight: 700;
    font-size: 140px;
    line-height: 140px;
    text-transform: uppercase;
    margin-bottom: 0;
    background: var(--linear-gradient-font-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    display: inline-block;
}

.differentiator-content {
    text-align: center;
}


/*-------how-it-works section-------*/

.how-it-works-section .section-title-block {
    text-align: center;
}

.how-it-works-section .section-title-block h1 {
    background: var(--linear-gradient-font-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.how-it-works-box-icon {
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(14px);
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin: 0 auto 30px;
}

.how-it-works-box-icon::after {
    content: "";
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    background: linear-gradient(310deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 10px;
    z-index: -1;
}

.how-it-works-box-icon img {
    width: 60px;
    flex-shrink: 0;
}

.how-it-works-box-content h5 {
    color: var(--white-color);
    font-weight: 600;
    font-size: 30px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 15px;
}

.how-it-works-box-content p {
    color: var(--white-color);
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 0;
    opacity: 70%;
}

.how-it-works-section-block {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 60px;
}

.right-long-arrow {
    flex-shrink: 0;
    margin-top: 32px;
}


/*-------event section-------*/

.contact-box {
    border-radius: 10px;
    position: relative;
    z-index: 1;
    height: 330px;
}

.contact-box::after {
    content: "";
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    background: linear-gradient(310deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 10px;
    z-index: -1;
}

.contact-box-content {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(14px);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-pattern-img {
    position: absolute;
    bottom: 0;
    object-fit: cover;
    z-index: -1;
    opacity: 30%;
}

.contact-box-text {
    text-align: center;
}

.contact-box-text h1 {
    text-align: center;
    font-weight: 700;
    font-size: 54px;
    line-height: 54px;
    color: var(--white-color);
    text-transform: capitalize;
    margin-bottom: 30px;
}


/*-------footer section-------*/

.footer-content p {
    font-weight: 400;
    color: var(--white-color);
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.footer-content h6 {
    font-weight: 600;
    color: var(--white-color);
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.footer-content h6 span {
    color: var(--orange-color-1);
}

.footer-content .btn-social-link {
    text-decoration: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background-color: var(--white-color);
    transition: all 0.3s;
    flex-shrink: 0;
}

.footer-content .btn-social-link img {
    width: 20px;
    flex-shrink: 0;
}

.footer-content h2 {
    color: var(--white-color);
    font-weight: 600;
    font-size: 30px;
    line-height: 30px;
    text-transform: uppercase;
    margin-bottom: 30px;
    background: var(--linear-gradient-font-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.contact-form .form-control {
    border: 1px solid var(--border-color);
    background-color: transparent;
    box-shadow: none;
    border-radius: 10px;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--white-color);
    display: flex;
    align-items: center;
    padding: 5px 15px;
}

.contact-form input.form-control {
    height: 40px;
}

.contact-form .form-control::placeholder {
    color: var(--border-color);
    font-size: 14px;
    line-height: 14px;
}

.contact-form textarea.form-control {
    padding: 15px;
}

.contact-form .form-field {
    margin-bottom: 15px;
}

.contact-form .hero-button {
    margin-top: 20px;
}

.contact-form .hero-button .btn-book-call {
    display: flex;
}

.footer-content {
    height: 100%;
}

.location-box {
    height: calc(100% - 60px);
    position: relative;
    z-index: 2;
    border-radius: 10px;
}

.location-box::after {
    content: "";
    position: absolute;
    top: -3px;
    bottom: -3px;
    left: -3px;
    right: -3px;
    background: linear-gradient(310deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 10px;
    z-index: -1;
}

.location-box-content {
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(14px);
    border-radius: 8px;
}

.location-img {
    position: absolute;
    bottom: -5px;
    height: 110%;
    object-fit: cover;
    right: -70px;
    opacity: 30%;
}

.location-box-content h5 {
    font-weight: 600;
    color: var(--white-color);
    font-size: 24px;
    line-height: 24px;
    margin-bottom: 0;
    padding-top: 20px;
    padding-left: 20px;
    text-transform: capitalize;
    text-align: start;
}

.footer-bottom {
    margin-top: 60px;
}

.footer-bottom-content {
    border-top: 1px solid var(--border-color);
    padding: 20px 0;
}

.footer-bottom-content p {
    text-align: center;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: var(--white-color);
    margin-bottom: 0;
}

.go-top {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    z-index: 5;
    transition: all 0.9s;
    background: var(--linear-gradient-color-2);
    transform: translateY(30px);
}

.go-top img {
    width: 25px;
    flex-shrink: 0;
}

.go-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}

.use-cases-box .web-ellipse-1 {
    width: 80px;
    height: 80px;
    filter: blur(60px);
    top: -25px;
    right: -25px;
}

.social-media-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.who-we-work-section-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.who-we-work-section-block .web-box-content {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 20px;
}

.who-we-work-section-block .web-box-content h5 {
    color: var(--white-color);
    font-weight: 600;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
    margin-bottom: 8px;
}

.who-we-work-section-block .web-box-content p {
    color: var(--white-color);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-transform: capitalize;
    margin-bottom: 0;
    opacity: 60%;
}

.who-we-work-box-icon {
    flex-shrink: 0;
}

.more-info-box {
    background: var(--linear-gradient-color-2);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
}

.more-info-box h6 {
    margin-bottom: 0;
    color: #000;
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    text-align: center;
}