        :root {
            --primary: #00f7ff;
            --secondary: #9d4edd;
            --accent: #ff00c8;
            --dark: #0a0a1f;
            --dark-light: #1a1a2e;
            --text: #e6e6ff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--dark);
            color: var(--text);
            overflow-x: hidden;
            line-height: 1.6;
            perspective: 1px;
            transform-style: preserve-3d;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Orbitron', sans-serif;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }

        section {
            padding: 100px 0;
            position: relative;
            transform-style: preserve-3d;
            overflow: hidden;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }

        .section-title h2 {
            font-size: 2.5rem;
            display: inline-block;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }

        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            padding: 20px 0;
            transition: all 0.3s ease;
            transform-style: preserve-3d;
        }

        header.scrolled {
            background-color: rgba(10, 10, 31, 0.9);
            backdrop-filter: blur(10px);
            padding: 15px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Orbitron', sans-serif;
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo span {
            color: var(--secondary);
        }

        .logo-tagline {
            font-size: 0.7rem;
            margin-left: -180px;
            color: var(--text);
            font-family: 'Poppins', sans-serif;
            font-weight: 300;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: var(--text);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--text);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
        }

        .hero-content {
            max-width: 700px;
            z-index: 2;
            transform: translateZ(50px);
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero h1 span {
            color: var(--primary);
            text-shadow: 0 0 10px rgba(0, 247, 255, 0.5);
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 600px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: var(--dark);
            text-decoration: none;
            border-radius: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 247, 255, 0.3);
            transform-style: preserve-3d;
        }

        .btn:hover {
            transform: translateY(-3px) translateZ(10px);
            box-shadow: 0 8px 20px rgba(0, 247, 255, 0.5);
        }

        /* 3D Canvas */
        #canvas-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
        }

        /* Services Section */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-card {
            background: var(--dark-light);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
            transform-style: preserve-3d;
            transform: translateZ(0);
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: -1;
        }

        .service-card:hover::before {
            opacity: 0.1;
        }

        .service-card:hover {
            transform: translateY(-10px) translateZ(20px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary);
            transform: translateZ(30px);
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            transform: translateZ(20px);
        }

        /* Stats Section */
        .stats {
            background: var(--dark-light);
        }

        .stats-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
        }

        .stat-item {
            text-align: center;
            padding: 30px;
            transform-style: preserve-3d;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
            font-family: 'Orbitron', sans-serif;
            transform: translateZ(40px);
        }

        .stat-label {
            font-size: 1.2rem;
            color: var(--text);
            transform: translateZ(20px);
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-text h3 {
            font-size: 2rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .about-image {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .about-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.05);
        }

        /* Portfolio Section */
        .portfolio-carousel {
            position: relative;
            overflow: hidden;
            padding: 20px 0;
        }

        .carousel-container {
            display: flex;
            transition: transform 0.5s ease;
        }

        .client-logo {
            flex: 0 0 200px;
            margin: 0 15px;
            background: var(--dark-light);
            border-radius: 10px;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 120px;
            transform-style: preserve-3d;
            transition: transform 0.3s ease;
        }

        .client-logo:hover {
            transform: translateZ(20px);
        }

        .client-logo img {
            max-width: 100%;
            max-height: 80px;
            filter: grayscale(100%);
            transition: all 0.3s ease;
        }

        .client-logo:hover img {
            filter: grayscale(0);
            transform: scale(1.1);
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--dark-light);
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .carousel-dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }

        /* Partners & Events */
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .partner-card {
            background: var(--dark-light);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .partner-card:hover {
            transform: translateY(-10px) rotateX(5deg) translateZ(20px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .partner-image {
            height: 200px;
            overflow: hidden;
        }

        .partner-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .partner-card:hover .partner-image img {
            transform: scale(1.1);
        }

        .partner-content {
            padding: 20px;
        }

        .partner-content h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        /* Blogs & Testimonials */
        .blogs-testimonials {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
        }

        .blog-card, .testimonial-card {
            background: var(--dark-light);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .blog-card:hover, .testimonial-card:hover {
            transform: translateY(-5px) rotateY(5deg) translateZ(20px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .blog-meta {
            display: flex;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: var(--primary);
        }

        .blog-meta span {
            margin-right: 15px;
        }

        .blog-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .testimonial-content {
            font-style: italic;
            margin-bottom: 20px;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }

        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-info h4 {
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 0.9rem;
            color: var(--primary);
        }

        /* Careers Section */
        .careers-content {
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .careers-content p {
            margin-bottom: 40px;
        }

        .job-listings {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .job-card {
            background: var(--dark-light);
            border-radius: 10px;
            padding: 30px;
            text-align: left;
            transition: all 0.3s ease;
            transform-style: preserve-3d;
            perspective: 1000px;
        }

        .job-card:hover {
            transform: translateY(-5px) rotateX(5deg) translateZ(20px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .job-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .job-meta {
            display: flex;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: var(--primary);
        }

        .job-meta span {
            margin-right: 15px;
        }

        /* Newsletter Section */
        .newsletter {
            background: var(--dark-light);
            text-align: center;
            padding: 80px 0;
        }

        .newsletter-content {
            max-width: 600px;
            margin: 0 auto;
        }

        .newsletter h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .newsletter p {
            margin-bottom: 30px;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 15px 20px;
            border: none;
            border-radius: 30px 0 0 30px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--text);
            font-family: 'Poppins', sans-serif;
        }

        .newsletter-form input:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.15);
        }

        .newsletter-form button {
            padding: 0 30px;
            border: none;
            border-radius: 0 30px 30px 0;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            color: var(--dark);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            opacity: 0.9;
        }

        /* Contact Section */
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }

        .contact-form {
            background: var(--dark-light);
            border-radius: 10px;
            padding: 40px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: none;
            border-radius: 5px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--text);
            font-family: 'Poppins', sans-serif;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            background: rgba(255, 255, 255, 0.15);
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .contact-details {
            margin-bottom: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 1.2rem;
        }

        .map-container {
            height: 300px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            transform-style: preserve-3d;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* Footer */
        footer {
            background: var(--dark-light);
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-about h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .footer-links h4,
        .footer-services h4,
        .footer-contact h4 {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: var(--primary);
        }

        .footer-links ul,
        .footer-services ul {
            list-style: none;
        }

        .footer-links li,
        .footer-services li {
            margin-bottom: 10px;
        }

        .footer-links a,
        .footer-services a {
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-links a:hover,
        .footer-services a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .social-links {
            display: flex;
            margin-top: 20px;
        }

        .social-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: var(--text);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        /* 3D Transition Elements */
        .transition-connector {
            position: absolute;
            width: 100%;
            height: 200px;
            bottom: -100px;
            left: 0;
            z-index: 5;
            transform-style: preserve-3d;
        }

        .connector-shape {
            position: absolute;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, transparent 0%, var(--dark-light) 70%);
            clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
            transform: translateZ(-50px);
        }

        .shape-continuity {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            z-index: -1;
            overflow: hidden;
        }

        .continuity-element {
            position: absolute;
            border-radius: 50%;
            background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
            opacity: 0.1;
            animation: floatContinuity 15s infinite linear;
        }

        @keyframes floatContinuity {
            0% { transform: translateY(0) translateX(0) rotate(0deg); }
            33% { transform: translateY(-30px) translateX(20px) rotate(120deg); }
            66% { transform: translateY(20px) translateX(-20px) rotate(240deg); }
            100% { transform: translateY(0) translateX(0) rotate(360deg); }
        }

        /* 3D Scroll Bridge */
        .scroll-bridge {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 10;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .bridge-active {
            opacity: 1;
        }

        .bridge-element {
            position: absolute;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(0, 247, 255, 0.1) 0%, transparent 70%);
            transform: scale(0);
            transition: transform 0.8s ease;
        }

        .bridge-expand {
            transform: scale(1);
        }

        /* 3D Effects */
        .parallax-element {
            transform-style: preserve-3d;
        }

        .floating {
            animation: floating 6s ease-in-out infinite;
        }

        @keyframes floating {
            0% { transform: translateY(0px) translateZ(0); }
            50% { transform: translateY(-20px) translateZ(10px); }
            100% { transform: translateY(0px) translateZ(0); }
        }

        .pulse {
            animation: pulse 2s ease-in-out infinite alternate;
        }

        @keyframes pulse {
            0% { transform: scale(1) translateZ(0); }
            100% { transform: scale(1.05) translateZ(10px); }
        }

        /* 3D Scroll Animations */
        .scroll-3d {
            transform-style: preserve-3d;
            transform: translateZ(0);
            transition: transform 0.8s ease;
        }

        /* Mouse Follow Effect */
        .mouse-follow {
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(0, 247, 255, 0.1) 0%, rgba(157, 78, 221, 0) 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            transform: translate(-50%, -50%);
            transition: transform 0.1s ease;
        }

        /* Section Backgrounds with 3D Depth */
        .section-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            transform-style: preserve-3d;
        }

        .bg-layer {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
        }

        .bg-layer-1 {
            transform: translateZ(-100px) scale(2);
            opacity: 0.1;
        }

        .bg-layer-2 {
            transform: translateZ(-50px) scale(1.5);
            opacity: 0.2;
        }

        .bg-layer-3 {
            transform: translateZ(-25px) scale(1.25);
            opacity: 0.3;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .about-content,
            .contact-container,
            .blogs-testimonials,
            .footer-content {
                grid-template-columns: 1fr;
            }

            .hero h1 {
                font-size: 3rem;
            }
        }

        @media (max-width: 768px) {
            .navbar {
                position: relative;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--dark);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: all 0.5s ease;
            }

            .nav-links.active {
                left: 0;
            }

            .nav-links li {
                margin: 15px 0;
            }

            .mobile-menu-btn {
                display: block;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .newsletter-form input {
                border-radius: 30px;
                margin-bottom: 10px;
            }

            .newsletter-form button {
                border-radius: 30px;
                padding: 15px;
            }
        }

        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 2rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .stats-container {
                grid-template-columns: 1fr;
            }
        }
        /* Portfolio Section Styles */
.portfolio-grid {
    margin-bottom: 50px;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--dark-light);
    border: none;
    color: var(--text);
    padding: 10px 20px;
    margin: 5px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.filter-btn.active, .filter-btn:hover {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--dark);
}

.portfolio-items {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-item {
    background: var(--dark-light);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.portfolio-item:hover {
    transform: translateY(-10px) translateZ(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.portfolio-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 31, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 20px;
    text-align: center;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.portfolio-overlay p {
    margin-bottom: 20px;
}

/* Clients Section Styles */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.client-logo {
    background: var(--dark-light);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: translateY(-10px) translateZ(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.client-logo img {
    max-width: 100%;
    max-height: 80px;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0);
    transform: scale(1.1);
}

.testimonials {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.testimonials h3 {
    margin-bottom: 40px;
    color: var(--primary);
}

.testimonials-carousel {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
}

.testimonial-content {
    background: var(--dark-light);
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    position: relative;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: serif;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

.testimonial-prev, .testimonial-next {
    background: var(--dark-light);
    border: none;
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.testimonial-prev:hover, .testimonial-next:hover {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: var(--dark);
}

.testimonial-dots {
    display: flex;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--dark-light);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Careers Section Styles */
.careers-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.career-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background: var(--dark-light);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-10px) translateZ(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.benefit-item h4 {
    color: var(--primary);
    margin-bottom: 15px;
}

.job-openings {
    margin-top: 60px;
}

.job-listings {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.job-card {
    background: var(--dark-light);
    border-radius: 10px;
    padding: 30px;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-10px) translateZ(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.job-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

.job-meta {
    display: flex;
    margin-bottom: 20px;
    font-size: 0.9rem;
    color: var(--text);
    flex-wrap: wrap;
}

.job-meta span {
    margin-right: 15px;
    margin-bottom: 5px;
}

.job-card p {
    margin-bottom: 25px;
}

/* Blog Section Styles */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.blog-card {
    background: var(--dark-light);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px) translateZ(20px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: var(--primary);
}

.blog-meta span {
    margin-right: 15px;
}

.blog-card h3 {
    margin-bottom: 15px;
    color: var(--text);
}

.blog-card p {
    margin-bottom: 20px;
    color: var(--text);
}

.read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.blog-cta {
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .portfolio-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        margin: 5px 0;
    }
    
    .portfolio-items {
        grid-template-columns: 1fr;
    }
    
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .career-benefits {
        grid-template-columns: 1fr;
    }
    
    .job-listings {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}