:root {
            --primary: #0d47a1;
            --primary-dark: #0a2f6d;
            --primary-light: #1565c0;
            --accent: #ff6d00;
            --accent-hover: #e65100;
            --gray-50: #f8fafc;
            --gray-100: #f1f5f9;
            --gray-200: #e2e8f0;
            --gray-300: #cbd5e1;
            --gray-400: #94a3b8;
            --gray-500: #64748b;
            --gray-600: #475569;
            --gray-700: #334155;
            --gray-800: #1e293b;
            --gray-900: #0f172a;
            --white: #ffffff;
            --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.04);
            --shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
            --shadow-md: 0 8px 24px -4px rgba(15, 23, 42, 0.06), 0 4px 12px -2px rgba(15, 23, 42, 0.03);
            --shadow-lg: 0 16px 36px -8px rgba(15, 23, 42, 0.08), 0 8px 20px -4px rgba(15, 23, 42, 0.04);
            --shadow-xl: 0 24px 48px -12px rgba(15, 23, 42, 0.12), 0 12px 28px -6px rgba(15, 23, 42, 0.06);
            --radius-sm: 6px;
            --radius: 10px;
            --radius-lg: 16px;
            --radius-xl: 20px;
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --font-sans: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
            --max-width: 1280px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 80px;
            font-size: 16px;
        }

        body {
            font-family: var(--font-sans);
            color: var(--gray-800);
            background-color: var(--white);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* ========== TOP BAR ========== */
        .top-bar {
            background: var(--gray-900);
            color: var(--white);
            font-size: 0.8rem;
            padding: 8px 0;
            z-index: 1001;
            position: relative;
        }
        .top-bar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
        }
        .top-bar a {
            color: #cbd5e1;
            text-decoration: none;
            transition: var(--transition);
            white-space: nowrap;
        }
        .top-bar a:hover {
            color: var(--white);
        }
        .top-bar .top-contact {
            display: flex;
            gap: 18px;
            align-items: center;
            flex-wrap: wrap;
        }
        .top-bar .top-contact span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .top-bar .gst-badge {
            background: var(--accent);
            color: #fff;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .top-bar svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
        }

        /* ========== NAVIGATION ========== */
        .navbar {
            background: var(--white);
            border-bottom: 1px solid var(--gray-200);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .navbar.scrolled {
            box-shadow: var(--shadow-md);
        }
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
            padding-bottom: 12px;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .logo-icon {
            width: 44px;
            height: 44px;
            background: var(--primary);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 800;
            font-size: 1.2rem;
            letter-spacing: -0.5px;
            flex-shrink: 0;
        }
        .logo-text h1 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--gray-900);
            line-height: 1.2;
            letter-spacing: -0.3px;
        }
        .logo-text span {
            font-size: 0.7rem;
            color: var(--gray-500);
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 6px;
            align-items: center;
        }
        .nav-links a {
            text-decoration: none;
            color: var(--gray-700);
            font-weight: 500;
            font-size: 0.9rem;
            padding: 8px 16px;
            border-radius: var(--radius-sm);
            transition: var(--transition);
            white-space: nowrap;
            position: relative;
        }
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary);
            background: #e8f0fe;
        }
        .nav-links a.active {
            font-weight: 600;
        }
        .nav-cta {
            background: var(--accent) !important;
            color: #fff !important;
            font-weight: 600 !important;
            padding: 10px 20px !important;
            border-radius: 25px !important;
            transition: var(--transition);
        }
        .nav-cta:hover {
            background: var(--accent-hover) !important;
            color: #fff !important;
            box-shadow: var(--shadow-md);
            transform: translateY(-1px);
        }
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 8px;
            z-index: 1002;
        }
        .hamburger span {
            width: 26px;
            height: 2.5px;
            background: var(--gray-800);
            border-radius: 3px;
            transition: var(--transition);
            display: block;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }

        /* ========== CONTAINER ========== */
        .container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ========== HERO SECTION ========== */
        .hero {
            background: linear-gradient(160deg, #0a1628 0%, #0d2b5e 40%, #0d47a1 100%);
            color: var(--white);
            padding: 80px 0 90px;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -150px;
            right: -150px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 109, 0, 0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(21, 101, 192, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .hero .container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            padding: 6px 16px;
            border-radius: 25px;
            font-size: 0.8rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
            backdrop-filter: blur(10px);
        }
        .hero h2 {
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 800;
            line-height: 1.15;
            margin-bottom: 18px;
            letter-spacing: -0.5px;
        }
        .hero h2 span {
            color: var(--accent);
        }
        .hero p {
            font-size: 1.1rem;
            color: #cbd5e1;
            margin-bottom: 30px;
            max-width: 500px;
            line-height: 1.7;
        }
        .hero-buttons {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 13px 28px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            white-space: nowrap;
            letter-spacing: 0.2px;
        }
        .btn-primary {
            background: var(--accent);
            color: #fff;
        }
        .btn-primary:hover {
            background: var(--accent-hover);
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }
        .btn-outline {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.5);
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
        }
        .hero-image {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .hero-image .img-placeholder {
            width: 100%;
            max-width: 450px;
            aspect-ratio: 1;
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(255, 255, 255, 0.15);
            border-radius: var(--radius-xl);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px;
            padding: 30px;
            backdrop-filter: blur(5px);
        }
        .hero-image .brand-dot {
            width: 85px;
            height: 85px;
            border-radius: var(--radius);
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 12px;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            border: 1px solid rgba(255, 255, 255, 0.1);
            overflow: hidden;
        }
        .hero-image .brand-dot img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: var(--transition);
        }
        .hero-image .brand-dot:hover {
            background: var(--white);
            transform: scale(1.1) rotate(2deg);
            border-color: var(--accent);
            box-shadow: var(--shadow-lg);
        }

        /* ========== SECTION STYLES ========== */
        section {
            padding: 70px 0;
        }
        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }
        .section-header .section-tag {
            display: inline-block;
            background: #e8f0fe;
            color: var(--primary);
            padding: 5px 16px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }
        .section-header h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            font-weight: 700;
            color: var(--gray-900);
            letter-spacing: -0.3px;
        }
        .section-header p {
            color: var(--gray-600);
            margin-top: 8px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .bg-light {
            background: linear-gradient(180deg, #f8fafc 0%, #f0f4f9 100%);
        }

        /* ========== BRAND CARDS ========== */
        .brand-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
            gap: 16px;
        }
        .brand-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius);
            padding: 18px 12px;
            text-align: center;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--gray-700);
            transition: var(--transition);
            cursor: default;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            min-height: 125px;
            letter-spacing: 0.2px;
        }
        .brand-card:hover {
            border-color: var(--primary-light);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
            color: var(--primary);
            background: #fafcff;
        }
        .brand-card.featured {
            border-color: var(--accent);
            background: #fffaf5;
            font-weight: 700;
            color: var(--accent);
        }
        .brand-logo-container {
            height: 48px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .brand-logo-container img {
            max-height: 100%;
            max-width: 85%;
            object-fit: contain;
            opacity: 0.9;
            transition: var(--transition);
        }
        .brand-card:hover .brand-logo-container img {
            opacity: 1;
            transform: scale(1.05);
        }
        .brand-card span {
            font-size: 0.8rem;
            letter-spacing: 0.2px;
            margin-top: auto;
        }

        /* ========== SERVICES / PRODUCTS ========== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }
        .service-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
            position: relative;
            overflow: hidden;
        }
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--primary-light);
            border-radius: 0 4px 4px 0;
            transition: var(--transition);
        }
        .service-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
            border-color: var(--primary-light);
        }
        .service-card:hover::before {
            background: var(--accent);
        }
        .service-icon {
            width: 50px;
            height: 50px;
            background: #e8f0fe;
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 16px;
            font-size: 1.5rem;
        }
        .service-card h3 {
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--gray-900);
        }
        .service-card p {
            font-size: 0.9rem;
            color: var(--gray-700);
            line-height: 1.6;
        }

        /* ========== ABOUT ========== */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }
        .about-text h2 {
            font-size: clamp(1.6rem, 3vw, 2.1rem);
            font-weight: 700;
            color: var(--gray-900);
            margin-bottom: 16px;
        }
        .about-text p {
            color: var(--gray-600);
            margin-bottom: 20px;
            line-height: 1.7;
        }
        .about-highlights {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px;
            margin-top: 20px;
        }
        .highlight-item {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-weight: 500;
            color: var(--gray-700);
            font-size: 0.9rem;
        }
        .highlight-item .check-icon {
            width: 22px;
            height: 22px;
            background: #e8f5e9;
            color: #2e7d32;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 0.7rem;
            font-weight: 700;
        }
        .about-image {
            background: linear-gradient(135deg, #e8f0fe 0%, #f1f5f9 100%);
            border-radius: var(--radius-xl);
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 300px;
            border: 2px dashed var(--gray-300);
        }
        .about-image .company-stats {
            text-align: center;
        }
        .about-image .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: -1px;
        }
        .about-image .stat-label {
            color: var(--gray-500);
            font-weight: 500;
        }

        /* ========== BLOG ========== */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 24px;
        }
        .blog-card {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow-sm);
        }
        .blog-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-4px);
        }
        .blog-card-image {
            height: 180px;
            background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--gray-400);
        }
        .blog-card-body {
            padding: 20px;
        }
        .blog-card-body .blog-date {
            font-size: 0.75rem;
            color: var(--gray-400);
            font-weight: 500;
        }
        .blog-card-body h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin: 8px 0;
            color: var(--gray-900);
            line-height: 1.4;
        }
        .blog-card-body p {
            font-size: 0.85rem;
            color: var(--gray-700);
            line-height: 1.6;
        }
        .blog-card-body .read-more {
            display: inline-block;
            margin-top: 10px;
            color: var(--primary);
            font-weight: 600;
            font-size: 0.85rem;
            text-decoration: none;
        }
        .blog-card-body .read-more:hover {
            color: var(--accent);
        }

        /* ========== CONTACT ========== */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        .contact-info h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--gray-900);
        }
        .contact-info>p {
            color: var(--gray-500);
            margin-bottom: 24px;
        }
        .contact-detail {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            margin-bottom: 18px;
        }
        .contact-detail .icon-circle {
            width: 42px;
            height: 42px;
            background: #e8f0fe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 1.1rem;
        }
        .contact-detail strong {
            display: block;
            color: var(--gray-800);
            font-size: 0.9rem;
        }
        .contact-detail span {
            color: var(--gray-500);
            font-size: 0.85rem;
        }
        .contact-detail a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 500;
        }
        .contact-form {
            background: var(--white);
            border: 1px solid var(--gray-200);
            border-radius: var(--radius-lg);
            padding: 30px;
            box-shadow: var(--shadow);
        }
        .contact-form h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: var(--gray-900);
        }
        .form-group {
            margin-bottom: 16px;
        }
        .form-group label {
            display: block;
            font-weight: 600;
            font-size: 0.85rem;
            color: var(--gray-700);
            margin-bottom: 6px;
        }
        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid var(--gray-300);
            border-radius: var(--radius-sm);
            font-family: var(--font-sans);
            font-size: 0.9rem;
            transition: var(--transition);
            background: var(--gray-50);
            color: var(--gray-800);
        }
        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            outline: none;
            border-color: var(--primary-light);
            box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
            background: #fff;
        }
        .form-group textarea {
            resize: vertical;
            min-height: 100px;
        }
        .btn-submit {
            width: 100%;
            background: var(--primary);
            color: #fff;
            padding: 14px;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: var(--transition);
            letter-spacing: 0.3px;
        }
        .btn-submit:hover {
            background: var(--primary-dark);
            box-shadow: var(--shadow-md);
        }

        /* ========== FOOTER ========== */
        footer {
            background: var(--gray-900);
            color: #cbd5e1;
            padding: 50px 0 20px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-col h4 {
            color: #fff;
            font-weight: 700;
            margin-bottom: 14px;
            font-size: 1rem;
            letter-spacing: 0.3px;
        }
        .footer-col p,
        .footer-col a {
            font-size: 0.85rem;
            color: #94a3b8;
            text-decoration: none;
            display: block;
            margin-bottom: 6px;
            transition: var(--transition);
            line-height: 1.6;
        }
        .footer-col a:hover {
            color: #fff;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 18px;
            text-align: center;
            font-size: 0.8rem;
            color: #64748b;
        }
        .footer-credit-link {
            color: #ff9800;
            font-weight: 700;
            text-decoration: none;
            position: relative;
            letter-spacing: 0.3px;
            transition: color 0.3s ease, text-shadow 0.3s ease;
        }
        .footer-credit-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0%;
            height: 1.5px;
            background: #ff9800;
            transition: width 0.3s ease;
            border-radius: 2px;
        }
        .footer-credit-link:hover {
            color: #ffb74d;
            text-shadow: 0 0 10px rgba(255, 152, 0, 0.5);
        }
        .footer-credit-link:hover::after {
            width: 100%;
        }

        /* ========== WHATSAPP FLOAT ========== */
        .whatsapp-float {
            position: fixed;
            bottom: 108px;
            right: 29px; /* Centered above 58px call button */
            z-index: 999;
            background: #25d366;
            color: #fff;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-lg);
            cursor: pointer;
            transition: var(--transition);
            text-decoration: none;
            font-size: 1.6rem;
            animation: pulse-wa 2s infinite;
        }
        @keyframes pulse-wa {
            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
            }
            50% {
                box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
            }
        }
        .whatsapp-float:hover {
            transform: scale(1.1);
            animation: none;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1024px) {
            .hero .container {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero p {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            .hero-buttons {
                justify-content: center;
            }
            .hero-image .img-placeholder {
                max-width: 350px;
                margin: 0 auto;
            }
            .about-content {
                grid-template-columns: 1fr;
            }
            .contact-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .top-bar .container {
                flex-direction: column;
                text-align: center;
                gap: 4px;
            }
            .top-bar .top-contact {
                justify-content: center;
                gap: 10px;
                font-size: 0.7rem;
            }
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: #fff;
                flex-direction: column;
                padding: 80px 30px 30px;
                gap: 8px;
                box-shadow: var(--shadow-xl);
                transition: var(--transition);
                z-index: 1000;
                overflow-y: auto;
            }
            .nav-links.active {
                right: 0;
            }
            .nav-links a {
                font-size: 1rem;
                padding: 12px 16px;
                display: block;
            }
            .hamburger {
                display: flex;
            }
            .hero {
                padding: 50px 0 60px;
            }
            .hero-image .img-placeholder {
                padding: 20px;
                gap: 10px;
            }
            .hero-image .brand-dot {
                width: 55px;
                height: 55px;
                font-size: 0.6rem;
            }
            .brand-grid {
                grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
                gap: 10px;
            }
            .brand-card {
                padding: 14px 8px;
                font-size: 0.75rem;
                min-height: 55px;
            }
            section {
                padding: 45px 0;
            }
            .about-highlights {
                grid-template-columns: 1fr;
            }
            .services-grid {
                grid-template-columns: 1fr;
            }
            .blog-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            .whatsapp-float {
                width: 48px;
                height: 48px;
                font-size: 1.3rem;
                bottom: 108px;
                right: 33px; /* Centered above 58px call button */
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 0 14px;
            }
            .logo-text h1 {
                font-size: 1rem;
            }
            .hero h2 {
                font-size: 1.5rem;
            }
            .hero p {
                font-size: 0.9rem;
            }
            .btn {
                padding: 11px 20px;
                font-size: 0.85rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
            .contact-form {
                padding: 20px;
            }
        }

        /* Overlay for mobile nav */
        .nav-overlay {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            transition: var(--transition);
        }
        .nav-overlay.active {
            display: block;
        }
/* ========== MULTI-PAGE & EXTRA STYLES ========== */
.logo-img {
    height: 56px;
    width: 56px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--gray-200);
}

/* Subpage Hero */
.subpage-hero {
    background: linear-gradient(160deg, #0a1628 0%, #0d2b5e 40%, #0d47a1 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.subpage-hero h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}
.subpage-hero p {
    color: #cbd5e1;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Modals for Blog Reading */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    display: flex;
    opacity: 1;
}
.modal-container {
    background: var(--white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 750px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}
.modal-overlay.active .modal-container {
    transform: translateY(0);
}
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gray-100);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--gray-700);
    transition: var(--transition);
}
.modal-close:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}
.modal-body {
    padding: 40px;
}
.modal-banner {
    width: 100%;
    height: clamp(150px, 30vh, 260px);
    overflow: hidden;
    border-top-left-radius: var(--radius-lg);
    border-top-right-radius: var(--radius-lg);
    border-bottom: 1px solid var(--gray-200);
}
.modal-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-body .blog-meta {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 12px;
    display: block;
}
.modal-body h2 {
    font-size: 1.8rem;
    color: var(--gray-900);
    margin-bottom: 20px;
    line-height: 1.3;
}
.modal-body .blog-content p {
    color: var(--gray-700);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.7;
}
.modal-body .blog-content h3 {
    margin: 24px 0 12px;
    color: var(--gray-900);
    font-size: 1.25rem;
}
.modal-body .blog-content ul {
    margin-bottom: 16px;
    padding-left: 20px;
}
.modal-body .blog-content li {
    margin-bottom: 8px;
    color: var(--gray-700);
}

