* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            overflow-x: hidden;
            color: #fff;
            background: #000;
        }

        /* Animated Background */
        .background {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #000000 0%, #0a0e1a 25%, #0f1628 50%, #0a0e1a 75%, #000000 100%);
            background-size: 400% 400%;
            animation: gradientShift 20s ease infinite;
            z-index: -2;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* Particle Canvas */
        #particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 20px;
            left: 50%;
            transform: translateX(-50%);
            width: 90%;
            max-width: 1400px;
            padding: 18px 35px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: rgba(15, 23, 42, 0.4);
            backdrop-filter: blur(20px) saturate(180%);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 20px;
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6),
                        inset 0 1px 0 rgba(59, 130, 246, 0.1),
                        0 0 0 1px rgba(59, 130, 246, 0.1);
        }

        nav::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, 
                transparent, 
                rgba(59, 130, 246, 0.5) 20%,
                rgba(34, 197, 94, 0.5) 40%,
                rgba(251, 191, 36, 0.5) 60%,
                rgba(249, 115, 22, 0.5) 80%, 
                transparent);
        }

        nav:hover {
            background: rgba(15, 23, 42, 0.6);
            border-color: rgba(59, 130, 246, 0.4);
            box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3),
                        inset 0 1px 0 rgba(59, 130, 246, 0.2),
                        0 0 0 1px rgba(59, 130, 246, 0.2);
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(135deg, #3b82f6 0%, #22c55e 50%, #eab308 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            z-index: 1;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, #3b82f6 0%, #22c55e 50%, #eab308 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 22px;
            color: white;
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.5),
                        inset 0 1px 0 rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(59, 130, 246, 0.3);
            transition: all 0.3s;
            position: relative;
            overflow: hidden;
        }

        .logo-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: shine 3s infinite;
        }

        @keyframes shine {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .logo-icon:hover {
            transform: scale(1.05) rotate(5deg);
            box-shadow: 0 6px 25px rgba(59, 130, 246, 0.7);
        }

        .mobile-menu-btn {
            display: none;
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 10px;
            padding: 10px 12px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .mobile-menu-btn:hover {
            background: rgba(59, 130, 246, 0.2);
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
        }

        .mobile-menu-btn span {
            display: block;
            width: 22px;
            height: 2px;
            background: #3b82f6;
            margin: 5px 0;
            transition: all 0.3s;
        }

        .nav-links {
            display: flex;
            gap: 8px;
            list-style: none;
            background: rgba(15, 23, 42, 0.4);
            padding: 8px;
            border-radius: 15px;
            border: 1px solid rgba(59, 130, 246, 0.15);
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            padding: 10px 22px;
            display: block;
            border-radius: 10px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .nav-links a::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(34, 197, 94, 0.2));
            opacity: 0;
            transition: opacity 0.3s;
            border-radius: 10px;
        }

        .nav-links a:hover::before {
            opacity: 1;
        }

        .nav-links a:hover {
            color: #fff;
            background: rgba(59, 130, 246, 0.15);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3),
                        inset 0 1px 0 rgba(59, 130, 246, 0.2);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 120px 5% 80px;
            position: relative;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 50px;
            font-size: 14px;
            margin-bottom: 30px;
            animation: float 3s ease-in-out infinite;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .badge-icon {
            width: 8px;
            height: 8px;
            background: #3b82f6;
            border-radius: 50%;
            box-shadow: 0 0 10px #3b82f6;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.2); }
        }

        h1 {
            font-size: 72px;
            font-weight: 900;
            margin-bottom: 20px;
            line-height: 1.2;
            color: #ffffff;
            text-shadow: 0 0 60px rgba(59, 130, 246, 0.4);
        }

        .gradient-text {
            background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 20%, #22c55e 40%, #84cc16 60%, #eab308 80%, #f59e0b 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientMove 6s ease infinite;
            display: inline-block;
            filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.5));
        }

        @keyframes gradientMove {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero p {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.6);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        /* Buttons */
        .button-group {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 80px;
        }

        .btn {
            padding: 16px 40px;
            font-size: 16px;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
            color: white;
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
        }

        .btn-secondary {
            background: rgba(15, 23, 42, 0.6);
            color: #3b82f6;
            border: 2px solid rgba(59, 130, 246, 0.4);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(59, 130, 246, 0.1);
            border-color: rgba(59, 130, 246, 0.6);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
        }

        /* Stats Section */
        .stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
        }

        .stat-card {
            background: rgba(15, 23, 42, 0.4);
            backdrop-filter: blur(20px);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .stat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            transition: left 0.6s;
        }

        .stat-card:hover::before {
            left: 100%;
        }

        /* Card 1 - Blue */
        .stat-card:nth-child(1) {
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .stat-card:nth-child(1)::before {
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
        }

        .stat-card:nth-child(1):hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(59, 130, 246, 0.6);
            box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4),
                        inset 0 1px 0 rgba(59, 130, 246, 0.2);
        }

        .stat-card:nth-child(1) .stat-number {
            background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
        }

        /* Card 2 - Orange */
        .stat-card:nth-child(2) {
            border: 1px solid rgba(249, 115, 22, 0.3);
        }

        .stat-card:nth-child(2)::before {
            background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
        }

        .stat-card:nth-child(2):hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(249, 115, 22, 0.6);
            box-shadow: 0 20px 60px rgba(249, 115, 22, 0.4),
                        inset 0 1px 0 rgba(249, 115, 22, 0.2);
        }

        .stat-card:nth-child(2) .stat-number {
            background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 20px rgba(249, 115, 22, 0.6));
        }

        /* Card 3 - Green */
        .stat-card:nth-child(3) {
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

        .stat-card:nth-child(3)::before {
            background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
        }

        .stat-card:nth-child(3):hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(34, 197, 94, 0.6);
            box-shadow: 0 20px 60px rgba(34, 197, 94, 0.4),
                        inset 0 1px 0 rgba(34, 197, 94, 0.2);
        }

        .stat-card:nth-child(3) .stat-number {
            background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 20px rgba(34, 197, 94, 0.6));
        }

        /* Card 4 - Yellow */
        .stat-card:nth-child(4) {
            border: 1px solid rgba(234, 179, 8, 0.3);
        }

        .stat-card:nth-child(4)::before {
            background: linear-gradient(90deg, transparent, rgba(234, 179, 8, 0.1), transparent);
        }

        .stat-card:nth-child(4):hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(234, 179, 8, 0.6);
            box-shadow: 0 20px 60px rgba(234, 179, 8, 0.4),
                        inset 0 1px 0 rgba(234, 179, 8, 0.2);
        }

        .stat-card:nth-child(4) .stat-number {
            background: linear-gradient(135deg, #eab308 0%, #fbbf24 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            filter: drop-shadow(0 0 20px rgba(234, 179, 8, 0.6));
        }

        .stat-number {
            font-size: 56px;
            font-weight: 900;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Tech Stack */
        .tech-stack {
            margin-top: 60px;
            text-align: center;
        }

        .tech-stack p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 20px;
        }

        .tech-icons {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .tech-icon {
            width: 70px;
            height: 70px;
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .tech-icon::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            opacity: 0;
            transition: opacity 0.4s;
        }

        .tech-icon:nth-child(1)::before {
            background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
        }

        .tech-icon:nth-child(2)::before {
            background: radial-gradient(circle, rgba(34, 197, 94, 0.3) 0%, transparent 70%);
        }

        .tech-icon:nth-child(3)::before {
            background: radial-gradient(circle, rgba(14, 165, 233, 0.3) 0%, transparent 70%);
        }

        .tech-icon:nth-child(4)::before {
            background: radial-gradient(circle, rgba(132, 204, 22, 0.3) 0%, transparent 70%);
        }

        .tech-icon:nth-child(5)::before {
            background: radial-gradient(circle, rgba(234, 179, 8, 0.3) 0%, transparent 70%);
        }

        .tech-icon:nth-child(5)::before {
            background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
        }

        .tech-icon:hover::before {
            opacity: 1;
            animation: rotate 4s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .tech-icon:nth-child(1):hover {
            transform: translateY(-10px) scale(1.1);
            border-color: rgba(59, 130, 246, 0.6);
            box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5);
            background: rgba(59, 130, 246, 0.15);
        }

        .tech-icon:nth-child(2):hover {
            transform: translateY(-10px) scale(1.1);
            border-color: rgba(34, 197, 94, 0.6);
            box-shadow: 0 15px 40px rgba(34, 197, 94, 0.5);
            background: rgba(34, 197, 94, 0.15);
        }

        .tech-icon:nth-child(3):hover {
            transform: translateY(-10px) scale(1.1);
            border-color: rgba(14, 165, 233, 0.6);
            box-shadow: 0 15px 40px rgba(14, 165, 233, 0.5);
            background: rgba(14, 165, 233, 0.15);
        }

        .tech-icon:nth-child(4):hover {
            transform: translateY(-10px) scale(1.1);
            border-color: rgba(132, 204, 22, 0.6);
            box-shadow: 0 15px 40px rgba(132, 204, 22, 0.5);
            background: rgba(132, 204, 22, 0.15);
        }

        .tech-icon:nth-child(5):hover {
            transform: translateY(-10px) scale(1.1);
            border-color: rgba(234, 179, 8, 0.6);
            box-shadow: 0 15px 40px rgba(234, 179, 8, 0.5);
            background: rgba(234, 179, 8, 0.15);
        }

        .tech-icon:nth-child(5):hover {
            transform: translateY(-10px) scale(1.1);
            border-color: rgba(249, 115, 22, 0.6);
            box-shadow: 0 15px 40px rgba(249, 115, 22, 0.5);
            background: rgba(249, 115, 22, 0.15);
        }

        /* Floating Elements */
        .floating-shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.15;
            animation: floatShape 25s ease-in-out infinite;
            pointer-events: none;
        }

        .shape-1 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, #3b82f6, #1e40af);
            top: 10%;
            left: 5%;
        }

        .shape-2 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, #22c55e, #15803d);
            bottom: 5%;
            right: 5%;
            animation-delay: -12s;
        }

        .shape-3 {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, #f97316, #c2410c);
            top: 50%;
            right: 10%;
            animation-delay: -6s;
        }

        @keyframes floatShape {
            0%, 100% { 
                transform: translate(0, 0) scale(1) rotate(0deg); 
            }
            25% { 
                transform: translate(40px, -50px) scale(1.1) rotate(90deg); 
            }
            50% { 
                transform: translate(-30px, 30px) scale(0.9) rotate(180deg); 
            }
            75% { 
                transform: translate(50px, 40px) scale(1.05) rotate(270deg); 
            }
        }

        /* Glow Effects */
        .glow-effect {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
            animation: pulse-glow 8s ease-in-out infinite;
        }

        @keyframes pulse-glow {
            0%, 100% { 
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(1); 
            }
            50% { 
                opacity: 0.8;
                transform: translate(-50%, -50%) scale(1.2); 
            }
        }

        /* Grid overlay effect */
        .grid-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
            z-index: -1;
        }

        /* Container */
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
        }

        /* About Section */
        .about-section {
            padding: 100px 0;
            position: relative;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 20px;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 50px;
            font-size: 13px;
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
            animation: float 3s ease-in-out infinite;
        }

        .about-text h2 {
            font-size: 52px;
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 24px;
            color: #ffffff;
        }

        .gradient-text-multi {
            background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 20%, #22c55e 40%, #84cc16 60%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientMove 6s ease infinite;
            display: inline-block;
        }

        .gradient-text-orange {
            background: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fbbf24 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        .about-description {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .about-features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 32px;
        }

        .feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
        }

        .feature-icon {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 16px;
        }

        .feature-icon.blue {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
            color: #3b82f6;
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .feature-icon.green {
            background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
            color: #22c55e;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

        .feature-icon.yellow {
            background: linear-gradient(135deg, rgba(234, 179, 8, 0.2), rgba(234, 179, 8, 0.1));
            color: #eab308;
            border: 1px solid rgba(234, 179, 8, 0.3);
        }

        .feature-icon.orange {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.1));
            color: #f97316;
            border: 1px solid rgba(249, 115, 22, 0.3);
        }

        .about-btn {
            margin-top: 8px;
        }

        .about-image {
            position: relative;
        }

        .image-card {
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 24px;
            padding: 60px;
            position: relative;
            overflow: hidden;
            min-height: 500px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s;
        }

        .image-card:hover {
            transform: translateY(-10px);
            border-color: rgba(59, 130, 246, 0.4);
            box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
        }

        .image-glow {
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse-glow 4s ease-in-out infinite;
        }

        .image-placeholder {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .team-icon {
            font-size: 120px;
            margin-bottom: 20px;
            filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.5));
        }

        .image-placeholder p {
            font-size: 24px;
            font-weight: 600;
            background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Services Section */
        .services-section {
            padding: 100px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-header h2 {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .section-header p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        @media (max-width: 1024px) {
            .services-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        .service-card {
            background: rgba(15, 23, 42, 0.4);
            backdrop-filter: blur(20px);
            border-radius: 24px;
            padding: 40px 32px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            transition: left 0.6s;
        }

        .service-card:hover::before {
            left: 100%;
        }

        /* Card Colors */
        .card-blue {
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .card-blue::before {
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
        }

        .card-blue:hover {
            transform: translateY(-10px);
            border-color: rgba(59, 130, 246, 0.6);
            box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
        }

        .card-blue .service-icon {
            color: #3b82f6;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .card-orange {
            border: 1px solid rgba(249, 115, 22, 0.3);
        }

        .card-orange::before {
            background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
        }

        .card-orange:hover {
            transform: translateY(-10px);
            border-color: rgba(249, 115, 22, 0.6);
            box-shadow: 0 20px 60px rgba(249, 115, 22, 0.4);
        }

        .card-orange .service-icon {
            color: #f97316;
            background: rgba(249, 115, 22, 0.1);
            border: 1px solid rgba(249, 115, 22, 0.3);
        }

        .card-green {
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

        .card-green::before {
            background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.1), transparent);
        }

        .card-green:hover {
            transform: translateY(-10px);
            border-color: rgba(34, 197, 94, 0.6);
            box-shadow: 0 20px 60px rgba(34, 197, 94, 0.4);
        }

        .card-green .service-icon {
            color: #22c55e;
            background: rgba(34, 197, 94, 0.1);
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

        .card-yellow {
            border: 1px solid rgba(234, 179, 8, 0.3);
        }

        .card-yellow::before {
            background: linear-gradient(90deg, transparent, rgba(234, 179, 8, 0.1), transparent);
        }

        .card-yellow:hover {
            transform: translateY(-10px);
            border-color: rgba(234, 179, 8, 0.6);
            box-shadow: 0 20px 60px rgba(234, 179, 8, 0.4);
        }

        .card-yellow .service-icon {
            color: #eab308;
            background: rgba(234, 179, 8, 0.1);
            border: 1px solid rgba(234, 179, 8, 0.3);
        }

        .card-cyan {
            border: 1px solid rgba(14, 165, 233, 0.3);
        }

        .card-cyan::before {
            background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
        }

        .card-cyan:hover {
            transform: translateY(-10px);
            border-color: rgba(14, 165, 233, 0.6);
            box-shadow: 0 20px 60px rgba(14, 165, 233, 0.4);
        }

        .card-cyan .service-icon {
            color: #0ea5e9;
            background: rgba(14, 165, 233, 0.1);
            border: 1px solid rgba(14, 165, 233, 0.3);
        }

        .card-lime {
            border: 1px solid rgba(132, 204, 22, 0.3);
        }

        .card-lime::before {
            background: linear-gradient(90deg, transparent, rgba(132, 204, 22, 0.1), transparent);
        }

        .card-lime:hover {
            transform: translateY(-10px);
            border-color: rgba(132, 204, 22, 0.6);
            box-shadow: 0 20px 60px rgba(132, 204, 22, 0.4);
        }

        .card-lime .service-icon {
            color: #84cc16;
            background: rgba(132, 204, 22, 0.1);
            border: 1px solid rgba(132, 204, 22, 0.3);
        }

        .service-icon {
            width: 80px;
            height: 80px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: all 0.3s;
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .service-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
        }

        .service-card p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .service-arrow {
            font-size: 24px;
            color: rgba(255, 255, 255, 0.4);
            transition: all 0.3s;
        }

        .service-card:hover .service-arrow {
            color: #ffffff;
            transform: translateX(5px);
        }

        /* Solutions Section */
        .solutions-section {
            padding: 100px 0;
            position: relative;
        }

        .solutions-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .solutions-header h2 {
            font-size: 52px;
            font-weight: 900;
            line-height: 1.3;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .gradient-text-blue {
            background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        .gradient-text-cyan {
            background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
        }

        .solutions-subtitle {
            font-size: 20px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 12px;
        }

        .solutions-description {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Tab Navigation */
        .tab-navigation {
            display: flex;
            justify-content: center;
            gap: 16px;
            margin-bottom: 60px;
            flex-wrap: wrap;
        }

        .tab-btn {
            padding: 12px 32px;
            font-size: 15px;
            font-weight: 600;
            background: rgba(15, 23, 42, 0.6);
            color: rgba(255, 255, 255, 0.7);
            border: 2px solid rgba(59, 130, 246, 0.3);
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            backdrop-filter: blur(10px);
        }

        .tab-btn:hover {
            background: rgba(59, 130, 246, 0.1);
            border-color: rgba(59, 130, 246, 0.5);
            color: #ffffff;
            transform: translateY(-2px);
        }

        .tab-btn.active {
            background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
            border-color: transparent;
            color: #ffffff;
            box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
        }

        /* Tab Content */
        .tab-content {
            display: none;
        }

        .tab-content.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Solutions Grid */
        .solutions-grid {
            display: grid;
            grid-template-columns: 1fr 1.2fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .solutions-column {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        /* Solution Cards */
        .solution-card {
            background: rgba(15, 23, 42, 0.4);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 20px;
            padding: 28px;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .solution-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
            transition: left 0.6s;
        }

        .solution-card:hover::before {
            left: 100%;
        }

        .solution-card:hover {
            transform: translateX(10px);
            border-color: rgba(59, 130, 246, 0.4);
            box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
        }

        .solutions-column:last-child .solution-card:hover {
            transform: translateX(-10px);
        }

        .solution-icon-wrapper {
            width: 60px;
            height: 60px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.3s;
        }

        .solution-card:hover .solution-icon-wrapper {
            transform: scale(1.1) rotate(5deg);
        }

        /* Blue Icon Cards */
        .card-blue-icon .solution-icon-wrapper {
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
            border: 1px solid rgba(59, 130, 246, 0.3);
            color: #3b82f6;
        }

        .card-blue-icon:hover {
            border-color: rgba(59, 130, 246, 0.5);
            box-shadow: 0 10px 40px rgba(59, 130, 246, 0.3);
        }

        /* Cyan Icon Cards */
        .card-cyan-icon .solution-icon-wrapper {
            background: linear-gradient(135deg, rgba(14, 165, 233, 0.2), rgba(14, 165, 233, 0.1));
            border: 1px solid rgba(14, 165, 233, 0.3);
            color: #0ea5e9;
        }

        .card-cyan-icon:hover {
            border-color: rgba(14, 165, 233, 0.5);
            box-shadow: 0 10px 40px rgba(14, 165, 233, 0.3);
        }

        /* Orange Icon Cards */
        .card-orange-icon .solution-icon-wrapper {
            background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.1));
            border: 1px solid rgba(249, 115, 22, 0.3);
            color: #f97316;
        }

        .card-orange-icon:hover {
            border-color: rgba(249, 115, 22, 0.5);
            box-shadow: 0 10px 40px rgba(249, 115, 22, 0.3);
        }

        .solution-content h3 {
            font-size: 18px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 8px;
        }

        .solution-content p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }

        /* Center Image */
        .solutions-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .center-image-card {
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 24px;
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
            min-height: 600px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s;
        }

        .center-image-card:hover {
            transform: scale(1.02);
            border-color: rgba(59, 130, 246, 0.4);
            box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
        }

        .image-glow-center {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse-glow 5s ease-in-out infinite;
        }

        .image-placeholder-center {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .placeholder-icon {
            font-size: 140px;
            margin-bottom: 20px;
            filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.6));
            animation: float 4s ease-in-out infinite;
        }

        .image-placeholder-center p {
            font-size: 24px;
            font-weight: 700;
            background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* CTA/Contact Section */
        .cta-section {
            padding: 100px 0;
            position: relative;
        }

        .cta-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .cta-header h2 {
            font-size: 56px;
            font-weight: 900;
            line-height: 1.3;
            margin-bottom: 16px;
            color: #ffffff;
        }

        .cta-header p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.6);
        }

        .cta-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        /* CTA Image */
        .cta-image-card {
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 24px;
            padding: 60px 40px;
            position: relative;
            overflow: hidden;
            min-height: 650px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s;
        }

        .cta-image-card:hover {
            transform: scale(1.02);
            border-color: rgba(59, 130, 246, 0.4);
            box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
        }

        .image-glow-cta {
            position: absolute;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation: pulse-glow 6s ease-in-out infinite;
        }

        .cta-placeholder {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .placeholder-icon-cta {
            font-size: 160px;
            margin-bottom: 20px;
            filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.6));
            animation: float 5s ease-in-out infinite;
        }

        .cta-placeholder p {
            font-size: 26px;
            font-weight: 700;
            background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
        }

        .float-circle {
            position: absolute;
            border-radius: 50%;
            background: rgba(59, 130, 246, 0.1);
            border: 1px solid rgba(59, 130, 246, 0.3);
        }

        .circle-1 {
            width: 80px;
            height: 80px;
            top: 10%;
            left: 10%;
            animation: float 6s ease-in-out infinite;
        }

        .circle-2 {
            width: 60px;
            height: 60px;
            top: 70%;
            right: 15%;
            animation: float 8s ease-in-out infinite;
            animation-delay: -2s;
        }

        .circle-3 {
            width: 100px;
            height: 100px;
            bottom: 15%;
            left: 15%;
            animation: float 7s ease-in-out infinite;
            animation-delay: -4s;
        }

        /* Form Card */
        .form-card {
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(20px);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 24px;
            padding: 50px 45px;
            position: relative;
            overflow: hidden;
            transition: all 0.4s;
        }

        .form-card:hover {
            border-color: rgba(59, 130, 246, 0.4);
            box-shadow: 0 20px 60px rgba(59, 130, 246, 0.25);
        }

        .form-header {
            margin-bottom: 35px;
        }

        .form-header h3 {
            font-size: 36px;
            font-weight: 900;
            color: #ffffff;
            line-height: 1.2;
        }

        /* Form Inputs */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .form-group {
            position: relative;
        }

        .form-input {
            width: 100%;
            padding: 16px 20px;
            background: rgba(15, 23, 42, 0.8);
            border: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 12px;
            color: #ffffff;
            font-size: 15px;
            transition: all 0.3s;
            outline: none;
        }

        .form-input::placeholder {
            color: rgba(255, 255, 255, 0.4);
        }

        .form-input:focus {
            border-color: rgba(59, 130, 246, 0.5);
            background: rgba(15, 23, 42, 0.9);
            box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
        }

        .form-textarea {
            resize: vertical;
            min-height: 120px;
        }

        .input-border {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #3b82f6, #0ea5e9, #22c55e);
            transition: width 0.4s;
            border-radius: 2px;
        }

        .form-input:focus + .input-border {
            width: 100%;
        }

        /* Submit Button */
        .submit-btn {
            margin-top: 10px;
            padding: 16px 40px;
            background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
            color: white;
            border: none;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
            transition: all 0.3s;
            box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .submit-btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(34, 197, 94, 0.5);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        .submit-btn span,
        .submit-btn svg {
            position: relative;
            z-index: 1;
        }

        /* Decorative Corner */
        .form-corner-decor {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 150px;
            height: 150px;
            border-bottom: 3px solid rgba(249, 115, 22, 0.3);
            border-right: 3px solid rgba(249, 115, 22, 0.3);
            border-bottom-right-radius: 24px;
            pointer-events: none;
        }

        .form-corner-decor::before {
            content: '';
            position: absolute;
            bottom: -3px;
            right: -3px;
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.6));
        }

        .form-corner-decor::after {
            content: '';
            position: absolute;
            bottom: -3px;
            right: -3px;
            width: 3px;
            height: 80px;
            background: linear-gradient(180deg, transparent, rgba(249, 115, 22, 0.6));
        }

        /* Responsive */
        @media (max-width: 768px) {
            h1 { font-size: 42px; }
            .hero p { font-size: 18px; }
            nav {
                width: 95%;
                padding: 15px 20px;
                top: 10px;
            }
            .nav-links { display: none; }
            .mobile-menu-btn { display: block; }
            .stats { grid-template-columns: 1fr; }
            .stat-number { font-size: 48px; }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }
            
            .about-text h2 {
                font-size: 36px;
            }
            
            .about-features {
                grid-template-columns: 1fr;
            }
            
            .image-card {
                min-height: 350px;
                padding: 40px;
            }
            
            .team-icon {
                font-size: 80px;
            }
            
            .section-header h2 {
                font-size: 36px;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }

            .solutions-header h2 {
                font-size: 32px;
            }

            .solutions-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .center-image-card {
                min-height: 400px;
                padding: 40px 20px;
            }

            .placeholder-icon {
                font-size: 100px;
            }
            
            .cta-header h2 {
                font-size: 36px;
            }

            .cta-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .cta-image-card {
                min-height: 400px;
                padding: 40px 20px;
            }

            .placeholder-icon-cta {
                font-size: 100px;
            }

            .form-card {
                padding: 35px 25px;
            }

            .form-header h3 {
                font-size: 28px;
            }
        }
        
        /* Contact Section Styles */
.contact-section {
    padding: 100px 0;
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.contact-header h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
    text-shadow: 0 0 60px rgba(59, 130, 246, 0.4);
}

.idea-text {
    color: #ffffff;
}

.gradient-text-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.contact-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Content Grid */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Side - Image Card */
.contact-image-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
    min-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-image-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(59, 130, 246, 0.4) 0%, 
        rgba(34, 197, 94, 0.4) 50%, 
        rgba(249, 115, 22, 0.4) 100%);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.contact-image-card:hover::before {
    opacity: 1;
}

.contact-image-card:hover {
    transform: scale(1.02) translateY(-10px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.4),
                0 10px 30px rgba(34, 197, 94, 0.2);
}

.image-glow-contact {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1); 
    }
    50% { 
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2); 
    }
}

