:root {
    --bs-primary: #0d6efd;
    --bs-primary-rgb: 13, 110, 253;
    --bs-light: #ffffff;
    --bs-light-rgb: 255, 255, 255;
    --bs-dark: #0b1f3a;
    --bs-dark-rgb: 11, 31, 58;
}


html, body {
    width: 100%;
    overflow-x: hidden;
}

a {
    color: var(--bs-primary);
}

a:hover {
    color: #0a58ca;
}

.text-primary {
    color: var(--bs-primary) !important;
}

.bg-primary {
    background-color: var(--bs-primary) !important;
}

.bg-light {
    background-color: var(--bs-light) !important;
}

.btn-primary {
    color: #fff;
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    color: #fff;
    background-color: #0a58ca;
    border-color: #0a58ca;
}

.btn-custom-color {
    color:#fff
}


/*** Scroll/Motion Effects ***/
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #63a4ff 0%, var(--bs-primary) 55%, #0a58ca 100%);
    transform: scaleX(0);
    transform-origin: left center;
    z-index: 1055;
    pointer-events: none;
}

.volume-reveal {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.985);
    clip-path: inset(0 0 24% 0 round 1px);
    transition: opacity 800ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1), clip-path 900ms cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform, clip-path;
}

.volume-reveal.in-view {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    clip-path: inset(0 0 0 0 round 1px);
}

.motion-card {
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
    transform-style: preserve-3d;
    will-change: transform;
    backface-visibility: hidden;
}

.motion-card:hover {
    box-shadow: 0 18px 36px rgba(13, 110, 253, 0.2);
    border-color: rgba(13, 110, 253, 0.3) !important;
}

.hero-header .hero-header-text,
.hero-header .header-carousel {
    transition: transform 200ms linear;
    will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
    .scroll-progress {
        display: none;
    }

    .volume-reveal {
        opacity: 1;
        transform: none;
        clip-path: none;
        transition: none;
    }

    .motion-card,
    .hero-header .hero-header-text,
    .hero-header .header-carousel {
        transition: none;
        transform: none !important;
    }

    .hero-title.typewriter-active::after {
        animation: none;
    }
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

.back-to-top {
    position: fixed !important;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Fonts ***/
.font-work-sans {
  font-family: "Work Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-playfair-display {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.font-dancing-script {
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}


/*** Button ***/
.btn {
    position: relative;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-dark,
.btn-primary {
    margin: 10px;
}

.btn-primary::before,
.btn-primary::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-primary::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-primary);
    border-right: 2px solid var(--bs-primary);
}

.btn-primary::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-primary);
    border-bottom: 2px solid var(--bs-primary);
}

.btn-dark::before,
.btn-dark::after {
    position: absolute;
    content: "";
    width: calc(100% + 10px);
    height: calc(100% + 10px);
    top: -5px;
    left: -5px;
}

.btn-dark::before {
    top: -10px;
    height: calc(100% + 20px);
    border-left: 2px solid var(--bs-dark);
    border-right: 2px solid var(--bs-dark);
}

.btn-dark::after {
    left: -10px;
    width: calc(100% + 20px);
    border-top: 2px solid var(--bs-dark);
    border-bottom: 2px solid var(--bs-dark);
}

.hero-contact-link {
    display: inline-block;
    text-decoration: none;
    line-height: 1.4;
    word-break: break-word;
}

.hero-contact-link:hover {
    color: var(--bs-primary) !important;
}


/*** Navbar ***/
.sticky-top {
    position: fixed !important;
    left: 0;
    right: 0;
    width: 100%;
    top: 10px;
    transition: .5s;
    z-index: 1030;
    background: transparent;
}

.sticky-top.shadow-sm {
    box-shadow: none !important;
}