/* FAQ Styling */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}
.faq-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    transition: var(--transition);
}
.faq-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary-light);
}
.faq-card h4 {
    font-size: 1rem;
    color: var(--gray-900);
    margin-bottom: 8px;
    font-weight: 700;
}
.faq-card p {
    font-size: 0.9rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Image styling updates */
.featured-image-container {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: var(--shadow);
}
.featured-image-container img {
    width: 100%;
    height: auto;
    display: block;
}


/* ========== PRODUCTS PAGE STYLES ========== */
.products-container {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}
.sidebar-filter {
    width: 220px;
    flex-shrink: 0;
    position: sticky;
    top: 100px;
    height: fit-content;
    z-index: 10;
    transition: var(--transition);
}
.products-main {
    flex-grow: 1;
}
.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}
.results-count {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--gray-600);
}
.sort-select {
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--gray-300);
    font-family: var(--font-sans);
    font-size: 0.85rem;
    color: var(--gray-700);
    background: var(--white);
    cursor: pointer;
    outline: none;
    transition: var(--transition);
}
.sort-select:focus {
    border-color: var(--primary);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}
.category-rail {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 15px 0;
    margin-bottom: 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}
.category-rail::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
}
.category-pill {
    padding: 8px 18px;
    border-radius: 20px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    cursor: pointer;
    white-space: nowrap;
    font-weight: 500;
    font-size: 0.85rem;
    color: var(--gray-700);
    transition: var(--transition);
}
.category-pill:hover {
    background: var(--gray-200);
}
.category-pill.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.filter-group {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}
.filter-title {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--gray-900);
    border-bottom: 1px solid var(--gray-100);
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 10px;
    cursor: pointer;
    transition: var(--transition);
}
.checkbox-label:hover {
    color: var(--primary);
}
.checkbox-label input {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid var(--gray-300);
    cursor: pointer;
}
.btn-clear {
    width: 100%;
    padding: 10px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
}
.btn-clear:hover {
    background: var(--gray-200);
    color: var(--gray-900);
}
.product-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
    min-height: 380px;
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
    transform: translateY(-4px);
}
.card-badges {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    width: 100%;
}
.badge-category {
    background: #e8f0fe;
    color: var(--primary);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}