/* Floating Circles */
.floating-elements-contact {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.float-circle-contact {
    position: absolute;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.circle-1 {
    width: 80px;
    height: 80px;
    top: 10%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

.circle-2 {
    width: 60px;
    height: 60px;
    top: 70%;
    right: 15%;
    animation: float 8s ease-in-out infinite;
    animation-delay: -2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    bottom: 15%;
    left: 15%;
    animation: float 7s ease-in-out infinite;
    animation-delay: -4s;
}

/* Contact Placeholder */
.contact-placeholder {
    text-align: center;
    position: relative;
    z-index: 1;
}

.placeholder-icon-contact {
    font-size: 160px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 40px rgba(59, 130, 246, 0.6));
    animation: float 5s ease-in-out infinite;
}

.placeholder-text {
    font-size: 26px;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.support-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: #22c55e;
    backdrop-filter: blur(10px);
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 10px #22c55e;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

/* Form Card */
.form-card-contact {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    padding: 50px 45px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-card-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(59, 130, 246, 0.6) 20%,
        rgba(34, 197, 94, 0.6) 40%,
        rgba(251, 191, 36, 0.6) 60%,
        rgba(249, 115, 22, 0.6) 80%, 
        transparent);
}

.form-card-contact:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
}

.form-header-contact {
    margin-bottom: 35px;
}

.form-header-contact h2 {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
}

/* Form Groups */
.contact-form-main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group-contact {
    position: relative;
}

.form-input-contact {
    width: 100%;
    padding: 16px 20px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s;
    outline: none;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-input-contact::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input-contact:focus {
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1),
                0 4px 20px rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.form-textarea-contact {
    resize: vertical;
    min-height: 120px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.input-border-animate {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #0ea5e9, #22c55e);
    transition: width 0.4s;
    border-radius: 2px;
}

.form-input-contact:focus + .input-border-animate {
    width: 100%;
}

/* Submit Button */
.submit-btn-contact {
    margin-top: 10px;
    padding: 16px 40px;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.submit-btn-contact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn-contact:hover::before {
    width: 300px;
    height: 300px;
}

.submit-btn-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.6);
    border-color: rgba(255, 255, 255, 0.2);
}

.submit-btn-contact:active {
    transform: translateY(-1px);
}

.submit-btn-contact span,
.submit-btn-contact svg {
    position: relative;
    z-index: 1;
}

/* Decorative Corner */
.form-corner-decor {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 150px;
    height: 150px;
    border-bottom: 3px solid rgba(249, 115, 22, 0.3);
    border-right: 3px solid rgba(249, 115, 22, 0.3);
    border-bottom-right-radius: 24px;
    pointer-events: none;
}

.form-corner-decor::before {
    content: '';
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.6));
}

