body {
            font-family: 'Josefin Sans', sans-serif;
        }

        .bg-primary,
        .btn-primary,
        .btn-primary:hover,
        .btn-primary:focus,
        .btn-primary:active {
            background-color: #22005e !important;
        }

        .app {
            min-width: 100vw;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        header {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 1rem;
            text-align: center;
        }

        header h1 {
            font-weight: 600;
            font-size: 2rem;
            margin-bottom: 0.5rem;
        }

        @media (min-width: 768px) {
            header h1 {
                font-size: 3rem;
            }
        }

        header p {
            color: #94a3b8;
            margin-bottom: 0.5rem;
        }

        header a {
            color: #7393c1;
        }

        .tag-list {
            width: 30rem;
            max-width: 90vw;
            display: flex;
            flex-shrink: 0;
            flex-direction: column;
            gap: 1rem 0;
            position: relative;
            padding: 1.5rem 0;
            overflow: hidden;
        }

        .loop-slider .inner {
            display: flex;
            width: fit-content;
            animation-name: loop;
            animation-timing-function: linear;
            animation-iteration-count: infinite;
            animation-direction: var(--direction);
            animation-duration: var(--duration);
        }

        .tag {
            display: flex;
            align-items: center;
            gap: 0 0.2rem;
            color: #e2e8f0;
            font-size: 0.9rem;
            background-color: #334155;
            border-radius: 0.4rem;
            padding: 0.7rem 1rem;
            margin-right: 1rem;
            box-shadow: 0 0.1rem 0.2rem rgba(0, 0, 0, 0.2), 0 0.1rem 0.5rem rgba(0, 0, 0, 0.3), 0 0.2rem 1.5rem rgba(0, 0, 0, 0.4);
        }

        .tag span {
            font-size: 1.2rem;
            color: #64748b;
        }

        .fade {
            pointer-events: none;
            background: linear-gradient(90deg, #1e293b, transparent 30%, transparent 70%, #1e293b);
            position: absolute;
            inset: 0;
        }

        @keyframes loop {
            0% {
                transform: translateX(0);
            }

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

        /* services */
        .container .card .icon {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 1px solid #591BC5;
            background: #fff;
        }

        .container .card .icon img {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #fff;
            display: flex;
            justify-content: end;
            align-items: center;
        }

        .container .card .icon h5 {
            color: #591BC5;
            text-align: center;
        }

        .container .card .slide {
            width: auto;
            height: 200px;
            transition: 0.5s;
        }

        .container .card .slide.slide1 {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 1;
            transition: .7s;
            transform: translateY(100px);
        }

        .container .card:hover .slide.slide1 {
            transform: translateY(0px);
        }

        .container .card .slide.slide2 {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
            box-sizing: border-box;
            transition: .8s;
            transform: translateY(-100px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .container .card:hover .slide.slide2 {
            transform: translateY(0);
        }

        .container .card .slide.slide2 .content p {
            margin: 0;
            padding: 0;
            text-align: justify;
            font-size: 14px;
            color: #414141;
        }

        .container .card .slide.slide2 .content h3 {
            margin: 0 0 10px 0;
            padding: 0;
            font-size: 20px;
            text-align: center;
            color: #414141;
        }

        /* Card grid for Our Solutions */
        .card .card-body img {
            max-width: 100%;
            object-fit: contain;
        }

        .card-title {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .card-text {
            font-size: 0.97rem;
            color: #555;
        }

        @media (max-width: 767px) {
            .card .card-body img {
                height: 40px !important;
            }
        }

        /* Animate.css override for delay on cards */
        .animate__animated[style*="animation-delay"] {
            animation-delay: inherit !important;
        }

        /* Modern FAQ styles */
        #FaqAccordion1 .accordion-item {
            border-radius: 12px;
            border: 1px solid #e5e7eb;
            margin-bottom: 1rem;
            background: #fff;
            box-shadow: 0 2px 8px rgba(30, 41, 59, 0.05);
            transition: box-shadow 0.2s;
        }

        #FaqAccordion1 .accordion-item:hover {
            box-shadow: 0 4px 16px rgba(30, 41, 59, 0.10);
        }

        #FaqAccordion1 .accordion-header {
            border: none;
        }

        #FaqAccordion1 .accordion-button {
            background: none;
            border: none;
            font-size: 1.05rem;
            font-weight: 500;
            color: #334155;
            padding: 1rem 1.25rem;
            border-radius: 12px;
            box-shadow: none;
            transition: background 0.2s, color 0.2s;
        }

        #FaqAccordion1 .accordion-button:focus {
            box-shadow: none;
            outline: none;
        }

        #FaqAccordion1 .accordion-button:not(.collapsed) {
            background: #f1f5f9;
            color: #591BC5;
        }

        #FaqAccordion1 .accordion-body {
            padding: 0.75rem 1.5rem 1.25rem 1.5rem;
            color: #475569;
            font-size: 0.97rem;
            border-top: 1px solid #e5e7eb;
            background: #f8fafc;
            border-radius: 0 0 12px 12px;
        }

        @media (max-width: 767px) {
            #FaqAccordion1 .accordion-button {
                font-size: 1rem;
                padding: 0.85rem 1rem;
            }

            #FaqAccordion1 .accordion-body {
                padding: 0.7rem 1rem 1rem 1rem;
            }

            /* Media query for mobile devices */

            .lc-block img {
                max-width: 70% !important;
                /* Adjust image size for smaller screens */
                /* margin: 0 auto; */
                /* Center the image on mobile */
                display: block;
                /* Ensure it behaves like a block element for margin auto */
            }

        }

        /* Floating animation */
        @keyframes float {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        .fab-item {
            position: relative;
        }

        /* Tooltip for FABs */
        .fab-item .fab-label {
            position: absolute;
            right: 100%;
            margin-right: 10px;
            background-color: #333;
            color: #fff;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 0.75rem;
            white-space: nowrap;
            opacity: 0;
            transform: translateY(-50%);
            top: 50%;
            transition: opacity 0.2s ease;
            pointer-events: none;
            z-index: 100;
        }

        .fab-item {
            background-color: #fff;
            color: #591BC5;
            border: 1px solid #ccc;
            padding: 6px 10px;
            border-radius: 30px;
            display: flex;
            align-items: center;
            font-size: 1rem;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
            transition: background 0.2s;
        }

        .fab-item:hover {
            background-color: #f3f4f6;
        }

        .fab-item:hover .fab-label {
            opacity: 1;
        }

        .fab-speed-dial {
            position: fixed;
            bottom: 80px;
            right: 20px;
            z-index: 99;
        }

        .fab-main {
            width: 60px;
            height: 60px;
            background-color: #591BC5;
            color: #fff;
            border: none;
            border-radius: 50%;
            font-size: 1.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
            cursor: pointer;
            /* transition: transform 0.3s ease; */
            transition: transform 0.3s ease, background-color 0.3s ease;
        }

        .fab-options {
            display: flex;
            flex-direction: column-reverse;
            /* ⬅️ Changed from column */
            align-items: flex-end;
            gap: 15px;
            margin-bottom: 10px;
            opacity: 0;
            pointer-events: none;
            transform: translateY(20px);
            /* This will move up now */
            transition: all 0.3s ease;
        }

        .fab-speed-dial.open .fab-options {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
            /* This will move up now */
        }



        .fab-label {
            margin-left: 8px;
            font-size: 0.9rem;
            font-weight: 500;
        }


        .fab-rotated {
            transform: rotate(90deg);
            transition: transform 0.3s ease;
            font-size: 2rem;
            align-items: center;
        }

        .floating {
            animation: float 3s ease-in-out infinite;
        }

        .css-147puft {
            /* overflow: hidden; */
            position: absolute;
            z-index: -1;
            left: 0;
            right: 0;
            top: -3rem;
            bottom: -3rem;
            -webkit-clip-path: polygon(0% 3rem, 100% 0%, 100% calc(100% - 1.5rem), 0% calc(100% - 1.5rem));
            clip-path: polygon(0% 3rem, 100% 0%, 100% calc(100% - 1.5rem), 0% calc(100% - 1.5rem));
            background: url('../images/chaos-trans-146c1f01fdfe92d3f6f9fe6d78e0c326.png'), linear-gradient(315deg, #000e2c 0.57%, #00025c 100%);
            background-size: auto, auto;
            -webkit-background-size: 300px 300px, cover;
            background-size: 300px 300px, cover;
        }

        .css-11mdres {
            overflow: hidden;
            position: absolute;
            z-index: -1;
            left: 0;
            right: 0;
            top: -3rem;
            bottom: -3rem;
            -webkit-clip-path: polygon(0% 2rem, 50% 1rem, 50% 2rem, 100% 1rem, 100% calc(100% - 1.5rem), 0% calc(100% - 1.5rem));
            clip-path: polygon(0% 2rem, 50% 1rem, 50% 2rem, 100% 1rem, 100% calc(100% - 1.5rem), 0% calc(100% - 1.5rem));
            background: url('../images/chaos-trans-146c1f01fdfe92d3f6f9fe6d78e0c326.png'),
                linear-gradient(315deg, #000e2c 0.57%, #00025c 100%);
            background-size: auto, auto;
            -webkit-background-size: 300px 300px, cover;
            background-size: 300px 300px, cover;
            border: 2px solid #000e2c;
            /* Add a border to see the element's boundaries */
        }

        .positioned-container {
            position: relative;
            /* Make sure the parent is positioned */
            height: 100%;
            /* Give it a height */
            margin-top: 50px;
        }

        section#solutions {
            background: linear-gradient(315deg, #000e2c 0.57%, #00025c 100%);
            position: relative;
        }

        section#solutions::before {
            content: "";
            background: url(../images/dot-shape.png) center top #d7f0fd;
            background-color: rgb(250, 250, 250);
            background-size: auto;
            position: absolute;
            height: 400px;
            right: 0;
            left: 0;
            top: 0;
            width: 100%;
            background-size: contain;
        }

        /* section#solutions::after {
            content: "";
            background: url(dot-shape.png) center bottom #d7f0fd;
            background-color: rgb(215, 240, 253);
            background-size: auto;
            position: absolute;
            height: 400px;
            right: 0;
            left: 0;
            bottom: 0;
            width: 100%;
            background-size: contain;
        } */

        .industry-workfors {
            background-color: #ffffff;
            padding: 15px;
            vertical-align: auto;
            border-radius: 10px;
            align-items: center;
            display: flex;
            justify-content: center;
            flex-direction: column;
        }

        .industry-workfors:hover {
            background-color: #f0f0f0;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            transition: background-color 0.9s ease, box-shadow 0.9s ease;
        }

        .industry-workfors img {
            width: 40px;
            height: 40px;
        }

        /* .awards {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        } */



        /* Custom gradient text for the heading */
        .gradient-text {
            background: linear-gradient(to right, #3b82f6, #9333ea); /* Equivalent to Tailwind's blue-600 to purple-600 */
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block; /* Required for gradient to apply correctly */
        }
        #awards {
            /* display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 1rem; */
            margin-top: -20px;
            /* z-index: 999; */

        }
        /* Custom card styling for hover effects and shadow */
        .card-custom {
            transition: all 0.5s ease;
            position: relative; /* For transform */
            overflow: hidden; /* To clip shadow if it goes out */
            min-width: 80px; /* Ensures cards don't shrink too much */
            max-width: 120px; /* Prevents cards from becoming too wide */
            max-height: 120px;;
            z-index: 999;
            border: 5px solid transparent;
            -o-border-image: linear-gradient(45deg, gold, rgb(222, 3, 186)) 1;
            border-image: linear-gradient(45deg, gold, deeppink) 1;
            -webkit-clip-path: inset(0px round 10px);
            clip-path: inset(0px round 10px);
            -webkit-animation: huerotate 6s infinite linear;
            animation: huerotate 6s infinite linear;
            filter: hue-rotate(360deg);
        }

        .card-custom small{
            font-size: 0.7rem !important;

        }

        .card-custom:hover {
            transform: translateY(8px) scale(1.02); /* Subtle lift and slight scale on hover */
            box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important; /* Deeper shadow on hover */
            /* z-index: 9999; */
        }

        /* Specific border colors for the top border */
        .border-bottom-blue {
            border-bottom-color: #3b82f6 !important; /* Tailwind blue-600 equivalent */
        }
        .border-bottom-purple {
            border-bottom-color: #9333ea !important; /* Tailwind purple-600 equivalent */
        }

        /* Custom letter spacing for text */
        .tracking-wider-custom {
            letter-spacing: 0.05em;
        }
          @-webkit-keyframes huerotate {
            0% {
                filter: hue-rotate(0deg);
            }
            100% {
                filter: hue-rotate(360deg);
            }
            }

            @keyframes huerotate {
            0% {
                filter: hue-rotate(0deg);
            }
            100% {
                filter: hue-rotate(360deg);
            }
            }

        .services_mega_menu > li > a::before,  .services_mega_menu2 > li > a::before{
            content: "\00BB";
            font-size: medium;
            /* position: absolute; */
            /* left: 0; */
            /* top: 50%;
            transform: translateY(-50%); */
        }
        .services_mega_menu2 > li > a:hover{
            background-color:#22005e;
            color: #fff;

        }
        .solution-item:hover{
             background-color:#22005e;
            color: #fff;
            border-radius: 20px;
        }




        /* Custom styles for the about us section */
          .banner {
        position: relative;
        background-color: black;
        height: 35vh;
        min-height: 15rem;
        width: 100%;
        overflow: hidden;
    }

    .banner video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: 0;
        -ms-transform: translateX(-50%) translateY(-50%);
        -moz-transform: translateX(-50%) translateY(-50%);
        -webkit-transform: translateX(-50%) translateY(-50%);
        transform: translateX(-50%) translateY(-50%);
    }

    .banner>.container {
        position: relative;
        z-index: 2;
    }

    .banner>.overlay {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: black;
        opacity: 0.5;
        z-index: 1;
    }

    /* Media Query for devices withi coarse pointers and no hover functionality */

    /* This will use a fallback image instead of a video for devices that commonly do not support the HTML5 video element */

    @media (pointer: coarse) and (hover: none) {
        section.banner {
            background: url('../images/banners/story.jpg') black no-repeat center center scroll;
        }

        section.banner video {
            display: none;
        }
    }

    /******************* Timeline Demo - 5 *****************/
    .main-timeline5 {
        overflow: hidden;
        position: relative
    }

    .main-timeline5 .timeline {
        position: relative;
        margin-top: -92px
    }



    .main-timeline5 .timeline:first-child {
        margin-top: 0
    }

    .main-timeline5 .timeline-icon,
    .main-timeline5 .year {
        margin: auto;
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0
    }

    .main-timeline5 .timeline:after,
    .main-timeline5 .timeline:before {
        content: "";
        display: block;
        width: 100%;
        clear: both
    }

    .main-timeline5 .timeline:before {
        content: "";
        width: 100%;
        height: 100%;
        box-shadow: -8px 0 5px -5px rgba(0, 0, 0, .5) inset;
        position: absolute;
        top: 0;
        right: 0;
        z-index: 2
    }

    .main-timeline5 .timeline-icon {
        width: 210px;
        height: 210px;
        border-radius: 50%;
        border: 25px solid transparent;
        border-top-color: #f44556;
        border-right-color: #f44556;
        z-index: 1;
        transform: rotate(45deg)
    }

    .main-timeline5 .year {
        display: block;
        width: 110px;
        height: 110px;
        line-height: 110px;
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 0 20px rgba(0, 0, 0, .4);
        font-size: 30px;
        font-weight: 700;
        color: #f44556;
        text-align: center;
        transform: rotate(-45deg)
    }

    .main-timeline5 .timeline-content {
        width: 35%;
        float: right;
        background: #f44556;
        padding: 30px 20px;
        margin: 50px 0;
        z-index: 1;
        position: relative
    }

    .main-timeline5 .timeline-content:before {
        content: "";
        width: 20%;
        height: 15px;
        background: #f44556;
        position: absolute;
        top: 50%;
        left: -20%;
        z-index: -1;
        transform: translateY(-50%)
    }

    .main-timeline5 .title {
        font-size: 20px;
        font-weight: 700;
        color: #fff;
        margin: 0 0 10px
    }

    .main-timeline5 .description {
        font-size: 16px;
        color: #fff;
        line-height: 24px;
        margin: 0
    }

    .main-timeline5 .timeline:nth-child(2n):before {
        box-shadow: 8px 0 5px -5px rgba(0, 0, 0, .5) inset
    }

    .main-timeline5 .timeline:nth-child(2n) .timeline-icon {
        transform: rotate(-135deg);
        border-top-color: #e97e2e;
        border-right-color: #e97e2e
    }

    .main-timeline5 .timeline:nth-child(2n) .year {
        transform: rotate(135deg);
        color: #e97e2e
    }

    .main-timeline5 .timeline:nth-child(2n) .timeline-content {
        float: left
    }

    .main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
        left: auto;
        right: -20%
    }

    .main-timeline5 .timeline:nth-child(2n) .timeline-content,
    .main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
        background: #e97e2e
    }

    .main-timeline5 .timeline:nth-child(3n) .timeline-icon {
        border-top-color: #13afae;
        border-right-color: #13afae
    }

    .main-timeline5 .timeline:nth-child(3n) .year {
        color: #13afae
    }

    .main-timeline5 .timeline:nth-child(3n) .timeline-content,
    .main-timeline5 .timeline:nth-child(3n) .timeline-content:before {
        background: #13afae
    }

    .main-timeline5 .timeline:nth-child(4n) .timeline-icon {
        border-top-color: #105572;
        border-right-color: #105572
    }

    .main-timeline5 .timeline:nth-child(4n) .year {
        color: #105572
    }

    .main-timeline5 .timeline:nth-child(4n) .timeline-content,
    .main-timeline5 .timeline:nth-child(4n) .timeline-content:before {
        background: #105572
    }

    .main-timeline5 .timeline:nth-child(4n) .timeline-icon {
        border-top-color: #105572;
        border-right-color: #105572
    }

    .main-timeline5 .timeline:nth-child(4n) .year {
        color: #105572
    }

    .main-timeline5 .timeline:nth-child(4n) .timeline-content,
    .main-timeline5 .timeline:nth-child(4n) .timeline-content:before {
        background: #105572
    }

    /* 5th  */

    .main-timeline5 .timeline:nth-child(5n) .timeline-icon {
        border-top-color: #000934;
        border-right-color: #000934;
    }

    .main-timeline5 .timeline:nth-child(5n) .year {
        color: #000934
    }

    .main-timeline5 .timeline:nth-child(5n) .timeline-content,
    .main-timeline5 .timeline:nth-child(5n) .timeline-content:before {
        background: #000934
    }

    /* 6th child */
    .main-timeline5 .timeline:nth-child(6n) .timeline-icon {
        border-top-color: #3b003e;
        border-right-color: #3b003e
    }

    .main-timeline5 .timeline:nth-child(6n) .year {
        color: #3b003e
    }

    .main-timeline5 .timeline:nth-child(6n) .timeline-content,
    .main-timeline5 .timeline:nth-child(6n) .timeline-content:before {
        background: #3b003e
    }

    .main-timeline5 .timeline:nth-child(6n) .timeline-icon {
        border-top-color: #3b003e;
        border-right-color: #3b003e
    }

    .main-timeline5 .timeline:nth-child(6n) .year {
        color: #3b003e
    }

    .main-timeline5 .timeline:nth-child(6n) .timeline-content,
    .main-timeline5 .timeline:nth-child(6n) .timeline-content:before {
        background: #3b003e
    }

    @media only screen and (max-width:1199px) {
        .main-timeline5 .timeline {
            margin-top: -103px
        }

        .main-timeline5 .timeline-content:before {
            left: -18%
        }

        .main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
            right: -18%
        }

    }

    @media only screen and (max-width:990px) {
        .main-timeline5 .timeline {
            margin-top: -127px
        }

        .main-timeline5 .timeline-content:before {
            left: -2%
        }

        .main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
            right: -2%
        }
    }

    @media only screen and (max-width:767px) {
        .main-timeline5 .timeline {
            margin-top: 0;
            overflow: hidden
        }

        .main-timeline5 .timeline:before,
        .main-timeline5 .timeline:nth-child(2n):before {
            box-shadow: none
        }

        .main-timeline5 .timeline-icon,
        .main-timeline5 .timeline:nth-child(2n) .timeline-icon {
            margin-top: -30px;
            margin-bottom: 20px;
            position: relative;
            transform: rotate(135deg)
        }

        .main-timeline5 .timeline:nth-child(2n) .year,
        .main-timeline5 .year {
            transform: rotate(-135deg)
        }

        .main-timeline5 .timeline-content,
        .main-timeline5 .timeline:nth-child(2n) .timeline-content {
            width: 100%;
            float: none;
            border-radius: 0 0 20px 20px;
            text-align: center;
            padding: 25px 20px;
            margin: 0 auto
        }

        .main-timeline5 .timeline-content:before,
        .main-timeline5 .timeline:nth-child(2n) .timeline-content:before {
            width: 15px;
            height: 25px;
            position: absolute;
            top: -22px;
            left: 50%;
            z-index: -1;
            transform: translate(-50%, 0)
        }
    }


     .step-card {
            display: flex;
            align-items: flex-start;
            margin-bottom: 1.25rem; /* Equivalent to mb-5 */
            background-color: #ffffff; /* White background for cards */
            padding: 1.5rem; /* Equivalent to p-6 */
            border-radius: 0.75rem; /* Equivalent to rounded-xl */
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* Shadow for depth */
            border-left: 0.25rem solid #22c55e; /* Green left border */
        }
        .step-number-circle {
            flex-shrink: 0;
            width: 2.5rem; /* Equivalent to w-10 */
            height: 2.5rem; /* Equivalent to h-10 */
            background-color: #22c55e; /* Green background */
            color: white;
            border-radius: 9999px; /* Full circle */
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 700; /* Equivalent to font-bold */
            font-size: 1.125rem; /* Equivalent to text-lg */
            margin-right: 1rem; /* Equivalent to mr-4 */
        }
        @media (max-width: 640px) { /* Tailwind's 'sm' breakpoint */
            .step-card {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
            .step-number-circle {
                margin-bottom: 0.75rem; /* Equivalent to mb-3 */
                margin-right: 0;
            }
        }
    .card {
        /* border: none; */
        /* border-radius: 10px; */
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease;
    }
    .card:hover {
        transform: translateY(-5px);
        transition: transform 0.5s cubic-bezier(0.39, 0.575, 0.565, 1) ;
    }

    .gradient-header-hero {
        background: linear-gradient(132deg, #FC415A, #591BC5, #212335);
        background-size: auto;
        background-size: 400% 400%;
        animation: Gradient 15s ease infinite;
        color: #fff;
        padding: 5rem 0;
        text-align: center;
    }

    @media (max-width: 768px) {
    .map img {
        max-width: 30px !important; /* Reduce image size on smaller screens */
    }
    .map > div{
        border :3px solid #591BC5 !important;
    }
}
 .tech-circuit {
            position: absolute;
            width: 80%;
            height: 180px;
            left: 10%;
            top: 30px;
            background: repeating-linear-gradient(
                90deg,
                #b3b3ff 0px, #b3b3ff 2px, transparent 2px, transparent 20px
            );
            opacity: 0.25;
            border-radius: 30px;
            animation: circuitMove 8s linear infinite;
        }
        .tech-circuit-2 {
            top: 120px;
            width: 60%;
            left: 20%;
            height: 120px;
            background: repeating-linear-gradient(
                0deg,
                #80d0c7 0px, #80d0c7 2px, transparent 2px, transparent 18px
            );
            opacity: 0.18;
            animation-delay: 2s;
            border-radius: 50px;
        }
        .tech-circuit-3 {
            top: 200px;
            width: 90%;
            left: 5%;
            height: 80px;
            background: repeating-linear-gradient(
                135deg,
                #a1c4fd 0px, #a1c4fd 2px, transparent 2px, transparent 22px
            );
            opacity: 0.13;
            animation-delay: 4s;
            border-radius: 40px;
        }
        @keyframes circuitMove {
            0% { transform: translateY(0);}
            100% { transform: translateY(30px);}
        }
    .waves {
        position: relative;
        width: 100%;
        height: 15vh;
        margin-bottom: -85px;
        /*Fix for safari gap*/
        min-height: 100px;
        max-height: 150px;
    }

    /* Animation */

    .parallax>use {
        animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
    }

    .parallax>use:nth-child(1) {
        animation-delay: -2s;
        animation-duration: 7s;
    }

    .parallax>use:nth-child(2) {
        animation-delay: -3s;
        animation-duration: 10s;
    }

    .parallax>use:nth-child(3) {
        animation-delay: -4s;
        animation-duration: 13s;
    }

    .parallax>use:nth-child(4) {
        animation-delay: -5s;
        animation-duration: 20s;
    }

    @keyframes move-forever {
        0% {
            transform: translate3d(-90px, 0, 0);
        }

        100% {
            transform: translate3d(85px, 0, 0);
        }
    }

    /*Shrinking for mobile*/
    @media (max-width: 768px) {
        .waves {
            margin-bottom: -60px !important;

            height: 40px;
            min-height: 40px;
        }

    }


     .process-step {
            transition: transform 0.2s, box-shadow 0.2s;
        }
        .process-step:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 8px 32px rgba(0,0,0,0.12);
        }
        .step-circle {
            transition: background 0.3s, color 0.3s;
        }
        .process-arrow {
            position: absolute;
            top: 50%;
            right: -24px;
            width: 48px;
            height: 4px;
            background: linear-gradient(90deg, #0d6efd 60%, #fff 100%);
            border-radius: 2px;
            transform: translateY(-50%);
        }
        .process-step:last-child .process-arrow {
            display: none;
        }
        @media (max-width: 991.98px) {
            .process-arrow {
                display: none !important;
            }
        }


         /* Optional: Add subtle animated "dots" or "lines" for a tech feel */
        .animated-dots::before,
        .animated-dots::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-image: radial-gradient(#bbff00 3px, transparent 3px); /* Slate 700 dots */
            background-size: 20px 20px;
            opacity: 0.1;
            animation: moveDots 30s linear infinite;
            z-index: 1; /* Above the main background but below content */
        }

        .animated-dots::after {
            background-image: radial-gradient(#ffb300 3px, transparent 3px); /* Slate 500 dots */
            background-size: 30px 30px;
            animation: moveDotsReverse 40s linear infinite;
        }

        @keyframes moveDots {
            from {
                background-position: 0 0;
            }
            to {
                background-position: 100% 100%;
            }
        }

        @keyframes moveDotsReverse {
            from {
                background-position: 100% 100%;
            }
            to {
                background-position: 0 0;
            }
        }