

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background-color: whitesmoke;
            color: #eee;
            margin: 0;
            font-size: 15px;
            position: relative;
            width: 100%;
            overflow-x: hidden;
        }

        a {
            text-decoration: none;
            color: #eee;
        }
        /*  NAVBAR */
        .navbar {
            position: relative;
            top: 0;
            left: 0;
            width: 100%;
            background-color: transparent;
            padding: 15px 10%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            box-shadow: 0 3px 8px rgba(0,0,0,0.4);
        }

            .navbar img {
                height: 70px;
            }

        .nav-links {
            display: flex;
            gap: 40px;
            margin: 0px 300px 0px 0px;
        }

            .nav-links a {
                position: relative;
                text-decoration: none;
                color: #000;
                font-size: 18px;
                font-weight: 500;
                transition: all 0.3s ease-in-out;
            }
                /* Hover effects */
                .nav-links a:hover {
                    color: #000;
                    transform: translateY(-3px);
                }
                /* Underline animation */
                .nav-links a::after {
                    content: '';
                    position: absolute;
                    left: 0;
                    bottom: -5px;
                    width: 0%;
                    height: 2px;
                    background: Red;
                    transition: width 0.3s ease-in-out;
                }

                .nav-links a:hover::after {
                    width: 100%;
                }

        section {
            padding: 100px 10%;
        }

        h1, h2, h3 {
            margin-bottom: 20px;
        }

        p {
            line-height: 1.6;
        }

        /* Tablet (max-width: 1024px) */
        @media (max-width: 1024px) {
            .navbar {
                padding: 15px 5%;
            }

            .nav-links {
                gap: 25px;
                margin: 0px 100px 0px 0px;
            }

                .nav-links a {
                    font-size: 16px;
                }

                    .nav-links a:hover::after {
                        width: 100%;
                    }
        }

        /* Mobile (max-width: 768px) */
        @media (max-width: 768px) {
            .navbar {
                padding: 10px 20px;
                flex-direction: column;
                align-items: flex-start;
            }

                .navbar img {
                    height: 55px;
                    margin-bottom: 10px;
                }

            .nav-links {
                flex-direction: column;
                gap: 15px;
                margin: 0;
                width: 100%;
            }

                .nav-links a {
                    font-size: 16px;
                }

                    .nav-links a:hover::after {
                        width: 100%;
                    }
        }

        /* Small Mobile (max-width: 480px) */
        @media (max-width: 480px) {
            .navbar {
                padding: 8px 15px;
            }

                .navbar img {
                    height: 45px;
                }

            .nav-links a {
                font-size: 14px;
            }

                .nav-links a:hover::after {
                    width: 100%;
                }
        }




        /*carousel*/
        .carousel {
            width: 100vw;
            height: 100vh;
            overflow: hidden;
            margin-top: 0px;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

            .carousel .list {
                width: 100%;
                height: 100%;
                position: relative;
            }

                .carousel .list .item {
                    position: absolute;
                    inset: 0 0 0 0;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                }

                    .carousel .list .item img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }

                    .carousel .list .item .content {
                        position: absolute;
                        top: 20%;
                        width: 1140px;
                        max-width: 80%;
                        left: 50%;
                        transform: translateX(-50%);
                        padding-right: 30%;
                        box-sizing: border-box;
                        color: #fff;
                        text-shadow: 0 5px 10px #0004;
                    }

                        .carousel .list .item .content .author {
                            font-weight: bold;
                            letter-spacing: 10px;
                        }

                        .carousel .list .item .content .title,
                        .carousel .list .item .content .topic {
                            font-weight: bold;
                            font-size: 5em;
                            line-height: 1.3em;
                        }

                        .carousel .list .item .content .topic {
                            color: #f1683a;
                        }

                        .carousel .list .item .content .buttons {
                            display: grid;
                            grid-template-columns: repeat(2, 130px);
                            grid-template-rows: 40px;
                            gap: 5px;
                            margin-top: 20px;
                        }

                        .carousel .list .item .content button {
                            border: none;
                            background-color: #eee;
                            letter-spacing: 3px;
                            font-family: poppins;
                            font-weight: 500;
                        }

                            .carousel .list .item .content button:nth-child(2) {
                                background-color: transparent;
                                color: #eee;
                                border: 1px solid #eee;
                            }

        .thumbnail {
            position: absolute;
            bottom: 50px;
            left: 80%;
            transform: translateX(-50%);
            width: max-content;
            z-index: 100;
            display: flex;
            gap: 20px;
        }

            .thumbnail .item {
                width: 150px;
                height: 220px;
                flex-shrink: 0;
                position: relative;
            }

                .thumbnail .item img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 20px;
                }

                .thumbnail .item .content {
                    position: absolute;
                    bottom: 10px;
                    left: 10px;
                    right: 10px;
                }

                    .thumbnail .item .content .title {
                        font-weight: bold;
                    }
        /*arrow*/
        .arrows {
            position: absolute;
            top: 80%;
            left: 200px;
            transform: translateY(-50%);
            width: auto;
            display: flex;
            flex-direction: row;
            gap: 15px;
            align-items: center;
            z-index: 100;
        }

            .arrows button {
                width: 40px;
                height: 40px;
                border-radius: 50%;
                background-color: #eee4;
                border: none;
                font-family: monospace;
                color: #fff;
                font-weight: bold;
                font-size: large;
                transition: .5s;
                z-index: 100;
            }

                .arrows button:hover {
                    background-color: #eee;
                    color: #555;
                }

        .carousel .list .item:nth-child(1) {
            z-index: 1;
        }

            .carousel .list .item:nth-child(1) .author,
            .carousel .list .item:nth-child(1) .title,
            .carousel .list .item:nth-child(1) .topic,
            .carousel .list .item:nth-child(1) .des,
            .carousel .list .item:nth-child(1) .buttons {
                transform: translateY(50px);
                filter: blur(20px);
                opacity: 0;
                animation: showContent 0.5s 1s linear 1 forwards;
            }

        @keyframes showContent {
            to {
                opacity: 1;
                filter: blur(0);
                transform: translateY(0);
            }
        }

        .carousel .list .item:nth-child(1) .title {
            animation-delay: 1.2s;
        }

        .carousel .list .item:nth-child(1) .topic {
            animation-delay: 1.4s;
        }

        .carousel .list .item:nth-child(1) .des {
            animation-delay: 1.6s;
        }

        .carousel .list .item:nth-child(1) .buttons {
            animation-delay: 1.8s;
        }
        /* effect next click */
        .carousel.next .list .item:nth-child(1) img {
            width: 150px;
            height: 220px;
            position: absolute;
            left: 50%;
            bottom: 50px;
            border-radius: 20px;
            animation: showImage 0.5s linear 1 forwards;
        }

        @keyframes showImage {
            to {
                width: 100%;
                height: 100%;
                left: 0;
                bottom: 0;
                border-radius: 0;
            }
        }

        .carousel.next .thumbnail .item:nth-last-child(1) {
            width: 0;
            overflow: hidden;
            animation: showThumbnail .5s linear 1 forwards;
        }

        @keyframes showThumbnail {
            to {
                width: 150px;
            }
        }

        .carousel.next .thumbnail {
            transform: translateX(0);
            animation: transformThumbnail .5s linear 1 forwards
        }

        @keyframes transformThumbnail {
            to {
                transform: translateX(-50%);
            }
        }
        /* effect prev click */
        .carousel.prev .list .item:nth-child(2) {
            z-index: 2;
        }

            .carousel.prev .list .item:nth-child(2) img {
                position: absolute;
                bottom: 0;
                left: 0;
                animation: outImage 0.5s linear 1 forwards;
            }

        @keyframes outImage {
            to {
                width: 150px;
                height: 220px;
                border-radius: 20px;
                left: 50%;
                bottom: 50px;
            }
        }

        .carousel.prev .thumbnail .item:nth-child(1) {
            width: 0;
            overflow: hidden;
            opacity: 0;
            animation: showThumbnail 0.5s linear 1 forwards;
        }

        .carousel.prev .list .item:nth-child(2) .author,
        .carousel.prev .list .item:nth-child(2) .title,
        .carousel.prev .list .item:nth-child(2) .topic,
        .carousel.prev .list .item:nth-child(2) .des,
        .carousel.prev .list .item:nth-child(2) .buttons {
            animation: contentOut 1.5s linear 1 forwards;
        }

        @keyframes contentOut {
            to {
                transform: translateY(-150px);
                filter: blur(20px);
                opacity: 0;
            }
        }

        .carousel.next .arrows button,
        .carousel.prev .arrows button {
            pointer-events: none;
        }

        /*time*/
        /* .time {
            width: 0%;
            height: 5px;
            background-color: #f1683a;
            position: absolute;
            z-index: 100;
            top: 0;
            left: 0;
        }
        .carousel.next .time,
        .carousel.prev .time {
            width: 100%;
            animation: timeRunning 2s linear forwards;
        }*/

        @keyframes timeRunning {
            to {
                width: 0;
            }
        }

        @media screen and (max-width: 678px) {
            .carousel .list .item .content {
                padding-right: 0;
            }

                .carousel .list .item .content .title {
                    font-size: 30px;
                }
        }
        /* Hover effects */
        .nav-links a:hover {
            color: #000;
            transform: translateY(-3px);
        }
        /* Underline animation */
        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -5px;
            width: 0%;
            height: 2px;
            background: Red;
            transition: width 0.3s ease-in-out;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        section {
            padding: 100px 10%;
        }

        h1, h2, h3 {
            margin-bottom: 20px;
        }

        p {
            line-height: 1.6;
        }

        /* Technologies */

        .Technologies-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: white;
            padding-top: 200px;
            padding-bottom: 200px;
            height: 200px;
        }

        .Technologies-section1 {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: white;
            padding-top: 200px;
            padding-bottom: 200px;
            height: 200px;
            flex-direction: row-reverse;
        }

        .Technologies-two-mbl img {
            width: 600px;
            margin: 0px 0px 0px -120px;
        }

        /* Tablet (max-width: 1024px) */
        @media (max-width: 1024px) {
            .Technologies-section,
            .Technologies-section1 {
                flex-direction: column;
                text-align: center;
                padding: 120px 5% 120px 5%;
                height: auto;
            }

            .Technologies-two-mbl img {
                width: 450px;
                margin: 30px auto 0 auto;
                display: block;
            }
        }

        /* Mobile (max-width: 768px) */
        @media (max-width: 768px) {
            .Technologies-section,
            .Technologies-section1 {
                padding: 100px 20px;
                height: auto;
            }

            .Technologies-two-mbl img {
                width: 100%;
                max-width: 320px;
                margin: 20px auto 0 auto;
            }
        }

        /* Small Mobile (max-width: 480px) */
        @media (max-width: 480px) {
            .Technologies-section,
            .Technologies-section1 {
                padding: 80px 15px;
            }

            .Technologies-two-mbl img {
                max-width: 260px;
            }
        }



        /* Hero Section */
        .hero-section {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: white;
            padding-top: 200px;
            height: 200px;
        }

        .text-left {
            max-width: 50%;
        }

            .text-left p {
                color: black;
                font-weight: bold;
                font-size: 15px;
            }

        .Rfid-two-mbl img {
            width: 700px;
            margin: 0px -90px 0px 0px;
        }

        .highlight {
            color: #ff6600;
        }

        .btn-primary {
            padding: 14px 28px;
            background: #ff6600;
            border: none;
            color: #fff;
            font-weight: bold;
            margin-top: 30px;
            cursor: pointer;
            font-size: 16px;
            border-radius: 6px;
            transition: background 0.4s ease-in-out;
        }

            .btn-primary:hover {
                background: #e55d00;
            }

        /* Tablet (max-width: 1024px) */
        @media (max-width: 1024px) {
            .hero-section {
                padding-top: 120px;
                height: auto;
                flex-direction: column;
                text-align: center;
            }

            .text-left {
                max-width: 80%;
            }

            .Rfid-two-mbl img {
                width: 500px;
                margin: 20px 0 0 0;
            }
        }

        /* Mobile (max-width: 768px) */
        @media (max-width: 768px) {
            .hero-section {
                padding-top: 100px;
                flex-direction: column;
                height: auto;
                text-align: center;
            }

            .text-left {
                max-width: 100%;
            }

                .text-left p {
                    font-size: 14px;
                }

            .Rfid-two-mbl img {
                width: 100%;
                max-width: 350px;
                margin: 20px auto 0 auto;
                display: block;
            }

            .btn-primary {
                font-size: 14px;
                padding: 12px 24px;
            }
        }

        /* Small Mobile (max-width: 480px) */
        @media (max-width: 480px) {
            .hero-section {
                padding-top: 80px;
            }

            .text-left p {
                font-size: 13px;
            }

            .Rfid-two-mbl img {
                max-width: 280px;
            }

            .btn-primary {
                font-size: 13px;
                padding: 10px 20px;
            }
        }

        /* Client Logos Section */
        /*.client-logos-section {
            background-color: #f8f8f8;
            padding: 50px 10%;
            text-align: center;
            border-bottom: 1px solid #eee;
        }
        .client-logos {
            display: flex;
            justify-content: space-around;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }
            .client-logos img {
                height: 40px;
                filter: grayscale(100%);
                opacity: 0.6;
                transition: all 0.3s ease-in-out;
            }
                .client-logos img:hover {
                    filter: grayscale(0%);
                    opacity: 1;
                }*/

        /* NASTECH Info Section */
        .nastech-info-section {
            display: flex;
            padding: 80px 10%;
            background-color: #fff;
            color: #333;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: center;
            align-items: flex-start;
        }

        .nastech-info-left {
            flex: 1;
            min-width: 300px;
            max-width: 450px;
        }

            .nastech-info-left .about-us-tag {
                background-color: #fde6e6;
                color: #ff6600;
                padding: 8px 15px;
                border-radius: 20px;
                font-size: 14px;
                font-weight: bold;
                display: inline-block;
                margin-bottom: 15px;
            }

            .nastech-info-left h2 {
                font-size: 38px;
                color: #000;
                margin-bottom: 20px;
            }

            .nastech-info-left p {
                font-size: 16px;
                line-height: 1.8;
                color: #555;
                margin-bottom: 30px;
            }

            .nastech-info-left .read-more-btn {
                background-color: #ff6600;
                color: #fff;
                padding: 12px 25px;
                border-radius: 6px;
                text-decoration: none;
                font-weight: bold;
                transition: background-color 0.3s ease;
                display: inline-flex;
                align-items: center;
                gap: 8px;
            }

                .nastech-info-left .read-more-btn:hover {
                    background-color: #e55d00;
                }

        .nastech-info-grid {
            flex: 2;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 700px;
        }

        .info-card {
            background-color: #fff;
            border-radius: 12px;
            padding: 30px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            text-align: left;
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
            border: 1px solid #eee;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: flex-start;
        }

            .info-card:hover {
                transform: translateY(-8px);
                box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
            }

            .info-card .icon-wrapper {
                background-color: #fde6e6;
                width: 50px;
                height: 50px;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                margin-bottom: 20px;
                transition: background-color 0.3s ease;
            }

                .info-card .icon-wrapper img {
                    width: 28px;
                    height: 28px;
                    color: #ff6600;
                    transition: color 0.3s ease;
                }

            .info-card:hover .icon-wrapper img {
                color: #fff;
            }

            .info-card h3 {
                font-size: 22px;
                color: #000;
                margin-bottom: 10px;
            }

            .info-card p {
                font-size: 15px;
                color: #777;
                margin-bottom: 0;
                line-height: 1.7;
            }

        /* Tablet (max-width: 1024px) */
        @media (max-width: 1024px) {
            .nastech-info-section {
                padding: 60px 5%;
                gap: 30px;
            }

            .nastech-info-left h2 {
                font-size: 32px;
            }

            .nastech-info-left p {
                font-size: 15px;
            }

            .nastech-info-grid {
                grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
                gap: 20px;
                max-width: 100%;
            }
        }

        /* Mobile (max-width: 768px) */
        @media (max-width: 768px) {
            .nastech-info-section {
                flex-direction: column;
                align-items: center;
                text-align: center;
                padding: 50px 20px;
            }

            .nastech-info-left {
                max-width: 100%;
            }

                .nastech-info-left h2 {
                    font-size: 26px;
                }

                .nastech-info-left p {
                    font-size: 14px;
                }

                .nastech-info-left .read-more-btn {
                    font-size: 14px;
                    padding: 10px 20px;
                }

            .nastech-info-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                margin-top: 30px;
            }

            .info-card {
                padding: 20px;
                text-align: center;
                align-items: center;
            }

                .info-card h3 {
                    font-size: 20px;
                }

                .info-card p {
                    font-size: 14px;
                }
        }

        /* Small Mobile (max-width: 480px) */
        @media (max-width: 480px) {
            .nastech-info-section {
                padding: 40px 15px;
            }

            .nastech-info-left h2 {
                font-size: 22px;
            }

            .nastech-info-left p {
                font-size: 13px;
            }

            .nastech-info-left .read-more-btn {
                font-size: 13px;
                padding: 8px 18px;
            }

            .info-card {
                padding: 15px;
            }

                .info-card h3 {
                    font-size: 18px;
                }

                .info-card p {
                    font-size: 13px;
                }
        }



        /* Maintenance and Support Header */
        .maintenance-header {
            text-align: center;
            padding: 0px 10% 0px;
            background-color: white;
            color: #333;
        }

            .maintenance-header h2 {
                font-size: 38px;
                margin-bottom: 30px;
                position: relative;
                display: inline-block;
            }

                .maintenance-header h2::before {
                    content: '';
                    position: absolute;
                    left: 50%;
                    transform: translateX(-50%);
                    bottom: -15px;
                    width: 60px;
                    height: 4px;
                    background-color: #ff6600;
                    border-radius: 2px;
                }

        /* -- UPDATED FEATURES SECTION: 3 on top + 3 below (grid) -- */
        .features-section {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            background-color: #12152b;
            padding: 80px 10%;
            justify-items: center;
            align-items: start;
            box-sizing: border-box;
            max-width: 1400px;
            margin: 0 auto;
        }

        .feature-card {
            background-color: #1e223f;
            padding: 30px;
            border-radius: 12px;
            width: 100%;
            min-height: 220px;
            text-align: center;
            box-shadow: 0 6px 25px rgba(0,0,0,0.4);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 12px;
            box-sizing: border-box;
        }

            .feature-card h3 {
                font-size: 18px;
                color: #ffffff;
                margin: 0;
                font-weight: 700;
                transition: color 0.2s ease;
            }

            .feature-card p {
                font-size: 14px;
                color: #cfcfe0;
                margin: 0;
                line-height: 1.6;
                transition: color 0.2s ease;
            }

        Hover orange, text black
        .feature-card:hover {
            background-color: #ff6600;
            transform: translateY(-8px);
            box-shadow: 0 14px 40px rgba(0,0,0,0.35);
        }

        .feature-card:hover h3,
        .feature-card:hover p {
            color: #000000;
        }

        /* Maintenance Header */
        .maintenance-header {
            text-align: center;
            padding: 0px 10% 0px;
            background-color: white;
            color: #333;
        }

            .maintenance-header h2 {
                font-size: 38px;
                margin-bottom: 30px;
                position: relative;
                display: inline-block;
            }

                .maintenance-header h2::before {
                    content: '';
                    position: absolute;
                    left: 50%;
                    transform: translateX(-50%);
                    bottom: -15px;
                    width: 60px;
                    height: 4px;
                    background-color: #ff6600;
                    border-radius: 2px;
                }
        /* NEW Maintenance Services Section */
        .maintenance-services-section {
            padding: 60px 10%;
            background-color: #fff;
        }

        .maintenance-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            align-items: stretch;
        }

        .service-card {
            background-color: #ffffff;
            border: 1px solid #D3D3D3;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
            position: relative;
        }

            .service-card:hover {
                transform: translateY(-10px);
                border: 1px solid #ff6600;
                box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
                cursor: pointer;
            }

            .service-card .icon-wrapper {
                background-color: #fde6e6;
                width: 55px;
                height: 55px;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
                margin-bottom: 20px;
            }

                .service-card .icon-wrapper img {
                    width: 30px;
                    height: 30px;
                }

            .service-card h3 {
                font-size: 20px;
                margin-bottom: 10px;
                color: #000;
            }

            .service-card p {
                font-size: 15px;
                color: #555;
                line-height: 1.6;
            }

        .service-container {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }

        .card {
            position: relative;
            width: 250px;
            height: 200px;
            overflow: hidden;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            cursor: pointer;
            transition: transform 0.3s ease;
            border: 2px solid black;
        }

            .card img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.3s ease, opacity 0.3s ease;
            }

            .card:hover img {
                transform: scale(1.1);
                opacity: 0%;
            }

        .card-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #ff6600;
            font-size: 18px;
            font-weight: bold;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .card:hover .card-content {
            opacity: 1;
        }

        /* Tablet (max-width: 992px) */
        @media (max-width: 992px) {
            .maintenance-services-section {
                padding: 50px 6%;
            }

            .maintenance-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }

            .service-card {
                padding: 25px;
            }

            .container {
                flex-direction: column;
                padding: 40px 20px;
            }

            .contact-box {
                width: 100%;
                margin-top: 30px;
            }
        }

        /* Mobile (max-width: 600px) */
        @media (max-width: 600px) {
            .maintenance-services-section {
                padding: 40px 5%;
            }

            .maintenance-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .service-card {
                padding: 20px;
                text-align: center;
            }

                .service-card h3 {
                    font-size: 18px;
                }

                .service-card p {
                    font-size: 14px;
                }

                .service-card .icon-wrapper {
                    margin: 0 auto 15px auto;
                }

            .container {
                flex-direction: column;
                padding: 30px 15px;
            }

            .contact-left h2 {
                font-size: 22px;
            }

            .contact-box {
                width: 100%;
                margin-top: 20px;
            }
        }
        /* Tablet (max-width: 992px) */
        @media (max-width: 992px) {
            .service-container {
                flex-wrap: wrap;
                gap: 20px;
            }

            .card {
                width: 45%;
                height: 180px;
            }

            .card-content {
                font-size: 16px;
            }
        }

        /* Mobile (max-width: 600px) */
        @media (max-width: 600px) {
            .service-container {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }

            .card {
                width: 90%;
                max-width: 300px;
                height: 160px;
            }

                .card img {
                    object-fit: cover;
                }

            .card-content {
                font-size: 15px;
            }
        }



        /* Animations */
        .slide-in-left, .slide-in-right, .slide-in-bottom, .fade-in, .animate-from-bottom {
            opacity: 0;
            transition: all 1.4s ease-in-out;
        }

        .slide-in-left {
            transform: translateX(-80px);
        }

        .slide-in-right {
            transform: translateX(80px);
        }

        .slide-in-bottom {
            transform: translateY(80px);
        }

        .fade-in {
            transform: scale(0.95);
        }

        .animate-from-bottom {
            transform: translateY(100px);
        }

        .visible {
            opacity: 1 !important;
            transform: translateX(0) translateY(0) scale(1) !important;
        }

        /* Responsive: mobile & small tablet -> 2 columns, then 1 */
        @media (max-width: 992px) {
            .features-section {
                grid-template-columns: repeat(2, 1fr);
                padding: 60px 6%;
            }
        }

        @media (max-width: 600px) {
            .features-section {
                grid-template-columns: 1fr;
                padding: 40px 6%;
            }

            .Rfid-two-mbl img {
                width: 100%;
                max-width: 420px;
            }

            .text-left {
                max-width: 100%;
            }
        }

        /* Dashboard */
        /*.dashboard-section {
            text-align: center;
            background: #181c3a;
        }

        .dashboard-img {
            width: 80%;
            margin-top: 30px;
            border-radius: 12px;
            box-shadow: 0 0 20px #000;
        }*/
        /* Testimonials */
        /*.testimonial-section {
            background: #12152b;
            text-align: center;
        }

        .testimonial-card {
            background: #1e223f;
            margin: 20px auto;
            max-width: 600px;
            padding: 30px;
            border-radius: 10px;
        }*/
        /* CTA Section */
        /*.cta-section {
            background: linear-gradient(90deg, #ff6600, #e55d00);
            text-align: center;
            color: #fff;
        }*/
        .container {
            display: flex;
            justify-content: space-between;
            padding: 50px;
        }

        .contact-left h2 {
            font-size: 30px;
            margin-bottom: 15px;
            color: #ff6600;
        }



        .contact-left h3 {
            color: #444;
        }

        .contact-left h4 {
            color: #444;
        }

        .contact-left h2 {
            font-size: 28px;
            margin-bottom: 15px;
        }

        .contact-left p {
            margin: 8px 0;
            color: #444;
        }

        .contact-left a {
            color: #007bff;
            text-decoration: none;
        }

            .contact-left a:hover {
                text-decoration: underline;
            }

        .contact-box {
            background: #fff;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
            width: 45%;
        }

            .contact-box h2 {
                text-align: center;
                font-size: 35px;
                margin-top: -20px;
            }

            .contact-box h3 {
                margin-bottom: 20px;
            }

        .contact-left h4 {
            color: #444;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 8px;
        }

        .btn-submit {
            background: #007bff;
            color: #fff;
            padding: 12px;
            width: 100%;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            cursor: pointer;
        }

            .btn-submit:hover {
                background: #0056b3;
            }

        small {
            display: block;
            margin-top: 8px;
            font-size: 12px;
            color: #555;
        }


        /* New Footer Styles */
        .footer {
            background: linear-gradient(to right, #0a0d20, #1a1f3a);
            color: #fff;
            padding: 60px 0 20px;
            border-top-left-radius: 125px;
            border-top-right-radius: 125px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            flex-wrap: wrap;
        }

        .footer-left {
            flex: 1;
            min-width: 250px;
            margin-bottom: 30px;
        }

        .footer-logo {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 15px;
            color: #fff;
        }

        .footer-subscribe {
            margin-top: 20px;
        }

            .footer-subscribe p {
                margin-bottom: 15px;
                font-size: 16px;
            }

        .footer-middle {
            flex: 2;
            display: flex;
            flex-wrap: wrap;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
            margin-bottom: 0px;
            padding: 0 -30px;
            overflow: hidden;
        }

            .footer-column h3 {
                font-size: 18px;
                margin-bottom: 20px;
                position: relative;
                padding-bottom: 15px;
            }

                /* Line wrapper */
                .footer-column h3 .underline {
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 60px;
                    height: 5px;
                    background: #767676;
                    border-radius: 3px;
                    overflow: hidden;
                }

                    /* Moving dot inside */
                    .footer-column h3 .underline::before {
                        content: '';
                        position: absolute;
                        top: 0;
                        left: -20px;
                        width: 15px;
                        height: 5px;
                        background: #fff;
                        border-radius: 3px;
                        animation: moving 2s linear infinite;
                    }

        @keyframes moving {
            0% {
                left: -20px;
            }

            100% {
                left: 60px;
            }
        }

        .footer-column h4 {
            font-size: 18px;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 15px;
        }

            /* Line wrapper */
            .footer-column h4 .underline {
                position: absolute;
                bottom: 0;
                left: 0;
                width: 73px;
                height: 5px;
                background: #767676;
                border-radius: 3px;
                overflow: hidden;
            }

                /* Moving dot inside */
                .footer-column h4 .underline::before {
                    content: '';
                    position: absolute;
                    top: 0;
                    left: -20px;
                    width: 15px;
                    height: 5px;
                    background: #fff;
                    border-radius: 3px;
                    animation: moving 2s linear infinite;
                }

        @keyframes moving {
            0% {
                left: -20px;
            }

            100% {
                left: 60px;
            }
        }





        .footer-column ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

            .footer-column ul li {
                margin-bottom: 12px;
            }

                .footer-column ul li a {
                    color: #ccc;
                    text-decoration: none;
                    font-size: 15px;
                    transition: color 0.3s;
                    position: relative;
                    overflow: hidden;
                    bottom: -5px;
                }

                    .footer-column ul li a:hover {
                        color: #ff6600;
                    }

                    /* Animated underline with moving dot */
                    .footer-column ul li a::after {
                        content: '';
                        position: absolute;
                        left: 0;
                        bottom: -2px;
                        width: 100%;
                        height: 1px;
                        background: #fff;
                        transform: scaleX(0);
                        transform-origin: left;
                        transition: transform 0.5s ease;
                        opacity: 0;
                    }

                    .footer-column ul li a:hover::after {
                        transform: scaleX(1);
                        opacity: 1;
                    }

                    .footer-column ul li a::before {
                        content: '';
                        position: absolute;
                        left: 0;
                        bottom: -2px;
                        width: 8px;
                        height: 1px;
                        background: #fff;
                        transform: translateX(-100%);
                        transition: transform 0.5s ease;
                        opacity: 0;
                    }

                    .footer-column ul li a:hover::before {
                        transform: translateX(100%);
                        opacity: 1;
                    }


        .newsletter-form {
            display: flex;
            margin-top: 15px;
        }

        .newsletter-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
        }

            .newsletter-input::placeholder {
                color: #ccc;
            }

        .newsletter-button {
            padding: 0 20px;
            background: #ff6600;
            color: #fff;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background 0.3s;
        }

            .newsletter-button:hover {
                background: #e55d00;
            }

        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

            .social-icons a {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 36px;
                height: 36px;
                transition: background 0.3s, transform 0.3s;
            }

                .social-icons a:hover {
                    transform: translateY(-3px);
                }

        .footer-bottom {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 14px;
            color: #aaa;
        }

        /* Animations */
        .slide-in-left, .slide-in-right, .slide-in-bottom, .fade-in, .animate-from-bottom {
            opacity: 0;
            transition: all 1.4s ease-in-out;
        }

        .slide-in-left {
            transform: translateX(-80px);
        }

        .slide-in-right {
            transform: translateX(80px);
        }

        .slide-in-bottom {
            transform: translateY(80px);
        }

        .fade-in {
            transform: scale(0.95);
        }

        .animate-from-bottom {
            transform: translateY(100px);
        }

        .visible {
            opacity: 1 !important;
            transform: translateX(0) translateY(0) scale(1) !important;
        }
  