.badge-brand {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    height: 50px;
    display: flex;
    align-items: center;
}
.card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 4px;
    line-height: 1.3;
}
.card-model {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 12px;
    font-family: monospace;
}
.card-desc {
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
    margin-bottom: 18px;
    flex-grow: 1;
}
.card-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.spec-chip {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    color: var(--gray-600);
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 500;
}
.card-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}
.btn-card-primary {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 0;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}
.btn-card-primary:hover {
    background: var(--primary-dark);
}
.btn-card-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 8px 0;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}
.btn-card-outline:hover {
    background: #e8f0fe;
}
.search-container {
    display: flex;
    gap: 10px;
    max-width: 600px;
    margin: 20px auto 0;
}
.search-input {
    flex-grow: 1;
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
}
.search-input::placeholder {
    color: #cbd5e1;
}
.search-input:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
}
.btn-search {
    background: var(--accent);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.btn-search:hover {
    background: var(--accent-hover);
}

/* Success Toast Notification */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #2e7d32;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

/* Mobile Sidebar Toggle */
.btn-brands-toggle {
    display: none;
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    margin-bottom: 15px;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.filter-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(2px);
    z-index: 1004;
}
.filter-overlay.active {
    display: block;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .products-container {
        flex-direction: column;
    }
    .sidebar-filter {
        position: fixed;
        top: 0;
        left: -300px;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        z-index: 1005;
        padding: 80px 24px 24px;
        overflow-y: auto;
        display: block !important;
    }
    .sidebar-filter.active {
        left: 0;
    }
    .btn-brands-toggle {
        display: flex;
    }
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}


/* ========== PREMIUM LAYOUT UPGRADES ========== */
/* ========== PREMIUM LAYOUT UPGRADES & ANIMATIONS ========== */
@keyframes float-1 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) translateX(4px) rotate(1.5deg); }
}
@keyframes float-2 {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-14px) translateX(-4px) rotate(-1.5deg); }
}
.float-logo-1 { animation: float-1 6s ease-in-out infinite; }
.float-logo-2 { animation: float-1 6s ease-in-out infinite 1.5s; }
.float-logo-3 { animation: float-2 6s ease-in-out infinite 3s; }
.float-logo-4 { animation: float-2 6s ease-in-out infinite 4.5s; }