.top-announce {
    background: linear-gradient(90deg, #e9d98b 0%, #f4c63d 48%, #efb51b 100%);
    color: #222;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .2px;
    padding: 8px 12px;
}

.navbar.navbar-shell {
    max-width: 1180px;
    margin: 16px auto 0;
    padding: 10px 18px !important;
    border-radius: 999px;
    background: rgba(40, 22, 111, 0.5);
    border: none;
    box-shadow: none;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar .navbar-brand h1 {
    font-family: "Work Sans", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
}

.navbar .navbar-brand img {
    width: 28px;
    height: 28px;
    margin-right: 6px;
}

.navbar .navbar-nav .nav-link {
    margin: 0 10px;
    padding: 8px 4px;
    outline: none;
    font-family: "Work Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
    letter-spacing: .1px;
    color: #ffffff;
    border-radius: 999px;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #ffffff;
}

.navbar .navbar-nav .nav-link.nav-contact {
    margin-left: 14px;
    padding: 9px 20px;
    background: #ffffff;
    color: #111111;
}

.navbar .navbar-nav .nav-link.nav-contact:hover,
.navbar .navbar-nav .nav-link.nav-contact.active {
    background: #f3f6fb;
    color: #111111;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .dropdown-menu {
    background: rgba(40, 22, 111, 0.55) !important;
    border: none;
    border-radius: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.navbar .dropdown-menu .dropdown-item {
    color: #ffffff;
    border-radius: 10px;
}

.navbar .dropdown-menu .dropdown-item:hover,
.navbar .dropdown-menu .dropdown-item.active {
    color: var(--bs-white);
    background: rgba(var(--bs-primary-rgb), 0.55);
}

@media (max-width: 991.98px) {
    .navbar .navbar-toggler {
        border-color: rgba(255, 255, 255, 0.75);
    }

    .navbar .navbar-toggler:focus {
        box-shadow: 0 0 0 0.2rem rgba(255, 255, 255, 0.25);
    }

    .navbar .navbar-toggler .navbar-toggler-icon {
        filter: brightness(0) invert(1);
    }

    .navbar.navbar-shell {
        margin: 0 0 20px;
    border-radius: 20px;
        margin: 10px 12px 0;
        padding: 10px 12px !important;
    }

    .navbar .navbar-brand h1 {
        font-size: 1.1rem;
    }

    .navbar .navbar-collapse {
        background: rgba(40, 22, 111, 0.56);
        border: none;
        border-radius: 14px;
        margin-top: 10px;
        padding: 10px 12px !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        margin-right: 0;
        padding: 8px 0;
    }

    .navbar .navbar-nav .nav-link.nav-contact {
        margin: 10px 0 0;
        text-align: center;
    }
}

@media (min-width: 992px) {
    .navbar.navbar-shell {
        background: rgba(40, 22, 111, 0.58);
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

.navbar .btn-primary {
    border-width: 2px;
    background: var(--bs-light);
    color: var(--bs-primary);
}

.navbar .btn-primary:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}


/*** Hero Header ***/
/* .hero-header {
    background: none;
} */

.hero-header {
    position: relative;
    overflow: hidden;
    background: var(--bs-dark);
}

.hero-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(244, 245, 250, .86) 0%, rgba(236, 238, 245, .72) 45%, rgba(214, 219, 235, .55) 100%);
    z-index: 1;
}

.hero-bg-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: blur(2px);
    transform: scale(1.03);
    z-index: 0;
}

.hero-header .container {
    position: relative;
    z-index: 2;
}

.hero-header .hero-header-text {
    min-height: 620px;
    display: flex;
    align-items: center;
}

.hero-header .hero-contact-link {
    color: var(--bs-white) !important;
}

.hero-header .hero-contact-link:hover {
    color: var(--bs-primary) !important;
}

.hero-title {
    font-family: "Work Sans", sans-serif;
    font-size: clamp(2.4rem, 8vw, 5.2rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.02em;
    color: #011447;
    max-width: 11ch;
}

.hero-title.typewriter-active::after {
    content: "|";
    margin-left: 0.08em;
    animation: hero-caret-blink 0.8s steps(1, end) infinite;
}

@keyframes hero-caret-blink {
    50% {
        opacity: 0;
    }
}

.hero-subtext {
    font-family: "Work Sans", sans-serif;
    font-size: clamp(1.05rem, 2.8vw, 1.7rem);
    font-weight: 500;
    line-height: 1.45;
    color: #0a2b87;
    max-width: 26ch;
}

.hero-cta-wrap {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-cta {
    padding: 12px 24px;
    border-radius: 999px;
    font-family: "Work Sans", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 1px solid transparent;
    box-shadow: none;
}

.hero-cta.btn::before,
.hero-cta.btn::after {
    display: none;
}

.hero-cta-primary {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.hero-cta-primary:hover,
.hero-cta-primary:focus {
    background: #1b1b1b;
    color: #ffffff;
    border-color: #1b1b1b;
}

.hero-cta-glass {
    background: rgba(255, 255, 255, 0.32);
    color: #000000;
    border-color: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-cta-glass:hover,
.hero-cta-glass:focus {
    background: rgba(255, 255, 255, 0.48);
    color: #000000;
    border-color: rgba(255, 255, 255, 0.65);
}

@media (min-width: 992px) {
    .hero-header .container {
        max-width: 100% !important;
    }

    .page-header {
        padding-top: 10rem !important;
    }

    .hero-header .hero-header-text  {
        padding-top: 10rem !important;
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .hero-cta {
        padding: 16px 34px;
        font-size: 1.05rem;
    }
}

@media (min-width: 1200px) {
    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .hero-header .hero-header-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

@media (max-width: 991.98px) {
    .hero-header .hero-header-text {
        min-height: 520px;
        padding-top: 7rem !important;
    }

    .hero-title {
        max-width: 9ch;
    }

    .hero-subtext {
        max-width: 28ch;
    }

    .hero-cta-wrap {
        gap: 10px;
    }

    .hero-cta {
        width: auto;
    }
}

@media (max-width: 767.98px) {
    .hero-header {
        min-height: 78svh;
    }

    .hero-bg-video {
        object-fit: cover;
        object-position: center;
        transform: none;
        filter: none;
    }

    .hero-header .hero-header-text {
        min-height: 78svh;
        padding-top: 5.25rem !important;
        padding-bottom: 2.5rem;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    right: 0;
    bottom: 0;
    text-align: center;
    display: flex;
    justify-content: center;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next{
    position: relative;
    margin-left: 2px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bs-dark);
    background: var(--bs-primary);
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
}

.page-header {
    background: url(../img/hero-subpage.JPG) center center no-repeat;
    background-size: cover;
}

.page-header h1 {
    color: #ffffff;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    color: #ffffff !important;
}

.page-header .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.85);
}

/*** About Modern ***/
.about-modern {
    background: #f5f6fb;
    border-radius: 28px;
    padding: 34px;
}

.about-copy-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 18px 40px rgba(16, 34, 66, 0.08);
}

.about-kicker {
    font-family: "Work Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #0d6efd;
}

.about-title {
    font-family: "Work Sans", sans-serif;
    font-size: clamp(1.55rem, 3vw, 2.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: #0b1f3a;
}

.about-description {
    font-family: "Work Sans", sans-serif;
    font-size: 1rem;
    line-height: 1.75;
    color: #51627e;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.about-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 18px;
    border-radius: 999px;
    font-family: "Work Sans", sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.25s ease;
}

.about-chip-primary {
    background: #ff8a00;
    border-color: #ff8a00;
    color: #ffffff;
}

.about-chip-primary:hover {
    background: #e97f00;
    border-color: #e97f00;
    color: #ffffff;
}

.about-chip-light {
    background: #ffffff;
    border-color: #dfe6f3;
    color: #283750;
}

.about-chip-light:hover {
    border-color: #b8c6e0;
    color: #0b1f3a;
}

.about-media-card {
    border-radius: 22px;
    overflow: hidden;
    background: linear-gradient(135deg, #245ff5, #9900c8);
    box-shadow: 0 22px 45px rgba(9, 34, 89, 0.26);
}

.about-media-card img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
}

.about-metrics {
    margin-top: 8px;
}

.about-metric {
    background: #ffffff;
    border-radius: 16px;
    padding: 18px 14px;
    text-align: center;
    border: 1px solid #e5ebf8;
}

.about-metric h3 {
    margin-bottom: 6px;
    font-family: "Work Sans", sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: #2a2c87;
}

.about-metric p {
    margin: 0;
    font-family: "Work Sans", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #697891;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

@media (max-width: 991.98px) {
    .about-modern {
        padding: 20px;
        margin: 0 0 20px;
    border-radius: 20px;
    }

    .about-copy-card {
        padding: 20px;
    }
}


/*** Services Marquee ***/
.services-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 0 20px;
    border-radius: 20px;
    padding: 8px 0;
    background: transparent;
}
.services-marquee.full-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
}

.portfolio-bleed {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
}

.services-marquee::before,
.services-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: clamp(36px, 7vw, 96px);
    height: 100%;
    z-index: 2;
    pointer-events: none;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.services-marquee::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
}

.services-marquee::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
}

.services-marquee-track {
    display: flex;
    align-items: center;
    gap: 34px;
    width: max-content;
    animation: servicesMarqueeScroll 11s linear infinite;
}

.services-marquee:hover .services-marquee-track {
    animation-play-state: paused;
}

.services-marquee-item {
    flex: 0 0 clamp(130px, 15vw, 190px);
    aspect-ratio: 16 / 9;
    border-radius: 0;
    overflow: hidden;
    border: none;
    background: transparent;
}

.services-marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    transform: scale(1);
    padding: 10px;
    transition: filter 0.18s ease, transform 0.18s ease;
}

.services-marquee-item:hover img {
    filter: grayscale(0%);
    transform: scale(1.04);
}

@keyframes servicesMarqueeScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 17px));
    }
}