.form-corner-decor::after {
    content: '';
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 3px;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(249, 115, 22, 0.6));
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-header h1 {
        font-size: 48px;
    }

    .contact-image-card {
        min-height: 450px;
    }

    .placeholder-icon-contact {
        font-size: 120px;
    }
}

@media (max-width: 768px) {
    .contact-header h1 {
        font-size: 36px;
    }

    .contact-section {
        padding: 60px 5%;
    }

    .contact-header {
        margin-bottom: 50px;
    }

    .contact-image-card {
        min-height: 400px;
        padding: 40px 20px;
    }

    .placeholder-icon-contact {
        font-size: 100px;
    }

    .placeholder-text {
        font-size: 20px;
    }

    .form-card-contact {
        padding: 35px 25px;
    }

    .form-header-contact h2 {
        font-size: 32px;
    }
}

/* Why Different Section - Fixed to work with existing background */
.why-different-section {
    padding: 100px 0;
    position: relative;
    overflow: visible; /* Changed from hidden */
    background: transparent; /* Ensure no background override */
}

/* Remove the ::before that was blocking particles */
.why-different-section::before {
    display: none; /* This was covering your particles */
}

/* Header */
.why-different-header {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.why-different-header h2 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #ffffff;
}

.company-name-gradient {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 50%, #84cc16 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 8s ease infinite;
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(34, 197, 94, 0.5));
}

.different-text {
    background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.why-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 12px;
}

.different-highlight {
    color: #3b82f6;
    font-weight: 700;
    text-shadow: 0 0 20px rgba(59, 130, 246, 0.5);
}

.better-highlight {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    display: inline;
}

/* Timeline Container */
.timeline-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
}

/* Vertical Line */
.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    transform: translateX(-50%);
    background: rgba(59, 130, 246, 0.2);
    z-index: 0;
}

.line-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, 
        #3b82f6 0%, 
        #22c55e 50%, 
        #f97316 100%);
    animation: lineGrow 2s ease-out forwards;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
}

@keyframes lineGrow {
    to { height: 100%; }
}

.line-glow {
    position: absolute;
    top: 0;
    left: 50%;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%);
    transform: translateX(-50%);
    animation: glowMove 4s ease-in-out infinite;
    filter: blur(10px);
}

@keyframes glowMove {
    0%, 100% { top: 0%; }
    50% { top: 100%; }
}

/* Timeline Item */
.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 120px;
    position: relative;
    z-index: 1;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

/* Timeline Dot */
.timeline-dot {
    position: relative;
    width: 24px;
    height: 24px;
    z-index: 2;
}

.dot-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.8),
                inset 0 2px 5px rgba(255, 255, 255, 0.3);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.dot-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ringPulse 2s ease-in-out infinite;
}

@keyframes ringPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.dot-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: dotGlow 2s ease-in-out infinite;
}

@keyframes dotGlow {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

/* Content Card */
.timeline-content {
    position: relative;
}

.content-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(59, 130, 246, 0.6) 50%, 
        transparent);
}

.content-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4),
                inset 0 1px 0 rgba(59, 130, 246, 0.2);
}

.card-number {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(59, 130, 246, 0.1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.content-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.content-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.card-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.6s;
}

.content-card:hover .card-shine {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Image Circle */
.timeline-image {
    position: relative;
}

.image-circle {
    width: 180px;
    height: 180px;
    position: relative;
    margin: 0 auto;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.image-circle:hover {
    transform: scale(1.1) rotate(5deg);
}

.image-border-animate {
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        #3b82f6 0%, 
        #22c55e 50%, 
        #f97316 100%);
    opacity: 0;
    transition: opacity 0.4s;
    animation: rotateBorder 4s linear infinite;
}

@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.image-circle:hover .image-border-animate {
    opacity: 1;
}

.image-content {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.image-icon {
    font-size: 72px;
    filter: drop-shadow(0 0 20px rgba(59, 130, 246, 0.6));
    animation: float 4s ease-in-out infinite;
}

.image-glow-effect {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.4) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s;
    filter: blur(20px);
}

.image-circle:hover .image-glow-effect {
    opacity: 1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Alignment for reverse items */
.timeline-item .left {
    justify-self: end;
}

.timeline-item .right {
    justify-self: start;
}

/* Explore More Button */
.explore-more-wrapper {
    text-align: center;
    margin-top: 80px;
}

.explore-more-btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
}

.explore-more-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.explore-more-btn:hover::before {
    width: 300px;
    height: 300px;
}

.explore-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.explore-more-btn span,
.explore-more-btn svg {
    position: relative;
    z-index: 1;
}

.explore-more-btn svg {
    transition: transform 0.3s;
}

.explore-more-btn:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .timeline-line {
        display: none;
    }
    
    .timeline-dot {
        display: none;
    }
    
    .timeline-item .left,
    .timeline-item .right {
        justify-self: center;
    }
    
    .timeline-content,
    .timeline-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .why-different-header h2 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .why-different-section {
        padding: 60px 0;
    }
    
    .why-different-header {
        margin-bottom: 60px;
    }
    
    .why-different-header h2 {
        font-size: 32px;
    }
    
    .timeline-item {
        margin-bottom: 60px;
    }
    
    .content-card {
        padding: 28px 24px;
    }
    
    .card-number {
        font-size: 42px;
    }
    
    .content-card h3 {
        font-size: 24px;
    }
    
    .image-circle {
        width: 140px;
        height: 140px;
    }
    
    .image-icon {
        font-size: 56px;
    }
    
    .explore-more-wrapper {
        margin-top: 50px;
    }
}

/* Force particle and background to always show - Add at END of CSS */
body {
    background: linear-gradient(135deg, #000000 0%, #0a0e1a 25%, #0f1628 50%, #0a0e1a 75%, #000000 100%) !important;
    background-size: 400% 400% !important;
    animation: gradientShift 20s ease infinite !important;
}

.background {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: -2 !important;
    pointer-events: none !important;
}

#particles {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

.grid-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: -1 !important;
    pointer-events: none !important;
}

/* Ensure all sections don't create new stacking context */
section {
    position: relative !important;
    z-index: auto !important;
    background: transparent !important;
}

/* Timeline Item Animation via Classes */
.timeline-item {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-item-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.timeline-item-visible .content-card {
    animation: fadeInUp 0.5s ease-out 0.1s forwards;
}

.timeline-item-visible .image-circle {
    animation: scaleIn 0.5s ease-out 0.2s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

/* Ripple effect styling */
.card-ripple {
    position: absolute;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: ripple 1s ease-out;
}

@keyframes ripple {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(50);
        opacity: 0;
    }
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Header */
.industries-header {
    text-align: center;
    margin-bottom: 60px;
}

.industries-header h2 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 16px;
    color: #ffffff;
}

.all-industries-gradient {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fbbf24 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 8s ease infinite;
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(249, 115, 22, 0.5));
}

.industries-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

/* Header Divider */
.header-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 30px;
}

.divider-line {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6));
}

.divider-line.left {
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6));
}

.divider-line.right {
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.6), transparent);
}

.divider-dot {
    width: 12px;
    height: 12px;
    background: #3b82f6;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.8);
    animation: pulse 2s ease-in-out infinite;
}

/* Carousel Wrapper */
.industries-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Carousel Container */
.industries-carousel {
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Industry Card */
.industry-card {
    min-width: calc(33.333% - 20px);
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(59, 130, 246, 0.6) 50%, 
        transparent);
}

.industry-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.4);
}

/* Card Background Glow */
.card-glow-bg {
    position: absolute;
    width: 200px;
    height: 200px;
    top: -100px;
    right: -100px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    transition: opacity 0.4s;
}

.industry-card:hover .card-glow-bg {
    opacity: 0.6;
}

/* Different colors for different industries */
.healthcare { background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%); }
.education { background: radial-gradient(circle, rgba(139, 92, 246, 0.6) 0%, transparent 70%); }
.ecommerce { background: radial-gradient(circle, rgba(236, 72, 153, 0.6) 0%, transparent 70%); }
.realestate { background: radial-gradient(circle, rgba(34, 197, 94, 0.6) 0%, transparent 70%); }
.finance { background: radial-gradient(circle, rgba(234, 179, 8, 0.6) 0%, transparent 70%); }
.manufacturing { background: radial-gradient(circle, rgba(249, 115, 22, 0.6) 0%, transparent 70%); }
.logistics { background: radial-gradient(circle, rgba(14, 165, 233, 0.6) 0%, transparent 70%); }
.food { background: radial-gradient(circle, rgba(239, 68, 68, 0.6) 0%, transparent 70%); }
.hospitality { background: radial-gradient(circle, rgba(168, 85, 247, 0.6) 0%, transparent 70%); }
.legal { background: radial-gradient(circle, rgba(100, 116, 139, 0.6) 0%, transparent 70%); }
.automotive { background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%); }
.entertainment { background: radial-gradient(circle, rgba(236, 72, 153, 0.6) 0%, transparent 70%); }
.agriculture { background: radial-gradient(circle, rgba(132, 204, 22, 0.6) 0%, transparent 70%); }
.construction { background: radial-gradient(circle, rgba(251, 146, 60, 0.6) 0%, transparent 70%); }
.travel { background: radial-gradient(circle, rgba(6, 182, 212, 0.6) 0%, transparent 70%); }

/* Industry Icon */
.industry-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    position: relative;
}

.industry-icon {
    width: 100%;
    height: 100%;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.industry-card:hover .industry-icon {
    transform: scale(1.1) rotate(10deg);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.4);
}

/* Card Content */
.industry-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: center;
}

.industry-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    text-align: center;
    margin-bottom: 20px;
}

/* Card Footer */
.card-footer {
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.learn-more {
    font-size: 14px;
    font-weight: 600;
    color: #3b82f6;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
}

.industry-card:hover .learn-more {
    color: #60a5fa;
    transform: translateX(5px);
}

/* Navigation Buttons */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    color: #3b82f6;
}

.carousel-nav:hover {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.6);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.indicator-dot {
    width: 10px;
    height: 10px;
    background: rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.indicator-dot.active {
    width: 30px;
    border-radius: 5px;
    background: linear-gradient(90deg, #3b82f6, #0ea5e9);
    box-shadow: 0 0 10px rgba(59, 130, 246, 0.6);
}

.indicator-dot:hover {
    background: rgba(59, 130, 246, 0.6);
}

/* CTA Section */
.industries-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.explore-solutions-btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #f97316 50%, #fb923c 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
    animation: gradientShift 5s ease infinite;
}

.explore-solutions-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.explore-solutions-btn:hover::before {
    width: 300px;
    height: 300px;
}

.explore-solutions-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.explore-solutions-btn span,
.explore-solutions-btn svg {
    position: relative;
    z-index: 1;
}

.explore-solutions-btn svg {
    transition: transform 0.3s;
}

.explore-solutions-btn:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .industry-card {
        min-width: calc(50% - 15px);
    }
    
    .industries-carousel-wrapper {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .industries-section {
        padding: 60px 0;
    }
    
    .industries-header h2 {
        font-size: 36px;
    }
    
    .industry-card {
        min-width: 100%;
    }
    
    .industries-carousel-wrapper {
        padding: 0 50px;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .industry-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .industry-icon {
        font-size: 36px;
    }
    
    .industry-card h3 {
        font-size: 20px;
    }
}

/* Technologies Section */
.technologies-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Header */
.technologies-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.technologies-header h2 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
}

.used-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 50%, #06b6d4 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 8s ease infinite;
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(59, 130, 246, 0.5));
}

.technologies-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-top: 16px;
}