/* Hero Entrance Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content .hero-badge {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-content h2 {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.15s;
}
.hero-content p {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
}
.hero-content .hero-buttons {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.45s;
}
.hero-image {
    opacity: 0;
    animation: fadeInRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

/* Trust Badges Styling */
.hero-trust-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 35px;
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.6s;
    width: 100%;
}
@media (max-width: 576px) {
    .hero-trust-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}
.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 12px 16px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.hero-trust-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.3);
}
.hero-trust-badge .badge-icon {
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 109, 0, 0.1);
    color: var(--accent);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(255, 109, 0, 0.2);
}
.hero-trust-badge .badge-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.hero-trust-badge .badge-text strong {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.2px;
}
.hero-trust-badge .badge-text span {
    font-size: 0.7rem;
    color: #cbd5e1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-lg);
    padding: 25px;
    box-shadow: var(--shadow-lg);
}

.tech-grid-blue {
    background: linear-gradient(135deg, #0d47a1 0%, #1565c0 100%);
    background-image: linear-gradient(135deg, rgba(13, 71, 161, 0.95), rgba(21, 101, 192, 0.85)), 
                      linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: cover, 20px 20px, 20px 20px;
}
.tech-grid-dark {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    background-image: linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(30, 41, 59, 0.88)), 
                      linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: cover, 25px 25px, 25px 25px;
}
.tech-grid-orange {
    background: linear-gradient(135deg, #e65100 0%, #ff6d00 100%);
    background-image: linear-gradient(135deg, rgba(230, 81, 0, 0.95), rgba(255, 109, 0, 0.85)), 
                      linear-gradient(rgba(255,255,255,0.07) 1px, transparent 1px), 
                      linear-gradient(90deg, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: cover, 18px 18px, 18px 18px;
}


/* ========== PROFESSIONAL CARD HIGHLIGHTS ========== */
.card-highlight-blue {
    border-left: 5px solid #1565c0 !important;
    background: #f0f6ff !important;
}
.card-highlight-orange {
    border-left: 5px solid #e65100 !important;
    background: #fff6f0 !important;
}
.card-highlight-green {
    border-left: 5px solid #2e7d32 !important;
    background: #f1fbf2 !important;
}
.card-highlight-purple {
    border-left: 5px solid #6a1b9a !important;
    background: #faf0fc !important;
}
.card-highlight-red {
    border-left: 5px solid #c62828 !important;
    background: #fff5f5 !important;
}
.card-highlight-cyan {
    border-left: 5px solid #00838f !important;
    background: #f0fcfd !important;
}

/* Ensure highlight borders have clean alignment and rounding */
.product-card, .service-card, .blog-card {
    border-top-left-radius: 4px !important;
    border-bottom-left-radius: 4px !important;
}


/* ========== SERVICE ICON IMAGES ========== */
.service-icon.image-icon {
    background: var(--white) !important;
    border: 1px solid var(--gray-200);
    padding: 6px;
    overflow: hidden;
}
.service-icon.image-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* ========== BLOG COVERS ========== */
.blog-cover-sourcing {
    background: linear-gradient(135deg, rgba(13, 71, 161, 0.4), rgba(21, 101, 192, 0.5)), url('images/blog_sourcing.png') no-repeat center center !important;
    background-size: cover !important;
}
.blog-cover-cycle {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.4), rgba(30, 41, 59, 0.5)), url('images/blog_plc_cycle.png') no-repeat center center !important;
    background-size: cover !important;
}
.blog-cover-siemens {
    background: linear-gradient(135deg, rgba(230, 81, 0, 0.4), rgba(255, 109, 0, 0.5)), url('images/blog_siemens_evolution.png') no-repeat center center !important;
    background-size: cover !important;
}