@media (prefers-reduced-motion: reduce) {
    .services-marquee-track {
        animation: none;
    }
}
/*** Service ***/
@media (max-width: 768px) {
    .service .service-item {
        border: none !important;
        box-shadow: 0 0 45px rgba(0, 0, 0, .05);
    }
}

@media (min-width: 992px) {
    .service .service-item.border-lg-end {
        border-right: 1px solid #dee2e6;
    }

    .service .service-item.border-lg-end-0 {
        border-right: none !important;
    }

    .service .service-item.border-lg-bottom-0 {
        border-bottom: none !important;
    }
}

.service .service-item .btn-primary {
    border-width: 2px;
    background: var(--bs-white);
    color: var(--bs-primary);
}

.service .service-item .btn-primary:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.service .service-item img {
    width: 70px;
    margin-bottom: 20px;
}


/*** Team ***/
.team {
    position: relative;
}

.team::before {
    position: absolute;
    content: "";
    width: 100vw;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-top: 1rem;
    background: rgb(74, 74, 158);
}

.team-item img {
    transition: .5s;
}
  
.team-item:hover img {
    transform: scale(1.2);
}
  
.team-overlay {
    position: absolute;
    padding: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    text-align: center;
    background: rgba(255, 255, 255, .5);
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-overlay {
    background: rgba(255, 255, 255, .9);
}

.team-overlay p {
    letter-spacing: 1px;
}

.team-overlay .btn-dark {
    border-width: 2px;
    color: var(--bs-dark);
    background: transparent;
}

.team-overlay .btn-dark:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

/* Rectangle cards for homepage portfolio section */
.portfolio-rect {
    height: 520px;
}

.portfolio-rect img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    cursor: grab;
    user-select: none;
    -webkit-user-drag: none;
    touch-action: none;
}