/* Filter Buttons */
.tech-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.filter-count {
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.filter-btn.active .filter-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Search Box */
.tech-search-wrapper {
    max-width: 500px;
    margin: 0 auto 50px;
}

.search-box {
    position: relative;
    width: 100%;
}

.search-box svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s;
}

.search-box input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s;
    outline: none;
}

.search-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-box input:focus {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.search-box input:focus + svg {
    color: #3b82f6;
}

.search-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #0ea5e9, #22c55e);
    transition: width 0.4s;
    border-radius: 50px;
}

.search-box input:focus ~ .search-border {
    width: 100%;
}

/* Technologies Grid */
.technologies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

/* Tech Card - Updated for perfect centering */
.tech-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
    padding: 24px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 160px;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(59, 130, 246, 0.6) 50%, 
        transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.tech-card:hover::before {
    opacity: 1;
}

.tech-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
    background: rgba(15, 23, 42, 0.8);
}

/* Tech Icon - Updated for perfect centering */
.tech-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 12px;
    filter: drop-shadow(0 4px 15px rgba(59, 130, 246, 0.4));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.tech-card:hover .tech-icon {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 8px 25px rgba(59, 130, 246, 0.6));
}

/* Tech Card Text - Ensure perfect centering */
.tech-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    width: 100%;
    text-align: center;
    transition: color 0.3s;
}

.tech-card:hover h4 {
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-card p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    width: 100%;
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .tech-card {
        padding: 20px 12px;
        min-height: 140px;
    }
    
    .tech-icon {
        width: 48px;
        height: 48px;
        font-size: 36px;
    }
    
    .tech-card h4 {
        font-size: 14px;
    }
    
    .tech-card p {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .tech-card {
        padding: 16px 8px;
        min-height: 120px;
    }
    
    .tech-icon {
        width: 40px;
        height: 40px;
        font-size: 32px;
        margin-bottom: 8px;
    }
}
/* Hidden class for filtering - Add this to your CSS */
.tech-card.hidden {
    display: none !important;
}

.tech-card.show {
    display: flex !important;
}

/* Ensure tech cards use flexbox */
.tech-card {
    display: flex;
}

/* Tech CTA Section - Complete Styling */
.tech-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.tech-cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
    font-weight: 400;
}

.explore-tech-btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 50%, #22c55e 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    position: relative;
    overflow: hidden;
    animation: gradientShift 5s ease infinite;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.explore-tech-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.explore-tech-btn:hover::before {
    width: 300px;
    height: 300px;
}

.explore-tech-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.6);
}

.explore-tech-btn span {
    position: relative;
    z-index: 1;
}

.explore-tech-btn svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s;
}

.explore-tech-btn:hover svg {
    transform: translateX(5px);
}

.explore-tech-btn:active {
    transform: translateY(-1px) scale(1.02);
}

/* Gradient animation */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Header */
.portfolio-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-header h2 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
}

.portfolio-gradient {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 50%, #c4b5fd 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 8s ease infinite;
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5));
}

.portfolio-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.portfolio-filter-btn {
    padding: 12px 24px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.portfolio-filter-btn:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

.portfolio-filter-btn.active {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.portfolio-count {
    padding: 2px 8px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
}

.portfolio-filter-btn.active .portfolio-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Portfolio Grid */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Portfolio Item */
.portfolio-item {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
}

/* Portfolio Image */
.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portfolio-gradient-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.4s;
}

.portfolio-item:hover .portfolio-gradient-bg {
    transform: scale(1.1);
}

/* Different gradient backgrounds */
.bg-blue { background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%); }
.bg-purple { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }
.bg-orange { background: linear-gradient(135deg, #f97316 0%, #c2410c 100%); }
.bg-green { background: linear-gradient(135deg, #22c55e 0%, #15803d 100%); }
.bg-cyan { background: linear-gradient(135deg, #06b6d4 0%, #0e7490 100%); }
.bg-pink { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); }
.bg-yellow { background: linear-gradient(135deg, #eab308 0%, #a16207 100%); }
.bg-red { background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%); }
.bg-indigo { background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%); }
.bg-teal { background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%); }
.bg-lime { background: linear-gradient(135deg, #84cc16 0%, #4d7c0f 100%); }
.bg-rose { background: linear-gradient(135deg, #f43f5e 0%, #be123c 100%); }

.portfolio-icon {
    font-size: 80px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.3));
    transition: all 0.4s;
}

.portfolio-item:hover .portfolio-icon {
    transform: scale(1.2) rotate(10deg);
}

/* Portfolio Content */
.portfolio-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.portfolio-tag {
    padding: 4px 12px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #a78bfa;
}

.portfolio-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.portfolio-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Portfolio Footer */
.portfolio-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.view-project-btn {
    padding: 10px 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: #a78bfa;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.view-project-btn:hover {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    border-color: transparent;
    color: #ffffff;
    transform: translateX(5px);
}

/* Hidden class for filtering */
.portfolio-item.hidden {
    display: none !important;
}

.portfolio-item.show {
    display: flex !important;
}

/* Portfolio CTA */
.portfolio-cta {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.portfolio-cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.view-all-projects-btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 50%, #c4b5fd 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    position: relative;
    overflow: hidden;
    animation: gradientShift 5s ease infinite;
}

.view-all-projects-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.view-all-projects-btn:hover::before {
    width: 300px;
    height: 300px;
}

.view-all-projects-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.6);
}

.view-all-projects-btn span,
.view-all-projects-btn svg {
    position: relative;
    z-index: 1;
}

.view-all-projects-btn svg {
    transition: transform 0.3s;
}

.view-all-projects-btn:hover svg {
    transform: translateX(5px);
}

/* Lightbox */
.portfolio-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.portfolio-lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    max-height: 90vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    overflow: hidden;
    animation: slideUp 0.4s ease;
    z-index: 1;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Lightbox Close Button */
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.lightbox-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.6);
    transform: rotate(90deg);
}

/* Lightbox Navigation */
.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.lightbox-nav:hover {
    background: rgba(139, 92, 246, 0.3);
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.prev {
    left: 20px;
}

.lightbox-nav.next {
    right: 20px;
}

/* Lightbox Content */
.lightbox-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 60px;
    max-height: 90vh;
    overflow-y: auto;
}

.lightbox-content::-webkit-scrollbar {
    width: 8px;
}

.lightbox-content::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
}

.lightbox-content::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.5);
    border-radius: 4px;
}

.lightbox-content::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.7);
}

/* Lightbox Image */
.lightbox-image {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-gradient-bg {
    position: absolute;
    inset: 0;
}

.lightbox-icon {
    font-size: 120px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.5));
}

/* Lightbox Details */
.lightbox-details h2 {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
}

.lightbox-details > p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* Lightbox Info Grid */
.lightbox-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 24px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
}

.lightbox-info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.info-value {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
}

/* Lightbox Features */
.lightbox-features {
    margin-bottom: 30px;
}

.lightbox-features h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.lightbox-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lightbox-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    position: relative;
    padding-left: 24px;
}

.lightbox-features li:last-child {
    border-bottom: none;
}

.lightbox-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-weight: 700;
}

/* Lightbox Technologies */
.lightbox-technologies {
    margin-bottom: 30px;
}

.lightbox-technologies h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.tech-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.tech-badge {
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #a78bfa;
}

/* Lightbox Actions */
.lightbox-actions {
    display: flex;
    gap: 16px;
    margin-top: 30px;
}

.lightbox-btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.lightbox-btn.primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.lightbox-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.6);
}

.lightbox-btn.secondary {
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(139, 92, 246, 0.3);
    color: #a78bfa;
}

.lightbox-btn.secondary:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .lightbox-content {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    .lightbox-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .portfolio-section {
        padding: 60px 0;
    }
    
    .portfolio-header h2 {
        font-size: 36px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-icon {
        font-size: 60px;
    }
    
    .lightbox-content {
        padding: 30px 20px;
    }
    
    .lightbox-details h2 {
        font-size: 28px;
    }
    
    .lightbox-info-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-nav {
        display: none;
    }
    
    .lightbox-actions {
        flex-direction: column;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* Header */
.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-header h2 {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
    color: #ffffff;
}

.clients-gradient {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 50%, #fb923c 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 8s ease infinite;
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(249, 115, 22, 0.5));
}

.testimonials-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Carousel Wrapper */
.testimonials-carousel-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 0 80px;
}

/* Carousel */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

/* Testimonial Card */
.testimonial-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    display: none;
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    transform: scale(1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(249, 115, 22, 0.6) 50%, 
        transparent);
}

/* Quote Icon */
.testimonial-quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(249, 115, 22, 0.1);
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f97316;
    opacity: 0.5;
}

/* Rating */
.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
}

.star {
    font-size: 24px;
    color: #fbbf24;
    filter: drop-shadow(0 2px 8px rgba(251, 191, 36, 0.5));
    animation: starTwinkle 2s ease-in-out infinite;
}

.star:nth-child(1) { animation-delay: 0s; }
.star:nth-child(2) { animation-delay: 0.2s; }
.star:nth-child(3) { animation-delay: 0.4s; }
.star:nth-child(4) { animation-delay: 0.6s; }
.star:nth-child(5) { animation-delay: 0.8s; }

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

