body {
    font-family: 'Bricolage Grotesque', sans-serif;
    margin: 0 !important;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 400;
    min-height: 100vh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    background: #FAF6FE;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
}
.pt-70{
    padding-top: 70px;
}
.pb-70{
    padding-bottom: 70px;
}
.pt-120{
    padding-top: 120px;
}
.pb-120{
    padding-bottom: 120px;
}
.container {
    max-width: 1296px;
}
a{
    text-decoration: none;
    color: #000;
}
p{
    margin: 0;
}

img {
    max-width: 100%
}

/* Header Styles */
.header {
    padding: 16px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
}
#navbar.scrolled {
    background-color: #fff;
}
#navbar.scrolled .menu-close, #navbar.scrolled .nav a , #navbar.scrolled .menu-hamburger{
    color: #000;
}
.header-container {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}
.nav a:hover, body.mega-menu-open .header .nav a:hover, #navbar.scrolled .nav a:hover {
    color: #7e22ce;
}
.contact-btn {
    background: linear-gradient(180deg, #9E4FD9 0%, #5F19AE 100%);
    color: #fff !important;
    padding: 12px 24px;
    border-radius: 44px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.menu-icon {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 1.5rem;
    padding: 0.5rem;
    position: relative;
}
.menu-hamburger,
.menu-close {
    width: 28px;
    height: 28px;
    transition: opacity 0.3s;
}
/* Mega Menu Content Styles */
.mega-menu-content {
    position: fixed;
    top: 80px; /* Adjust based on your header height */
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background: white;
    z-index: 999;
    display: flex;
    overflow-x: hidden;
    overflow-y: auto;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
    pointer-events: none;
    justify-content: center;
}
.mega-menu-content.active {
    max-height: calc(100vh - 80px);
    opacity: 1;
    pointer-events: auto;
    justify-content: center;
}
/* Left Section - Main Menu */
.main-menu {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.main-menu nav {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.main-menu a {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}
.main-menu a:hover {
    color: #7e22ce;
}
.mega-menu-content .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 0 3rem;
}
/* Middle Section - Submenu */
.submenu {
    background: white;
    padding: 3rem;
}
.submenu-content {
    display: block;
}
.submenu-content a {
    display: block;
    color: #374151;
    text-decoration: none;
    font-size: 18px;
    margin-bottom: 16px;
    transition: color 0.3s;
}
.submenu-content a:hover {
    color: #7e22ce;
}
/* Right Section - CTA */
.cta-section {
    flex: 1;
    background: linear-gradient(180deg, #9E4FD9 0%, #5F19AE 100%);
    display: flex;
    align-items: center;
    justify-content: start;
    padding: 3rem;
}
.cta-content {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.cta-content p {
    font-size: 18px;
    margin-bottom: 12px;
}
.cta-content h2 {
    font-size: 32px;
    margin-bottom: 32px;
    line-height: 40px;
}
.cta-btn {
    background: transparent;
    color: #fff;
    padding: 12px 24px;
    border-radius: 44px;
    border: 2px solid white;
    font-size: 16px;
    font-weight: 700;
}
.cta-btn:hover {
    background: #fff;
    color: #7e22ce;
}
body.mega-menu-open .header {
    background: #fff;
    color: #000;
}
body.mega-menu-open .header .menu-close, body.mega-menu-open .header .nav a{
    color: #000;
}
body.mega-menu-open .header .white-logo,#navbar.scrolled .white-logo, .header .black-logo{
    display: none;
}
body.mega-menu-open .header .black-logo, #navbar.scrolled .black-logo{
    display: block;
}
/* Footer style start */
.footer-section{
    background: #340D68;
    padding: 40px 0;
}
footer .footer-widget h3{
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin-bottom: 4px;
}
footer .footer-widget ul li a {
    color: #fff;
    font-size: 14px;    
}
footer .footer-widget ul li a:hover{
    color: #ccc;
}
footer .footer-widget ul li{
    margin: 10px 0;
}
footer .footer-widget ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-logo-content p {
    font-size: 14px;
    color: #fff;
    margin-top: 16px;
}
.footer-section .copyrights-section {
    border-top: 1px solid #fff;
    padding-top: 32px;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.footer-section .copyrights-section .first-part{
    gap: 24px;
}
.footer-section .copyrights span{
    font-size: 14px;
    color: #fff;
}
.footer-section .footer-second .footer-main-links {
    gap: 32px;
    justify-content: space-between;
}
.copyrights-section .links a{
    font-size: 14px;
    color: #fff;
    text-decoration: underline;
    padding-right: 24px;
}
.copyrights-section .links a:last-child{
    border: 0;
}

.newsletter-section {
    padding-bottom: 30px;
    color: #fff;
}
.newsletter-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.newsletter-section .content h4 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 400;
}
.newsletter-section .content p {
    font-size: 14px;
}
.send-email {
    max-width: 400px;
    width: 100%;
}
.newsletter-form {
    display: flex;
    align-items: center;
    background: #4b1f82;
    border-radius: 30px;
    padding: 6px;
    border: 1px solid #fff;
}
.newsletter-form input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #B0B0B0;
    padding: 8px 12px;
    font-size: 16px;
}
.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}
.newsletter-form button {
    border: none;
    outline: none;
    background: #fff;
    color: #5a189a;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}
.newsletter-form button:hover {
    background: #f1eaff;
}
.privacy-text {
    font-size: 12px;
    margin-top: 6px;
    opacity: 0.8;
}
.privacy-text a {
    color: #fff;
    text-decoration: underline;
}

/* Sports Types style */
.what-we-build .content{
    text-align: center;
    margin-bottom: 42px;
}
.what-we-build .types:hover, .what-we-build .last-card .types {
    background: linear-gradient(180deg, #9E4FD9 0%, #5F19AE 100%);
}
.what-we-build .types:hover h3, .what-we-build .types:hover a, .what-we-build .types:hover p, .what-we-build .last-card .types a{
    color: #fff;
}
.what-we-build .types:hover img{
	filter: brightness(0) invert(1);
}
.what-we-build .types{
    border-left: 2px solid #5F19AE;
    background: linear-gradient(104deg, #FBFAFF 9.98%, #FFFFFF 139.78%);
    padding: 32px;
    height: 312px;
}
.what-we-build .types h3{
    font-size: 24px;
    padding: 24px 0 16px 0;
}
.what-we-build .types p{
    font-size: 16px;
    margin-bottom: 32px;
}
.what-we-build .types a{
    font-size: 16px;
}
.what-we-build .last-card .types h3{
    font-size: 40px;
    color: #fff;
    padding: 0;
}
.what-we-build .last-card .types {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Auto scrolling Section style */
.auto-scrolling-text {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
    display: none;
}
.marquee {
    display: flex;
    align-items: center;
    position: relative;
}
.marquee span {
    position: absolute;
    left: 0;
    text-transform: uppercase;
    white-space: nowrap;
    font-size: 80px;
    font-weight: 600;
    color: #000;
    animation: move-left 20s linear infinite;
}
@keyframes move-left {
    0% {
        left: 100%;
    }
    100% {
        left: -100%;
    }
}

/* Achivement Section style  */
.achivement-section{
    background: linear-gradient(180deg, #9E4FD9 0%, #5F19AE 100%);
    color: #fff;
}
.achivement-section .content h2{
    margin-bottom: 24px;
}
.achivement-section .content p{
    font-size: 16px;
    margin-bottom: 32px;
}
.counter .box{
    border-left: 1px solid #FFFFFF;
    margin-bottom: 48px;
}
.counter .box h3{
    font-size: 80px;
    margin-bottom: 8px;
    padding-left: 32px;
}
.counter .box p{
    font-size: 20px;
    font-weight: 700;
    padding-left: 32px;
}
.counters::after {
    content: "+";
    margin-left: 4px;
}
.box:last-child .counters::after {
    content: "%";
    margin-left: 4px;
}

/* Testimonials Section style */
.testimonials-section {
    position: relative;
    overflow: hidden; 
}
.testimonials-section .heading {
    margin-bottom: 80px;
}
.testimonials-section .slider-wrapper {
    /*overflow: hidden;*/
    clip-path: inset(-100vw -100vw -100vw 0);
    position: relative;
    padding-bottom: 60px; 
}
.testimonials-section .slider-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 32px;
    will-change: transform; 
}
.testimonials-section .card-item {
    flex: 0 0 calc(33.333% - 22px); 
    border-radius: 16px;
    overflow: hidden;
    min-height: 450px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
.testimonials-section .card-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(158, 79, 217, 0) 0%, #5F19AE 100%);
    z-index: 1;
    pointer-events: none;
}
.testimonials-section .card-body {
    padding: 32px;
    position: relative;
    z-index: 2;
    width: 100%;
}
.testimonials-section .card-logo {
    margin-bottom: 5px;
}
.testimonials-section .card-logo img {
    max-width: 100%;
    height: auto;
}
.testimonials-section .card-desc {
    font-size: 16px;
    color: #fff;
    margin: 0 0 10px 0;
    line-height: 1.6;
}
.testimonials-section .card-person {
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    margin: 0;
}
.testimonials-section .card-person .person-name {
    font-weight: 600;
    margin-bottom: 4px;
}
.testimonials-section .slider-button {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    position: relative;
}
.testimonials-section .slider-btn {
    position: relative;
    background: linear-gradient(180deg, #9E4FD9 0%, #5F19AE 100%);
    color: #fff;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}
.testimonials-section .slider-btn:hover {
    background: #fff;
    color: #000;
    transform: scale(1.1);
}
.testimonials-section .slider-btn:active {
    transform: scale(0.95);
}
.testimonials-section .slider-btn svg {
    width: 24px;
    height: 24px;
}
/* Removed individual positioning for prev/next buttons */
.testimonials-section .testimonials-slider-nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px;
    padding: 0 10px;
}
.testimonials-section #prevBtn,
.testimonials-section #nextBtn {
    position: relative;
    right: auto;
    bottom: auto;
    transform: none;
}
.testimonials-section .slider-dots {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: start;
}
.testimonials-section .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #d1d1d1;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}
.testimonials-section .slider-dot.active {
    background-color: #000;
    width: 8px;
    height: 8px;
}

/* Technology Section Start */
.technology-section .content p{
    color: #000000;
    margin-top: 8px;
}
.technology-section .card-logo {
    padding: 14px 0;
    position: relative;
    text-align: center;
}
.technology-section .card-logo img{
    height: 56px;
    width: 200px;
}
.technology-section .card-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.technology-section .card-logo:nth-child(odd):not(:nth-last-child(-n+2))::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(158, 79, 217, 0.1) 0%, rgba(158, 79, 217, 1) 100%);
}
.technology-section .card-logo:nth-child(1)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(158, 79, 217, 0.1) 0%, rgba(158, 79, 217, 1) 100%);
}
.technology-section .card-logo:nth-child(even):not(:nth-last-child(-n+2))::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(270deg, rgba(158, 79, 217, 0.1) 0%, rgba(158, 79, 217, 1) 100%);
}
.technology-section .card-logo:nth-child(odd):not(:first-child):not(:nth-last-child(-n+2))::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: rgba(158, 79, 217, 1);
}
.technology-section .card-logo:nth-child(odd):nth-last-child(2)::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(to top, rgba(158, 79, 217, 0.1) 0%, rgba(158, 79, 217, 1) 100%);
}
.stickey-beifit-section {
    position: sticky;
    top: 100px;
}
.col-12.col-md-6.card-body {
    position: relative;
    text-align: center;
}