.portfolio-rect img.dragging {
    cursor: grabbing;
}

@media (max-width: 767.98px) {
    .team > [class*="col-"] {
        width: 90%;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
}


/*** Process Timeline ***/
.process-section {
    padding: 100px 0;
    background: #f7f8f8;
    color: #0b1f3a;
}

.process-container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
}

.process-heading {
    margin: 0 0 40px;
    text-align: center;
    font-family: "Playfair Display", serif;
    font-weight: 700;
    font-size: 2rem;
    color: #000000;
}

.process-svg {
    width: 100%;
    height: auto;
}

.process-track {
    stroke: #2e344d;
    stroke-width: 8px;
    fill: none;
}

.process-progress {
    stroke: #6ee081;
    stroke-width: 8px;
    fill: none;
    stroke-linecap: round;
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
}

.process-step {
    fill: #0c1224;
    stroke: #6ee081;
    stroke-width: 4px;
}

.process-label {
    fill: #000000;
    font-size: 16px;
    font-family: "Work Sans", sans-serif;
}

.process-icon path,
.process-icon circle,
.process-icon rect,
.process-icon line {
    fill: none;
    stroke: #0b1f3a;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mobile-timeline {
    display: none;
    max-width: 500px;
    margin: 0 auto;
    padding: 40px 20px;
    position: relative;
}

