
        :root {
            --primary-color: #2563eb;
            --secondary-color: #1e40af;
            --accent-color: #f59e0b;
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --dark-color: #1e293b;
            --light-color: #f8fafc;
            --gradient-start: #4f46e5;
            --gradient-end: #7c3aed;
        }

        * {
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
            margin: 0;
            padding: 0;

        }

        /* Top Contact Bar */
        .top-bar {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 10px 0;
            font-size: 14px;
        }

        .top-bar a {
            color: white;
            text-decoration: none;
        }

        .top-bar a:hover {
            color: var(--accent-color);
        }

        .top-contact,
        .top-social {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        /* Container improvements */
        .container {
            width: 100%;
            padding-right: 15px;
            padding-left: 15px;
            margin-right: auto;
            margin-left: auto;
        }


        @media (min-width: 576px) {
            .container {
                max-width: 540px;
            }
        }

        @media (min-width: 768px) {
            .container {
                max-width: 720px;
            }
        }

        @media (min-width: 992px) {
            .container {
                max-width: 960px;
            }
        }

        @media (min-width: 1200px) {
            .container {
                max-width: 1140px;
            }
        }

        /* Sticky Navigation */
        .navbar-custom {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            padding: 10px 0;
        }

        .navbar-brand {
            font-weight: bold;
            font-size: 1.5rem;
            color: var(--primary-color) !important;
            display: flex;
            align-items: center;
        }

        .navbar-nav .nav-link {
            font-family: "Libertinus Sans", sans-serif;
            margin: 0 12px;
            padding: 12px 20px !important;
            letter-spacing: 0.8px;
            position: relative;
            transition: all 0.4s ease;
            border-radius: 8px;
        }

        /* Gradient underline effect */
        .navbar-nav .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 3px;
            background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
            transition: all 0.4s ease;
            transform: translateX(-50%);
            border-radius: 10px;
        }

        .navbar-nav .nav-link:hover::before {
            width: 80%;
        }

        .navbar-nav .nav-link:hover {
            color: #667eea !important;
            transform: translateY(-2px);
        }

        /* Active state */
        .navbar-nav .nav-link.active {
            color: #667eea !important;
            background: rgba(102, 126, 234, 0.1);
        }

        .navbar-nav .nav-link.active::before {
            width: 80%;
        }

        .navbar-nav .nav-link:hover {
            color: var(--accent-color) !important;
            transform: translateY(-2px);
        }

        /* .btn-login {
        background: var(--primary-color);
        color: white;
        border: none;
        padding: 8px 20px;
        border-radius: 25px;
        transition: all 0.3s ease;
        white-space: nowrap;
    } */

        .btn-login:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
        }

        .logo-box {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #ff9800, #f44336);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            margin-right: 10px;
        }

        .brand-box-text {
            font-size: 1.3rem;
            font-weight: 700;
            color: #ff5722;
            letter-spacing: 0.5px;
        }

        /* Scrollable dropdown */
        .dropdown-menu-scrollable {
            max-height: 300px;
            overflow-y: auto;
        }

        .industry {
            padding: 30px 0;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
            url('../../image/banner1.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            overflow: hidden;
        }

        .industry::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
            z-index: 0;
            animation: pulse 8s ease-in-out infinite;
        }

        .industry::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
            z-index: 0;
            animation: pulse 10s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.7;
            }

            50% {
                transform: scale(1.05);
                opacity: 0.5;
            }
        }

        .industry-section-heading {
            font-size: 3.2rem;
            font-weight: 800;
            color: #fff;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, .8);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            /* -webkit-background-clip: text; */
            -webkit-text-fill-color: white;
            text-shadow: 0 5px 15px rgba(79, 70, 229, 0.15);
        }

        .industry-section-heading::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
        }

        .industry-section-content p {
            font-size: 1.25rem;
            color: #fff;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, .8);
            max-width: 800px;
            margin: 0 auto 2rem auto;
            line-height: 1.8;
            font-weight: 400;
            text-align: center;
        }

        .industry-row {
            margin-bottom: 30px;
        }

        .support-banner-card:hover::before {
            opacity: 1;
        }

        .support-banner-card:hover .industry-banner-icon {
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            transform: scale(1.05);
            box-shadow: 0 15px 30px rgba(79, 70, 229, 0.25);
        }

        .support-banner-card:hover .industry-banner-icon svg {
            color: blue !important;
            transform: scale(1.2) rotate(5deg);
        }

        .support-banner-card:hover .industry-banner-icon span {
            color: white;
            transform: translateY(5px);
        }

        .card-body {
            padding: 35px 25px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .industry-banner-icon {
            display: flex;
            flex-direction: column;
            align-items: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            padding: 25px 20px;
            border-radius: 16px;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            margin-bottom: 25px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }

        .industry-banner-icon::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0) 100%);
            transform: rotate(30deg);
            transition: all 0.5s ease;
            opacity: 0;
        }

        .support-banner-card:hover .industry-banner-icon::after {
            animation: shine 1.5s ease;
        }

        @keyframes shine {
            0% {
                left: -50%;
                opacity: 0;
            }

            10% {
                opacity: 0.8;
            }

            100% {
                left: 100%;
                opacity: 0;
            }
        }

        .industry-icons {
            width: 80px;
            height: 80px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: white;
            border-radius: 50%;
            margin-bottom: 20px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 2;
        }

        .industry-icons svg {
            font-size: 2.2rem;
            color: var(--primary-color);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .industry-banner-icon span {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--dark-color);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 2;
        }

        /* Animation for cards on scroll */
        .support-banner-card {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .support-banner-card.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Decorative elements */
        .floating-element {
            position: absolute;
            z-index: 0;
            opacity: 0.1;
        }

        .floating-element-1 {
            top: 15%;
            left: 5%;
            animation: float 6s ease-in-out infinite;
        }

        .floating-element-2 {
            bottom: 20%;
            right: 8%;
            animation: float 8s ease-in-out infinite 1s;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
            url('../../image/banner3.jpg');
            background-size: cover;
            background-position: center;
            min-height: 80vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
            overflow: hidden;
            padding: 40px 0;

        }

        .hero-content {
            text-align: center;
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 1rem;
        }

        .hero-content h1 {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 1.2rem;
            line-height: 1.2;
            animation: fadeInUp 1s ease;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
            text-align: left;
        }

        .hero-content p {
            font-size: 1rem;
            margin-bottom: 2rem;
            animation: fadeInUp 1s ease 0.2s both;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.6);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            text-align: left;
        }

        .hero-btn {
            background: var(--accent-color);
            color: white;
            border: none;
            padding: 1rem 2rem;
            font-size: 1rem;
            border-radius: 30px;
            transition: all 0.3s ease;
            animation: fadeInUp 1s ease 0.4s both;
            font-weight: 600;
            cursor: pointer;
            min-height: 50px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
        }

        .hero-btn:hover {
            background: #d97706;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(245, 158, 11, 0.4);
        }

        .hero-btn:active {
            transform: translateY(1px);
        }

        /* Additional mobile-friendly elements */
        .mobile-nav-toggle {
            display: none;
        }

        .hero-scroll-indicator {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            color: white;
            font-size: 1.5rem;
            animation: bounce 2s infinite;
            display: none;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes bounce {

            0%,
            20%,
            50%,
            80%,
            100% {
                transform: translateY(0) translateX(-50%);
            }

            40% {
                transform: translateY(-20px) translateX(-50%);
            }

            60% {
                transform: translateY(-10px) translateX(-50%);
            }
        }

        /* Stats Section */
        .stats-section {
            background: var(--section-bg);
            padding: 20px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;
            margin-top: 30px;
        }

        /* Compact Stat Card */
        .stat-card {
            background: var(--card-bg);
            padding: 20px 15px;
            border-radius: 16px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid #e5e7eb;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100%;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .stat-icon {
            font-size: 1.8rem;
            color: var(--accent-color);
            margin-bottom: 15px;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(245, 158, 11, 0.1);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .stat-card:hover .stat-icon {
            background: var(--accent-color);
            color: white;
            transform: scale(1.1);
        }

        .stat-number {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 8px;
            transition: all 0.3s ease;
        }

        .stat-card:hover .stat-number {
            color: var(--secondary-color);
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            font-weight: 600;
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
                gap: 15px;
            }

            .stat-card {
                padding: 15px 10px;
            }

            .stat-icon {
                font-size: 1.5rem;
                width: 30px;
                height: 30px;
                margin-bottom: 12px;
            }

            .stat-number {
                font-size: 1.5rem;
            }

            .stat-label {
                font-size: 0.85rem;
            }
        }

        /* Enhanced Services Section */
        .services-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }

        .services-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
            z-index: 0;
        }

        .services-section::after {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -80px;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
            z-index: 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 80px;
            padding: 0 15px;
            position: relative;
            z-index: 2;
        }

        .section-title h2 {
            font-size: 2.8rem;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 10px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 30px auto 0;
            line-height: 1.7;
        }

        .service-card {
            background: white;
            padding: 40px 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            text-align: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid #f1f5f9;
            height: 100%;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            opacity: 0;
            transition: all 0.4s ease;
            z-index: -1;
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
            border-color: transparent;
            color: white;
        }

        .service-card:hover::before {
            opacity: 1;
        }

        .service-card:hover h4,
        .service-card:hover p {
            color: white;
        }

        .service-card:hover .service-icon {
            background: white;
            transform: scale(1.1) rotate(5deg);
        }

        .service-card:hover .service-icon i {
            color: var(--primary-color);
        }

        .service-card:hover .service-btn {
            opacity: 1;
            transform: translateY(0);
        }

        .service-icon {
            width: 90px;
            height: 90px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 2.2rem;
            color: white;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
        }

        .service-icon::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            border: 2px solid var(--primary-color);
            opacity: 0;
            animation: pulse 2s infinite;
        }

        .service-card:hover .service-icon::after {
            opacity: 1;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }

            70% {
                transform: scale(1.4);
                opacity: 0;
            }

            100% {
                transform: scale(1);
                opacity: 0;
            }
        }

        .service-card h4 {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }

        .service-card p {
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 25px;
            transition: all 0.3s ease;
            text-align: justify;
        }

        .service-btn {
            display: inline-flex;
            align-items: center;
            color: var(--primary-color);
            font-weight: 600;
            text-decoration: none;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.3s ease;
        }

        .service-btn i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .service-btn:hover i {
            transform: translateX(5px);
        }

        .service-card:hover .service-btn {
            color: white;
        }

        /* Floating animation for cards */
        @keyframes float {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        .service-card {
            animation: float 6s ease-in-out infinite;
        }

        .service-card:nth-child(2) {
            animation-delay: 1s;
        }

        .service-card:nth-child(3) {
            animation-delay: 2s;
        }

        .service-card:nth-child(4) {
            animation-delay: 3s;
        }

        .sticky-buttons {
            position: fixed;
            right: 20px;
            bottom: 20px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .sticky-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            border: none;
            position: relative;
            /* overflow: hidden; */
        }

        /* .sticky-btn::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.1);
        top: 0;
        left: -100%;
        transform: skewX(-15deg);
        transition: all 0.5s ease;
    } */

        .sticky-btn:hover::after {
            left: 100%;
        }

        .sticky-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        .sticky-btn.support {
            background: linear-gradient(135deg, #3498db, #2980b9);
        }

        .sticky-btn.chat {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
        }

        .sticky-btn.quote {
            background: linear-gradient(135deg, #2ecc71, #27ae60);
        }

        .btn-tooltip {
            position: absolute;
            right: 70px;
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 15px;
            border-radius: 4px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .btn-tooltip::after {
            content: '';
            position: absolute;
            right: -6px;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
            border-left: 6px solid rgba(0, 0, 0, 0.8);
        }

        .sticky-btn:hover .btn-tooltip {
            opacity: 1;
            visibility: visible;
        }

        /* Media Queries for Responsiveness */

        /* Extra small devices (phones, 360px and down) */
        @media (max-width: 360px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-content p {
                font-size: 0.9rem;
            }

            .hero-btn {
                padding: 0.5rem 1.3rem;
                font-size: 0.20rem;
                width: 100%;
                max-width: 200px;
                margin-bottom: 9px;
            }

            .industry-section-heading {
                font-size: 2rem;
            }

            .industry-section-content p {
                font-size: 1rem;
            }

            .top-contact,
            .top-social {
                flex-direction: column;
                gap: 8px;
            }

            .stat-label {
                font-size: 0.9rem;
            }

            .service-card p {
                text-align: left;
            }

            .sticky-buttons {
                bottom: 15px;
                right: 15px;
            }

            .sticky-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .btn-tooltip {
                display: none;
            }

        }

        /* For devices up to 375px width */
        @media (max-width: 375px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-content p {
                font-size: 0.9rem;
            }

            .hero-btn {
                padding: 0.5rem 1.3rem;
                font-size: 0.20rem;
                width: 100%;
                max-width: 200px;
                margin-bottom: 9px;
            }

            .industry-section-heading {
                font-size: 2rem;
            }

            .industry-section-content p {
                font-size: 1rem;
            }

            .top-contact,
            .top-social {
                flex-direction: column;
                gap: 8px;
            }

            .stat-label {
                font-size: 0.9rem;
            }

            .service-card p {
                text-align: left;
            }

            .sticky-buttons {
                bottom: 15px;
                right: 15px;
            }

            .sticky-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .btn-tooltip {
                display: none;
            }
        }

        /* For devices up to 375px width */
        @media (max-width: 390px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-content p {
                font-size: 0.9rem;
            }

            .hero-btn {
                padding: 0.5rem 1.3rem;
                font-size: 0.20rem;
                width: 100%;
                max-width: 200px;
                margin-bottom: 9px;
            }

            .industry-section-heading {
                font-size: 2rem;
            }

            .industry-section-content p {
                font-size: 1rem;
            }

            .top-contact,
            .top-social {
                flex-direction: column;
                gap: 8px;
            }

            .stat-label {
                font-size: 0.9rem;
            }

            .service-card p {
                text-align: left;
            }

            .sticky-buttons {
                bottom: 15px;
                right: 15px;
            }

            .sticky-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
            }

            .btn-tooltip {
                display: none;
            }
        }


        /* Small devices (landscape phones, 576px and up) */
        @media (min-width: 576px) {
            .hero-section {
                padding: 2rem 1.5rem;
            }

            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content p {
                font-size: 1.1rem;
            }

            .hero-btn {
                padding: 1rem 2.2rem;
                font-size: 1.05rem;
            }

        }

        /* Medium devices (tablets, 768px and up) */
        @media (min-width: 768px) {
            .hero-section {
                padding: 2.5rem 2rem;
                min-height: 80vh;
            }

            .hero-content h1 {
                font-size: 3rem;
            }

            .hero-content p {
                font-size: 1.2rem;
            }

            .hero-btn {
                padding: 1.1rem 2.5rem;
                font-size: 1.1rem;

            }

            .hero-scroll-indicator {
                display: block;
            }

            .navbar-nav .nav-link {
                margin: 0;
                padding: 12px 15px !important;
            }


            .service-card,
            .stat-card {
                padding: 30px 20px;
            }
        }

        /* Large devices (desktops, 992px and up) */
        @media (min-width: 992px) {
            .hero-section {
                padding: 3rem;
            }

            .hero-content h1 {
                font-size: 3.5rem;
            }

            .hero-content p {
                font-size: 1.3rem;
                margin-bottom: 2.5rem;
            }

            .hero-btn {
                padding: 1rem 1rem;
                font-size: 1.2rem;
            }
        }

        /* Extra large devices (large desktops, 1200px and up) */
        @media (min-width: 1200px) {
            .hero-content {
                padding: 2rem;
            }

            .hero-content h1 {
                font-size: 2.3rem;
            }
        }

        /* Industry section responsiveness */
        @media (max-width: 1200px) {
            .industry-section-heading {
                font-size: 2.3rem;
            }

            .hero-content h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 992px) {
            .industry-section-heading {
                font-size: 2.5rem;
            }

            .industry-section-content p {
                font-size: 1.15rem;
            }

            .industry-icons {
                width: 70px;
                height: 70px;
            }

            .industry-icons svg {
                font-size: 2rem;
            }

            .industry-banner-icon span {
                font-size: 1.3rem;
            }

            .hero-content h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .industry {
                padding: 80px 0;
            }

            .industry-section-heading {
                font-size: 2.2rem;
            }

            .industry-section-heading::after {
                width: 80px;
                height: 4px;
            }

            .industry-banner-icon {
                padding: 20px 15px;
            }

            .industry-icons {
                width: 65px;
                height: 65px;
            }

            .industry-icons svg {
                font-size: 1.8rem;
            }

            .industry-banner-icon span {
                font-size: 1.2rem;
            }

            .hero-content h1 {
                font-size: 2.2rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .top-bar {
                text-align: center;
                padding: 15px 0;
            }

            .top-bar .container {
                flex-direction: column;
                gap: 10px;
            }

            .top-contact,
            .top-social {
                justify-content: center;
            }

            .stat-number {
                font-size: 2.2rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            .service-card h4 {
                font-size: 1.2rem;
            }

            .service-icon {
                width: 70px;
                height: 70px;
                font-size: 1.7rem;
            }

            .navbar-brand {
                font-size: 1.3rem;
            }

            .logo-box {
                width: 35px;
                height: 35px;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-btn {
                padding: 12px 25px;
                font-size: 1rem;
            }

            .stat-card,
            .service-card {
                padding: 25px 15px;
            }

            .stat-number {
                font-size: 2rem;
            }

            .stat-icon {
                font-size: 2.5rem;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .section-title p {
                font-size: 1rem;
            }

            .services-section,
            .stats-section {
                padding: 50px 0;
            }

            .navbar-custom {
                padding: 8px 0;
            }

            .brand-box-text {
                font-size: 1.1rem;
            }
        }

        /* Orientation adjustments */
        @media (max-height: 500px) and (orientation: landscape) {
            .hero-section {
                min-height: 120vh;
                padding-top: 4rem;
            }

            .hero-content h1 {
                font-size: 2rem;
                margin-bottom: 1rem;
            }

            .hero-content p {
                font-size: 0.9rem;
                margin-bottom: 1.5rem;
            }
        }

        /* Reduced motion for accessibility */
        @media (prefers-reduced-motion: reduce) {

            .hero-content h1,
            .hero-content p,
            .hero-btn,
            .hero-scroll-indicator,
            .floating-element,
            .industry::before,
            .industry::after,
            .service-card,
            .stat-card,
            .sticky-btn {
                animation: none;
                transition: none;
            }
        }

        /* Improve touch targets for mobile */
        .btn-login,
        .hero-btn,
        .nav-link {
            touch-action: manipulation;
        }

        /* Fix for dropdown menus on mobile */
        .dropdown-menu {
            border: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .dropdown-item {
            padding: 12px 20px;
        }

        /* Improve navbar toggler appearance */
        .navbar-toggler {
            border: none;
            padding: 0.25rem 0.5rem;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* Footer Styles */
        .custom-footer {
    background-color: #111111; /* Neutral Black */
    color: #f8f9fa;
    padding: 4rem 0 1rem;
    position: relative;
    font-family: 'Inter', -apple-system, sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-description {
    color: #999999;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.footer-heading {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

/* Neutral White accent line instead of Green/Blue */
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #ffffff; 
    opacity: 0.5;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    font-size: 0.9rem;
}

.footer-links a i {
    font-size: 0.65rem;
    margin-right: 10px;
    color: #666666; /* Neutral Gray icon */
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.contact-info p {
    font-size: 0.85rem;
    color: #999999;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 1rem;
}

.contact-info i {
    color: #ffffff; /* Neutral White icons */
    margin-top: 3px;
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px; /* More "Square/Pro" feel */
    color: #ffffff;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin: 1.5rem 0 1rem;
}

.copyright-text {
    font-size: 0.8rem;
}

.payment-methods i {
    font-size: 2.4rem;
    margin-left: 15px;
}

/* Mobile Alignment */
@media (max-width: 768px) {
    .custom-footer { text-align: left; }
    .footer-heading::after { left: 0; }
    .payment-methods { justify-content: flex-start; margin-top: 15px; }
}