/* ========== PREMIUM FORM STYLING OVERRIDES (DARK NAVY THEME) ========== */
.contact-form {
    background: linear-gradient(160deg, #0a192f 0%, #0d2348 60%, #112240 100%);
    border: 1px solid rgba(255, 109, 0, 0.18);
    border-radius: 22px;
    padding: 42px;
    box-shadow: 0 20px 60px -15px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255,255,255,0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
/* Decorative top strip */
.contact-form::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 5px;
    background: linear-gradient(90deg, var(--accent) 0%, #ff9800 50%, var(--accent) 100%);
}
/* Soft glow orb behind the form */
.contact-form::after {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 280px; height: 280px;
    background: radial-gradient(circle, rgba(255, 109, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.contact-form:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px -15px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 109, 0, 0.08);
    border-color: rgba(255, 109, 0, 0.32);
}
.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    letter-spacing: -0.4px;
}
.contact-form .form-subtitle {
    font-size: 0.85rem;
    color: #94a3b8;
    margin-bottom: 28px;
    line-height: 1.5;
    display: block;
}

/* Labels */
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    font-weight: 700;
    font-size: 0.72rem;
    color: #94a3b8;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.form-group:focus-within label {
    color: #ff9800;
}

/* Icon Wrapper */
.input-icon-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.input-icon-wrapper input,
.input-icon-wrapper select,
.input-icon-wrapper textarea {
    width: 100%;
    padding: 13px 16px 13px 44px !important;
    border: 1.5px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
}
.input-icon-wrapper input::placeholder,
.input-icon-wrapper textarea::placeholder {
    color: #475569;
}
.input-icon-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ff6d00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
    padding-right: 40px !important;
}
.input-icon-wrapper select option {
    background: #0a192f;
    color: #e2e8f0;
}
.input-icon-wrapper textarea {
    min-height: 110px;
    padding-top: 14px !important;
    resize: vertical;
}
.input-icon-wrapper .input-icon {
    position: absolute;
    left: 16px;
    color: #475569;
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.input-icon-wrapper.textarea-wrapper {
    align-items: flex-start;
}
.input-icon-wrapper.textarea-wrapper .input-icon {
    top: 16px;
}

/* Input Focus States */
.input-icon-wrapper input:focus,
.input-icon-wrapper select:focus,
.input-icon-wrapper textarea:focus {
    outline: none;
    border-color: rgba(255, 109, 0, 0.6);
    background: rgba(255, 109, 0, 0.04);
    box-shadow: 0 0 0 4px rgba(255, 109, 0, 0.08);
    color: #ffffff;
}
.input-icon-wrapper input:focus ~ .input-icon,
.input-icon-wrapper select:focus ~ .input-icon,
.input-icon-wrapper textarea:focus ~ .input-icon {
    color: var(--accent);
    transform: scale(1.15);
}

/* Submit Button — vivid orange gradient CTA */
.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #ff6d00 0%, #ff9800 100%) !important;
    color: #ffffff !important;
    padding: 15px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(255, 109, 0, 0.35);
    margin-top: 8px;
}
.btn-submit:hover {
    background: linear-gradient(135deg, #ff9800 0%, #ff6d00 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 109, 0, 0.5);
}
.btn-submit:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(255, 109, 0, 0.3);
}