.mobile-track {
    position: absolute;
    left: 20px;
    top: 0;
    width: 4px;
    height: 100%;
    background: #2e344d;
}

.mobile-progress {
    position: absolute;
    left: 20px;
    top: 0;
    width: 4px;
    height: 0;
    background: #6ee081;
}

.mobile-step {
    display: flex;
    align-items: center;
    margin: 60px 0;
}

.mobile-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 4px solid #6ee081;
    background: #0c1224;
    margin-right: 20px;
}

.mobile-text {
    text-align: left;
    font-size: 16px;
    font-family: "Work Sans", sans-serif;
    color: #0b1f3a;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.mobile-text i {
    font-size: 16px;
    color: #0b1f3a;
}

@media (max-width: 768px) {
    .process-container {
        display: block;
    }

    .process-svg {
        display: none;
    }

    .mobile-timeline {
        display: block;
    }
}
/*** Testimonial ***/
.testimonial-carousel .owl-item {
    position: relative;
}

.testimonial-carousel .owl-item::before {
    position: absolute;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .1;
}

.testimonial-carousel .owl-item img {
    position: relative;
    width: 100px;
    height: 100px;
    z-index: 1;
}

.testimonial-carousel .owl-item,
.testimonial-carousel .owl-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item span {
    letter-spacing: 2px;
}

.testimonial-carousel .owl-item.center .bg-light {
    background: var(--bs-primary) !important;
}

.testimonial-carousel .owl-item.center .bg-light * {
    color: var(--bs-dark) !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--bs-dark);
    background: var(--bs-primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}


/*** Footer ***/
.footer.footer-modern {
    position: relative;
    width: 100%;
    overflow: hidden;
    isolation: isolate;
    background: url(../img/footer-img1.jpg) center center/cover no-repeat;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 6.25rem !important;
}

/* .footer.footer-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: clamp(64px, 10vw, 120px);
    background:
        radial-gradient(36px 20px at 18px 0, rgba(255, 255, 255, 0.95) 98%, transparent 100%) 0 0/72px 24px repeat-x,
        linear-gradient(to bottom, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0));
    pointer-events: none;
    z-index: 1;
} */

.footer.footer-modern > .container {
    position: relative;
    z-index: 2;
}
.footer-modern-title {
    margin-bottom: 14px;
    font-family: "Work Sans", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
    letter-spacing: 0.03em;
}

.footer.footer-modern .btn.btn-link {
    display: block;
    margin-bottom: 7px;
    padding: 0;
    text-align: left;
    color: rgba(255, 255, 255, 0.96);
    font-family: "Work Sans", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: none;
    text-decoration: none;
    transition: color .2s ease, transform .2s ease;
}