/* Ready to CTA Section style */
.ready-to-cta-section{
    background: transparent;
    padding: 0;
    margin-top: 0;
}

.ready-to-cta-section .ready-to-cta-wrapper {
    margin-top: 80px;
    margin-bottom: -14%;
    position: relative;
    z-index: 1;
    padding: 67px 120px;
    color: #fff;
    border-radius: 16px;
    background:
        url('../images/bg-dots.webp') no-repeat right top,
        linear-gradient(180deg, #9E4FD9 0%, #5F19AE 100%);
}

.ready-to-cta-section .cta-box p{
    font-size: 24px;
    line-height: 36px;
    color: #EEE8FF;
}
.ready-to-cta-section .cta-box .schedule-btn{
    background: #fff;
    font-size: 16px;
    color: #9E4FD9;
    padding: 12px 24px;
    border-radius: 44px;
    margin-top: 24px;
    cursor: pointer;
    transition: background 0.3s, color 0.3s;
}


/* Latest Blogs Section style  */
.blog-section {
    background: linear-gradient(180deg, #D2ADEE 0%, #FAF6FE 30%);
    padding-top: 300px;
}
.blog-section .content{
    margin-bottom: 54px;
}
.blog-section .blog-card .card-logo img{
    /* height: 346px;
    width: 410px; */
    border-radius: 16px;
    margin-bottom: 24px;
}
.blog-section .blog-card .card-body h2{
    font-size: 18px;
    margin-bottom: 8px;
}
.blog-section .blog-card .card-body p{
    font-size: 16px;
    color: #6D6D6D;
    border-bottom: 1px solid #E7E7E7;
    margin-bottom: 12px;
    padding-bottom: 12px;
}
.blog-section .blog-card .card-body .card-person{
    display: flex;
    gap: 8px;
    align-items: center;
}
.blog-section .blog-card .card-body .card-person span{
    margin: 0;
    font-size: 12px;
}
.blog-section .blog-card .card-body .card-person img{
    height: 36px;
    width: 36px;
    border-radius: 50%;
}
.blog-section .card-category{
    border-bottom: 1px solid #E7E7E7;
    margin-bottom: 12px;
}
.blog-section .card-category .category-badge{
    font-size: 12px;
    padding-bottom: 12px;
    color: #5D5D5D;
}
.blog-section .explore-btn {
    margin-top: 64px;
}
.blog-section .explore-btn a{
    background: linear-gradient(180deg, #9E4FD9 0%, #5F19AE 100%);
    color: #fff;
    padding: 12px 24px;
    border-radius: 44px;
}

/* Contact form section start */
.contact-section{
    padding: 80px 0;
    background: url(../images/bg-boxs.webp) no-repeat right top, linear-gradient(180deg, #9E4FD9 0%, #5F19AE 100%);
    background-repeat: no-repeat;
    color: #fff;
    background-size: contain;
}

.contact-section .content h2{
    margin-bottom: 24px;
}
.contact-section .content p {
    font-size: 32px;
    color: #ffffff;
    line-height: 40px;
}

/* Contact Form 7 Custom Styling */
.contact-form-section .wpcf7 {
    background: #f5f3f7;
    padding: 48px;
    border-radius: 32px;
    /* max-width: 600px; */
    margin: 0 auto;
}
.contact-form-section .wpcf7 .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.contact-form-section .wpcf7 .form-group {
    display: flex;
    flex-direction: column;
}
.contact-form-section .wpcf7 .form-group.full-width {
    margin-bottom: 20px;
}
.contact-form-section .wpcf7 label {
    font-size: 16px;
    font-weight: 500;
    color: #3D3D3D;
    margin-bottom: 0;
/*     display: block; */
	margin-bottom: .5rem;
}
.contact-form-section .wpcf7 .form-control {
    color: #888888;
    width: 100%;
    padding: 0;
    border: none;
    border-bottom: 1px solid #3D3D3D;
    background: transparent;
    font-size: 16px;
    transition: border-color 0.3s ease;
    outline: none;
    border-radius: 0;
	min-height: calc(1.5em + 1rem + calc(var(--bs-border-width) * 2));
}
.contact-form-section .flag-container {
    color: #000000;
}
.form-control:focus{
    box-shadow: none;
}
.contact-form-section .wpcf7 select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    padding-right: 30px;
    cursor: pointer;
}
.contact-form-section .wpcf7 textarea.form-control {
    min-height: 120px;
    resize: vertical;
    padding: 0;
    border-bottom: 1px solid #6D6D6D;
}
.contact-form-section .wpcf7 .privacy-text {
    font-size: 14px;
    color: #000000;
}
.contact-form-section .wpcf7 .privacy-text a {
    color: #9E4FD9;
    text-decoration: underline;
}
.contact-form-section .wpcf7 .privacy-text a:hover {
    text-decoration: underline;
}
.contact-form-section .wpcf7 .submit-btn {
    background: linear-gradient(180deg, #9E4FD9 0%, #5F19AE 100%);
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.contact-form-section .wpcf7-spinner {
    display: none;
}
.contact-form-section .wpcf7-response-output {
    border: none !important;
    padding: 15px !important;
    margin: 20px 0 0 !important;
    border-radius: 8px !important;
/*     color: #ff0000; */
}
.contact-form-section form[data-status="invalid"] .wpcf7-response-output {
    color: #ff0000;
}
.contact-form-section form[data-status="sent"] .wpcf7-response-output {
    color: #198754;
}
.contact-form-section .wpcf7-mail-sent-ok {
    background: #d1fae5 !important;
    color: #065f46 !important;
}
.contact-form-section .wpcf7-validation-errors {
    background: #fee2e2 !important;
    color: #991b1b !important;
}
.btn.btn-primary:hover, .contact-btn:hover, .blog-section .explore-btn a:hover, .contact-form-section .wpcf7 .submit-btn:hover{
    background: linear-gradient(180deg, #5F19AE 0%, #9E4FD9 100%);
}
.btn.btn-outline-white:hover{
    background: #fff;
    color: #9E4FD9;
}
.ready-to-cta-section .cta-box .schedule-btn:hover{
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}


/* Rajs Style  */
p,
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin: 0;
}

.xxl-heading {
  font-size: 64px;
  line-height: 72px;
  font-weight: 600;
}
.xxl-heading span {
  background: linear-gradient(180deg, #9E4FD9 23.56%, #5F19AE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.btn {
  padding: 12px 24px;
  font-weight: 500;
  border-radius: 100px;
}
.btn.btn-primary {
  color: #ffffff;
  background: linear-gradient(180deg, #9E4FD9 0%, #5F19AE 100%);
  border: 0;
}
.btn.btn-outline-white {
  padding: 10px 24px;
  border: 2px solid #ffffff;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.xl-heading {
  font-size: 48px;
  line-height: 56px;
  font-weight: 700;
}
.xl-heading span {
  color: #9E4FD9;
}

.lg-heading {
  font-size: 40px;
  line-height: 48px;
  font-weight: 700;
}

.md-heading {
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
}

.sm-heading {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
}

.xs-heading {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
}

.heading p {
  margin-top: 8px;
  color: #454545;
}

.py-120 {
  padding: 120px 0;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.banner-main {
     height: 900px;
     background-color: #000;
     position: relative;
     padding: 0 16px;
     color: #ffffff;
}
 .banner-main .img {
     position: absolute;
}
 .banner-main .left-light {
     top: 0;
     left: 0;
     width: 50%;
}
 .banner-main .right-light {
     top: 0;
     right: 0;
     width: 50%;
}
 .banner-main .bg-grid {
     left: 50%;
     top: 50%;
     max-width: 1440px;
     width: 100%;
     transform: translate(-50%, -50%);
}
 .banner-main .bg-shape {
     position: absolute;
     top: 0;
     left: 50%;
     transform: translate(-50%, -50%);
     height: 500px;
     width: 100%;
     max-width: 777px;
     border-radius: 50%;
     background-color: #9e4fd9;
     filter: blur(400px);
}
 .banner-main .content-wrapper {
     height: 100vh;
     display: flex;
     align-items: center;
     justify-content: center;
}
 .banner-main .content {
     text-align: center;
     width: 100%;
     max-width: 950px;
     padding: 0 16px;
     z-index: 1;
}
 .banner-main .content h1 {
     margin-bottom: 14px;
}
 .banner-main .content p {
     max-width: 569px;
     margin: 0 auto;
}
 .banner-main .content .chip {
     padding: 4.5px 14px;
     border: 1px solid #454545;
     border-radius: 1000px;
     width: fit-content;
     margin: 0 auto 24px;
}
 .banner-main .content .btn {
     margin-top: 24px;
}
 .banner-main .lower-content {
     width: 100%;
     max-width: 857px;
     position: absolute;
     bottom: 40px;
     left: 50%;
     transform: translateX(-50%);
     padding: 0 16px;
     text-align: center;
}
 .banner-main .lower-content .companies-main {
     display: flex;
     align-items: center;
     flex-wrap: wrap;
     gap: 16px 60px;
     width: 100%;
     justify-content: center;
     margin-top: 24px;
}
 .banner-main p {
     font-size: 14px;
}
 

.production-main .heading {
  text-align: center;
  margin-bottom: 64px;
  max-width: 840px;
  margin: 0 auto;
}
.production-main .heading h2, .production-main .heading .h2 {
  color: #0D0D0D;
}
.production-main .heading h6, .production-main .heading .h6 {
  color: #454545;
}
.production-main .roadmap-track {
  height: 500vh;
  position: relative;
}
.production-main .roadmap-sticky-view {
  position: sticky;
    top: 84px;
    height: calc(100vh - 84px);
    display: flex;
    align-items: center;
    justify-content: center;
}
.production-main .roadmap-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  width: 100%;
  position: relative;
  z-index: 1;
}
.production-main .grid-column {
  display: flex;
  flex-direction: column;
  position: relative;
  border-left: 2px dashed #D1D1D1;
}
.production-main .grid-column:last-of-type {
  border-right: 2px dashed #D1D1D1;
}
.production-main .grid-column h6, .production-main .grid-column .h6 {
  text-align: center;
  color: #0D0D0D;
}
.production-main .progress-area {
  height: 300px;
  display: flex;
  flex-direction: column;
  border-bottom: 2px dashed #D1D1D1;
  padding: 30px 0;
}
.production-main .progress-area span {
  display: block;
  flex: 1;
}
.production-main .progress-area span.active {
  background: linear-gradient(180deg, #9E4FD9 0%, #5F19AE 100%);
}
.production-main .grid-column p {
  color: #0D0D0D;
  padding: 16px 16px 82px;
  font-size: 18px;
  line-height: 26px;
}
.production-main .moving-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}
.production-main #movingImage {
  width: 150px;
  position: absolute;
  left: 0;
  transform: rotate(8deg);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.3490196078);
  border-radius: 20px;
  transition: left 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275), top 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.our-project-main .heading {
  text-align: center;
}
.our-project-main .heading h2, .our-project-main .heading .h2 {
  color: #0D0D0D;
}
.our-project-main .heading p {
  color: #454545;
  margin-bottom: 64px;
}
.our-project-main .main-wrapper .sticky-view {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  /* Ensures content stays contained */
  /* Center content logic moved here */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
}
.our-project-main .main-wrapper .single-slide {
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  padding: 0 12px;
}
.our-project-main .main-wrapper .single-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.our-project-main .main-wrapper .single-slide:first-of-type {
  background: url("../images/png/project-1.webp");
}
.our-project-main .main-wrapper .single-slide:first-of-type::after {
  background: linear-gradient(111.36deg, rgba(21, 139, 212, 0.8) 0%, rgba(255, 185, 33, 0.8) 100%);
}
.our-project-main .main-wrapper .single-slide:nth-of-type(2) {
  background: url("../images/png/project-2.webp");
}
.our-project-main .main-wrapper .single-slide:nth-of-type(2)::after {
  background: linear-gradient(111.36deg, rgba(159, 232, 112, 0.8) 0%, rgba(89, 130, 63, 0.8) 100%);
}
.our-project-main .main-wrapper .single-slide:nth-of-type(3) {
  background: url("../images/png/project-3.webp");
}
.our-project-main .main-wrapper .single-slide:nth-of-type(3)::after {
  background: linear-gradient(180deg, rgba(158, 79, 217, 0.8) 0%, rgba(95, 25, 174, 0.8) 100%);
}
.our-project-main .main-wrapper .single-slide:nth-of-type(4) {
  background: url("../images/png/project-4.webp");
}
.our-project-main .main-wrapper .single-slide:nth-of-type(4)::after {
  background: linear-gradient(180deg, rgba(17, 207, 231, 0.6633) 0%, rgba(31, 114, 138, 0.6633) 100%);
}
.our-project-main .main-wrapper .single-slide:nth-of-type(5) {
  background: url("../images/png/project-5.webp");
}
.our-project-main .main-wrapper .single-slide:nth-of-type(5)::after {
  background: radial-gradient(50% 84.62% at 50% 100%, rgba(255, 172, 77, 0.6) 0%, rgba(255, 93, 36, 0.6) 100%);
}
.our-project-main .main-wrapper .single-slide .content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  top: 5%;
}
.our-project-main .main-wrapper .single-slide .content h4, .our-project-main .main-wrapper .single-slide .content h3, .our-project-main .main-wrapper .single-slide .content .h4 {
  margin-bottom: 24px;
}
.our-project-main .main-wrapper .single-slide .content p {
  margin-bottom: 32px;
	font-size: 18px;
}

.our-methodology-main {
  background: linear-gradient(180deg, #9E4FD9 0%, #5F19AE 100%);
  position: relative;
  color: #fff;
}
.our-methodology-main .bg-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
}
.our-methodology-main .bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}
.our-methodology-main .heading {
  text-align: center;
}
.our-methodology-main .heading p {
  max-width: 909px;
  margin: 8px auto 24px;
  color: #ffffff;
}
.our-methodology-main .methodology-slide-main .methodology-sticky-content {
   position: sticky;
    top: 84px;
    height: calc(100vh - 84px);
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.our-methodology-main .methodology-slide-main .methodology-slide {
  display: flex;
  align-items: center;
  height: 100%;
}
.our-methodology-main .methodology-slide-main .methodology-slide .img {
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}
.our-methodology-main .methodology-slide-main .methodology-slide .img img {
  width: 100%;
  height: 100%;
}
.our-methodology-main .methodology-slide-main .methodology-slide .content {
  padding: 48px;
  width: 50%;
}
.our-methodology-main .methodology-slide-main .methodology-slide .content p {
  margin-top: 24px;
}
.our-methodology-main .methodology-slide:nth-child(even) {
    flex-direction: row-reverse;
}