/*
Theme Name:   GeneratePress Child
Theme URI:    https://generatepress.com/
Description:  A child theme for GeneratePress
Author:       Your Name
Author URI:   https://yourwebsite.com/
Template:     generatepress
Version:      1.0.0
Text Domain:  generatepress-child
*/


/* Add your custom styles below */

:root {
    --black: #000000;
    --orange: #fca311;
    --navyblue: #14213d;
    --gray-light: #e5e5e5;
    --white-color: #ffffff;
	--dark-bg:#030303;
    --transition-smooth: cubic-bezier(0.22, 1, 0.36, 1);
    --shadow-gold: 0 10px 40px -10px hsl(38 95% 52% / 0.45);
}


p {
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
    color: var(--white-color);
	opacity:0.8;
	font-family: "Manrope", sans-serif !important;
	letter-spacing: 0.84px;
}

h2 {
    font-size: 42px !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
    color: var(--white-color);
}

h2 span {
    background: linear-gradient(90deg, var(--orange) 0%, var(--white-color) 50%, var(--orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.banner-cstm-wrap h1 {
    font-size: 50px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white-color);
	max-width:700px;
	margin:0 auto;
}

.banner-cstm-wrap h1 span {
    background: linear-gradient(
        90deg,
        var(--orange) 0%,
        var(--white-color) 50%,
        var(--orange) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
	font-weight:700;
}

h3 {
    color: var(--white-color);
    font-size: 24px !important;
    line-height: 1.2 !important;
}


/* =========================
   BANNER CSS START
========================= */

.banner-cstm-wrap {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 30px 0;

    background: radial-gradient(ellipse 65% 55% at 50% 35%, rgba(252, 163, 17, 0.16) 0%, rgba(252, 163, 17, 0.08) 32%, rgba(252, 163, 17, 0.03) 55%, transparent 75%), var(--dark-bg);
}

.banner-cstm-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;

    background:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    -webkit-mask-image: radial-gradient(
        ellipse at center,
        black 0%,
        transparent 75%
    );

    mask-image: radial-gradient(
        ellipse at center,
        black 0%,
        transparent 75%
    );
}

.banner-cstm-wrap::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 500px;
    left: 50%;
    top: 35%;
    transform: translate(-50%, -50%);

    background: radial-gradient(
        ellipse,
        rgba(252, 163, 17, 0.14) 0%,
        rgba(252, 163, 17, 0.06) 35%,
        transparent 72%
    );

    filter: blur(25px);
    pointer-events: none;
    z-index: 0;
}

.banner-cstm-wrap .banner-dots {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.banner-cstm-wrap .banner-dots span {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;

    background: var(--orange);

    box-shadow: 0 0 6px rgba(252, 163, 17, 0.6);

    opacity: 0.35;
    animation: bannerDotFloat 6s ease-in-out infinite;
}

@keyframes bannerDotFloat {
    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-14px) scale(1.25);
        opacity: 0.85;
    }
}

.banner-cstm-wrap .banner-tagline {
    position: relative;
    z-index: 1;

    padding: 8px 16px;

    border: 1px solid rgba(252, 163, 17, 0.25);

    display: flex;
    gap: 8px;
    align-items: center;

    font-size: 13px;
    color: var(--gray-light);

    width: max-content;
    margin: 0 auto;

    border-radius: 20px;

    background: rgba(20, 33, 61, 0.35);
}

.banner-cstm-wrap .banner-cstm-content {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    gap: 24px;

    text-align: center;
    justify-content: center;

    max-width: 1050px;
    margin: 0 auto;

    padding: 0 20px;
}

.banner-cstm-wrap .banner-button-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.banner-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.banner-tagline .dot {
    width: 8px;
    height: 8px;

    background: var(--orange);

    border-radius: 50%;
    display: inline-block;

    animation: dotPulse 1.5s ease-in-out infinite;

    box-shadow: 0 0 0 0 var(--orange);
}


/* =========================
   AGENCY TRUST BAR
========================= */

.agency-trust-bar {
    width: 100%;
    overflow: hidden;

    background: var(--black);

    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);

    padding: 12px 0;

    position: relative;
    z-index: 1;
}

.agency-trust-track {
    display: flex;
    width: max-content;
    align-items: center;

    animation: agencyTrustScroll 28s linear infinite;
}

.agency-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-right: 55px;

    white-space: nowrap;

    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.84px;

    color: var(--white-color);
	  font-family: "Manrope", sans-serif !important;
	
}

.trust-check {
    color: var(--orange);
    font-size: 18px;
    font-weight: 700;
    line-height: 1;
}

@keyframes agencyTrustScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.agency-trust-bar:hover .agency-trust-track {
    animation-play-state: paused;
}