.footer.footer-modern .btn.btn-link:hover {
    color: #ffffff;
    letter-spacing: 0;
    box-shadow: none;
    transform: translateX(2px);
}

.footer.footer-modern .btn.btn-link::before {
    display: none;
}

.footer.footer-modern .footer-contact-btn {
    display: inline-block;
    margin-top: 4px;
    padding: 9px 20px;
    border-radius: 999px;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    border: none;
}

.footer.footer-modern .footer-contact-btn:hover,
.footer.footer-modern .footer-contact-btn.active {
    background: #1f1f1f;
    color: #ffffff;
}

.copyright-strip {
    background: #000;
}










@media (min-width: 992px) {
    .footer.footer-modern {
        background-size: cover;
        background-position: center top;
    }

    .footer.footer-modern::before {
        height: clamp(78px, 8vw, 120px);
    }

    .copyright-strip {
        background: #000;
    }
}




.contact-split .contact-info-col {
    border-bottom: 2px solid rgba(0, 0, 0, 0.12);
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .contact-split .contact-info-col {
        border-bottom: 0;
        margin-bottom: 0;
        padding-bottom: 0;
        border-right: 2px solid rgba(0, 0, 0, 0.12);
        padding-right: 1.5rem;
    }

    .contact-split .contact-form-col {
        padding-left: 1.5rem;
    }
}

@media (max-width: 991.98px) {
    .footer.footer-modern {
        background-size: cover;
        background-position: center center;
        padding-top: 5.4rem !important;
    }

    .footer.footer-modern::before {
        height: clamp(58px, 14vw, 84px);
        background-size: 60px 20px, 100% 100%;
    }

    .copyright-strip {
        background: #000;
    }
}


















.animated-contact-btn {
    transform: translateZ(0) scale(1);
    transform-origin: center;
    transition: transform 0.2s ease;
    will-change: transform;
}

.animated-contact-btn:hover {
    transform: scale(1.05);
}

.animated-contact-btn.is-pressed,
.animated-contact-btn:active {
    transform: scale(0.95);
}

@media (prefers-reduced-motion: reduce) {
    .animated-contact-btn {
        transition: none;
    }

    .animated-contact-btn:hover,
    .animated-contact-btn.is-pressed,
    .animated-contact-btn:active {
        transform: none;
    }
}


/* Navbar/Footer Contact Us Effects */
.navbar .navbar-nav .nav-link.nav-contact,
.footer.footer-modern .footer-contact-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid transparent;
    background: #000000;
    color: #ffffff;
}

.navbar .navbar-nav .nav-link.nav-contact:hover,
.navbar .navbar-nav .nav-link.nav-contact.active,
.footer.footer-modern .footer-contact-btn:hover,
.footer.footer-modern .footer-contact-btn.active {
    background: #1f1f1f;
    color: #ffffff;
}

.navbar .navbar-nav .nav-link.nav-contact::before,
.footer.footer-modern .footer-contact-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.98) 40%, rgba(255, 255, 255, 0.98) 55%, rgba(255, 255, 255, 0.18) 100%);
    background-size: 220% 100%;
    animation: contactLinkShine 2.8s linear infinite;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 0;
}

.footer.footer-modern .footer-contact-btn::before {
    display: none;
}

/* Keep nav/footer links stable; avoid scale jitter from generic animated-contact-btn */
.navbar .navbar-nav .nav-link.nav-contact.animated-contact-btn,
.footer.footer-modern .footer-contact-btn.animated-contact-btn,
.navbar .navbar-nav .nav-link.nav-contact.animated-contact-btn:hover,
.footer.footer-modern .footer-contact-btn.animated-contact-btn:hover,
.navbar .navbar-nav .nav-link.nav-contact.animated-contact-btn:active,
.footer.footer-modern .footer-contact-btn.animated-contact-btn:active {
    transform: none;
}

@keyframes contactLinkShine {
    from {
        background-position: 180% 0;
    }

    to {
        background-position: -40% 0;
    }
}





























