        /* Modern Footer Styles */
        :root {
            --ft-primary: #0088ff;
            --ft-primary-dark: #0066cc;
            --ft-primary-light: #66b3ff;
            --ft-secondary: #33cc33;
            --ft-dark: #001a33;
            --ft-navy-dark: #0a1525;
            --ft-light: #ffffff;
            --ft-gray: #f5f7fa;
            --ft-text: #e6e6e6;
            --ft-border: rgba(255, 255, 255, 0.1);
        }

        /* Base Styles for Footer */
        .ft-modern-footer * {
            box-sizing: border-box;
        }

        .ft-modern-footer a {
            text-decoration: none;
			color:#e6e6e6;
            transition: all 0.3s ease;
        }

        .ft-modern-footer ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        /* Footer Container */
        .ft-modern-footer {
            position: relative;
            background: var(--ft-navy-dark);
            color: var(--ft-text);
            overflow: hidden;
            width: 100%;
            font-family: 'Poppins', 'Aileron', sans-serif;
            line-height: 1.6;
        }

        .ft-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 40px;
        }

        /* Contact Information Row */
        .ft-contact-row {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto 10px;
            padding: 20px;
        }

        .ft-contact-item {
            display: flex;
            align-items: center;
        }

        /* Updated Contact Icons */
        .ft-contact-icon {
            flex: 0 0 50px;
            height: 50px;
            background-color: transparent;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: var(--ft-primary);
            font-size: 24px;
        }

        .ft-contact-icon svg {
            width: 40px;
            height: 40px;
            fill: var(--ft-primary);
        }

        .ft-contact-details h4 {
            margin: 0 0 5px;
            color: white;
            font-size: 16px;
            font-weight: 600;
        }

        .ft-contact-details p {
            margin: 0;
            font-size: 14px;
            opacity: 0.8;
            line-height: 1.4;
        }

        .ft-get-in-touch-wrapper {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .ft-btn-get-in-touch {
            display: inline-block;
            padding: 15px 25px;
            background: var(--ft-primary);
            color: white;
            font-weight: 600;
            border-radius: 5px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .ft-btn-get-in-touch:hover {
            background: var(--ft-primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 136, 255, 0.4);
            color: white;
        }

        /* Main Content */
        .ft-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 15px;
            margin-bottom: 15px;
        }

        .ft-section {
            position: relative;
        }

        .ft-section-title {
            color: var(--ft-light);
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 25px;
            position: relative;
        }

        /* Links List */
        .ft-links-list li {
            margin-bottom: 12px;
        }

        .ft-links-list a {
            color: var(--ft-text);
            transition: all 0.3s ease;
            font-size: 15px;
        }

        .ft-links-list a:hover {
            color: var(--ft-primary);
        }

        .ft-company-second-column {
            margin-top: 52px;
            /* Adjust to align with the other lists */
        }

        /* Subscribe Form */
        .ft-subscribe-intro {
            margin-bottom: 20px;
            font-size: 15px;
            opacity: 0.9;
            line-height: 1.5;
        }

        .ft-subscribe-form {
            margin-bottom: 20px;
        }

        .ft-input-group {
            display: flex;
            flex-direction: column;
        }

        .ft-input-group input {
            width: 100%;
            padding: 15px;
            border: none;
            background-color: white;
            border-radius: 5px;
            color: #333;
            font-size: 15px;
            transition: all 0.3s ease;
            margin-bottom: 10px;
        }

        .ft-input-group input:focus {
            outline: none;
            box-shadow: 0 0 0 2px rgba(0, 136, 255, 0.5);
        }

        .ft-input-group input::placeholder {
            color: #999;
        }

        .ft-btn-submit {
            padding: 15px;
            border: none;
            border-radius: 5px;
            background: var(--ft-primary);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .ft-btn-submit:hover {
            background: var(--ft-primary-dark);
            box-shadow: 0 5px 15px rgba(0, 136, 255, 0.4);
        }

        /* Social Icons */
        .ft-social-icons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .ft-social-icon-circle {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--ft-primary);
            color: white;
            transition: all 0.3s ease;
        }

        .ft-social-icon-circle:hover {
            background: var(--ft-primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 136, 255, 0.4);
            color: white;
        }

        /* Clients Section */
        .ft-clients-showcase {
            margin-bottom: 15px;
            padding-top: 5px;
            border-top: 1px solid var(--ft-border);
        }

        .ft-clients-title {
            color: var(--ft-light);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
            text-align: center;
        }

        .ft-clients-container {
            position: relative;
        }

        /* FIXED: Client slider styles */
        .ft-client-slider {
            display: flex;
            overflow-x: auto;
            gap: 30px;
            padding: 15px 0;
            scroll-behavior: smooth;
            scrollbar-width: none;
            /* Firefox */
            -ms-overflow-style: none;
            /* IE and Edge */
            cursor: grab;
        }

        .ft-client-slider::-webkit-scrollbar {
            display: none;
            /* Chrome, Safari, Opera */
        }

        .ft-client-slide {
            flex: 0 0 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .ft-client-slide:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .ft-client-slide img {
            max-width: 80%;
            max-height: 60px;
            object-fit: contain;
            filter: grayscale(100%) brightness(1.2);
            transition: all 0.3s ease;
        }
		

        .ft-client-slide:hover img {
            filter: grayscale(0%) brightness(1);
        }

        .ft-view-all-btn {
            display: block;
            text-align: center;
            margin-top: 20px;
            color: var(--ft-primary);
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .ft-view-all-btn:hover {
            color: var(--ft-primary-light);
        }

        .ft-view-all-btn i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .ft-view-all-btn:hover i {
            transform: translateX(5px);
        }
		
		/* Clients Section */
        .ft-clients-showcase1 {
            margin-bottom: 15px;
            padding-top: 5px;
            border-top: 1px solid var(--ft-border);
        }

        .ft-clients-title1 {
            color: var(--ft-light);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 25px;
            text-align: center;
        }

        .ft-clients-container1 {
            position: relative;
        }

        /* FIXED: Client slider styles */
        .ft-client-slider1 {
            display: flex;
            overflow-x: auto;
            gap: 30px;
            padding: 15px 0;
            scroll-behavior: smooth;
            scrollbar-width: none;
            /* Firefox */
            -ms-overflow-style: none;
            /* IE and Edge */
            cursor: grab;
        }

        .ft-client-slider1::-webkit-scrollbar {
            display: none;
            /* Chrome, Safari, Opera */
        }

        .ft-client-slide1 {
            flex: 0 0 150px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .ft-client-slide1:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .ft-client-slide1 img {
            max-width: 80%;
            max-height: 60px;
            object-fit: contain;
            filter: grayscale(100%) brightness(1.2);
            transition: all 0.3s ease;
        }
		

        .ft-client-slide1:hover img {
            filter: grayscale(0%) brightness(1);
        }

        /* Copyright Section */
        .ft-copyright {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 30px;
            border-top: 1px solid var(--ft-border);
        }

        .ft-copyright p {
            margin: 0;
            font-size: 14px;
            opacity: 0.8;
            display: flex;
            align-items: center;
        }

        .ft-copyright-logo {
            height: 20px;
            margin: 0 5px;
        }

        .ft-copyright a {
            color: var(--ft-primary);
        }

        .ft-copyright a:hover {
            color: var(--ft-primary-light);
        }

        .ft-footer-nav {
            display: flex;
            gap: 20px;
        }

        .ft-footer-nav a {
            color: var(--ft-text);
            font-size: 14px;
        }

        .ft-footer-nav a:hover {
            color: var(--ft-primary);
        }

        /* FIXED: Back to Top Button */
        .ft-back-to-top {
            position: fixed;
            bottom: 20px;
            right: 20px;
            width: 50px;
            height: 50px;
            background-color: var(--ft-primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            transition: all 0.5s ease;
            box-shadow: 0 5px 15px rgba(0, 136, 255, 0.5);
        }

        .ft-back-to-top.active {
            opacity: 1;
            visibility: visible;
        }

        .ft-back-to-top:hover {
            background-color: var(--ft-primary-dark);
            transform: translateY(-5px);
            color: white;
        }

        /* Improved Responsive Styles */
        @media (max-width: 1024px) {
            .ft-content {
                grid-template-columns: repeat(2, 1fr);
            }

            .ft-contact-row {
                flex-wrap: wrap;
            }

            .ft-contact-item {
                flex: 0 0 48%;
                margin-bottom: 20px;
            }

            .ft-client-slide {
                flex: 0 0 120px;
            }
        }

        @media (max-width: 768px) {
            .ft-content {
                grid-template-columns: 1fr;
                gap: 20px;
                /* Reduced gap */
            }

            .ft-contact-row {
                flex-direction: column;
                margin-bottom: 25px;
                /* Reduced margin */
            }

            .ft-contact-item {
                flex: 0 0 100%;
                margin-bottom: 15px;
                /* Reduced margin */
            }

            .ft-copyright {
                flex-direction: column;
                text-align: center;
                gap: 10px;
                /* Reduced gap */
            }

            .ft-footer-nav {
                justify-content: center;
            }

            .ft-company-second-column {
                margin-top: 0;
            }

            .ft-client-slide {
                flex: 0 0 100px;
            }

            .ft-section-title {
                margin-bottom: 15px;
                /* Reduced margin */
            }

            .ft-section {
                margin-bottom: 10px;
                /* Added to reduce space between sections */
            }

            .ft-clients-showcase {
                margin-bottom: 30px;
                /* Reduced margin */
            }
        }

        @media (max-width: 576px) {
            .ft-container {
                padding: 0 15px 30px;
                /* Reduced padding */
            }

            .ft-contact-row {
                padding: 15px 10px;
                /* Reduced padding */
            }

            .ft-contact-item {
                margin-bottom: 12px;
                /* Further reduced margin */
            }

            .ft-contact-icon {
                flex: 0 0 40px;
                /* Smaller icon size */
                margin-right: 10px;
                /* Less margin */
            }

            .ft-contact-details h4 {
                font-size: 15px;
                /* Smaller font */
            }

            .ft-contact-details p {
                font-size: 13px;
                /* Smaller font */
            }

            .ft-section-title {
                font-size: 16px;
                margin-bottom: 12px;
                /* Further reduced margin */
            }

            .ft-links-list li {
                margin-bottom: 8px;
                /* Reduced space between links */
            }

            .ft-subscribe-intro {
                font-size: 13px;
                margin-bottom: 15px;
                /* Reduced margin */
            }

            .ft-input-group input,
            .ft-btn-submit {
                padding: 12px;
                /* Smaller inputs */
            }

            .ft-client-slide {
                flex: 0 0 90px;
                height: 60px;
                /* Smaller client logos */
            }

            .ft-client-slide img {
                max-height: 40px;
            }

            .ft-content {
                gap: 15px;
                /* Further reduced gap */
                margin-bottom: 30px;
                /* Reduced margin */
            }
        }


        /* navbar */