/* Testimonial Text */
.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Author */
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.author-avatar {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.avatar-icon {
    width: 100%;
    height: 100%;
    background: rgba(249, 115, 22, 0.2);
    border: 2px solid rgba(249, 115, 22, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    transition: all 0.3s;
}

.testimonial-card.active .avatar-icon {
    animation: avatarPulse 3s ease-in-out infinite;
}

@keyframes avatarPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.author-info {
    flex: 1;
}

.author-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.author-position {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.company-logo {
    font-size: 24px;
    filter: drop-shadow(0 2px 8px rgba(249, 115, 22, 0.3));
}

/* Gradient Backgrounds */
.testimonial-gradient-bg {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    pointer-events: none;
    animation: floatGradient 8s ease-in-out infinite;
}

@keyframes floatGradient {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(20px, -20px); }
}

.gradient-1 { background: radial-gradient(circle, #3b82f6 0%, transparent 70%); top: -100px; left: -100px; }
.gradient-2 { background: radial-gradient(circle, #8b5cf6 0%, transparent 70%); top: -100px; right: -100px; }
.gradient-3 { background: radial-gradient(circle, #f97316 0%, transparent 70%); bottom: -100px; left: -100px; }
.gradient-4 { background: radial-gradient(circle, #22c55e 0%, transparent 70%); bottom: -100px; right: -100px; }
.gradient-5 { background: radial-gradient(circle, #06b6d4 0%, transparent 70%); top: 50%; left: -100px; }
.gradient-6 { background: radial-gradient(circle, #ec4899 0%, transparent 70%); top: 50%; right: -100px; }
.gradient-7 { background: radial-gradient(circle, #eab308 0%, transparent 70%); top: -50px; left: 50%; }
.gradient-8 { background: radial-gradient(circle, #ef4444 0%, transparent 70%); bottom: -50px; left: 50%; }

/* Navigation Buttons */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    color: #f97316;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

.testimonial-nav:hover {
    background: rgba(249, 115, 22, 0.2);
    border-color: rgba(249, 115, 22, 0.6);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.testimonial-nav.prev {
    left: 0;
}

.testimonial-nav.next {
    right: 0;
}

/* Indicators */
.testimonial-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
}

.testimonial-indicator {
    width: 12px;
    height: 12px;
    background: rgba(249, 115, 22, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.testimonial-indicator.active {
    width: 40px;
    border-radius: 6px;
    background: linear-gradient(90deg, #f97316, #fb923c);
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.6);
}

.testimonial-indicator:hover {
    background: rgba(249, 115, 22, 0.6);
}

/* Stats Section */
.testimonial-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(249, 115, 22, 0.3);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.1), transparent);
    transition: left 0.6s;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: rgba(249, 115, 22, 0.6);
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.4);
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 16px;
    filter: drop-shadow(0 4px 15px rgba(249, 115, 22, 0.5));
}

.stat-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

/* CTA */
.testimonials-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(249, 115, 22, 0.2);
}

.testimonials-cta-text {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    font-weight: 600;
}

.start-project-btn {
    padding: 18px 50px;
    font-size: 17px;
    font-weight: 700;
    background: linear-gradient(135deg, #f97316 0%, #fb923c 50%, #fbbf24 100%);
    background-size: 200% 200%;
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.5);
    position: relative;
    overflow: hidden;
    animation: gradientShift 5s ease infinite;
}

.start-project-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.start-project-btn:hover::before {
    width: 400px;
    height: 400px;
}

.start-project-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(249, 115, 22, 0.7);
}

.start-project-btn span,
.start-project-btn svg {
    position: relative;
    z-index: 1;
}

.start-project-btn svg {
    transition: transform 0.3s;
}

.start-project-btn:hover svg {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonial-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-header h2 {
        font-size: 36px;
    }
    
    .testimonials-carousel-wrapper {
        padding: 0 60px;
    }
    
    .testimonial-card {
        padding: 40px 30px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .testimonial-quote-icon {
        width: 50px;
        height: 50px;
        top: 20px;
        right: 20px;
    }
    
    .testimonial-quote-icon svg {
        width: 30px;
        height: 30px;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
    
    .avatar-icon {
        font-size: 30px;
    }
    
    .author-name {
        font-size: 18px;
    }
    
    .testimonial-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-icon {
        font-size: 40px;
    }
    
    .stat-number {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .testimonials-carousel-wrapper {
        padding: 0 50px;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
    }
}

/* ===== FOOTER SECTION ===== */
.footer-section {
    position: relative;
    margin-top: 100px;
}

/* Footer CTA Cards */
.footer-cta-wrapper {
    padding: 0 0 60px 0;
    position: relative;
    z-index: 10;
}

.footer-cta-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.footer-cta-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 300px;
}

.footer-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6) 50%, transparent);
}

.footer-cta-card.card-blue {
    border-color: rgba(59, 130, 246, 0.3);
}

.footer-cta-card.card-orange {
    border-color: rgba(249, 115, 22, 0.3);
}

.footer-cta-card.card-orange::before {
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.6) 50%, transparent);
}

.footer-cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
}

.footer-cta-card.card-orange:hover {
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.4);
}

.cta-card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.card-orange .cta-card-glow {
    background: radial-gradient(circle, rgba(249, 115, 22, 0.3) 0%, transparent 70%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #22c55e;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.footer-cta-card h3 {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.footer-cta-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

.card-orange .cta-btn {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.4);
}

.cta-btn:hover {
    transform: translateX(5px);
}

.cta-icon {
    position: absolute;
    right: 40px;
    bottom: 40px;
    font-size: 80px;
    opacity: 0.1;
    pointer-events: none;
}

/* Quick Contact Bar */
.quick-contact-bar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(20px);
    border-top: 2px solid rgba(34, 197, 94, 0.3);
    border-bottom: 2px solid rgba(34, 197, 94, 0.3);
    padding: 30px 0;
}

.quick-contact-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-label {
    font-size: 14px;
    font-weight: 700;
    color: #22c55e;
    letter-spacing: 2px;
}

.contact-number {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 900;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-number:hover {
    color: #3b82f6;
}

/* Main Footer */
.main-footer {
    background: rgba(10, 14, 26, 0.98);
    backdrop-filter: blur(30px);
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
}

/* Footer Columns */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #22c55e 50%, #eab308 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 24px;
    color: white;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.5);
    flex-shrink: 0;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6 0%, #22c55e 50%, #eab308 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-sub {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    margin-top: 2px;
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

/* Social Links */
.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(15, 23, 42, 0.6);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.social-icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.social-icon.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
    color: white;
}

.social-icon.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: white;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: transparent;
    color: white;
}

/* Footer Titles */
.footer-title {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #22c55e);
}

/* Footer Lists */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
    display: inline-block;
}

.footer-list a:hover {
    color: #3b82f6;
    padding-left: 8px;
}

/* Footer Contact */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.6;
}

.contact-item svg {
    color: #3b82f6;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #3b82f6;
}

/* Quick Links */
.footer-quick-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.footer-quick-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    padding: 4px 0;
    transition: all 0.3s;
}

.footer-quick-links a:hover {
    color: #3b82f6;
}

/* Footer Bottom */
.footer-bottom {
    background: rgba(5, 8, 15, 0.98);
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    padding: 25px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.company-link {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.payment-badges {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.payment-icons {
    display: flex;
    gap: 8px;
}

.payment-badge {
    padding: 6px 12px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.5);
    transition: all 0.3s;
    z-index: 1000;
}

.scroll-to-top.visible {
    display: flex;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
}

/* Responsive */
@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .footer-cta-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large Tablets and Small Desktops (1024px and below) */
@media (max-width: 1024px) {
    /* Navigation */
    nav {
        width: 95%;
        padding: 15px 25px;
    }
    
    .nav-links {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 20px;
        border-radius: 0 0 20px 20px;
        border: 1px solid rgba(59, 130, 246, 0.3);
        z-index: 999;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    
    /* Hero Section */
    h1 {
        font-size: 52px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    .stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* About Section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-text h2 {
        font-size: 42px;
    }
    
    /* Services Section */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Solutions Section */
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solutions-center {
        order: -1;
    }
    
    /* Industries Section */
    .industry-card {
        min-width: calc(50% - 15px);
    }
    
    /* Technologies Section */
    .technologies-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 20px;
    }
    
    .tech-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    /* Portfolio Section */
    .portfolio-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .lightbox-content {
        grid-template-columns: 1fr;
        padding: 40px;
    }
    
    /* Testimonials */
    .testimonial-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Why Different Section */
    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .timeline-line,
    .timeline-dot {
        display: none;
    }
    
    .timeline-item .left,
    .timeline-item .right {
        justify-self: center;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablets (768px and below) */
@media (max-width: 768px) {
    /* Global */
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 0;
    }
    
    /* Navigation */
    nav {
        top: 10px;
        padding: 12px 20px;
    }
    
    .logo {
        font-size: 20px;
    }
    
    .logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-links {
        display: none;
    }
    
    /* Hero Section */
    .hero {
        padding: 100px 5% 60px;
        min-height: auto;
    }
    
    h1 {
        font-size: 42px;
    }
    
    .hero p {
        font-size: 16px;
        max-width: 100%;
    }
    
    .button-group {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-card {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 42px;
    }
    
    .tech-stack {
        margin-top: 40px;
    }
    
    .tech-icons {
        gap: 20px;
    }
    
    .tech-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    /* About Section */
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        gap: 30px;
    }
    
    .about-text h2 {
        font-size: 32px;
    }
    
    .about-description {
        font-size: 16px;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .image-card {
        min-height: 350px;
        padding: 40px 20px;
    }
    
    .team-icon {
        font-size: 80px;
    }
    
    /* Services Section */
    .section-header h2 {
        font-size: 36px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 30px 24px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-card h3 {
        font-size: 20px;
    }
    
    /* Solutions Section */
    .solutions-header h2 {
        font-size: 32px;
    }
    
    .tab-navigation {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .tab-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .solutions-grid {
        gap: 20px;
    }
    
    .solution-card {
        padding: 20px;
    }
    
    .solution-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .center-image-card {
        min-height: 350px;
        padding: 40px 20px;
    }
    
    .placeholder-icon {
        font-size: 80px;
    }
    
    /* Why Different Section */
    .why-different-header h2 {
        font-size: 32px;
    }
    
    .timeline-item {
        margin-bottom: 40px;
    }
    
    .content-card {
        padding: 24px 20px;
    }
    
    .card-number {
        font-size: 36px;
    }
    
    .content-card h3 {
        font-size: 22px;
    }
    
    .image-circle {
        width: 120px;
        height: 120px;
    }
    
    .image-icon {
        font-size: 48px;
    }
    
    /* Industries Section */
    .industries-header h2 {
        font-size: 36px;
    }
    
    .industries-carousel-wrapper {
        padding: 0 50px;
    }
    
    .industry-card {
        min-width: 100%;
    }
    
    .carousel-nav {
        width: 40px;
        height: 40px;
    }
    
    .industry-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .industry-icon {
        font-size: 36px;
    }
    
    /* Technologies Section */
    .technologies-header h2 {
        font-size: 36px;
    }
    
    .tech-search-wrapper {
        margin-bottom: 30px;
    }
    
    .technologies-grid {
        grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
        gap: 16px;
    }
    
    .tech-card {
        padding: 20px 12px;
        min-height: 140px;
    }
    
    .tech-icon {
        font-size: 36px;
    }
    
    .tech-card h4 {
        font-size: 14px;
    }
    
    .tech-card p {
        font-size: 11px;
    }
    
    /* Portfolio Section */
    .portfolio-header h2 {
        font-size: 36px;
    }
    
    .portfolio-filters {
        gap: 8px;
    }
    
    .portfolio-filter-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .portfolio-image {
        height: 200px;
    }
    
    .portfolio-icon {
        font-size: 60px;
    }
    
    .lightbox-content {
        padding: 30px 20px;
    }
    
    .lightbox-image {
        height: 300px;
    }
    
    .lightbox-details h2 {
        font-size: 28px;
    }
    
    .lightbox-info-grid {
        grid-template-columns: 1fr;
    }
    
    .lightbox-nav {
        display: none;
    }
    
    .lightbox-actions {
        flex-direction: column;
    }
    
    /* Testimonials Section */
    .testimonials-header h2 {
        font-size: 36px;
    }
    
    .testimonials-carousel-wrapper {
        padding: 0 60px;
    }
    
    .testimonial-card {
        padding: 40px 30px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .testimonial-quote-icon {
        width: 50px;
        height: 50px;
        top: 20px;
        right: 20px;
    }
    
    .author-avatar {
        width: 60px;
        height: 60px;
    }
    
    .avatar-icon {
        font-size: 30px;
    }
    
    .author-name {
        font-size: 18px;
    }
    
    .testimonial-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-icon {
        font-size: 40px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    /* Contact Section */
    .contact-header h2 {
        font-size: 36px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-image-card {
        min-height: 350px;
        padding: 40px 20px;
    }
    
    .placeholder-icon-contact {
        font-size: 80px;
    }
    
    .form-card-contact {
        padding: 35px 25px;
    }
    
    .form-header-contact h2 {
        font-size: 28px;
    }
    
    /* Footer */
    .footer-cta-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .footer-cta-card {
        padding: 40px 30px;
        min-height: 250px;
    }
    
    .footer-cta-card h3 {
        font-size: 24px;
    }
    
    .cta-icon {
        font-size: 60px;
    }
    
    .quick-contact-bar {
        padding: 20px 0;
    }
    
    .quick-contact-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-number {
        font-size: 22px;
    }
    
    .main-footer {
        padding: 60px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .payment-badges {
        flex-direction: column;
        gap: 12px;
    }
    
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Mobile Phones (480px and below) */
@media (max-width: 480px) {
    /* Hero */
    h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 15px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 18px;
    }
    
    /* Buttons */
    .btn {
        padding: 14px 30px;
        font-size: 15px;
    }
    
    /* Stats */
    .stat-number {
        font-size: 36px;
    }
    
    .stat-label {
        font-size: 14px;
    }
    
    /* Tech Icons */
    .tech-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    /* About */
    .about-text h2 {
        font-size: 28px;
    }
    
    .team-icon {
        font-size: 60px;
    }
    
    /* Services */
    .section-header h2 {
        font-size: 28px;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    /* Solutions */
    .solutions-header h2 {
        font-size: 26px;
    }
    
    .tab-btn {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    /* Timeline */
    .why-different-header h2 {
        font-size: 26px;
    }
    
    .content-card {
        padding: 20px 16px;
    }
    
    .card-number {
        font-size: 32px;
    }
    
    .content-card h3 {
        font-size: 20px;
    }
    
    .image-circle {
        width: 100px;
        height: 100px;
    }
    
    .image-icon {
        font-size: 40px;
    }
    
    /* Industries */
    .industries-header h2 {
        font-size: 28px;
    }
    
    .industries-carousel-wrapper {
        padding: 0 50px;
    }
    
    .industry-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .industry-icon {
        font-size: 32px;
    }
    
    .industry-card h3 {
        font-size: 18px;
    }
    
    /* Technologies */
    .technologies-header h2 {
        font-size: 28px;
    }
    
    .technologies-grid {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 12px;
    }
    
    .tech-card {
        padding: 16px 8px;
        min-height: 120px;
    }
    
    .tech-icon {
        font-size: 32px;
    }
    
    .tech-card h4 {
        font-size: 13px;
    }
    
    .tech-card p {
        font-size: 10px;
    }
    
    /* Portfolio */
    .portfolio-header h2 {
        font-size: 28px;
    }
    
    .portfolio-image {
        height: 180px;
    }
    
    .portfolio-icon {
        font-size: 50px;
    }
    
    .portfolio-content {
        padding: 20px;
    }
    
    .portfolio-content h3 {
        font-size: 18px;
    }
    
    /* Testimonials */
    .testimonials-header h2 {
        font-size: 28px;
    }
    
    .testimonials-carousel-wrapper {
        padding: 0 50px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 15px;
    }
    
    .author-name {
        font-size: 16px;
    }
    
    .author-position {
        font-size: 13px;
    }
    
    .testimonial-nav {
        width: 40px;
        height: 40px;
    }
    
    .stat-icon {
        font-size: 36px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    /* Contact */
    .contact-header h2 {
        font-size: 28px;
    }
    
    .contact-image-card {
        min-height: 300px;
        padding: 30px 20px;
    }
    
    .placeholder-icon-contact {
        font-size: 60px;
    }
    
    .form-card-contact {
        padding: 30px 20px;
    }
    
    .form-header-contact h2 {
        font-size: 24px;
    }
    
    .form-input-contact {
        padding: 14px 18px;
        font-size: 14px;
    }
    
    .submit-btn-contact {
        padding: 14px 30px;
        font-size: 15px;
    }
    
    /* Footer */
    .footer-cta-card {
        padding: 30px 20px;
    }
    
    .footer-cta-card h3 {
        font-size: 20px;
    }
    
    .footer-cta-card p {
        font-size: 14px;
    }
    
    .cta-icon {
        font-size: 50px;
        right: 20px;
        bottom: 20px;
    }
    
    .quick-contact-content {
        padding: 0 20px;
    }
    
    .contact-number {
        font-size: 18px;
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .logo-main {
        font-size: 20px;
    }
    
    .footer-description {
        font-size: 13px;
    }
    
    .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .footer-title {
        font-size: 16px;
    }
    
    .footer-list a {
        font-size: 13px;
    }
    
    .contact-item {
        font-size: 12px;
    }
    
    .copyright {
        font-size: 12px;
    }
    
    .payment-badge {
        font-size: 9px;
        padding: 5px 10px;
    }
}

/* Extra Small Devices (360px and below) */
@media (max-width: 360px) {
    h1 {
        font-size: 28px;
    }
    
    .section-header h2,
    .about-text h2,
    .solutions-header h2,
    .why-different-header h2,
    .industries-header h2,
    .technologies-header h2,
    .portfolio-header h2,
    .testimonials-header h2,
    .contact-header h2 {
        font-size: 24px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .technologies-grid {
        grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    }
}

/* Landscape Mode for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 80px 5% 40px;
    }
    
    h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 14px;
    }
    
    .stats {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .stat-card {
        padding: 20px 15px;
    }
}

/* Print Styles */
@media print {
    nav,
    .footer-cta-wrapper,
    .scroll-to-top,
    .mobile-menu-btn,
    button {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
    
    section {
        page-break-inside: avoid;
    }
}
/* Corporate Training Tab Styles */
.training-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.training-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.training-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transition: all 0.4s;
}

/* Different gradient colors for each card */
.card-gradient-purple {
    border-color: rgba(139, 92, 246, 0.3);
}

.card-gradient-purple::before {
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.8) 50%, transparent);
}

.card-gradient-purple:hover {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
}

.card-gradient-blue {
    border-color: rgba(59, 130, 246, 0.3);
}

.card-gradient-blue::before {
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.8) 50%, transparent);
}

.card-gradient-blue:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
}

.card-gradient-orange {
    border-color: rgba(249, 115, 22, 0.3);
}

.card-gradient-orange::before {
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.8) 50%, transparent);
}

.card-gradient-orange:hover {
    border-color: rgba(249, 115, 22, 0.6);
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.4);
}

.card-gradient-green {
    border-color: rgba(34, 197, 94, 0.3);
}

.card-gradient-green::before {
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.8) 50%, transparent);
}

.card-gradient-green:hover {
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.4);
}

.card-gradient-cyan {
    border-color: rgba(6, 182, 212, 0.3);
}

.card-gradient-cyan::before {
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.8) 50%, transparent);
}

.card-gradient-cyan:hover {
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 0 20px 60px rgba(6, 182, 212, 0.4);
}

.card-gradient-pink {
    border-color: rgba(236, 72, 153, 0.3);
}

.card-gradient-pink::before {
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.8) 50%, transparent);
}

.card-gradient-pink:hover {
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 20px 60px rgba(236, 72, 153, 0.4);
}

.training-card:hover {
    transform: translateY(-10px);
}

.training-icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s;
}

.card-gradient-purple .training-icon-wrapper {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.3);
    color: #a78bfa;
}

.card-gradient-blue .training-icon-wrapper {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #60a5fa;
}

.card-gradient-orange .training-icon-wrapper {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    color: #fb923c;
}

.card-gradient-green .training-icon-wrapper {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #4ade80;
}

.card-gradient-cyan .training-icon-wrapper {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    color: #22d3ee;
}

.card-gradient-pink .training-icon-wrapper {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.3);
    color: #f472b6;
}

.training-card:hover .training-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.training-content {
    text-align: center;
    flex-grow: 1;
}

.training-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.training-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.training-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-badge {
    padding: 6px 12px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.training-footer {
    margin-top: auto;
}

.enroll-btn {
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
}

.card-gradient-purple .enroll-btn {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.card-gradient-orange .enroll-btn {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3);
}

.card-gradient-green .enroll-btn {
    background: linear-gradient(135deg, #22c55e 0%, #4ade80 100%);
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
}

.card-gradient-cyan .enroll-btn {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    box-shadow: 0 4px 20px rgba(6, 182, 212, 0.3);
}

.card-gradient-pink .enroll-btn {
    background: linear-gradient(135deg, #ec4899 0%, #f472b6 100%);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.3);
}

.enroll-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
}

/* Responsive Design for Training Grid */
@media (max-width: 1200px) {
    .training-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .training-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .training-card {
        padding: 30px 25px;
    }
    
    .training-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .training-content h3 {
        font-size: 20px;
    }
    
    .training-content p {
        font-size: 13px;
    }
}
/* ===== ABOUT US PAGE STYLES ===== */

/* About Hero Section */
.about-hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 5% 100px;
    position: relative;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

/* Hero Stats with Animation */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.hero-stats .stat-item {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.4s;
}

.hero-stats .stat-item:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
}

.hero-stats .stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.hero-stats .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(59, 130, 246, 0.6);
    border-radius: 20px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 10px;
    background: #3b82f6;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
    0%, 100% { 
        top: 8px;
        opacity: 1;
    }
    50% { 
        top: 28px;
        opacity: 0.3;
    }
}

.scroll-indicator span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Timeline Styles */
.company-history {
    padding: 100px 0;
    position: relative;
}

.timeline-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 60px 0;
}

.timeline-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.8) 50%, transparent);
}