/* ========== STRENGTH CARDS (Why Choose Us) ========== */
.strength-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}
.strength-card {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
}
.strength-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(13, 71, 161, 0.15);
}
.strength-card .strength-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}
.strength-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 10px;
}
.strength-card p {
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.6;
}

/* ========== PROCESS CARDS (Sourcing Workflow) ========== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}
.process-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 30px 24px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}
.process-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}
.process-card .process-number {
    width: 36px;
    height: 36px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 1rem;
    box-shadow: 0 0 10px rgba(255, 109, 0, 0.3);
}
.process-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}
.process-card p {
    font-size: 0.82rem;
    color: #e2e8f0;
    line-height: 1.6;
}

/* ========== INDUSTRY CARDS (Industries We Serve) ========== */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}
.industry-card {
    text-align: center;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    padding: 28px 20px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.industry-card .industry-icon {
    font-size: 2.2rem;
    display: block;
    margin-bottom: 12px;
}
.industry-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 6px;
}
.industry-card p {
    font-size: 0.82rem;
    color: var(--gray-700);
    line-height: 1.5;
}

/* ==================== STICKY CALL BUTTON ==================== */
.sticky-call-btn {
    position: fixed;
    bottom: 32px;
    right: 28px;
    z-index: 9999;
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
}

.sticky-call-btn .call-bubble {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00c6ff 0%, #0072ff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 24px rgba(0, 198, 255, 0.4), 0 2px 8px rgba(0,0,0,0.18);
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s ease;
    flex-shrink: 0;
    position: relative;
}