/* =========================
   DOT PULSE
========================= */

@keyframes dotPulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 var(--orange);
    }

    50% {
        transform: scale(1.15);
        box-shadow: 0 0 0 6px transparent;
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 transparent;
    }
}

.redesign-about {
	background-color:var(--dark-bg) !important;
}

.redesign-about p {
	color:var(--white-color) !important;
}

.redesign-about .about-text strong {
	color:var(--orange) !important;
}

.page-id-124 .home-heading {
	color:var(--white-color);
}


.redesign-about .info-box h3 {
	color:var(--orange) !important;
}

.redesign-about .about-label, .redesign-about .about-count {
	color:var(--orange) !important;
}

.about-current span {
	color:var(--orange) !important;
} 

.redesign-about .about-text {
	padding-top: 0 !important;
}

.redesign-about .info-box {
	border: 1px solid var(--orange) !important;
}

.redesign-about .about-text p {
	font-size:16px !important;
}

.redesign-about .about-card {
	background: var(--dark-bg);
}


/* =========================================
   SERVICES OFFER SECTION
========================================= */

.services-offer-wrap {
    position: relative;
    overflow: hidden;
    padding: 50px 0 90px;
    background:
        radial-gradient(
            circle 380px at 50% 52%,
            rgba(252, 163, 17, 0.16) 0%,
            rgba(252, 163, 17, 0.09) 28%,
            rgba(252, 163, 17, 0.04) 48%,
            transparent 75%
        ),
        var(--dark-bg);
    color: var(--white-color);
    isolation: isolate;
}

.services-offer-wrap::before {
    content: "";
    position: absolute;
    width: 1000px;
    height: 1000px;
    left: 50%;
    top: 75%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    
    background: radial-gradient(
        circle,
        rgba(252, 163, 17, 0.10) 0%,
        rgba(252, 163, 17, 0.05) 30%,
        rgba(252, 163, 17, 0.02) 50%,
        transparent 72%
    );
    
    filter: blur(25px);
    pointer-events: none;
    z-index: 0;
}

.services-offer-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;

    background:
        linear-gradient(
            rgba(252, 163, 17, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(252, 163, 17, 0.018) 1px,
            transparent 1px
        );

    background-size: 80px 80px;

    -webkit-mask-image: radial-gradient(
        circle at center,
        black 0%,
        transparent 72%
    );

    mask-image: radial-gradient(
        circle at center,
        black 0%,
        transparent 72%
    );
}

.services-offer-wrap .container {
    position: relative;
    z-index: 2;
}


/* =========================================
   SERVICES HEADING
========================================= */

