
        /* Base Styles & Variables */
        :root {
            --primary: #6e45e2;
            --secondary: #88d3ce;
            --accent: #ff7e5f;
            --dark: #1a1a2e;
            --light: #f8f9fa;
            --transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
            --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
        }

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

        body {
            background-color: var(--dark);
            color: var(--light);
            overflow-x: hidden;
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
        }

        /* Particle Background */
        #particles-js {
            position: fixed;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, var(--dark) 0%, #16213e 100%);
        }

        /* Floating Elements */
        .floating {
            animation: float 8s ease-in-out infinite;
        }

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

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: linear-gradient(90deg, rgba(110, 69, 226, 0.9) 0%, rgba(136, 211, 206, 0.9) 50%, rgba(255, 126, 95, 0.9) 100%);
            backdrop-filter: blur(10px);
            box-shadow: var(--box-shadow);
            animation: headerColorShift 15s infinite alternate;
            background-size: 300% 300%;
        }

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

        .logo {
            display: flex;
            align-items: center;
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            font-family: 'Orbitron', sans-serif;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
        }

        .logo img {
            height: 40px;
            margin-right: 15px;
            animation: pulse 2s infinite, glow 3s infinite alternate;
        }

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

        @keyframes glow {
            from { filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.7)); }
            to { filter: drop-shadow(0 0 15px rgba(255, 255, 255, 1)); }
        }

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

        nav ul li {
            margin-left: 30px;
            position: relative;
        }

        nav ul li a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: var(--transition);
            padding: 10px 0;
            position: relative;
            text-transform: uppercase;
            letter-spacing: 1px;
            font-family: 'Montserrat', sans-serif;
        }

        nav ul li a:hover {
            color: var(--dark);
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        }

        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 3px;
            background: white;
            transition: var(--transition);
            border-radius: 3px;
        }

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

        .menu-toggle {
            display: none;
            cursor: pointer;
            font-size: 1.8rem;
            color: white;
            z-index: 1001;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 5%;
            position: relative;
            overflow: hidden;
            background: radial-gradient(circle at center, rgba(110, 69, 226, 0.2) 0%, transparent 70%);
            text-align: center;
        }

        .hero-content {
            max-width: 1000px;
            z-index: 1;
            position: relative;
            padding-top: 80px;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4.5rem);
            font-weight: 700;
            margin-bottom: 30px;
            background: linear-gradient(to right, #ffffff, #88d3ce, #ff7e5f);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            animation: gradientShift 8s ease infinite, textGlow 3s infinite alternate, blink 2s infinite;
            background-size: 300% 300%;
            line-height: 1.2;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.8; }
        }

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

        @keyframes textGlow {
            from { text-shadow: 0 0 10px rgba(255, 255, 255, 0.3); }
            to { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8); }
        }

        .hero p {
            font-size: clamp(1.1rem, 2vw, 1.5rem);
            margin-bottom: 40px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 300;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 10px 20px rgba(110, 69, 226, 0.5);
            border: none;
            cursor: pointer;
            animation: gradientShift 8s ease infinite, pulse 2s infinite;
            background-size: 300% 300%;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(110, 69, 226, 0.7);
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--accent), var(--primary));
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }

        .btn:hover::before {
            opacity: 1;
        }

        /* Sections Common Styles */
        section {
            padding: 100px 5%;
            position: relative;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            border-radius: 2px;
        }

        .section-title p {
            font-size: clamp(1rem, 1.5vw, 1.3rem);
            color: rgba(255, 255, 255, 0.8);
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* About Section */
        .about-section {
            background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(22, 33, 62, 0.8) 100%);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--box-shadow);
            position: relative;
            overflow: hidden;
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(110, 69, 226, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
            z-index: -1;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .about-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h3 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            margin-bottom: 20px;
            color: var(--secondary);
            position: relative;
            display: inline-block;
        }

        .about-text h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .about-text p {
            margin-bottom: 20px;
            line-height: 1.8;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .about-image {
            flex: 1;
            min-width: 300px;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
        }

        .about-image:hover {
            transform: scale(1.03) rotate(1deg);
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: var(--transition);
        }

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

        /* Vision & Mission - Redesigned */
        .vm-section {
            background: linear-gradient(135deg, rgba(255, 126, 95, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--box-shadow);
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .vm-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            transition: var(--transition);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: var(--box-shadow);
        }

        .vm-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            background: rgba(255, 255, 255, 0.15);
        }

        .vm-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--accent);
            position: relative;
            display: flex;
            align-items: center;
        }

        .vm-item h3 i {
            margin-right: 15px;
            font-size: 1.8rem;
        }

        .vm-item p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 20px;
        }

        /* Why Choose Us */
        .why-choose-section {
            background: linear-gradient(135deg, rgba(136, 211, 206, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--box-shadow);
            max-width: 1200px;
            margin: 0 auto;
        }

        .why-choose-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .why-choose-card {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            transition: var(--transition);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: var(--box-shadow);
            display: flex;
            flex-direction: column;
            min-height: 300px;
        }

        .why-choose-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            background: rgba(255, 255, 255, 0.15);
        }

        .why-choose-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            transition: var(--transition);
            transform: scaleX(0);
            transform-origin: left;
        }

        .why-choose-card:hover::after {
            transform: scaleX(1);
        }

        .why-choose-card i {
            font-size: 2.5rem;
            color: var(--secondary);
            margin-bottom: 20px;
            text-shadow: 0 0 15px rgba(136, 211, 206, 0.5);
        }

        .why-choose-card h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: white;
            position: relative;
        }

        .why-choose-card h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--secondary);
            border-radius: 3px;
        }

        .why-choose-card p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .why-choose-card ul {
            margin-top: auto;
            list-style-type: none;
        }

        .why-choose-card ul li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 25px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
        }

        .why-choose-card ul li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--accent);
            font-size: 0.8rem;
        }

        /* Tech Stack - Redesigned */
        .tech-stack-section {
            background: linear-gradient(135deg, rgba(110, 69, 226, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--box-shadow);
            max-width: 1200px;
            margin: 0 auto;
        }

        .tech-stack-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }

        .tech-stack-item {
            flex: 1;
            min-width: 250px;
            max-width: 350px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            transition: var(--transition);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: var(--box-shadow);
        }

        .tech-stack-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            background: rgba(255, 255, 255, 0.15);
        }

        .tech-stack-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--accent);
            position: relative;
            padding-bottom: 10px;
        }

        .tech-stack-item h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }

        .tech-stack-item ul {
            list-style-type: none;
        }

        .tech-stack-item ul li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
            color: rgba(255, 255, 255, 0.9);
        }

        .tech-stack-item ul li::before {
            content: '\f054';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 3px;
            color: var(--accent);
            font-size: 0.8rem;
        }

        /* Services - Redesigned */
        .services-section {
            background: linear-gradient(135deg, rgba(255, 126, 95, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--box-shadow);
            max-width: 1200px;
            margin: 0 auto;
        }

        .services-container {
            position: relative;
            width: 100%;
            margin: 40px auto 0;
            overflow: hidden;
        }

        .services-slider {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            gap: 30px;
            padding: 20px 0;
            scrollbar-width: none;
        }

        .services-slider::-webkit-scrollbar {
            display: none;
        }

        .service-card {
            scroll-snap-align: start;
            flex: 0 0 350px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 0;
            transition: var(--transition);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            display: flex;
            flex-direction: column;
            min-height: 450px;
        }

        .service-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        }

        .service-image {
            height: 180px;
            width: 100%;
            overflow: hidden;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

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

        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-icon {
            font-size: 2.5rem;
            color: var(--accent);
            margin-bottom: 15px;
            text-align: center;
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            transform: scale(1.2) rotate(10deg);
            color: var(--secondary);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
            text-align: center;
            position: relative;
            padding-bottom: 15px;
        }

        .service-card h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
            transition: var(--transition);
        }

        .service-card:hover h3::after {
            width: 100px;
            background: var(--secondary);
        }

        .service-card p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
            text-align: center;
        }

        .service-features {
            margin-bottom: 20px;
            flex-grow: 1;
        }

        .service-features ul {
            list-style-type: none;
        }

        .service-features li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
        }

        .service-features li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 3px;
            color: var(--accent);
            font-size: 0.8rem;
        }

        .service-btn {
            text-align: center;
            margin-top: auto;
        }

        .slider-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
            gap: 15px;
        }

        .slider-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 1.2rem;
        }

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

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: var(--transition);
        }

        .slider-dot.active {
            background: var(--accent);
            transform: scale(1.2);
        }

        /* Team Culture */
        .culture-section {
            background: linear-gradient(135deg, rgba(136, 211, 206, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--box-shadow);
            max-width: 1200px;
            margin: 0 auto;
        }

        .culture-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .culture-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            transition: var(--transition);
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            overflow: hidden;
            z-index: 1;
            box-shadow: var(--box-shadow);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .culture-item:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            background: rgba(255, 255, 255, 0.15);
        }

        .culture-item .culture-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 2rem;
            color: var(--accent);
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .culture-item .culture-icon::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            opacity: 0;
            transition: var(--transition);
        }

        .culture-item:hover .culture-icon::before {
            opacity: 0.3;
        }

        .culture-item h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
            position: relative;
        }

        .culture-item h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }

        .culture-item p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 15px;
        }

        .culture-item .culture-image {
            width: 100%;
            height: 150px;
            border-radius: 10px;
            overflow: hidden;
            margin-top: auto;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .culture-item .culture-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .culture-item:hover .culture-image img {
            transform: scale(1.1);
        }

        /* Recognition */
        .recognition-section {
            background: linear-gradient(135deg, rgba(110, 69, 226, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--box-shadow);
            max-width: 1200px;
            margin: 0 auto;
        }

        .logos-slider {
            overflow: hidden;
            padding: 60px 0;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            margin-top: 40px;
            position: relative;
        }

        .logos-slider::before,
        .logos-slider::after {
            content: '';
            position: absolute;
            top: 0;
            width: 150px;
            height: 100%;
            z-index: 2;
        }

        .logos-slider::before {
            left: 0;
            background: linear-gradient(to right, var(--dark) 0%, transparent 100%);
        }

        .logos-slider::after {
            right: 0;
            background: linear-gradient(to left, var(--dark) 0%, transparent 100%);
        }

        .logos-slide {
            display: flex;
            animation: slide 30s linear infinite;
            width: calc(200px * 14);
        }

        @keyframes slide {
            0% { transform: translateX(0); }
            100% { transform: translateX(calc(-200px * 7)); }
        }

        .logos-slide img {
            height: 60px;
            margin: 0 40px;
            filter: grayscale(100%) brightness(0.7);
            transition: var(--transition);
            object-fit: contain;
        }

        .logos-slide img:hover {
            filter: grayscale(0) brightness(1);
            transform: scale(1.1);
        }

        /* Career */
        .career-section {
            background: linear-gradient(135deg, rgba(255, 126, 95, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--box-shadow);
            max-width: 1200px;
            margin: 0 auto;
        }

        .career-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
            margin-top: 40px;
        }

        .career-text {
            flex: 1;
            min-width: 300px;
        }

        .career-text h3 {
            font-size: clamp(1.8rem, 3vw, 2.5rem);
            margin-bottom: 20px;
            color: var(--secondary);
            position: relative;
            display: inline-block;
        }

        .career-text h3::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary);
            border-radius: 2px;
        }

        .career-text p {
            margin-bottom: 20px;
            line-height: 1.8;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .career-list {
            margin-bottom: 25px;
        }

        .career-list h4 {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: white;
        }

        .career-list ul {
            list-style-type: none;
            margin-bottom: 20px;
        }

        .career-list ul li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 25px;
            color: rgba(255, 255, 255, 0.9);
        }

        .career-list ul li::before {
            content: '\f105';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--accent);
            font-size: 1rem;
        }

        .career-image {
            flex: 1;
            min-width: 300px;
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: var(--transition);
            height: 400px;
        }

        .career-image:hover {
            transform: scale(1.03);
        }

        .career-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

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

        /* Contact */
        .contact-section {
            background: linear-gradient(135deg, rgba(136, 211, 206, 0.1) 0%, rgba(26, 26, 46, 0.8) 100%);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 40px;
            box-shadow: var(--box-shadow);
            max-width: 1200px;
            margin: 0 auto;
        }

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

        .contact-form {
            flex: 1;
            min-width: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: var(--box-shadow);
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: white;
            font-weight: 500;
            font-size: 1rem;
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 8px;
            color: white;
            font-size: 0.9rem;
            transition: var(--transition);
        }

        .form-control:focus {
            outline: none;
            border-color: var(--accent);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 0 0 3px rgba(255, 126, 95, 0.2);
        }

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

        .contact-info {
            flex: 1;
            min-width: 300px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 30px;
            backdrop-filter: blur(5px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: var(--box-shadow);
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
            transition: var(--transition);
            padding: 15px;
            border-radius: 8px;
        }

        .info-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(10px);
        }

        .info-item i {
            font-size: 1.5rem;
            color: var(--accent);
            margin-right: 15px;
            margin-top: 3px;
            min-width: 25px;
            text-align: center;
        }

        .info-content h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: white;
        }

        .info-content p, .info-content a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: var(--transition);
            line-height: 1.6;
            font-size: 0.9rem;
        }

        .info-content a:hover {
            color: var(--accent);
            text-decoration: underline;
        }

        .map-container {
            margin-top: 25px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            height: 250px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        footer {
            background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
            padding: 60px 5% 30px;
            text-align: center;
            position: relative;
            animation: headerColorShift 15s infinite alternate;
            background-size: 300% 300%;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 40px;
            text-align: left;
            max-width: 1200px;
            margin: 0 auto 40px;
        }

        .footer-column {
            flex: 1;
            min-width: 200px;
        }

        .footer-column h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: white;
            position: relative;
            display: inline-block;
        }

        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 30px;
            height: 3px;
            background: white;
            border-radius: 3px;
        }

        .footer-column p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 15px;
            line-height: 1.6;
            font-size: 0.9rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            transition: var(--transition);
            display: block;
            font-size: 0.9rem;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(10px);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }

        .social-links a:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-5px) scale(1.1);
        }

        .copyright {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.9rem;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Floating Cursor Navigation */
        .cursor-nav {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .cursor-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }

        .cursor-dot.active {
            background: var(--accent);
            transform: scale(1.3);
        }

        .cursor-dot::after {
            content: attr(data-section);
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.7);
            color: white;
            padding: 5px 10px;
            border-radius: 5px;
            font-size: 0.8rem;
            opacity: 0;
            transition: var(--transition);
            pointer-events: none;
            white-space: nowrap;
        }

        .cursor-dot:hover::after {
            opacity: 1;
            right: 25px;
        }

        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--accent);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            cursor: pointer;
            transition: var(--transition);
            opacity: 0;
            visibility: hidden;
            z-index: 999;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            transform: translateY(-5px) scale(1.1);
            background: var(--primary);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            header {
                padding: 15px 5%;
            }
            
            nav ul li {
                margin-left: 20px;
            }
            
            .hero h1 {
                font-size: clamp(2.2rem, 5vw, 3.5rem);
            }
            
            .section-title h2 {
                font-size: clamp(1.8rem, 4vw, 2.8rem);
            }
            
            .about-section, .vm-section, .why-choose-section, 
            .tech-stack-section, .services-section, .culture-section, 
            .recognition-section, .career-section, .contact-section {
                padding: 30px;
            }
            
            .service-card {
                flex: 0 0 300px;
                min-height: 400px;
            }
            
            .cursor-nav {
                right: 15px;
            }
        }

        @media (max-width: 768px) {
            .menu-toggle {
                display: block;
                position: absolute;
                right: 5%;
                top: 15px;
            }
            
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background: var(--dark);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: var(--transition);
                z-index: 1000;
                box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
            }
            
            nav.active {
                right: 0;
            }
            
            nav ul {
                flex-direction: column;
                align-items: center;
                width: 100%;
            }
            
            nav ul li {
                margin: 15px 0;
                width: 100%;
                text-align: center;
            }
            
            nav ul li a {
                padding: 15px;
                display: block;
                width: 100%;
            }
            
            .hero {
                text-align: center;
            }
            
            .hero-content {
                padding-top: 60px;
            }
            
            .section-title h2 {
                font-size: clamp(1.6rem, 4vw, 2.2rem);
            }
            
            .section-title p {
                font-size: clamp(0.9rem, 1.5vw, 1.1rem);
            }
            
            .about-section, .vm-section, .why-choose-section, 
            .tech-stack-section, .services-section, .culture-section, 
            .recognition-section, .career-section, .contact-section {
                padding: 25px;
            }
            
            .service-card {
                flex: 0 0 280px;
                min-height: 380px;
            }
            
            .contact-form, .contact-info {
                padding: 25px;
            }
            
            .cursor-nav {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .logo {
                font-size: 1.5rem;
            }
            
            .logo img {
                height: 30px;
            }
            
            .hero h1 {
                font-size: clamp(1.8rem, 5vw, 2.2rem);
            }
            
            .hero p {
                font-size: clamp(0.9rem, 2vw, 1.1rem);
            }
            
            .btn {
                padding: 10px 25px;
                font-size: 0.9rem;
            }
            
            .section-title h2 {
                font-size: clamp(1.4rem, 4vw, 1.8rem);
            }
            
            .section-title p {
                font-size: clamp(0.8rem, 1.5vw, 1rem);
            }
            
            .about-section, .vm-section, .why-choose-section, 
            .tech-stack-section, .services-section, .culture-section, 
            .recognition-section, .career-section, .contact-section {
                padding: 20px;
            }
            
            .vm-item, .tech-stack-item, .why-choose-card, .culture-item {
                width: 100%;
                padding: 20px;
            }
            
            .service-card {
                flex: 0 0 250px;
                min-height: 350px;
            }
            
            .career-image {
                height: 300px;
            }
            
            .scroll-top {
                width: 40px;
                height: 40px;
                font-size: 1rem;
                bottom: 20px;
                right: 20px;
            }
        }