.sticky-call-btn .call-bubble svg {
    width: 26px;
    height: 26px;
    fill: #fff;
}

.sticky-call-btn .call-bubble::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2.5px solid rgba(0, 198, 255, 0.5);
    animation: callPulse 2s ease-out infinite;
}

.sticky-call-btn .call-bubble::after {
    content: '';
    position: absolute;
    inset: -16px;
    border-radius: 50%;
    border: 2px solid rgba(0, 198, 255, 0.22);
    animation: callPulse 2s ease-out infinite 0.45s;
}

@keyframes callPulse {
    0%   { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

.sticky-call-btn .call-label {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: var(--gray-900);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(0,0,0,0.22);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.sticky-call-btn .call-label::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 5px 0 5px 7px;
    border-style: solid;
    border-color: transparent transparent transparent var(--gray-900);
}

.sticky-call-btn:hover .call-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.sticky-call-btn:hover .call-bubble {
    transform: scale(1.1);
    box-shadow: 0 10px 32px rgba(0, 198, 255, 0.55), 0 4px 12px rgba(0,0,0,0.22);
}

.sticky-call-btn:active .call-bubble {
    transform: scale(0.94);
}

@media (max-width: 600px) {
    .sticky-call-btn {
        bottom: 20px;
        right: 18px;
    }
    .sticky-call-btn .call-bubble {
        width: 52px;
        height: 52px;
    }
    .sticky-call-btn .call-label {
        display: none;
    }
    .whatsapp-float {
        bottom: 88px;
        right: 20px; /* Centered above 52px call button */
    }
}