.services-head {
    max-width: 760px;
    margin: 0 auto 70px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.services-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.services-head h2 {
    margin: 0 0 24px;
}

.services-head h2 span {
    display: block;
}

.services-head p {
    max-width: 650px;
    margin: 0 auto;
    color: var(--gray-light);
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   SERVICES GLOW
========================================= */

.services-glow {
    position: absolute;
    pointer-events: none;
}

.services-glow-one {
    width: 460px;
    height: 120px;
    right: -6%;
    top: 10%;
    transform: rotate(14deg);
}

.services-glow-two {
    width: 300px;
    height: 80px;
    left: -3%;
    bottom: 8%;
    transform: rotate(-12deg);
}

.services-glow div {
    width: 100%;
    height: 100%;

    background: linear-gradient(
        90deg,
        rgba(252, 163, 17, 0.07),
        transparent
    );
}


/* =========================================
   SERVICES ORBIT
========================================= */

.services-orbit {
    position: relative;
    width: 620px;
    height: 620px;
    margin: 0 auto;
}

.services-ring {
    position: absolute;
    left: 50%;
    top: 50%;

    border: 1px solid rgba(252, 163, 17, 0.12);
    border-radius: 50%;

    transform: translate(-50%, -50%);
}

.services-ring-one {
    width: 250px;
    height: 250px;
    animation: servicesSpin 20s linear infinite;
}

.services-ring-two {
    width: 410px;
    height: 410px;
    animation: servicesSpin 30s linear infinite reverse;
}

.services-ring-three {
    width: 570px;
    height: 570px;
    animation: servicesSpin 40s linear infinite;
}


/* =========================================
   SERVICES HUB
========================================= */

.services-hub {
    position: absolute;
    left: 50%;
    top: 50%;

    width: 145px;
    height: 145px;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(252, 163, 17, 0.45);
    border-radius: 50%;

    background: radial-gradient(
        circle,
        rgba(252, 163, 17, 0.12),
        var(--black) 70%
    );

    transform: translate(-50%, -50%);

    box-shadow: 0 0 50px rgba(252, 163, 17, 0.08);

    z-index: 4;
}

.services-hub-title {
    color: var(--white-color);
    font-size: 17px;
    font-weight: 600;
}

.services-hub-sub {
    margin-top: 3px;
    color: var(--gray-light);
    font-size: 11px;
    letter-spacing: 0.5px;
}


/* =========================================
   SERVICE NODES
========================================= */

.services-node {
    position: absolute;
    left: 50%;
    top: 50%;

    width: 150px;
    height: 150px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;

    background: rgba(3, 3, 3, 0.96);

    cursor: pointer;

    transition:
        border-color 0.3s ease,
        box-shadow 0.3s ease;

    z-index: 5;
}

.services-node:hover {
    border-color: rgba(252, 163, 17, 0.7);
    box-shadow: 0 0 30px rgba(252, 163, 17, 0.12);
}

.services-node.active {
    border-color: var(--orange);
    box-shadow: 0 0 35px rgba(252, 163, 17, 0.2);
}


/* =========================================
   ORBIT ANIMATION
========================================= */

.services-orbit-spin {
    position: absolute;
    inset: 0;
    animation: servicesOrbitSpin 40s linear infinite;
}

.services-orbit-spin:hover {
    animation-play-state: running;
}

@keyframes servicesOrbitSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.services-node-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 7px;

    width: 100%;
    height: 100%;

    animation: servicesOrbitSpinReverse 40s linear infinite;
}

@keyframes servicesOrbitSpinReverse {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}


/* =========================================
   SERVICE ICON
========================================= */

.services-icon {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 40px;
    height: 40px;

    border-radius: 50%;

    background: rgba(252, 163, 17, 0.10);
    color: var(--orange);

    font-size: 12px;
    font-weight: 700;
}

.services-icon img {
    max-width: 24px;
}

.services-name {
    color: var(--gray-light);
    font-size: 11px;
    text-align: center;
    white-space: nowrap;
}


/* =========================================
   SERVICES CARD
========================================= */

.services-card {
    position: absolute;
    left: 50%;
    top: 50%;

    width: 330px;
    padding: 25px;

    border: 1px solid rgba(252, 163, 17, 0.20);
    border-radius: 18px;

    background: rgba(3, 3, 3, 0.96);

    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.5);

    opacity: 0;
    pointer-events: none;

    transform: translate(-50%, -42%) scale(0.92);

    transition: 0.4s ease;

    z-index: 10;
}

.services-card.show {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
}

.services-close {
    position: absolute;
    top: 12px;
    right: 16px;

    color: var(--gray-light);
    font-size: 22px;

    cursor: pointer;
}