.timeline-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.5);
}

.card-year {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 80px;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(59, 130, 246, 0.05) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s;
}

.card-icon.blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.4);
    color: #3b82f6;
}

.card-icon.orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.1));
    border: 2px solid rgba(249, 115, 22, 0.4);
    color: #f97316;
}

.card-icon.green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    border: 2px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.timeline-card:hover .card-icon {
    transform: scale(1.1) rotate(10deg);
}

.timeline-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.timeline-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
}

.card-achievements {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.achievement-badge {
    padding: 8px 16px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

/* Achievements Section */
.achievements-section {
    padding: 80px 0;
    background: rgba(5, 8, 15, 0.5);
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.achievement-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.achievement-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3b82f6, #22c55e, #f97316);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.achievement-card:hover::before {
    opacity: 1;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
}

.achievement-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    transition: all 0.3s;
}

.achievement-card:hover .achievement-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(59, 130, 246, 0.2);
}

.achievement-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.achievement-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    position: relative;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.philosophy-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.mission-card::before {
    background: linear-gradient(90deg, transparent, #3b82f6 50%, transparent);
}

.vision-card::before {
    background: linear-gradient(90deg, transparent, #22c55e 50%, transparent);
}

.values-card::before {
    background: linear-gradient(90deg, transparent, #f97316 50%, transparent);
}

.philosophy-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(59, 130, 246, 0.5);
}

.mission-card:hover {
    border-color: rgba(59, 130, 246, 0.6);
}

.vision-card:hover {
    border-color: rgba(34, 197, 94, 0.6);
}

.values-card:hover {
    border-color: rgba(249, 115, 22, 0.6);
}

.card-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.2;
    top: -100px;
    right: -100px;
    pointer-events: none;
    transition: opacity 0.4s;
}

.mission-glow {
    background: radial-gradient(circle, #3b82f6 0%, transparent 70%);
}

.vision-glow {
    background: radial-gradient(circle, #22c55e 0%, transparent 70%);
}

.values-glow {
    background: radial-gradient(circle, #f97316 0%, transparent 70%);
}

.philosophy-card:hover .card-glow {
    opacity: 0.4;
}

.card-icon-wrapper {
    margin-bottom: 30px;
}

.philosophy-card .card-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.mission-card .card-icon {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: #3b82f6;
}

.vision-card .card-icon {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

.values-card .card-icon {
    background: rgba(249, 115, 22, 0.1);
    border-color: rgba(249, 115, 22, 0.3);
    color: #f97316;
}

.philosophy-card:hover .card-icon {
    transform: scale(1.1) rotate(360deg);
}

.philosophy-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-align: center;
}

.philosophy-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    text-align: center;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.footer-icon {
    font-size: 24px;
}

.card-footer span {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 100px 0;
    background: rgba(5, 8, 15, 0.5);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.why-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s;
}

.why-card:hover::before {
    left: 100%;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
}

.why-number {
    font-size: 60px;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(59, 130, 246, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.why-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
}

.cta-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 30px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        #3b82f6 20%, 
        #22c55e 40%, 
        #f97316 60%, 
        #8b5cf6 80%, 
        transparent);
}

.cta-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-glow 6s ease-in-out infinite;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(59, 130, 246, 0.2);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation: rotate-slow 20s linear infinite;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    right: -100px;
    animation: rotate-slow 15s linear infinite reverse;
}

.circle-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    right: -75px;
    animation: rotate-slow 10s linear infinite;
}

@keyframes rotate-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Styles for About Page */
@media (max-width: 1200px) {
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 120px 5% 80px;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-stats .stat-number {
        font-size: 36px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .timeline-card {
        padding: 30px 20px;
    }
    
    .card-year {
        font-size: 50px;
        top: 10px;
        right: 10px;
    }
    
    .timeline-card h3 {
        font-size: 22px;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .philosophy-card {
        padding: 40px 30px;
    }
    
    .philosophy-card h3 {
        font-size: 24px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-card {
        padding: 60px 30px;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-stats .stat-number {
        font-size: 32px;
    }
    
    .card-year {
        font-size: 40px;
    }
    
    .timeline-card h3 {
        font-size: 20px;
    }
    
    .philosophy-card h3 {
        font-size: 22px;
    }
    
    .why-number {
        font-size: 48px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
}
/* ===== COURSES PAGE STYLES ===== */

/* Courses Hero Section */
.courses-hero {
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 5% 80px;
    position: relative;
}

.courses-hero .hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.courses-hero .hero-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

/* Student Discount Banner */
.student-discount-banner {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(16, 185, 129, 0.1));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(34, 197, 94, 0.3);
    border-radius: 20px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
}

.student-discount-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.8) 50%, transparent);
}

.student-discount-banner:hover {
    transform: translateY(-5px);
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 20px 60px rgba(34, 197, 94, 0.4);
}

.discount-icon {
    font-size: 48px;
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

.discount-content {
    flex: 1;
    text-align: left;
}

.discount-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #22c55e;
    margin-bottom: 8px;
}

.discount-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.discount-link {
    color: #22c55e;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s;
}

.discount-link:hover {
    border-bottom-color: #22c55e;
}

/* Course Stats */
.course-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.course-stats .stat-item {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.4s;
}

.course-stats .stat-item:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
}

/* Course Categories Section */
.course-categories-section {
    padding: 60px 0 40px;
    position: relative;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.category-tab {
    padding: 14px 28px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-tab:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

.category-tab.active {
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.5);
}

.tab-icon {
    font-size: 20px;
}

.tab-count {
    padding: 3px 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
}

.category-tab.active .tab-count {
    background: rgba(255, 255, 255, 0.3);
}

/* Course Search */
.course-search-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.search-box-courses {
    position: relative;
    width: 100%;
}

.search-box-courses svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s;
}

.search-box-courses input {
    width: 100%;
    padding: 16px 20px 16px 50px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-size: 15px;
    transition: all 0.3s;
    outline: none;
}

.search-box-courses input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.search-box-courses input:focus {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.search-box-courses input:focus + svg {
    color: #3b82f6;
}

/* Courses Main Section */
.courses-main-section {
    padding: 40px 0 100px;
    position: relative;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
}

/* Course Card */
.course-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.course-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3b82f6, #22c55e, #f97316);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.course-card:hover::before {
    opacity: 0.3;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(59, 130, 246, 0.4);
}

/* Course Ribbon */
.course-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 8px 45px;
    font-size: 13px;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.5);
}

.course-ribbon.trending {
    background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
}

.course-ribbon.advanced {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
}

/* Course Header */
.course-header {
    padding: 30px 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.course-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s;
    position: relative;
}

.course-card:hover .course-icon-wrapper {
    transform: scale(1.1) rotate(10deg);
}

/* Gradient Variants for Icons */
.gradient-blue {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.4);
    color: #3b82f6;
}

.gradient-green {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    border: 2px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.gradient-purple {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.4);
    color: #8b5cf6;
}

.gradient-orange {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.1));
    border: 2px solid rgba(249, 115, 22, 0.4);
    color: #f97316;
}

.gradient-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1));
    border: 2px solid rgba(6, 182, 212, 0.4);
    color: #06b6d4;
}

.gradient-red {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(239, 68, 68, 0.1));
    border: 2px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.gradient-teal {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.2), rgba(20, 184, 166, 0.1));
    border: 2px solid rgba(20, 184, 166, 0.4);
    color: #14b8a6;
}

.gradient-pink {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.1));
    border: 2px solid rgba(236, 72, 153, 0.4);
    color: #ec4899;
}

.gradient-indigo {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(99, 102, 241, 0.1));
    border: 2px solid rgba(99, 102, 241, 0.4);
    color: #6366f1;
}

.gradient-lime {
    background: linear-gradient(135deg, rgba(132, 204, 22, 0.2), rgba(132, 204, 22, 0.1));
    border: 2px solid rgba(132, 204, 22, 0.4);
    color: #84cc16;
}

.gradient-yellow {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.2), rgba(234, 179, 8, 0.1));
    border: 2px solid rgba(234, 179, 8, 0.4);
    color: #eab308;
}

.gradient-rose {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2), rgba(244, 63, 94, 0.1));
    border: 2px solid rgba(244, 63, 94, 0.4);
    color: #f43f5e;
}

.course-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.course-duration,
.course-level {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* Course Content */
.course-content {
    padding: 0 30px 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.course-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.course-content > p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Tech Stack */
.course-tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tech-badge {
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
}

.tech-badge:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

/* Course Features */
.course-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(59, 130, 246, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.feature-item svg {
    color: #22c55e;
    flex-shrink: 0;
}

/* Course Pricing */
.course-pricing {
    text-align: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 24px;
    font-weight: 700;
    color: #3b82f6;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-period {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.price-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Course Details Button */
.course-details-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    margin-top: auto;
}

.course-details-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(59, 130, 246, 0.5);
}

.course-details-btn svg {
    transition: transform 0.3s;
}

.course-details-btn:hover svg {
    transform: translateX(5px);
}

/* Course Modal */
.course-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.course-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    max-height: 90vh;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    overflow: hidden;
    animation: slideUp 0.4s ease;
    z-index: 1;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.6);
    transform: rotate(90deg);
}

.modal-content {
    padding: 60px;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.5);
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.7);
}

/* CTA Buttons in Modal */
.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Courses CTA Section */
.courses-cta .cta-content h2 {
    font-size: 48px;
}

.courses-cta .cta-buttons {
    margin-top: 30px;
}

/* Hidden class for filtering */
.course-card.hidden {
    display: none !important;
}

