
        :root {
            --primary: #07B0EF;
            --secondary: #00e5ff;
            --accent: #ff00d6;
            --light: #f8f9fe;
            --dark: #121212;
            --text-light: #333;
            --text-dark: #f0f0f0;
            --bg-light: #ffffff;
            --bg-dark: #1a1a1a;
            --card-light: #f0f3ff;
            --card-dark: #242424;
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            --scroll-progress: #ff0000;
            --link-color: #000000;
        }

        .dark-mode {
            --bg-primary: var(--bg-dark);
            --text-primary: var(--text-dark);
            --card-bg: var(--card-dark);
            --link-color: #ffffff;
        }

        .light-mode {
            --bg-primary: var(--bg-light);
            --text-primary: var(--text-light);
            --card-bg: var(--card-light);
            --link-color: #000000;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Times New Roman', serif;
            background-color: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            transition: var(--transition);
            min-height: 100vh;
        }

        /* Custom Cursor */
        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary);
            mix-blend-mode: difference;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 9999;
            transition: transform 0.2s;
        }

        .cursor-follower {
            position: fixed;
            width: 40px;
            height: 40px;
            border: 2px solid var(--secondary);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            z-index: 9998;
            transition: transform 0.4s, opacity 0.4s;
            opacity: 0.5;
        }

        /* Loading Screen */
        .loading-screen {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-primary);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 99999;
            transition: opacity 0.8s ease-out;
        }

        .logo-heartbeat {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            width: 150px;
            height: 150px;
            margin-bottom: 20px;
        }

        .logo-heartbeat img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            animation: heartbeat 1.5s infinite;
            filter: drop-shadow(0 0 10px rgba(7, 176, 239, 0.3));
            background: transparent !important;
            border-radius: 15px;
        }

        .logo-heartbeat span {
            font-family: 'Share Tech Mono', monospace;
            font-size: 48px;
            font-weight: bold;
            color: var(--primary);
            letter-spacing: 2px;
            animation: heartbeat 1.5s infinite;
            text-shadow: 0 0 10px rgba(7, 176, 239, 0.5);
        }

        .loading-text {
            margin-top: 20px;
            color: var(--text-primary);
            font-size: 28px;
            letter-spacing: 4px;
            text-transform: uppercase;
            font-weight: bold;
            text-align: center;
            padding: 0 20px;
        }

        /* Loading Bar */
        .loading-bar-container {
            width: 280px;
            height: 6px;
            background: rgba(7, 176, 239, 0.1);
            border-radius: 10px;
            margin-top: 30px;
            overflow: hidden;
        }

        .loading-bar {
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            border-radius: 10px;
            transition: width 0.5s ease;
            box-shadow: 0 0 10px rgba(7, 176, 239, 0.5);
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 20px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: var(--transition);
            transform: translateY(-100%);
            opacity: 0;
        }

        header.visible {
            transform: translateY(0);
            opacity: 1;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        .logo-icon {
            font-size: 28px;
            color: var(--primary);
            animation: pulse 3s infinite;
        }

        .logo-text {
            font-family: 'Share Tech Mono', monospace;
            font-size: 24px;
            font-weight: bold;
            color: var(--primary);
        }

        .company-logo {
            height: 50px;
            width: auto;
            max-width: 120px;
            border-radius: 9px;
        }

        .company-name.short {
            display: none;
        }

        .company-name.full {
            display: inline;
        }

        @media (max-width: 768px) {
            .company-name.short {
                display: inline;
            }
            .company-name.full {
                display: none;
            }
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        nav a {
            text-decoration: none;
            color: var(--link-color);
            font-weight: 600;
            position: relative;
            padding: 6px 0;
            transition: var(--transition);
        }

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

        nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: var(--transition);
        }

        nav a:hover::after {
            width: 100%;
        }

        .theme-toggle {
            background: none;
            border: none;
            cursor: pointer;
            font-size: 24px;
            color: var(--text-primary);
            transition: var(--transition);
        }

        .theme-toggle:hover {
            color: var(--primary);
            transform: rotate(30deg);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 24px;
            color: var(--text-primary);
            z-index: 1001;
        }

        /* Mobile Menu Overlay */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.7);
            z-index: 999;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
        }

        .menu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        /* Sections */
        section {
            min-height: 60vh;
            padding: 50px 10%;
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 1s ease, transform 1s ease;
        }

        /* First section after page banner - reduced top padding */
        .page-banner + section {
            padding-top: 60px;
            min-height: auto;
        }

        section.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* SPA Page Transition */
        section {
            transition: opacity 0.5s ease, transform 0.5s ease;
        }

        .page-loading {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 9999;
        }

        .page-loading::after {
            content: '';
            display: block;
            width: 40px;
            height: 40px;
            border: 3px solid var(--card-bg);
            border-top-color: var(--primary);
            border-radius: 50%;
            animation: spin 0.8s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        .section-title {
            font-size: 36px;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
            padding-bottom: 20px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
        }

        /* Home Section */
        #home {
            flex-direction: row;
            align-items: center;
            gap: 40px;
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
            padding-top: 130px;
        }

        .home-content {
            flex: 1;
            z-index: 2;
        }

        .home-image {
            flex: 1;
            height: 500px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            position: relative;
            transition: transform 0.3s ease;
            cursor: none;
            background: var(--card-bg);
            z-index: 2;
        }

        .home-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            filter: brightness(0.9) contrast(1.1);
        }

        .light-mode .home-image img {
            filter: brightness(1) contrast(1.1);
        }

        .home-title {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--primary);
            animation: fadeInUp 1s forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .home-subtitle {
            font-size: 20px;
            line-height: 1.6;
            margin-bottom: 30px;
            max-width: 600px;
            animation: fadeInUp 1s 0.3s forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .home-buttons {
            display: flex;
            gap: 20px;
            animation: fadeInUp 1s 0.6s forwards;
            opacity: 0;
            transform: translateY(30px);
        }

        .btn {
            padding: 12px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: none;
        }

        .btn-primary:hover {
            transform: translateY(-5px);
            box-shadow: none;
        }

        .btn-outline {
            border: 2px solid var(--primary);
            color: var(--primary);
            background: transparent;
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }

        /* About Section */
        #about {
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .about-container {
            display: flex;
            gap: 40px;
            align-items: center;
        }

        .about-content {
            flex: 1;
            z-index: 2;
        }

        .about-experience {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 40px;
            background: var(--card-bg);
            border-radius: 20px;
            z-index: 2;
            gap: 10px;
        }

        .experience-icon {
            font-size: 60px;
            color: var(--primary);
            margin-bottom: 20px;
            transition: var(--transition);
        }

        .experience-year {
            font-size: 48px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
            transition: var(--transition);
        }

        .experience-text {
            font-size: 18px;
            color: var(--text-primary);
            font-weight: 500;
            transition: var(--transition);
        }

        .about-experience:hover .experience-icon {
            transform: scale(1.1);
            color: var(--accent);
        }

        .about-experience:hover .experience-year {
            color: var(--primary);
        }

        .about-text {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* Services Section */
        #services {
            background: var(--bg-primary);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 20px;
        }

        .service-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: var(--transition);
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        }

        .service-icon {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--primary);
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            transform: scale(1.1);
            color: var(--secondary);
        }

        .service-title {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .service-description {
            font-size: 16px;
            line-height: 1.6;
            color: var(--text-primary);
        }

        .hidden-service {
            display: none;
        }

        .hidden-service.show {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        /* Stats Section */
        #stats {
            background: var(--bg-primary);
            min-height: 50vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
            gap: 10px;
            text-align: center;
        }

        .stat-card {
            padding: 8px;
            background: var(--card-bg);
            border-radius: 15px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            aspect-ratio: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .stat-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
            background: var(--primary);
        }

        .stat-card:hover .stat-icon,
        .stat-card:hover .stat-text,
        .stat-card:hover .stat-number {
            color: white;
        }

        .stat-icon {
            font-size: 24px;
            margin-bottom: 5px;
            color: var(--primary);
            transition: var(--transition);
        }

        .stat-number {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 4px;
            color: var(--text-primary);
            transition: var(--transition);
        }

        .stat-text {
            font-size: 14px;
            color: var(--text-primary);
            transition: var(--transition);
        }

        .stat-progress {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }

        .progress-circle {
            position: absolute;
            width: 80px;
            height: 80px;
            transform: rotate(-90deg);
        }

        .progress-bg {
            fill: none;
            stroke: transparent;
            stroke-width: 8;
        }

        .progress-bar {
            fill: none;
            stroke: var(--primary);
            stroke-width: 8;
            stroke-linecap: round;
            stroke-dasharray: 251; /* 2 * π * 40 */
            stroke-dashoffset: 251;
            transition: stroke-dashoffset 0.1s ease-out;
        }

        .stat-card:hover .progress-bar {
            stroke: white;
        }

        /* Clients Section */
        #clients {
            background: var(--bg-primary);
            min-height: 50vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .clients-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 30px;
            align-items: center;
        }

        .client-logo {
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: none;
            border-radius: 10px;
            transition: var(--transition);
            filter: none;
            opacity: 1;
        }

        .client-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
        }

        .client-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }

        /* Vision & Mission Section */
        #vision-mission {
            background: var(--bg-primary);
        }

        .vm-container {
            display: flex;
            gap: 40px;
        }

        .vm-card {
            flex: 1;
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .vm-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        }

        .vm-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
        }

        .vm-icon {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .vm-title {
            font-size: 24px;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .vm-text {
            font-size: 18px;
            line-height: 1.6;
        }

        /* Team Section */
        #team {
            background: var(--bg-primary);
        }

        .team-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .team-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        }

        .team-image {
            width: 180px;
            height: 180px;
            border-radius: 0;
            margin: 0 auto 20px;
            position: relative;
            overflow: hidden;
        }

        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .team-card:hover .team-image img {
            transform: scale(1.1);
        }

        .team-name {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .team-role {
            font-size: 16px;
            color: var(--secondary);
            margin-bottom: 15px;
            font-weight: 600;
        }

        .team-bio {
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
            color: var(--text-primary);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: all 0.5s ease;
        }

        .team-card.expanded .team-bio,
        .team-card.expanded .team-social {
            opacity: 1;
            max-height: 200px;
        }

        .social-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--card-bg);
            color: var(--primary);
            border: 1px solid var(--primary);
            transition: var(--transition);
            cursor: pointer;
            text-decoration: none;
        }

        .social-btn:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }

        .team-expand-btn {
            position: absolute;
            bottom: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            z-index: 2;
        }

        .team-expand-btn:hover {
            background: var(--accent);
            transform: scale(1.1);
        }

        .floating-social {
            position: fixed;
            top: 50%;
            right: 20px;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 15px;
            z-index: 100;
        }

        .floating-social-btn {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 24px;
            transition: var(--transition);
            cursor: pointer;
            text-decoration: none;
            animation: float 3s ease-in-out infinite;
        }

        .floating-social-btn:nth-child(1) { animation-delay: 0s; }
        .floating-social-btn:nth-child(2) { animation-delay: 0.2s; }
        .floating-social-btn:nth-child(3) { animation-delay: 0.4s; }
        .floating-social-btn:nth-child(4) { animation-delay: 0.6s; }

        .floating-social-btn:hover {
            transform: translateY(-5px) scale(1.2);
            animation: none;
            color: var(--accent);
        }

        /* Pricing Section */
        #pricing {
            background: var(--bg-primary);
        }

        .pricing-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .pricing-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
        }

        .pricing-card.featured {
            border: 2px solid var(--primary);
            transform: scale(1.05);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-header {
            margin-bottom: 30px;
            position: relative;
        }

        .featured-badge {
            position: absolute;
            top: -15px;
            right: 20px;
            background: var(--accent);
            color: white;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: bold;
        }

        .pricing-title {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--primary);
        }

        .pricing-price {
            font-size: 42px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--primary);
        }

        .pricing-period {
            font-size: 16px;
            color: var(--text-primary);
            opacity: 0.8;
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 30px;
        }

        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        /* Contact Section */
        #contact {
            background: var(--bg-primary);
        }

        .contact-container {
            display: flex;
            gap: 40px;
        }

        .contact-info {
            flex: 1;
        }

        .contact-form {
            flex: 1;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 25px;
        }

        .info-icon {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 30px;
            flex-shrink: 0;
        }

        .info-item div {
            flex: 1;
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 15px 20px;
            border-radius: 10px;
            border: 1px solid rgba(0, 0, 0, 0.1);
            background: var(--card-bg);
            color: var(--text-primary);
            font-family: 'Exo 2', sans-serif;
            transition: var(--transition);
        }

        .form-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: none;
        }

        textarea.form-input {
            min-height: 150px;
            resize: vertical;
        }

        /* WhatsApp Modal */
        .whatsapp-modal {
            position: fixed;
            bottom: 100px;
            left: 30px;
            width: 90%;
            max-width: 380px;
            background: var(--card-bg);
            border-radius: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(30px);
            transition: var(--transition);
            overflow: hidden;
        }

        .whatsapp-modal.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .whatsapp-header {
            background: var(--primary);
            padding: 15px 20px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .whatsapp-avatar {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #25d366;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
        }

        .whatsapp-info {
            flex: 1;
        }

        .whatsapp-name {
            color: white;
            font-weight: 600;
            font-size: 16px;
        }

        .whatsapp-status {
            color: white;
            font-size: 12px;
            background: var(--primary);
            padding: 2px 8px;
            border-radius: 10px;
            display: inline-block;
        }

        .close-modal {
            background: none;
            border: none;
            color: white;
            font-size: 20px;
            cursor: pointer;
            transition: var(--transition);
            padding: 5px;
        }

        .close-modal:hover {
            transform: scale(1.2);
        }

        .whatsapp-chat {
            padding: 20px;
            min-height: 200px;
            max-height: 250px;
            overflow-y: auto;
            background: var(--bg-primary);
        }

        .chat-message {
            max-width: 85%;
            padding: 10px 15px;
            border-radius: 10px;
            margin-bottom: 10px;
            position: relative;
            font-size: 14px;
            line-height: 1.4;
        }

        .chat-message.received {
            background: var(--card-bg);
            border-top-left-radius: 0;
            color: var(--text-primary);
        }

        .chat-message.sent {
            background: #25d366;
            margin-left: auto;
            border-top-right-radius: 0;
            color: white;
        }

        .chat-time {
            font-size: 10px;
            color: var(--text-primary);
            opacity: 0.6;
            text-align: right;
            margin-top: 5px;
        }

        .chat-message.sent .chat-time {
            color: rgba(255,255,255,0.8);
        }

        .typing-indicator {
            display: flex;
            gap: 4px;
            padding: 15px;
            background: var(--card-bg);
            border-radius: 10px;
            border-top-left-radius: 0;
            width: fit-content;
        }

        .typing-indicator span {
            width: 8px;
            height: 8px;
            background: var(--text-primary);
            opacity: 0.5;
            border-radius: 50%;
            animation: typing 1.4s infinite;
        }

        .typing-indicator span:nth-child(2) {
            animation-delay: 0.2s;
        }

        .typing-indicator span:nth-child(3) {
            animation-delay: 0.4s;
        }

        @keyframes typing {
            0%, 60%, 100% { transform: translateY(0); }
            30% { transform: translateY(-5px); }
        }

        .whatsapp-input-area {
            padding: 15px;
            background: var(--card-bg);
            display: flex;
            gap: 10px;
            align-items: center;
            border-top: 1px solid rgba(0,0,0,0.1);
        }

        .whatsapp-input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 25px;
            font-size: 14px;
            outline: none;
            background: var(--bg-primary);
            color: var(--text-primary);
        }

        .whatsapp-input::placeholder {
            color: var(--text-primary);
            opacity: 0.5;
        }

        .whatsapp-send-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: #25d366;
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .whatsapp-send-btn:hover {
            background: #128c7e;
            transform: scale(1.1);
        }

        .whatsapp-modal-content {
            position: relative;
        }

        .whatsapp-success i {
            font-size: 60px;
            color: #25d366;
            margin-bottom: 20px;
        }

        /* Scroll to top button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #2a27ff;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            z-index: 100;
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            transform: translateY(20px);
        }

        .scroll-to-top.visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .scroll-to-top:hover {
            transform: translateY(-5px);
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
        }

        .progress-circle {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            z-index: 101;
        }

        .progress-circle svg {
            transform: rotate(-90deg);
        }

        .progress-circle circle {
            fill: none;
            stroke: #ff0000;
            stroke-width: 3;
            stroke-dasharray: 126;
            stroke-dashoffset: 126;
            transition: stroke-dashoffset 0.3s;
        }

        /* WhatsApp float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            left: 30px;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25d366;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
            z-index: 100;
            transition: var(--transition);
            text-decoration: none;
            animation: pulse-whatsapp 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.1);
            animation: none;
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 60px 10% 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .footer-content {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: flex-start;
            gap: 40px;
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-section {
            flex: 1;
            text-align: center;
        }

        .company-section {
            max-width: 300px;
        }

        .links-section h4,
        .contact-section h4 {
            color: var(--secondary);
            margin-bottom: 15px;
            font-size: 18px;
            font-weight: 600;
            text-align: center;
        }

        .links-section ul {
            list-style: none;
            padding: 0;
            text-align: center;
        }

        .links-section li {
            margin-bottom: 10px;
        }

        .links-section a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
            position: relative;
        }

        .links-section a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }

        .contact-section p {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .contact-section i {
            color: var(--primary);
            width: 20px;
        }

        footer hr {
            border: none;
            height: 1px;
            background: rgba(255, 255, 255, 0.2);
            margin: 40px auto;
            width: 80%;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-family: 'Share Tech Mono', monospace;
            font-size: 28px;
            font-weight: bold;
            color: var(--primary);
            cursor: pointer;
            white-space: nowrap;
            transition: transform 0.3s ease;
            margin-bottom: 15px;
        }

        .footer-company-logo {
            height: 50px;
            width: auto;
            max-width: 120px;
            border-radius: 9px;
        }

        .footer-company-name.short {
            display: none;
        }

        .footer-company-name.full {
            display: inline;
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                gap: 30px;
                text-align: center;
                align-items: center; /* center children to avoid disorder on small screens */
            }
            .footer-section {
                text-align: center;
                width: 100%;
            }
            /* Make quick links wrap and center on small devices */
            .links-section ul {
                display: flex;
                flex-wrap: wrap;
                gap: 8px;
                justify-content: center;
                padding: 0;
                margin: 0 auto;
            }
            .links-section li {
                margin: 6px 10px;
            }
            .links-section a:hover {
                transform: none;
            }
            .footer-company-name.short {
                display: inline;
            }
            .footer-company-name.full {
                display: none;
            }
            footer {
                padding: 40px 5% 30px;
            }
        }

        .footer-logo:hover {
            transform: scale(1.05);
        }

        .copyright {
            margin-top: 20px;
            opacity: 0.8;
            font-size: 14px;
            text-align: center;
        }

        /* Page Banner / Breadcrumb Section */
        .page-banner {
            margin-top: 80px;
            padding: 60px 10% 40px;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 180px;
        }

        .page-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(7, 176, 239, 0.03);
            z-index: 0;
        }

        .dark-mode .page-banner::before {
            background: rgba(7, 176, 239, 0.08);
        }

        .page-banner-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .page-banner-title {
            font-size: 42px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
            letter-spacing: 1px;
            animation: fadeInUp 0.6s ease forwards;
        }

        .page-banner-breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            font-size: 15px;
            color: var(--text-primary);
            animation: fadeInUp 0.6s ease 0.2s forwards;
            opacity: 0;
        }

        .page-banner-breadcrumb a {
            color: var(--text-primary);
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .page-banner-breadcrumb a:hover {
            color: var(--primary);
        }

        .page-banner-breadcrumb .separator {
            color: var(--primary);
            font-size: 10px;
        }

        .page-banner-breadcrumb .current {
            color: var(--primary);
            font-weight: 600;
        }

        .page-banner-line {
            width: 60px;
            height: 4px;
            background: var(--primary);
            border-radius: 2px;
            margin-top: 20px;
            animation: fadeInUp 0.6s ease 0.4s forwards;
            opacity: 0;
        }

        @media (max-width: 768px) {
            .page-banner {
                margin-top: 70px;
                padding: 40px 5% 30px;
                min-height: 140px;
            }

            .page-banner-title {
                font-size: 32px;
            }

            .page-banner-breadcrumb {
                font-size: 14px;
            }
        }

        @media (max-width: 576px) {
            .page-banner {
                margin-top: 60px;
                padding: 30px 5% 25px;
                min-height: 120px;
            }

            .page-banner-title {
                font-size: 26px;
            }

            .page-banner-breadcrumb {
                font-size: 13px;
                gap: 8px;
            }
        }

        /* Animations */
        @keyframes heartbeat {
            0% { transform: scale(1); }
            5% { transform: scale(1.1); }
            10% { transform: scale(1); }
            15% { transform: scale(1.1); }
            20% { transform: scale(1); }
            100% { transform: scale(1); }
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(42, 39, 255, 0.7); }
            70% { box-shadow: 0 0 0 20px rgba(42, 39, 255, 0); }
            100% { box-shadow: 0 0 0 0 rgba(42, 39, 255, 0); }
        }

        @keyframes pulse-whatsapp {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideInDown {
            from { transform: translateY(-100%); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
            100% { transform: translateY(0px); }
        }

        @keyframes popIn {
            0% { transform: scale(0); opacity: 0; }
            70% { transform: scale(1.1); }
            100% { transform: scale(1); opacity: 1; }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            header {
                padding: 15px 30px;
            }
            
            nav ul {
                gap: 20px;
            }
            
            .home-title {
                font-size: 42px;
            }
        }

        @media (max-width: 992px) {
            header {
                padding: 15px 20px;
            }
            
            .logo-text {
                font-size: 20px;
            }
            
            nav ul {
                gap: 15px;
            }
            
            nav a {
                font-size: 14px;
            }
            
            .home-title {
                font-size: 36px;
            }
            
            .home-subtitle {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .about-container, .vm-container, .contact-container {
                flex-direction: column;
            }
            
            .about-experience {
                margin-top: 30px;
                padding: 30px;
            }
            
            .experience-icon {
                font-size: 50px;
            }
            
            .experience-year {
                font-size: 40px;
            }
            
            .floating-social {
                right: 10px;
            }
            
            .floating-social-btn {
                width: 45px;
                height: 45px;
                font-size: 20px;
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 12px 15px;
                flex-wrap: wrap;
            }
            
            .logo-icon {
                font-size: 22px;
            }
            
            .logo-text {
                font-size: 18px;
            }
            
            nav {
                order: 3;
                width: 100%;
                margin-top: 15px;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.5s ease;
            }
            
            nav.active {
                max-height: 300px;
            }
            
            nav ul {
                flex-direction: column;
                gap: 10px;
                padding: 15px 0;
            }
            
            nav a {
                display: block;
                padding: 10px 0;
                color: var(--link-color);
                font-size: 16px;
                text-align: center;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .theme-toggle {
                margin-right: 15px;
            }
            
            #home {
                flex-direction: column;
                padding-top: 150px;
                text-align: center;
            }
            
            .home-content, .home-image {
                flex: none;
                width: 100%;
            }
            
            .home-title {
                font-size: 32px;
            }
            
            .home-subtitle {
                font-size: 16px;
                margin: 0 auto 30px;
            }
            
            .home-buttons {
                flex-direction: column;
                gap: 15px;
                margin-bottom: 40px;
            }
            
            .btn {
                width: 100%;
                justify-content: center;
            }
            
            .section-title {
                font-size: 28px;
                margin-bottom: 40px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .progress-circle {
                width: 80px;
                height: 80px;
            }
            
            .progress-bg, .progress-bar {
                r: 35;
                stroke-dasharray: 219.9; /* 2 * π * 35 */
                stroke-dashoffset: 219.9;
            }
            
            .clients-container {
                grid-template-columns: repeat(3, 1fr);
            }
            
            .floating-social {
                flex-direction: row;
                top: auto;
                bottom: 80px;
                right: 50%;
                transform: translateX(50%);
                gap: 10px;
            }
            
            .floating-social-btn {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
            
            .whatsapp-float {
                bottom: 80px;
                left: 15px;
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
            
            .info-item {
                flex-direction: column;
                text-align: center;
            }

            /* Additional centering for small devices */
            .about-content {
                text-align: center;
            }

            .vm-card {
                text-align: center;
            }

            .contact-form {
                text-align: center;
            }

            .contact-section p {
                justify-content: center;
            }

            /* Loading screen adjustments */
            .logo-heartbeat {
                width: 120px;
                height: 120px;
            }

            .loading-text {
                font-size: 22px;
                letter-spacing: 2px;
            }
        }

        @media (max-width: 576px) {
            header {
                padding: 10px;
            }
            
            .logo-icon {
                font-size: 18px;
            }
            
            .logo-text {
                font-size: 16px;
            }
            
            .theme-toggle {
                font-size: 18px;
            }
            
            .mobile-menu-btn {
                font-size: 20px;
            }
            
            section {
                padding: 100px 5%;
            }
            
            .home-title {
                font-size: 28px;
            }
            
            .home-image {
                height: 250px;
            }
            
            .stats-container {
                grid-template-columns: 1fr;
            }
            
            .progress-circle {
                width: 70px;
                height: 70px;
            }
            
            .progress-bg, .progress-bar {
                r: 30;
                stroke-dasharray: 188.5; /* 2 * π * 30 */
                stroke-dashoffset: 188.5;
            }
            
            .clients-container {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .team-container, .pricing-container {
                grid-template-columns: 1fr;
            }
            
            .vm-card, .pricing-card {
                padding: 30px 20px;
            }
            
            .stat-number {
                font-size: 36px;
            }
            
            .floating-social {
                bottom: 70px;
            }
            
            .scroll-to-top, .progress-circle {
                bottom: 20px;
                right: 20px;
            }
            
            .whatsapp-float {
                bottom: 70px;
                left: 10px;
            }
            
            .footer-links {
                flex-direction: column;
                gap: 15px;
            }

            footer {
                padding: 30px 5% 20px;
            }

            /* Additional centering for very small devices */
            .about-content {
                text-align: center;
            }

            .vm-card {
                text-align: center;
            }

            .contact-form {
                text-align: center;
            }

            .contact-section p {
                justify-content: center;
            }

            /* Loading screen adjustments */
            .logo-heartbeat {
                width: 100px;
                height: 100px;
            }

            .logo-heartbeat span {
                font-size: 36px;
            }

            .loading-text {
                font-size: 18px;
                letter-spacing: 1px;
            }

            .loading-bar-container {
                width: 200px;
            }
        }