.services-badge {
    display: inline-block;

    margin-bottom: 15px;
    padding: 6px 10px;

    border-radius: 20px;

    background: rgba(252, 163, 17, 0.08);
    color: var(--orange);

    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-card h3 {
    margin: 0 0 12px;
}

.services-card p {
    margin: 0;
    color: var(--gray-light);
    font-size: 14px;
    line-height: 1.7;
}


/* =========================================
   SERVICES METRIC
========================================= */

.services-metric {
    margin-top: 22px;
}

.services-metric-head {
    display: flex;
    justify-content: space-between;

    margin-bottom: 8px;

    color: var(--gray-light);
    font-size: 11px;
}

.services-metric-head span:last-child {
    color: var(--orange);
}

.services-bar {
    width: 100%;
    height: 4px;

    overflow: hidden;
    border-radius: 5px;

    background: rgba(255, 255, 255, 0.08);
}

.services-bar i {
    display: block;
    width: 90%;
    height: 100%;

    background: var(--orange);
}

.services-connect {
    margin-top: 20px;
    margin-bottom: 9px;

    color: var(--gray-light);
    font-size: 10px;
}

.services-chips {
    display: flex;
    gap: 7px;
}

.services-chips span {
    padding: 5px 9px;

    border: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;

    color: var(--gray-light);
    font-size: 10px;
}


/* =========================================
   SERVICES SPIN
========================================= */

@keyframes servicesSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

```css
/* =========================================
   OUR PROJECTS
========================================= */

.our-projects-wrap {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 70px 0;
    background: var(--dark-bg);
}


/* =========================================
   PROJECTS HEADING
========================================= */

.our-projects-wrap .projects-head {
    max-width: 800px;
    margin: 0 auto 50px !important;
    padding: 0 20px;
    text-align: center;
	display:unset;
}

.our-projects-wrap .services-kicker {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
	width:100%;
	text-align:center;
}

.our-projects-wrap {
    background-color: var(--dark-bg);
}

.our-projects-wrap .projects-head h2 {
    margin: 0 0 18px;
    color: var(--white-color);
}

.our-projects-wrap .projects-head h2 span {
    background: linear-gradient(
        90deg,
        var(--orange) 0%,
        var(--gray-light) 50%,
        var(--orange) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.our-projects-wrap .projects-head p {
    margin: 0 auto;
    max-width: 720px;
    color: var(--gray-light);
    font-size: 17px;
    line-height: 1.6;
}


/* =========================================
   MARQUEE
========================================= */

.marquee-section {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.marquee-row {
    width: 100%;
    overflow: hidden;
}

.marquee-row + .marquee-row {
    margin-top: 18px;
}

.marquee-track {
    display: flex;
    width: max-content;
    gap: 15px;
}

.marquee-set {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}


/* =========================================
   MARQUEE ANIMATION
========================================= */

.marquee-row.left .marquee-track {
    animation: scroll-left var(--duration, 35s) linear infinite;
}

.marquee-row.right .marquee-track {
    animation: scroll-right var(--duration, 35s) linear infinite;
}

.marquee-section:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes scroll-left {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes scroll-right {
    from {
        transform: translate3d(-50%, 0, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}


/* =========================================
   PROJECT CARD
========================================= */

.marquee-section .card {
    position: relative;
    flex: 0 0 auto;
    width: 350px;
    height: 230px;

    display: block;

    overflow: hidden;

    border-radius: 10px;

    text-decoration: none;

    background: var(--navyblue);

    border: 1px solid rgba(252, 163, 17, 0.18);

    transition:
        transform 0.35s ease,
        border-color 0.35s ease,
        box-shadow 0.35s ease;
}


/* =========================================
   CARD IMAGE
========================================= */

.marquee-section .card img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}


/* =========================================
   CARD HOVER
========================================= */

.marquee-section .card:hover {

    border-color: var(--orange);

    box-shadow:
        0 0 0 1px var(--orange),
        0 25px 45px rgba(0, 0, 0, 0.5);
}

.marquee-section .card:hover img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.02) 0%,
            rgba(0, 0, 0, 0.15) 40%,
            rgba(0, 0, 0, 0.88) 100%
        );

    pointer-events: none;
}


/* =========================================
   CARD INFO
========================================= */

.card-info {
    position: absolute;

    left: 18px;
    right: 18px;
    bottom: 16px;

    display: flex;
    flex-direction: column;

    gap: 5px;

    z-index: 2;
}

.card-title {
    color: var(--white-color);

    font-size: 19px;
    font-weight: 600;
    line-height: 1.2;
}

.card-tag {
    color: var(--gray-light);

    font-size: 10px;
    font-weight: 500;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}


/* =========================================
   VIEW LIVE BUTTON
========================================= */

.card-live {
    position: absolute;

    top: 14px;
    right: 14px;

    z-index: 3;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 8px 14px;

    border-radius: 100px;

    background: rgba(3, 3, 3, 0.72);

    border: 1px solid rgba(255, 255, 255, 0.22);

    backdrop-filter: blur(6px);

    color: var(--white-color);

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 0.3px;

    opacity: 0;

/*     transform: translateY(-6px); */

    transition:
        opacity 0.3s ease,
        transform 0.3s ease,
        border-color 0.3s ease,
        background 0.3s ease;

    pointer-events: none;
}


/* =========================================
   VIEW LIVE HOVER
========================================= */

.marquee-section .card:hover .card-live {
    opacity: 1;

    transform: translateY(0);

    border-color: var(--orange);

    background: rgba(20, 33, 61, 0.92);

    color: var(--orange);
}

.card-live svg {
    transition: transform 0.3s ease;
}

.marquee-section .card:hover .card-live svg {
    transform: translate(2px, -2px);
}

/* =========================================
   MARQUEE OVERFLOW FIX
========================================= */

.our-projects-wrap {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
	padding:50px 0;
}

.our-projects-wrap .marquee-section {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.our-projects-wrap .marquee-row {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.our-projects-wrap .marquee-track {
    width: max-content;
    max-width: none;
}

.our-projects-wrap .marquee-set {
    flex-shrink: 0;
}

.dot {
        width: 8px;
        height: 8px;
        background: var(--orange);
        border-radius: 50%;
        display: inline-block;
        animation: dotPulse 1.5s ease-in-out infinite;
        box-shadow: 0 0 0 0 var(--orange);
    }

    @keyframes dotPulse {
        0% { transform: scale(1); box-shadow: 0 0 0 0 var(--orange); }
        50% { transform: scale(1.15); box-shadow: 0 0 0 6px transparent; }
        100% { transform: scale(1); box-shadow: 0 0 0 0 transparent; }
    }

    .mock-note {
        max-width: 1200px;
        margin: 40px auto 0;
        padding: 0 20px 40px;
        color: rgba(255,255,255,0.35);
        font-family: "Manrope", sans-serif;
        font-size: 13px;
        text-align: center;
    }

    /* ===== JOURNEY PATH SECTION CSS ===== */

    .journey-path-wrap {
        position: relative;
        overflow: hidden;
        isolation: isolate;
        padding: 90px 0;
        background:
            radial-gradient(ellipse 60% 45% at 50% 0%, rgba(252, 163, 17, 0.12) 0%, rgba(252, 163, 17, 0.05) 40%, transparent 75%),
            var(--dark-bg);
    }

    .journey-path-wrap::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background:
            linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
        background-size: 80px 80px;
        -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 65%);
        mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 65%);
    }

    .journey-path-wrap .container {
        position: relative;
        z-index: 1;
    }

    .journey-path-head {
        max-width: 760px;
        margin: 0 auto 70px;
        text-align: center;
    }

    .journey-path-kicker {
        display: inline-block;
        margin-bottom: 18px;
        color: var(--orange);
        font-size: 13px;
        font-weight: 600;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-family: "Manrope", sans-serif;
    }

    .journey-path-head h2 {
        margin: 0 0 20px;
    }

    .journey-path-sub {
        max-width: 620px;
        margin: 0 auto;
        color: var(--gray-light);
        font-size: 16px;
        line-height: 1.8;
    }

    .journey-path-timeline {
        position: relative;
        max-width: 820px;
        margin: 0 auto;
    }

    .journey-path-line {
        position: absolute;
        top: 40px;
        bottom: 40px;
        left: 39px;
        width: 2px;
        background: rgba(255, 255, 255, 0.08);
        z-index: 0;
    }

    .journey-path-line-fill {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 0%;
        background: linear-gradient(180deg, var(--orange), rgba(252, 163, 17, 0.2));
        box-shadow: 0 0 12px rgba(252, 163, 17, 0.5);
        transition: height 0.1s linear;
    }

    .journey-path-item {
        position: relative;
        z-index: 1;
        display: flex;
        gap: 28px;
        padding-bottom: 64px;
        opacity: 0;
        transform: translateY(28px);
        transition: opacity 0.7s var(--transition-smooth), transform 0.7s var(--transition-smooth);
    }

    .journey-path-item:last-child {
        padding-bottom: 0;
    }

    .journey-path-item.in-view {
        opacity: 1;
        transform: translateY(0);
    }

    .journey-path-node {
        position: relative;
        flex: 0 0 80px;
        width: 80px;
        height: 80px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(150deg, #ffe6ab 0%, var(--orange) 65%, #d88f13 100%);
        box-shadow: var(--shadow-gold);
    }

    .journey-path-node::after {
        content: "";
        position: absolute;
        inset: -6px;
        border-radius: 50%;
        border: 1px solid rgba(252, 163, 17, 0.35);
        opacity: 0;
        transform: scale(0.85);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .journey-path-item.in-view .journey-path-node::after {
        opacity: 1;
        transform: scale(1);
    }

    .journey-path-node.is-current {
        animation: journeyNodePulse 2.6s ease-in-out infinite;
    }

    @keyframes journeyNodePulse {
        0%, 100% { box-shadow: var(--shadow-gold), 0 0 0 0 rgba(252, 163, 17, 0.45); }
        50% { box-shadow: var(--shadow-gold), 0 0 0 10px rgba(252, 163, 17, 0); }
    }

    .journey-path-icon {
        width: 30px;
        height: 30px;
        color: var(--navyblue);
        display: flex;
    }

    .journey-path-icon svg {
        width: 100%;
        height: 100%;
    }

    .journey-path-content {
        flex: 1;
        min-width: 0;
        padding-top: 6px;
    }

    .journey-path-top {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 6px;
    }

    .journey-path-date {
        color: var(--orange);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 2px;
        text-transform: uppercase;
        font-family: "Manrope", sans-serif;
    }

    .journey-path-current-tag {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 4px 12px 4px 10px;
        border: 1px solid rgba(252, 163, 17, 0.25);
        border-radius: 20px;
        background: rgba(20, 33, 61, 0.35);
        color: var(--gray-light);
        font-size: 11px;
        letter-spacing: 0.5px;
        font-family: "Manrope", sans-serif;
    }

    .journey-path-role {
        margin: 0 0 6px;
        font-weight: 700 !important;
    }

    .journey-path-meta {
        margin: 0 0 16px;
        color: var(--gray-light);
        font-size: 14px;
        font-family: "Manrope", sans-serif;
        letter-spacing: 0.4px;
        opacity: 1;
    }

    .journey-path-meta .journey-path-company {
        color: var(--white-color);
        font-weight: 600;
    }

    .journey-path-meta .journey-path-sep {
        color: var(--orange);
        margin: 0 6px;
    }

    .journey-path-list {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .journey-path-list li {
        position: relative;
        padding-left: 20px;
        color: var(--white-color);
        opacity: 0.8;
        font-size: 15px;
        line-height: 1.65;
        font-family: "Manrope", sans-serif;
        letter-spacing: 0.4px;
    }

    .journey-path-list li::before {
        content: "";
        position: absolute;
        left: 0;
        top: 9px;
        width: 8px;
        height: 2px;
        background: var(--orange);
    }

.our-reviews-wrap {
	width: 100%;
	overflow: hidden;
	background: var(--primary-color);
	padding: 50px 0;
}

.our-reviews-wrap .reviews-detail {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	margin-bottom: 10px;
}

.reviews-detail span {
	font-size: 11px;
	color: var(--primary-color);
	padding: 8px 10px;
	background-color: var(--secondary-color);
	border-radius: 100px;
}

.reviews-head {
	max-width: 760px;
	margin: 0 auto 50px;
	text-align: center;
}

.reviews-kicker {
	display: inline-block;
	margin-bottom: 18px;
	color: #f4c542;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.reviews-head h2 {
	margin: 0 0 24px;
}

.reviews-head p {
	max-width: 650px;
	margin: 0 auto;
	color: var(--text-color);
	font-size: 16px;
	line-height: 1.8;
}

.reviews-row {
	position: relative;
	width: 100%;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
	mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.reviews-track {
	display: flex;
	width: max-content;
	gap: 12px;
	animation: reviewsScroll 45s linear infinite;
}

.reviews-row:hover .reviews-track {
	animation-play-state: paused;
}

.reviews-set {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

@keyframes reviewsScroll {
	from { transform: translate3d(0, 0, 0); }
	to   { transform: translate3d(-50%, 0, 0); }
}

.review-card {
	flex: 0 0 auto;
	width: 320px;
	padding: 25px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 12px;
	background: #0a0a0a;
	transition: border-color .35s ease, transform .35s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.review-card:hover {
	border-color: var(--secondary-color);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .35), 0 0 0 1px rgba(217, 182, 95, .25), 0 0 30px rgba(217, 182, 95, .15);
}

.review-stars {
	color: var(--secondary-color);
	font-size: 16px;
	letter-spacing: 3px;
}

.review-text {
	color: var(--text-color);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

.review-text.is-expanded {
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
}

.review-toggle {
	display: none;
	margin: 2px 0 15px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #d8ad45;
	font-family: inherit;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.3;
	cursor: pointer;
}

.review-toggle.is-visible {
	display: block;
}

.review-toggle:hover {
	text-decoration: underline;
	background: transparent;
}

.review-divider {
	height: 1px;
	background: rgba(255, 255, 255, .14);
	margin-bottom: 18px;
}

.review-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.review-thumb {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.review-details {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.review-name {
	color: var(--white-color);
	font-size: 15px;
	font-weight: 600;
}

.review-location {
	color: var(--text-color);
	font-size: 13px;
}

.reviews-rating {
	margin-top: 40px;
	text-align: center;
}

.reviews-rating-text {
	color: var(--white-color);
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 10px;
}

.reviews-rating-stars {
	color: var(--secondary-color);
	font-size: 22px;
	letter-spacing: 4px;
}


/* =========================================
   OUR REVIEWS SECTION
========================================= */

.our-reviews-wrap {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	width: 100%;
	padding: 50px 0;
	background: radial-gradient(ellipse 60% 45% at 50% 0%, rgba(252, 163, 17, 0.12) 0%, rgba(252, 163, 17, 0.05) 40%, transparent 75%), var(--dark-bg);
}

.our-reviews-wrap::before {
	content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 65%);
    mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 65%);
}

.our-reviews-wrap .container {
	position: relative;
	z-index: 1;
}

.our-reviews-wrap .reviews-detail {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	margin-bottom: 10px;
}

.reviews-detail span {
	font-size: 11px;
	color: var(--white-color);
	padding: 8px 10px;
	background-color: var(--secondary-color);
	border-radius: 100px;
}

.reviews-head {
	position: relative;
	z-index: 1;
	max-width: 760px;
	margin: 0 auto 50px;
	text-align: center;
}

.reviews-kicker {
	display: inline-block;
	margin-bottom: 18px;
	color: #f4c542;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.reviews-head h2 {
	margin: 0 0 24px;
}

.reviews-head p {
	max-width: 650px;
	margin: 0 auto;
	color: var(--white-color);
	font-size: 16px;
	line-height: 1.8;
}

.reviews-row {
	position: relative;
	z-index: 1;
	width: 100%;
	overflow: hidden;
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
	mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}

.reviews-track {
	display: flex;
	width: max-content;
	gap: 12px;
	animation: reviewsScroll 45s linear infinite;
}

.reviews-row:hover .reviews-track {
	animation-play-state: paused;
}

.reviews-set {
	display: flex;
	gap: 12px;
	flex-shrink: 0;
}

.reviews-detail {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
	margin-bottom: 10px;
}

.reviews-detail span {
	font-size: 11px;
	color: var(--black);
	padding: 8px 10px;
	background-color: var(--orange);
	border-radius: 100px;
	white-space: nowrap;
}

@keyframes reviewsScroll {
	from { transform: translate3d(0, 0, 0); }
	to   { transform: translate3d(-50%, 0, 0); }
}

.review-card {
	flex: 0 0 auto;
	width: 320px;
	padding: 25px;
	border: 1px solid rgba(255, 255, 255, .12);
	border-radius: 12px;
	background: #0a0a0a;
	transition: border-color .35s ease, transform .35s ease;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.review-card:hover {
	border-color: var(--secondary-color);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .35), 0 0 0 1px rgba(217, 182, 95, .25), 0 0 30px rgba(217, 182, 95, .15);
}

.review-stars {
	color: var(--secondary-color);
	font-size: 16px;
	letter-spacing: 3px;
}

.review-text {
	color: var(--text-color);
	font-size: 15px;
	line-height: 1.7;
	margin-bottom: 5px !important;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
	overflow: hidden;
}

.review-text.is-expanded {
	display: block;
	-webkit-line-clamp: unset;
	overflow: visible;
}

.review-toggle {
	display: none;
	margin: 0 0 10px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #d8ad45;
	font-family: inherit;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.3;
	cursor: pointer;
}

.review-toggle.is-visible {
	display: block;
}

.review-toggle:hover {
	text-decoration: underline;
	background: transparent;
}

.review-divider {
	height: 1px;
	background: rgba(255, 255, 255, .14);
	margin-bottom: 18px;
}

.review-info {
	display: flex;
	align-items: center;
	gap: 12px;
}

.review-thumb {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	object-fit: cover;
	flex-shrink: 0;
}

.review-info .review-thumb {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--orange);
	color: var(--secondary-color);
	font-weight: 700;
	font-size: 15px;
	font-family: inherit;
}

.review-details {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.review-name {
	color: var(--white-color);
	font-size: 15px;
	font-weight: 600;
}

.review-location {
	color: var(--white-color);
	font-size: 13px;
}

.reviews-rating {
	position: relative;
	z-index: 1;
	margin-top: 30px;
	text-align: center;
}

.reviews-rating-text {
	color: var(--white-color);
	font-size: 15px;
	font-weight: 500;
	margin-bottom: 0;
}

.reviews-rating-stars {
	color: var(--orange);
	font-size: 22px;
	letter-spacing: 4px;
}

.review-card:hover {
    transform: unset !important;
}

/* =========================================
   FAQ SECTION
========================================= */

.faq-wrap {
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 50px 0;
	background: var(--dark-bg);
	isolation: isolate;
}

.faq-wrap::before {
	content: "";
	position: absolute;
	width: 700px;
	height: 500px;
	left: 50%;
	top: 0%;
	transform: translate(-50%, -50%);
	background: radial-gradient(
		ellipse,
		rgba(252, 163, 17, 0.12) 0%,
		rgba(252, 163, 17, 0.05) 40%,
		transparent 72%
	);
	filter: blur(25px);
	pointer-events: none;
	z-index: 0;
}

.faq-wrap .container {
	position: relative;
	z-index: 1;
	max-width: 900px;
}

.faq-head {
	max-width: 760px;
	margin: 0 auto 50px;
	text-align: center;
}

.faq-kicker {
	display: inline-block;
	margin-bottom: 18px;
	color: var(--orange);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 3px;
	text-transform: uppercase;
}

.faq-head h2 {
	margin: 0 0 24px;
	color: var(--white-color);
}

.faq-head p {
	max-width: 650px;
	margin: 0 auto;
	color: var(--gray-light);
	font-size: 16px;
	line-height: 1.8;
}

.faq-list {
	display: flex;
	flex-direction: column;
}

.faq-item {
	border-bottom: 1px solid rgba(229, 229, 229, 0.15);
}

.faq-item:first-child {
	border-top: 1px solid rgba(229, 229, 229, 0.15);
}

.faq-question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 24px 5px;
	cursor: pointer;
	color: var(--white-color);
	font-size: 17px;
	font-weight: 600;
	transition: color 0.3s ease;
}

.faq-question:hover {
	color: var(--orange);
}

.faq-icon {
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border: 1px solid rgba(252, 163, 17, 0.4);
	border-radius: 50%;
	transition: background 0.35s ease, border-color 0.35s ease;
}

.faq-icon img {
	width: 12px;
	height: 12px;
	display: block;
	object-fit: contain;
}

.faq-item.active .faq-icon {
	background: rgba(252, 163, 17, 0.1);
	border-color: var(--orange);
}

.faq-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
	max-height: 300px;
	padding-bottom: 24px;
}

.faq-answer p {
	margin: 0;
	padding-right: 40px;
	color: var(--gray-light);
	font-size: 15px;
	line-height: 1.8;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1024px) {

    .our-projects-wrap {
        padding: 60px 0;
    }

    .our-projects-wrap .projects-head {
        margin-bottom: 40px !important;
    }

    .marquee-section .card {
        width: 310px;
        height: 210px;
    }
	
	.our-reviews-wrap {
		padding: 30px 0;
	}

}


@media (prefers-reduced-motion: reduce) {

    .marquee-row.left .marquee-track,
    .marquee-row.right .marquee-track {
        animation: none;
    }

    .marquee-section .card,
    .marquee-section .card img,
    .card-live,
    .card-live svg {
        transition: none;
    }

}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 768px) {

    .services-offer-wrap {
        padding: 40px 0;
    }

    .services-head {
        margin-bottom: 40px;
    }

    .services-head p {
        font-size: 14px;
    }

    .services-orbit {
        width: 340px;
        height: 500px;
    }

    .services-ring-one {
        width: 180px;
        height: 180px;
    }

    .services-ring-two {
        width: 280px;
        height: 280px;
    }

    .services-ring-three {
        width: 330px;
        height: 330px;
    }

    .services-hub {
        width: 115px;
        height: 115px;
    }

    .services-node {
        width: 78px;
        height: 78px;
    }

    .services-icon {
        width: 28px;
        height: 28px;
        font-size: 9px;
    }

    .services-name {
        font-size: 7px;
    }

    .services-hub-title {
        font-size: 11px;
    }

    .services-hub-sub {
        font-size: 9px;
    }

    .services-card {
        width: 285px;
    }
	
	 .our-projects-wrap {
        padding: 30px 0;
    }
	
	.review-card {
		width: 280px;
		padding: 20px;
	}
	
	.faq-wrap {
		padding: 40px 0;
	}

	.faq-head {
		margin-bottom: 35px;
	}

	.faq-question {
		font-size: 15px;
		padding: 20px 5px;
	}

	.faq-answer p {
		padding-right: 20px;
		font-size: 14px;
	}

	.faq-kicker {
		font-size: 11px;
		letter-spacing: 2px;
	}
	
	.banner-cstm-wrap h1 {
    font-size: 36px;
	}
	
	.home-heading,
	h2 {
		font-size:28px !important;
	}
	
	h3 {
		font-size:18px !important;
	}
}


@media (max-width: 480px) {
    .our-projects-wrap .projects-head h2 {
        font-size: 29px;
    }

    .our-projects-wrap .projects-head p {
        font-size: 14px;
    }

    .marquee-section .card {
        width: 250px;
        height: 175px;
    }

    .card-title {
        font-size: 16px;
    }

    .card-tag {
        font-size: 8px;
    }

	 .our-projects-wrap {
        padding: 50px 0;
    }

    .our-projects-wrap .projects-head {
        padding: 0 18px;
        margin-bottom: 35px !important;
    }

    .our-projects-wrap .services-kicker {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 14px;
    }

    .our-projects-wrap .projects-head h2 {
        font-size: 34px;
        line-height: 1.15;
    }

    .our-projects-wrap .projects-head p {
        font-size: 15px;
        line-height: 1.55;
    }

    .marquee-row + .marquee-row {
        margin-top: 12px;
    }

    .marquee-track,
    .marquee-set {
        gap: 12px;
    }

    .marquee-section .card {
        width: 280px;
        height: 190px;
        border-radius: 8px;
    }

    .card-info {
        left: 14px;
        right: 14px;
        bottom: 13px;
    }

    .card-title {
        font-size: 17px;
    }

    .card-tag {
        font-size: 9px;
        letter-spacing: 1px;
    }

    .card-live {
        top: 10px;
        right: 10px;
        padding: 7px 11px;
        font-size: 11px;
    }
}