/* Responsive Design for Courses */
@media (max-width: 1200px) {
    .courses-grid {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
        gap: 30px;
    }
    
    .course-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .courses-hero {
        padding: 120px 5% 60px;
    }
    
    .courses-hero .hero-title {
        font-size: 36px;
    }
    
    .courses-hero .hero-description {
        font-size: 16px;
    }
    
    .student-discount-banner {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .discount-content {
        text-align: center;
    }
    
    .discount-content h3 {
        font-size: 18px;
    }
    
    .discount-content p {
        font-size: 14px;
    }
    
    .course-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .category-tabs {
        gap: 8px;
    }
    
    .category-tab {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .course-header {
        padding: 25px 25px 15px;
    }
    
    .course-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .course-content {
        padding: 0 25px 25px;
    }
    
    .course-content h3 {
        font-size: 22px;
    }
    
    .price-amount {
        font-size: 40px;
    }
    
    .modal-content {
        padding: 40px 25px;
    }
    
    .courses-cta .cta-content h2 {
        font-size: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .courses-hero .hero-title {
        font-size: 28px;
    }
    
    .discount-icon {
        font-size: 36px;
    }
    
    .discount-content h3 {
        font-size: 16px;
    }
    
    .category-tab {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .tab-icon {
        font-size: 16px;
    }
    
    .course-ribbon {
        font-size: 11px;
        padding: 6px 40px;
    }
    
    .price-amount {
        font-size: 36px;
    }
}

/* ===== SERVICES PAGE STYLES ===== */

/* Services Hero */
.services-hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 5% 80px;
    position: relative;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.service-tab {
    padding: 16px 32px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-tab:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

.service-tab.active {
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
}

.tab-icon {
    font-size: 20px;
}

/* Services Content Section */
.services-content-section {
    padding: 60px 0 100px;
}

.service-tab-content {
    display: none;
}

.service-tab-content.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-header {
    text-align: center;
    margin-bottom: 60px;
}

.content-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
}

.content-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

/* Services Grid */
.services-grid {
    display: grid;
    gap: 30px;
}

/* Service Item */
.service-item {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item:hover {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
    transform: translateY(-5px);
}

.service-item-header {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}

.service-item-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6) 50%, transparent);
}

.service-title-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    flex-shrink: 0;
    transition: all 0.3s;
}

.service-item:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.service-item-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.expand-btn {
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    color: #3b82f6;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.expand-btn:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: scale(1.1);
}

.expand-btn svg {
    transition: transform 0.3s;
}

.service-item.expanded .expand-btn svg {
    transform: rotate(180deg);
}

/* Service Item Content */
.service-item-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.service-item.expanded .service-item-content {
    max-height: 5000px;
    padding: 0 30px 30px;
}

.service-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.service-description p {
    margin-bottom: 20px;
    font-size: 15px;
}

.service-description h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 30px 0 16px;
    position: relative;
    padding-left: 20px;
}

.service-description h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #3b82f6, #22c55e);
    border-radius: 2px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 12px;
}

.feature-list li {
    padding: 12px 16px;
    background: rgba(59, 130, 246, 0.05);
    border-left: 3px solid rgba(59, 130, 246, 0.5);
    border-radius: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s;
}

.feature-list li:hover {
    background: rgba(59, 130, 246, 0.1);
    border-left-color: #3b82f6;
    transform: translateX(5px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .service-tabs {
        gap: 12px;
    }
    
    .service-tab {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 120px 5% 60px;
    }
    
    .services-hero h1 {
        font-size: 36px;
    }
    
    .service-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-tab {
        width: 100%;
        justify-content: center;
    }
    
    .content-header h2 {
        font-size: 32px;
    }
    
    .service-item-header {
        padding: 20px;
    }
    
    .service-title-wrapper {
        gap: 15px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .service-item-header h3 {
        font-size: 18px;
    }
    
    .service-item.expanded .service-item-content {
        padding: 0 20px 20px;
    }
    
    .feature-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 28px;
    }
    
    .service-tab {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .tab-icon {
        font-size: 18px;
    }
}

/* ===== SERVICES PAGE STYLES ===== */

/* Services Hero */
.services-hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 5% 80px;
    position: relative;
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.service-tab {
    padding: 16px 32px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-tab:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

.service-tab.active {
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5);
}

.tab-icon {
    font-size: 20px;
}

/* Services Content Section */
.services-content-section {
    padding: 60px 0 100px;
}

.service-tab-content {
    display: none;
}

.service-tab-content.active {
    display: block;
    animation: fadeInUp 0.6s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-header {
    text-align: center;
    margin-bottom: 60px;
}

.content-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
}

.content-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

/* Services Accordion - FULL WIDTH DESIGN */
.services-accordion {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Accordion Item - Full Width */
.accordion-item {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.2);
}

.accordion-item.active {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

/* Accordion Header */
.accordion-header {
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}

.accordion-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.6) 50%, transparent);
}

.accordion-title-section {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    flex-shrink: 0;
    transition: all 0.4s;
}

.accordion-item:hover .service-icon {
    transform: scale(1.1) rotate(10deg);
}

.accordion-item.active .service-icon {
    transform: scale(1.15) rotate(15deg);
}

.accordion-title-section h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.accordion-toggle {
    width: 50px;
    height: 50px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    color: #3b82f6;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
}

.accordion-toggle:hover {
    background: rgba(59, 130, 246, 0.2);
    transform: scale(1.1);
    border-color: rgba(59, 130, 246, 0.5);
}

.accordion-toggle svg {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-toggle svg {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-toggle {
    background: rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.6);
}

/* Accordion Content - Full Width Expansion */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-item.active .accordion-content {
    max-height: 10000px;
}

.content-inner {
    padding: 0 40px 40px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.content-inner p {
    margin-bottom: 20px;
    font-size: 16px;
}

.content-inner h4 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 35px 0 20px;
    position: relative;
    padding-left: 24px;
}

.content-inner h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 24px;
    background: linear-gradient(180deg, #3b82f6, #22c55e);
    border-radius: 3px;
}

/* Features Grid - Beautiful Card Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
    margin: 30px 0;
}

.feature-card {
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(34, 197, 94, 0.05) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateX(8px);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 2px 10px rgba(34, 197, 94, 0.3);
}

.feature-card p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .service-tabs {
        gap: 12px;
    }
    
    .service-tab {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .accordion-header {
        padding: 25px 30px;
    }
    
    .content-inner {
        padding: 0 30px 30px;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .services-hero {
        padding: 120px 5% 60px;
    }
    
    .services-hero h1 {
        font-size: 36px;
    }
    
    .service-tabs {
        flex-direction: column;
        gap: 10px;
    }
    
    .service-tab {
        width: 100%;
        justify-content: center;
    }
    
    .content-header h2 {
        font-size: 32px;
    }
    
    .accordion-header {
        padding: 20px;
    }
    
    .accordion-title-section {
        gap: 16px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
    
    .accordion-title-section h3 {
        font-size: 20px;
    }
    
    .accordion-toggle {
        width: 45px;
        height: 45px;
    }
    
    .content-inner {
        padding: 0 20px 25px;
    }
    
    .content-inner p {
        font-size: 15px;
    }
    
    .content-inner h4 {
        font-size: 20px;
        margin: 25px 0 16px;
        padding-left: 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 28px;
    }
    
    .service-tab {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .tab-icon {
        font-size: 18px;
    }
    
    .accordion-header {
        padding: 18px;
    }
    
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
    
    .accordion-title-section h3 {
        font-size: 18px;
    }
    
    .accordion-toggle {
        width: 40px;
        height: 40px;
    }
    
    .content-inner {
        padding: 0 18px 20px;
    }
}

/* ===== PORTFOLIO PAGE STYLES ===== */

/* Portfolio Hero */
.portfolio-hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 5% 100px;
    position: relative;
}

.portfolio-hero-title {
    font-size: 68px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #ffffff;
}

.gradient-text-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 50%, #c4b5fd 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientMove 8s ease infinite;
    display: inline-block;
    filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5));
}

.portfolio-hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

/* Quick Stats */
.portfolio-quick-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    width: 100%;
}

.quick-stat-item {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.quick-stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.8) 50%, transparent);
}

.quick-stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 20px 60px rgba(139, 92, 246, 0.4);
}

.quick-stat-item .stat-icon {
    font-size: 40px;
    margin-bottom: 12px;
    filter: drop-shadow(0 4px 15px rgba(139, 92, 246, 0.5));
}

.quick-stat-item .stat-number {
    font-size: 42px;
    font-weight: 900;
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.quick-stat-item .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

/* Portfolio Showcase Section */
.portfolio-showcase-section {
    padding: 60px 0 100px;
    position: relative;
}

/* Filter Wrapper */
.portfolio-filter-wrapper {
    margin-bottom: 60px;
}

.filter-header {
    text-align: center;
    margin-bottom: 40px;
}

.filter-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 12px;
}

.filter-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

/* Enhanced Filters */
.portfolio-filters-enhanced {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.portfolio-filters-enhanced .portfolio-filter-btn {
    padding: 16px 28px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-filters-enhanced .portfolio-filter-btn:hover {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
}

.portfolio-filters-enhanced .portfolio-filter-btn.active {
    background: linear-gradient(135deg, #8b5cf6 0%, #a78bfa 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.5);
}

.filter-icon {
    font-size: 20px;
}

/* Portfolio Search */
.portfolio-search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.portfolio-search-box svg {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s;
}

.portfolio-search-box input {
    width: 100%;
    padding: 18px 20px 18px 55px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s;
    outline: none;
}

.portfolio-search-box input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.portfolio-search-box input:focus {
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
}

.portfolio-search-box input:focus + svg {
    color: #8b5cf6;
}

/* Showcase Grid */
.portfolio-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
}

/* Showcase Item */
.portfolio-showcase-item {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.portfolio-showcase-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #8b5cf6, #3b82f6, #22c55e);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.portfolio-showcase-item:hover::before {
    opacity: 0.3;
}

.portfolio-showcase-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(139, 92, 246, 0.5);
}

/* Project Image */
.project-image-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-gradient-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-showcase-item:hover .project-gradient-bg {
    transform: scale(1.1) rotate(3deg);
}

/* Gradient Backgrounds */
.bg-gradient-blue { background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%); }
.bg-gradient-green { background: linear-gradient(135deg, #22c55e 0%, #15803d 100%); }
.bg-gradient-pink { background: linear-gradient(135deg, #ec4899 0%, #be185d 100%); }
.bg-gradient-purple { background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%); }
.bg-gradient-cyan { background: linear-gradient(135deg, #06b6d4 0%, #0e7490 100%); }
.bg-gradient-orange { background: linear-gradient(135deg, #f97316 0%, #c2410c 100%); }
.bg-gradient-red { background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%); }
.bg-gradient-yellow { background: linear-gradient(135deg, #eab308 0%, #a16207 100%); }
.bg-gradient-teal { background: linear-gradient(135deg, #14b8a6 0%, #0f766e 100%); }
.bg-gradient-indigo { background: linear-gradient(135deg, #6366f1 0%, #4338ca 100%); }
.bg-gradient-lime { background: linear-gradient(135deg, #84cc16 0%, #4d7c0f 100%); }
.bg-gradient-rose { background: linear-gradient(135deg, #f43f5e 0%, #be123c 100%); }

.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(0px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: all 0.4s;
}

.portfolio-showcase-item:hover .project-overlay {
    opacity: 1;
    backdrop-filter: blur(8px);
}

.project-icon {
    font-size: 80px;
    filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.5));
    transform: scale(0.8);
    transition: transform 0.4s;
}

.portfolio-showcase-item:hover .project-icon {
    transform: scale(1);
}

.quick-view-btn {
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s;
}

.portfolio-showcase-item:hover .quick-view-btn {
    transform: translateY(0);
    opacity: 1;
}

.quick-view-btn:hover {
    transform: scale(1.1);
    background: rgba(139, 92, 246, 1);
}

/* Project Info */
.project-info {
    padding: 30px;
}

.project-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.project-tag {
    padding: 6px 14px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #a78bfa;
}

.project-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.portfolio-showcase-item:hover .project-info h3 {
    background: linear-gradient(135deg, #8b5cf6 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.project-info > p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 20px;
}

.project-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.meta-item svg {
    color: #8b5cf6;
}

/* Enhanced Modal */
.portfolio-detail-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.portfolio-detail-modal.active {
    display: flex;
}

.modal-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    max-height: 95vh;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 30px;
    overflow: hidden;
    animation: modalSlideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(239, 68, 68, 0.4);
    border-radius: 50%;
    color: #ef4444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 100;
}

.modal-close-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.6);
    transform: rotate(90deg) scale(1.1);
}

/* Modal Navigation */
.modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    color: #8b5cf6;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 100;
}

.modal-nav-btn:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-50%) scale(1.15);
}

.prev-project-btn {
    left: 25px;
}

.next-project-btn {
    right: 25px;
}

.modal-content-wrapper {
    max-height: 95vh;
    overflow-y: auto;
    padding: 80px 60px;
}

.modal-content-wrapper::-webkit-scrollbar {
    width: 10px;
}

.modal-content-wrapper::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.5);
}

.modal-content-wrapper::-webkit-scrollbar-thumb {
    background: rgba(139, 92, 246, 0.5);
    border-radius: 5px;
}

.modal-content-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(139, 92, 246, 0.7);
}

/* CTA Section */
.portfolio-cta-section {
    padding: 100px 0;
}

.cta-card-portfolio {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 30px;
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card-portfolio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        #8b5cf6 20%, 
        #3b82f6 40%, 
        #22c55e 60%, 
        #f97316 80%, 
        transparent);
}

.cta-glow-effect {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-glow 8s ease-in-out infinite;
    pointer-events: none;
}

.cta-content-center {
    position: relative;
    z-index: 1;
}

.cta-icon-large {
    font-size: 100px;
    margin-bottom: 30px;
    filter: drop-shadow(0 8px 40px rgba(139, 92, 246, 0.6));
    animation: float 5s ease-in-out infinite;
}

.cta-content-center h2 {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-content-center p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 1200px) {
    .portfolio-showcase-grid {
        grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    }
}

@media (max-width: 768px) {
    .portfolio-hero-section {
        padding: 120px 5% 80px;
    }
    
    .portfolio-hero-title {
        font-size: 40px;
    }
    
    .portfolio-quick-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .filter-header h2 {
        font-size: 32px;
    }
    
    .portfolio-filters-enhanced {
        flex-direction: column;
        gap: 12px;
    }
    
    .portfolio-filters-enhanced .portfolio-filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .portfolio-showcase-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .project-image-wrapper {
        height: 220px;
    }
    
    .project-icon {
        font-size: 60px;
    }
    
    .modal-content-wrapper {
        padding: 60px 30px;
    }
    
    .modal-nav-btn {
        display: none;
    }
    
    .cta-card-portfolio {
        padding: 80px 40px;
    }
    
    .cta-content-center h2 {
        font-size: 36px;
    }
    
    .cta-buttons-group {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons-group .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .portfolio-hero-title {
        font-size: 32px;
    }
    
    .portfolio-quick-stats {
        grid-template-columns: 1fr;
    }
    
    .project-info {
        padding: 24px;
    }
    
    .cta-icon-large {
        font-size: 70px;
    }
    
    .cta-content-center h2 {
        font-size: 28px;
    }
}

/* Modal Content Styles */
.modal-project-header {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid rgba(139, 92, 246, 0.2);
}

.modal-project-icon {
    font-size: 100px;
    filter: drop-shadow(0 8px 40px rgba(139, 92, 246, 0.6));
    flex-shrink: 0;
}

.modal-project-title-section h1 {
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
}

.modal-project-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.modal-project-description {
    margin-bottom: 50px;
}

.modal-project-description p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
}

.detail-section {
    margin-bottom: 40px;
}

.detail-section h3 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.detail-section p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.results-list,
.features-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 12px;
}
.results-list li,
.features-list li {
padding: 14px 20px;
background: rgba(139, 92, 246, 0.08);
border-left: 3px solid rgba(139, 92, 246, 0.5);
border-radius: 8px;
font-size: 15px;
color: rgba(255, 255, 255, 0.9);
transition: all 0.3s;
}
.results-list li:hover,
.features-list li:hover {
background: rgba(139, 92, 246, 0.15);
border-left-color: #8b5cf6;
transform: translateX(5px);
}
.tech-stack-modal {
display: flex;
flex-wrap: wrap;
gap: 12px;
}
.tech-badge-modal {
padding: 10px 20px;
background: rgba(139, 92, 246, 0.15);
border: 2px solid rgba(139, 92, 246, 0.3);
border-radius: 25px;
font-size: 14px;
font-weight: 600;
color: #a78bfa;
transition: all 0.3s;
}
.tech-badge-modal:hover {
background: rgba(139, 92, 246, 0.25);
border-color: rgba(139, 92, 246, 0.5);
transform: translateY(-2px);
}
.modal-project-actions {
display: flex;
gap: 20px;
justify-content: center;
margin-top: 60px;
padding-top: 40px;
border-top: 2px solid rgba(139, 92, 246, 0.2);
}
/* Responsive for Modal */
@media (max-width: 768px) {
.modal-project-header {
flex-direction: column;
align-items: center;
text-align: center;
}
.modal-project-icon {
    font-size: 70px;
}

.modal-project-title-section h1 {
    font-size: 28px;
}

.modal-project-meta {
    justify-content: center;
    gap: 16px;
    font-size: 13px;
}

.detail-section h3 {
    font-size: 22px;
}

.results-list,
.features-list {
    grid-template-columns: 1fr;
}

.modal-project-actions {
    flex-direction: column;
}

.modal-project-actions .btn {
    width: 100%;
}
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Hero */
.contact-hero-section {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 5% 80px;
    position: relative;
}

.contact-hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 24px;
}

.contact-hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

/* Quick Contact Icons */
.quick-contact-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-contact-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 32px;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.quick-contact-icon:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.phone-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    border: 2px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.email-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.4);
    color: #3b82f6;
}

.chat-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(139, 92, 246, 0.4);
    color: #8b5cf6;
}

.location-icon {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(249, 115, 22, 0.1));
    border: 2px solid rgba(249, 115, 22, 0.4);
    color: #f97316;
}

