 /* ===== CSS VARIABLES ===== */
        :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --dark-gradient: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        }

        /* ===== BASE STYLES ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Space Grotesk', sans-serif;
            line-height: 1.6;
            color: #1a202c;
            overflow-x: hidden;
            background: #fafafa;
            cursor: url('/Custom/cursor.png'), auto;
        }
        
        .font-mono { font-family: 'JetBrains Mono', monospace; }
        .font-dancing { font-family: 'Dancing Script', cursive; }
        .font-kaushan { font-family: 'Kaushan Script', cursive; }
        
        /* ===== CUSTOM SCROLLBAR ===== */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #f1f5f9; }
        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #667eea, #764ba2);
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #5a67d8, #6b46c1);
        }
        
        /* ===== PROGRESS BAR ===== */
        .top-progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            z-index: 99999;
            background: rgba(0, 0, 0, 0.1);
        }
        
        .progress-fill {
            height: 100%;
            background: linear-gradient(90deg, #667eea, #764ba2, #f093fb);
            width: 0%;
            transition: width 0.3s ease;
            box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
        }
        
        /* ===== NAVIGATION ===== */
        .nav-enhanced {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
        }
        
        .nav-enhanced.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 80px;
            position: relative;
        }

        .logo-section {
            display: flex;
            align-items: center;
            gap: 1rem;
            z-index: 10;
        }

        .logo-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);
            transition: all 0.3s ease;
        }

        .logo-circle::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 50%;
            background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #4facfe);
            background-size: 400% 400%;
            animation: logoGlow 3s ease-in-out infinite;
            z-index: -1;
        }

        .logo-circle:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.25);
        }

        @keyframes logoGlow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .logo-circle img {
            width: 40px;
            height: 40px;
            object-fit: contain;
            transition: all 0.3s ease;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-divider {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 2px;
            height: 40px;
            background: linear-gradient(to bottom, transparent, #667eea, transparent);
            opacity: 0.3;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 2rem;
        }

        .nav-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.25rem;
            border-radius: 12px;
            text-decoration: none;
            color: #374151;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .nav-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
            transition: left 0.5s ease;
        }

        .nav-item:hover {
            color: #3b82f6;
            background: rgba(59, 130, 246, 0.08);
            transform: translateY(-2px);
        }

        .nav-item:hover::before { left: 100%; }

        .nav-item i {
            color: #3b82f6;
            transition: all 0.3s ease;
        }

        .nav-item:hover i { transform: scale(1.2); }

        /* Dropdown */
        .dropdown-enhanced {
            position: absolute;
            right: 0;
            top: calc(100% + 10px);
            min-width: 350px;
            width: max-content;
            max-width: 450px;
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #e2e8f0;
            z-index: 1000;
        }
        
        .dropdown-enhanced.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-item {
            display: flex;
            align-items: center;
            padding: 15px 20px;
            text-decoration: none;
            color: #374151;
            transition: all 0.3s ease;
            border-radius: 0;
            margin: 0;
            white-space: nowrap;
            border-bottom: 1px solid #f1f5f9;
        }

        .dropdown-item:first-child {
            border-top-left-radius: 16px;
            border-top-right-radius: 16px;
        }

        .dropdown-item:last-child {
            border-bottom: none;
            border-bottom-left-radius: 16px;
            border-bottom-right-radius: 16px;
        }
        
        .dropdown-item:hover {
            background: linear-gradient(90deg, #f8fafc, #f1f5f9);
            color: #1f2937;
            transform: translateX(8px);
            border-left: 4px solid #3b82f6;
        }
        
        .dropdown-item i {
            margin-right: 15px;
            width: 20px;
            text-align: center;
            transition: all 0.3s ease;
        }

        .dropdown-item:hover i { transform: scale(1.2); }

        /* Mobile Navigation */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 0.5rem;
            gap: 4px;
        }

        .mobile-menu-btn span {
            width: 25px;
            height: 3px;
            background: #374151;
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
        .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
        .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

        .mobile-menu {
            position: fixed;
            top: 80px;
            left: -100%;
            width: 100%;
            height: calc(100vh - 80px);
            background: white;
            z-index: 999;
            transition: left 0.3s ease;
            padding: 2rem;
            overflow-y: auto;
        }

        .mobile-menu.active { left: 0; }

        .mobile-nav-item {
            display: block;
            padding: 1rem 0;
            color: #374151;
            text-decoration: none;
            border-bottom: 1px solid #f1f5f9;
            font-weight: 500;
        }

        .mobile-nav-item:hover { color: #3b82f6; }

        /* ===== HERO SECTION ===== */
        .hero-enhanced {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding-top: 80px;
        }
        
        .hero-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: linear-gradient(135deg, #667eea15, #764ba215);
            clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
        }

        .hero-enhanced::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 1px 1px, rgba(102, 126, 234, 0.08) 1px, transparent 0);
            background-size: 20px 20px;
            opacity: 0.5;
        }
        
        .hero-title-enhanced {
            font-family: 'Kaushan Script', cursive;
            background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            animation: heroTextFloat 4s ease-in-out infinite;
        }
        
        @keyframes heroTextFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-5px); }
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            text-align: center;
            padding: 1.5rem;
            background: rgba(255, 255, 255, 0.8);
            border-radius: 16px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(102, 126, 234, 0.1);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.15);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* ===== TALLY PARTNERSHIP SECTION ===== */
        .partnership-section {
            background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
            padding: 100px 0;
            color: #1a202c;
        }

        .partnership-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 25% 25%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 75% 75%, rgba(118, 75, 162, 0.06) 0%, transparent 50%);
        }

        .partnership-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 2px 2px, rgba(102, 126, 234, 0.05) 1px, transparent 0);
            background-size: 30px 30px;
            opacity: 0.3;
        }

        .partnership-content {
            position: relative;
            z-index: 10;
            text-align: center;
        }

        .partnership-title {
            font-family: 'Kaushan Script', cursive;
            background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
            animation: heroTextFloat 4s ease-in-out infinite;
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .partnership-subtitle {
            font-size: 1.3rem;
            margin-bottom: 4rem;
            opacity: 0.85;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            color: #4b5563;
        }

        .partnership-images-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 2rem;
        }

        .partnership-images-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 2rem;
            position: relative;
        }

        .partnership-image {
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .partnership-image.right {
            width: 100px;
            height: 165px;
        }

        .partnership-image.left{
            width: 95px;
            height: 165px;
        }

        .partnership-image.center {
            width: 140px;
            height: 70px;
        }

        .partnership-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 16px;
            transition: all 0.4s ease;
        }

        .partnership-image:hover {
            transform: translateY(-10px) scale(1.05);
        }

        /* Star-arrow connecting nodes */
        .partnership-images-grid .connection-line {
            position: absolute;
            top: 50%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #667eea, #764ba2, #f093fb, transparent);
            z-index: 1;
        }

        .partnership-image::before {
            content: '★';
            position: absolute;
            top: -30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 1.5rem;
            color: #667eea;
            text-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
            animation: starPulse 2s ease-in-out infinite;
        }

        .partnership-image.center::before {
            content: '↔';
            font-size: 1.2rem;
            top: -25px;
        }

        @keyframes starPulse {
            0%, 100% { transform: translateX(-50%) scale(1); }
            50% { transform: translateX(-50%) scale(1.2); }
        }

        /* ===== TIMELINE SECTION ===== */
        .timeline-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(to bottom, #667eea, #764ba2, #f093fb);
            border-radius: 2px;
            transform: translateX(-50%);
        }

        .timeline-item {
            position: relative;
            margin: 3rem 0;
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .timeline-item.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .timeline-item:nth-child(odd) { padding-right: calc(50% + 30px); }
        .timeline-item:nth-child(even) { padding-left: calc(50% + 30px); }

        .timeline-content {
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(102, 126, 234, 0.1);
            position: relative;
            transition: all 0.3s ease;
        }

        .timeline-content::before {
            content: '';
            position: absolute;
            top: 30px;
            width: 0;
            height: 0;
            border: 15px solid transparent;
        }

        .timeline-item:nth-child(odd) .timeline-content::before {
            right: -30px;
            border-left-color: white;
        }

        .timeline-item:nth-child(even) .timeline-content::before {
            left: -30px;
            border-right-color: white;
        }

        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
        }

        .timeline-dot {
            position: absolute;
            left: 50%;
            top: 30px;
            width: 20px;
            height: 20px;
            background: white;
            border: 4px solid #667eea;
            border-radius: 50%;
            transform: translateX(-50%);
            z-index: 2;
            transition: all 0.3s ease;
        }

        .timeline-item:hover .timeline-dot {
            transform: translateX(-50%) scale(1.3);
            border-color: #f093fb;
            box-shadow: 0 0 20px rgba(102, 126, 234, 0.5);
        }

        .timeline-icon {
            width: 60px;
            height: 60px;
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        .timeline-content:hover .timeline-icon { transform: scale(1.1) rotate(5deg); }

        /* ===== NEW SERVICES SECTION - MATCHING PAGE COLORS ===== */
        .services-new {
            background: white;
            position: relative;
            padding: 120px 0;
            overflow: hidden;
        }

        .services-new::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 20%, rgba(102, 126, 234, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(118, 75, 162, 0.02) 0%, transparent 50%);
        }

        .services-new-content {
            position: relative;
            z-index: 10;
        }

        .services-new-title {
            font-family: 'Kaushan Script', cursive;
            background: linear-gradient(135deg, #667eea, #764ba2, #f093fb);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            text-align: center;
        }

        .services-new-subtitle {
            font-size: 1.3rem;
            margin-bottom: 5rem;
            color: #4b5563;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            text-align: center;
        }

        .services-tabs-container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border: 1px solid #e2e8f0;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }

        .services-tabs-nav {
            display: flex;
            background: #f8fafc;
            border-bottom: 1px solid #e2e8f0;
            overflow-x: auto;
        }

        .service-tab-btn {
            flex: 1;
            padding: 1.5rem 1rem;
            background: none;
            border: none;
            color: #6b7280;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            min-width: 160px;
            position: relative;
        }

        .service-tab-btn:hover {
            color: #667eea;
            background: rgba(102, 126, 234, 0.05);
        }

        .service-tab-btn.active {
            color: #667eea;
            background: white;
        }

        .service-tab-btn.active::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(135deg, #667eea, #764ba2);
        }

        .service-tab-icon {
            width: 40px;
            height: 40px;
            opacity: 0.7;
            transition: all 0.3s ease;
        }

        .service-tab-btn:hover .service-tab-icon,
        .service-tab-btn.active .service-tab-icon {
            opacity: 1;
            transform: scale(1.1);
        }

        .service-tab-title {
            font-size: 0.9rem;
            text-align: center;
            line-height: 1.2;
        }

        .services-content-area {
            padding: 3rem;
            background: white;
        }

        .service-content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .service-content-text {
            color: #1a202c;
        }

        .service-content-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            color: #1f2937;
        }

        .service-content-description {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 2rem;
            color: #4b5563;
        }

        .service-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .service-features li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: #374151;
        }

        .service-features li::before {
            content: '✓';
            width: 20px;
            height: 20px;
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
            font-size: 0.8rem;
        }

        .service-image-area {
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .service-image-area img {
            max-width: 300px;
            width: 100%;
            height: auto;
            transition: all 0.3s ease;
        }

        .service-content-grid:hover .service-image-area img {
            transform: scale(1.05);
        }

        .service-cta-btn {
            background: linear-gradient(135deg, #667eea, #764ba2);
            color: white;
            padding: 1rem 2rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
        }

        .service-cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
            background: linear-gradient(135deg, #5a67d8, #6b46c1);
        }

        .service-cta-btn i {
            transition: transform 0.3s ease;
        }

        .service-cta-btn:hover i {
            transform: translateX(3px);
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .footer-logo-section,
            .footer-contact-section,
            .footer-center-section {
                align-items: center;
                text-align: center;
            }

            .footer-center-image {
                width: 200px;
                height: 140px;
            }

            .partnership-title { font-size: 3rem; }
            .partnership-images-grid { flex-direction: column; gap: 1.5rem; }
            .partnership-image.left, .partnership-image.right { width: 180px; height: 130px; }
            .partnership-image.center { width: 140px; height: 100px; }

            .services-grid-modern {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }
        }
        /* ===== BUTTONS ===== */
        .btn-enhanced {
            background: var(--primary-gradient);
            color: white;
            padding: 16px 32px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
            border: none;
            cursor: pointer;
        }
        
        .btn-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }
        
        .btn-enhanced:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
        }
        
        .btn-enhanced:hover::before { left: 100%; }

        .btn-outline-enhanced {
            border: 2px solid transparent;
            background: linear-gradient(white, white) padding-box,
                        var(--primary-gradient) border-box;
            color: #667eea;
            padding: 14px 30px;
            border-radius: 12px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .btn-outline-enhanced:hover {
            background: var(--primary-gradient);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
        }

        /* ===== FOOTER ===== */
        .footer-enhanced {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
            padding: 60px 0 30px;
        }
        
        .footer-enhanced::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 60%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
            clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
        }

        .footer-enhanced::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 1px 1px, rgba(102, 126, 234, 0.08) 1px, transparent 0);
            background-size: 20px 20px;
            opacity: 0.5;
        }

        .footer-content {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-main {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 4rem;
            align-items: start;
            margin-bottom: 3rem;
        }

        /* Footer Left */
        .footer-logo-section {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .footer-logo {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
            animation: logoFloat 6s ease-in-out infinite;
        }

        .footer-logo::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            border-radius: 50%;
            background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #4facfe);
            background-size: 400% 400%;
            animation: logoGlow 4s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-8px); }
        }

        .footer-logo img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

        .footer-company-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1a202c;
            background: linear-gradient(135deg, #667eea, #764ba2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .footer-description {
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        /* Footer Center */
        .footer-center-section {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .footer-center-image {
            width: 220px;
            height: 160px;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }

        .footer-center-image:hover { transform: translateY(-5px); }

        .footer-center-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            border-radius: 12px;
        }

        /* Footer Right */
        .footer-contact-section {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .contact-title {
            color: #1a202c;
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 2rem;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .contact-title::before {
            content: '';
            width: 30px;
            height: 3px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.5rem;
            color: #4b5563;
            transition: all 0.3s ease;
        }

        .contact-info-item:hover { transform: translateX(5px); }

        .contact-icon {
            width: 35px;
            height: 35px;
            background: var(--primary-gradient);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            flex-shrink: 0;
            margin-top: 2px;
            transition: all 0.3s ease;
        }

        .contact-info-item:hover .contact-icon { transform: scale(1.1); }

        .contact-details h4 {
            color: #1f2937;
            font-weight: 600;
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
        }

        .contact-details p {
            line-height: 1.4;
            color: #6b7280;
            font-size: 0.9rem;
        }

        .phone-numbers {
            font-family: 'JetBrains Mono', monospace;
            font-weight: 500;
        }

        .footer-bottom {
            border-top: 1px solid rgba(102, 126, 234, 0.15);
            padding-top: 2rem;
            text-align: center;
        }

        .footer-bottom p {
            color: #6b7280;
            margin-bottom: 0.5rem;
            font-size: 0.9rem;
        }

        .developer-credit {
            color: #9ca3af;
            font-size: 0.85rem;
        }

        .developer-credit a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .developer-credit a:hover { color: #4facfe; }

        /* ===== FLOATING CONTACT ===== */
        .floating-contact {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
        }

        .contact-trigger {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #25d366, #128c7e);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
            animation: contactPulse 2s infinite;
        }

        .contact-trigger::before {
            content: '';
            position: absolute;
            top: -5px;
            right: -5px;
            width: 25px;
            height: 25px;
            background: #ff4444;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
            font-weight: bold;
            animation: notificationBounce 1.5s infinite;
        }

        .contact-trigger::after {
            content: '7';
            position: absolute;
            top: -5px;
            right: -5px;
            width: 25px;
            height: 25px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 0.8rem;
            font-weight: bold;
            z-index: 1;
        }

        @keyframes contactPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes notificationBounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .contact-trigger:hover {
            transform: scale(1.1);
            box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
        }

        .contact-popup {
            position: absolute;
            bottom: 80px;
            right: 0;
            width: 400px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px) scale(0.9);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #e2e8f0;
            overflow: hidden;
        }

        .contact-popup.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0) scale(1);
        }

        .contact-popup-header {
            background: var(--primary-gradient);
            color: white;
            padding: 1.5rem;
            text-align: center;
        }

        .contact-popup-body {
            padding: 1rem;
            max-height: 400px;
            overflow-y: auto;
        }

        .contact-person {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            margin-bottom: 0.5rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid #f1f5f9;
        }

        .contact-person:hover {
            background: #f8fafc;
            transform: translateX(5px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }

        .contact-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-gradient);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            flex-shrink: 0;
        }

        .contact-details h4 {
            font-weight: 600;
            color: #1f2937;
            margin-bottom: 0.25rem;
        }

        .contact-details p {
            color: #6b7280;
            font-size: 0.9rem;
        }

        .contact-phone {
            color: #10b981;
            font-weight: 600;
            font-family: 'JetBrains Mono', monospace;
        }

        /* ===== ANIMATIONS ===== */
        .float-enhanced {
            animation: floatEnhanced 6s ease-in-out infinite;
        }
        
        @keyframes floatEnhanced {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(3deg); }
        }

        .slide-in-bottom {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .slide-in-bottom.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .slide-in-left.animate {
            opacity: 1;
            transform: translateX(0);
        }
        
        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .slide-in-right.animate {
            opacity: 1;
            transform: translateX(0);
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }

            .footer-logo-section,
            .footer-contact-section,
            .footer-center-section {
                align-items: center;
                text-align: center;
            }

            .footer-center-image {
                width: 200px;
                height: 140px;
            }

            .partnership-title { font-size: 3rem; }
            .partnership-images-grid { flex-direction: column; gap: 1.5rem; }
            .partnership-image.left, .partnership-image.right { width: 180px; height: 130px; }
            .partnership-image.center { width: 140px; height: 100px; }

            .services-hexagon-grid {
                width: 600px;
                height: 500px;
            }

            .service-hexagon {
                width: 160px;
                height: 160px;
                padding: 1rem;
            }

            .achievements-pentagon-container {
                height: 500px;
            }

            .achievement-center {
                width: 180px;
                height: 180px;
            }

            .achievement-center img {
                width: 120px;
                height: 120px;
            }
        }

        @media (max-width: 1024px) {
            .nav-menu { display: none; }
            .mobile-menu-btn { display: flex; }
            .nav-divider { display: none; }

            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                padding-left: 2rem;
                padding-right: 0;
            }

            .timeline-line { left: 10px; }
            .timeline-dot { left: 10px; }
            .timeline-content::before { display: none; }

            .hero-stats { 
                grid-template-columns: 1fr;
                gap: 1rem;
            }

            .contact-popup {
                width: 350px;
                right: -10px;
            }

            .partnership-section { padding: 80px 0; }
            .partnership-title { font-size: 2.5rem; }
            .partnership-images-grid .connection-line { display: none; }

            .services-new { padding: 80px 0; }
            .services-new-title { font-size: 3rem; }
            
            .services-tabs-nav {
                flex-wrap: wrap;
            }

            .service-tab-btn {
                min-width: 120px;
                padding: 1rem 0.5rem;
            }

            .service-tab-icon {
                width: 30px;
                height: 30px;
            }

            .service-tab-title {
                font-size: 0.8rem;
            }

            .service-content-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .services-content-area {
                padding: 2rem;
            }

            .service-content-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 768px) {
            .hero-title-enhanced { font-size: 2.5rem; }
            .timeline-container { padding: 0 1rem; }
            .logo-text { display: none; }
            .nav-container { padding: 0 1rem; }

            .contact-popup {
                width: 300px;
                right: -20px;
            }

            .footer-content { padding: 0 1rem; }
            .footer-center-image {
                width: 180px;
                height: 120px;
            }

            .partnership-title { font-size: 2rem; }
            .partnership-subtitle { font-size: 1.1rem; }
            .partnership-image.left, .partnership-image.right { width: 160px; height: 110px; }
            .partnership-image.center { width: 120px; height: 90px; }

            .services-new-title { font-size: 2.5rem; }
            
            .services-tabs-nav {
                flex-direction: column;
            }

            .service-tab-btn {
                min-width: auto;
                flex-direction: row;
                justify-content: flex-start;
                padding: 1rem 1.5rem;
                text-align: left;
            }

            .service-tab-icon {
                width: 24px;
                height: 24px;
            }

            .service-content-title {
                font-size: 1.8rem;
            }

            .services-content-area {
                padding: 1.5rem;
            }

            .service-image-area img {
                max-width: 250px;
            }
        }

        @media (max-width: 480px) {
            .contact-popup {
                width: 280px;
                right: -30px;
            }

            .floating-contact {
                bottom: 20px;
                right: 20px;
            }

            .contact-trigger {
                width: 60px;
                height: 60px;
            }

            .footer-center-image {
                width: 160px;
                height: 100px;
            }

            .partnership-section { padding: 60px 0; }
            .partnership-title { font-size: 1.8rem; }
            .partnership-image.left, .partnership-image.right { width: 140px; height: 100px; }
            .partnership-image.center { width: 100px; height: 80px; }

            .services-new { padding: 60px 0; }
            .services-new-title { font-size: 2rem; }

            .service-content-title {
                font-size: 1.5rem;
            }

            .service-content-description {
                font-size: 1rem;
            }

            .services-content-area {
                padding: 1rem;
            }

            .service-image-area img {
                max-width: 200px;
            }

            .service-cta-btn {
                padding: 0.8rem 1.5rem;
                font-size: 0.9rem;
            }
        }