.quick-contact-icon:hover .icon-wrapper {
    transform: scale(1.15) rotate(10deg);
}

/* Main Contact Section */
.main-contact-section {
    padding: 80px 0;
    position: relative;
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Enhanced Form Card */
.form-card-enhanced {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 30px;
    padding: 50px 45px;
    position: relative;
    overflow: hidden;
}

.form-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        #3b82f6 20%, 
        #22c55e 40%, 
        #f97316 60%, 
        #8b5cf6 80%, 
        transparent);
}

.form-card-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    filter: blur(80px);
    pointer-events: none;
    animation: pulse-glow 6s ease-in-out infinite;
}

.form-header-enhanced {
    text-align: center;
    margin-bottom: 40px;
}

.form-icon-large {
    font-size: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 20px rgba(59, 130, 246, 0.6));
    animation: float 4s ease-in-out infinite;
}

.form-header-enhanced h2 {
    font-size: 36px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 12px;
}

.form-header-enhanced p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

/* Enhanced Form */
.contact-form-enhanced {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row,
.form-row-dual {
    display: flex;
    gap: 20px;
}

.form-row {
    flex-direction: column;
}

.form-row-dual {
    flex-direction: row;
}

.form-group-enhanced {
    flex: 1;
    position: relative;
}

.form-group-enhanced label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px;
}

.form-input-enhanced,
.form-textarea-enhanced {
    width: 100%;
    padding: 16px 20px;
    background: rgba(15, 23, 42, 0.9);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 15px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: all 0.3s;
    outline: none;
}

.form-input-enhanced::placeholder,
.form-textarea-enhanced::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-input-enhanced:focus,
.form-textarea-enhanced:focus {
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1),
                0 4px 20px rgba(59, 130, 246, 0.2);
    transform: translateY(-2px);
}

.form-textarea-enhanced {
    resize: vertical;
    min-height: 140px;
}

.input-border-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #22c55e, #f97316);
    transition: width 0.4s;
    border-radius: 3px;
}

.form-input-enhanced:focus ~ .input-border-effect,
.form-textarea-enhanced:focus ~ .input-border-effect {
    width: 100%;
}

/* Enhanced Submit Button */
.submit-btn-enhanced {
    margin-top: 10px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
    position: relative;
    overflow: hidden;
}

.submit-btn-enhanced::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.submit-btn-enhanced:hover::before {
    width: 400px;
    height: 400px;
}

.submit-btn-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.6);
}

.btn-text,
.btn-icon {
    position: relative;
    z-index: 1;
}

.btn-loader {
    display: none;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.submit-btn-enhanced.loading .btn-text,
.submit-btn-enhanced.loading .btn-icon {
    display: none;
}

.submit-btn-enhanced.loading .btn-loader {
    display: block;
}

/* Contact Info Wrapper */
.info-header {
    margin-bottom: 40px;
}

.info-header h2 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
}

.info-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

/* Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.05), transparent);
    transition: left 0.6s;
}

.info-card:hover::before {
    left: 100%;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.3);
}

.info-card-icon {
    width: 70px;
    height: 70px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    margin-bottom: 20px;
    transition: all 0.4s;
}

.info-card:hover .info-card-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(59, 130, 246, 0.2);
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.info-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

.info-link {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s;
    display: inline-block;
}

.info-link:hover {
    color: #60a5fa;
    transform: translateX(5px);
}

/* Hours List */
.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    font-size: 14px;
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span {
    color: rgba(255, 255, 255, 0.7);
}

.hours-item strong {
    color: #ffffff;
    font-weight: 600;
}

/* Social Links Enhanced */
.social-links-enhanced {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link-item {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.social-link-item.facebook {
    background: rgba(24, 119, 242, 0.1);
    border: 2px solid rgba(24, 119, 242, 0.3);
    color: #1877f2;
}

.social-link-item.facebook:hover {
    background: #1877f2;
    color: white;
    transform: translateY(-5px);
}

.social-link-item.twitter {
    background: rgba(29, 161, 242, 0.1);
    border: 2px solid rgba(29, 161, 242, 0.3);
    color: #1da1f2;
}

.social-link-item.twitter:hover {
    background: #1da1f2;
    color: white;
    transform: translateY(-5px);
}

.social-link-item.linkedin {
    background: rgba(0, 119, 181, 0.1);
    border: 2px solid rgba(0, 119, 181, 0.3);
    color: #0077b5;
}

.social-link-item.linkedin:hover {
    background: #0077b5;
    color: white;
    transform: translateY(-5px);
}

.social-link-item.instagram {
    background: rgba(225, 48, 108, 0.1);
    border: 2px solid rgba(225, 48, 108, 0.3);
    color: #e1306c;
}

.social-link-item.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    transform: translateY(-5px);
}

/* Next Steps Section */
.next-steps-section {
    padding: 100px 0;
    background: rgba(5, 8, 15, 0.5);
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-header-center h2 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 16px;
}

.section-header-center p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

/* Steps Timeline */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.timeline-connector {
    position: absolute;
    top: 40px;
    left: 16.66%;
    right: 16.66%;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(59, 130, 246, 0.3) 0%, 
        rgba(249, 115, 22, 0.3) 50%, 
        rgba(34, 197, 94, 0.3) 100%);
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6 0%, #0ea5e9 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: white;
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.5);
    border: 4px solid rgba(15, 23, 42, 0.8);
    transition: all 0.4s;
}

.step-item:nth-child(2) .step-number {
    background: linear-gradient(135deg, #f97316 0%, #fb923c 100%);
    box-shadow: 0 10px 40px rgba(249, 115, 22, 0.5);
}

.step-item:nth-child(3) .step-number {
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.5);
}

.step-item:hover .step-number {
    transform: scale(1.1) rotate(360deg);
}

.step-content {
    text-align: center;
}

.step-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(59, 130, 246, 0.1);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3b82f6;
    margin: 0 auto 20px;
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Contact Stats Section */
.contact-stats-section {
    padding: 80px 0;
}

.contact-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.contact-stat-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.contact-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.8) 50%, transparent);
}

.contact-stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.4);
}

.stat-icon-large {
    font-size: 56px;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 20px rgba(59, 130, 246, 0.5));
}

.stat-number-large {
    font-size: 52px;
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6 0%, #22c55e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.stat-label-large {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: rgba(5, 8, 15, 0.5);
}

.map-header {
    text-align: center;
    margin-bottom: 60px;
}

.map-header h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
}

.map-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.map-placeholder {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s;
}

.map-placeholder:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

.map-icon {
    font-size: 100px;
    margin-bottom: 30px;
    filter: drop-shadow(0 8px 40px rgba(59, 130, 246, 0.6));
}

.map-placeholder h3 {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.map-placeholder p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Final CTA */
.contact-final-cta {
    padding: 100px 0;
}

.final-cta-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 30px;
    padding: 100px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, 
        transparent, 
        #3b82f6 20%, 
        #22c55e 40%, 
        #f97316 60%, 
        #8b5cf6 80%, 
        transparent);
}

.cta-glow-large {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-glow 8s ease-in-out infinite;
    pointer-events: none;
}

.cta-icon-xl {
    font-size: 120px;
    margin-bottom: 30px;
    filter: drop-shadow(0 8px 40px rgba(59, 130, 246, 0.6));
    animation: float 5s ease-in-out infinite;
}

.cta-content-final h2 {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 24px;
}

.cta-content-final p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.cta-buttons-final {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Success Modal */
.success-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.success-modal.active {
    display: flex;
}

.success-modal-content {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(30px);
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: 24px;
    padding: 60px 50px;
    text-align: center;
    max-width: 500px;
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    color: white;
    margin: 0 auto 30px;
    box-shadow: 0 10px 40px rgba(34, 197, 94, 0.5);
    animation: scaleIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.success-modal-content h3 {
    font-size: 32px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 16px;
}

.success-modal-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 1200px) {
    .contact-grid-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .steps-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline-connector {
        display: none;
    }
    
    .contact-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-hero-section {
        padding: 120px 5% 60px;
    }
    
    .contact-hero-title {
        font-size: 42px;
    }
    
    .quick-contact-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .form-card-enhanced {
        padding: 40px 30px;
    }
    
    .form-header-enhanced h2 {
        font-size: 28px;
    }
    
    .form-row-dual {
        flex-direction: column;
    }
    
    .info-header h2 {
        font-size: 32px;
    }
    
    .section-header-center h2 {
        font-size: 36px;
    }
    
    .contact-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .map-placeholder {
        padding: 60px 30px;
        min-height: 400px;
    }
    
    .final-cta-card {
        padding: 80px 40px;
    }
    
    .cta-content-final h2 {
        font-size: 36px;
    }
    
    .cta-buttons-final {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-buttons-final .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .contact-hero-title {
        font-size: 32px;
    }
    
    .quick-contact-icons {
        grid-template-columns: 1fr;
    }
    
    .form-icon-large {
        font-size: 60px;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .stat-icon-large {
        font-size: 42px;
    }
    
    .stat-number-large {
        font-size: 42px;
    }
    
    .cta-icon-xl {
        font-size: 80px;
    }
}