       * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
            color: #ffffff;
            overflow-x: hidden;
            cursor: none;
        }

        /* Custom Cursor */
        .cursor {
            position: fixed;
            width: 20px;
            height: 20px;
            border: 2px solid #00ffff;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transition: all 0.08s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            mix-blend-mode: difference;
            transform: translate(-50%, -50%);
        }

        .cursor-follower {
            position: fixed;
            width: 8px;
            height: 8px;
            background: #00ffff;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            transition: all 0.12s cubic-bezier(0.23, 1, 0.32, 1);
            box-shadow: 0 0 10px #00ffff;
            transform: translate(-50%, -50%);
            opacity: 0.8;
        }

        .cursor-trail {
            position: fixed;
            width: 4px;
            height: 4px;
            background: #00ffff;
            border-radius: 50%;
            pointer-events: none;
            z-index: 9997;
            opacity: 0.4;
            transition: all 0.2s ease-out;
            transform: translate(-50%, -50%);
        }

        /* Matrix Background Effect */
        .matrix-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
            opacity: 0.1;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            background: rgba(0, 0, 0, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: rgba(0, 0, 0, 0.95);
            padding: 15px 50px;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 28px;
            font-weight: bold;
            color: #00ffff;
            text-shadow: 0 0 20px #00ffff;
            animation: glow 2s ease-in-out infinite alternate;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .logo:hover {
            color: #ffffff;
            text-shadow: 0 0 30px #00ffff, 0 0 40px #00ffff;
            transform: scale(1.05);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #00ffff;
            text-shadow: 0 0 10px #00ffff;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #00ffff;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Hero Section */
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            z-index: 2;
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 {
            font-size: 4rem;
            margin-bottom: 20px;
            background: linear-gradient(45deg, #00ffff, #ffffff, #00ffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: titleGlow 3s ease-in-out infinite alternate;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 30px;
            opacity: 0.9;
            animation: fadeIn 1.5s ease-out;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #00ffff, #0080ff);
            color: #000;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0, 255, 255, 0.4);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.5s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .floating-element {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #00ffff;
            border-radius: 50%;
            animation: float 10s infinite linear;
        }

        /* Services Section */
        .services {
            padding: 100px 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            text-align: center;
            font-size: 3rem;
            margin-bottom: 50px;
            color: #00ffff;
            animation: slideInFromLeft 1s ease-out;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px;
            border-radius: 15px;
            border: 1px solid rgba(0, 255, 255, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.1) 0%, transparent 70%);
            transition: all 0.3s ease;
            transform: scale(0);
        }

        .service-card:hover::before {
            transform: scale(1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 255, 255, 0.2);
            border-color: #00ffff;
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #00ffff;
            animation: pulse 2s infinite;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #ffffff;
        }

        .service-card p {
            color: #cccccc;
            line-height: 1.6;
        }

        /* Projects Section */
        .projects {
            padding: 100px 50px;
            background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #0f0f23 100%);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .project-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(0, 255, 255, 0.2);
            transition: all 0.4s ease;
            position: relative;
            backdrop-filter: blur(10px);
        }

        .project-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 30px 60px rgba(0, 255, 255, 0.25);
            border-color: #00ffff;
        }

        .project-image {
            position: relative;
            overflow: hidden;
            border-radius: 20px 20px 0 0;
        }

        .project-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .project-card:hover .project-img {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        .project-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
            animation: shimmer 3s infinite;
            z-index: 1;
        }

        .project-content {
            padding: 30px;
        }

        .project-content h3 {
            font-size: 1.4rem;
            margin-bottom: 15px;
            color: #ffffff;
            background: linear-gradient(45deg, #00ffff, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .project-content p {
            color: #cccccc;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .tech-tag {
            background: rgba(0, 255, 255, 0.1);
            border: 1px solid rgba(0, 255, 255, 0.3);
            padding: 5px 12px;
            border-radius: 15px;
            font-size: 0.8rem;
            color: #00ffff;
            transition: all 0.3s ease;
        }

        .tech-tag:hover {
            background: rgba(0, 255, 255, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 255, 255, 0.3);
        }

        @keyframes shimmer {
            0% { transform: translateX(-100%); }
            100% { transform: translateX(100%); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }
        .about {
            padding: 100px 50px;
            background: rgba(0, 0, 0, 0.3);
            text-align: center;
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .about h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #00ffff;
        }

        .about p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #cccccc;
            margin-bottom: 20px;
        }

        /* Certifications Section */
        .certifications {
            padding: 100px 50px;
            background: rgba(0, 0, 0, 0.5);
        }

        .certifications-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .certifications-intro {
            text-align: center;
            max-width: 800px;
            margin: 0 auto 60px auto;
        }

        .certifications-intro p {
            font-size: 1.2rem;
            line-height: 1.8;
            color: #cccccc;
        }

        .certifications-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .cert-card {
            background: rgba(255, 255, 255, 0.03);
            padding: 0;
            border-radius: 20px;
            border: 1px solid rgba(0, 255, 255, 0.2);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            backdrop-filter: blur(10px);
            text-align: center;
        }

        .cert-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(0, 255, 255, 0.05) 0%, transparent 70%);
            transition: all 0.4s ease;
            transform: scale(0);
        }

        .cert-card:hover::before {
            transform: scale(1);
        }

        .cert-card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 25px 50px rgba(0, 255, 255, 0.2);
            border-color: #00ffff;
        }

        .cert-image {
            width: 100%;
            overflow: hidden;
            border-radius: 20px 20px 0 0;
            position: relative;
        }

        .cert-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .cert-card:hover .cert-img {
            transform: scale(1.1);
            filter: brightness(1.1);
        }

        .cert-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
            animation: shimmer 3s infinite;
        }

        .cert-card h3 {
            font-size: 1.8rem;
            margin: 20px 0 10px 0;
            color: #00ffff;
            font-weight: bold;
            letter-spacing: 1px;
            padding: 0 20px;
        }

        .cert-full-name {
            font-size: 1rem;
            color: #ffffff;
            margin-bottom: 15px;
            font-weight: 600;
            opacity: 0.9;
            padding: 0 20px;
        }

        .cert-description {
            color: #cccccc;
            line-height: 1.6;
            font-size: 0.95rem;
            margin: 0;
            padding: 0 20px 25px 20px;
        }

/* CCA Section */
.cca {
    padding: 100px 50px;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #0f0f23 100%);
}

.cca-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cca-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.cca-description p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 20px;
}

.cca-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.cca-image-container {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.cca-image-container:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 255, 255, 0.25);
    border-color: #00ffff;
}

.cca-image-section {
    height: 200px;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.cca-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.cca-image-container:hover .cca-image {
    transform: scale(1.1);
    filter: brightness(1.1);
}

.cca-image-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
    z-index: 1;
}

.cca-content-section {
    padding: 30px;
}

.cca-content-section h4 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ffffff;
    background: linear-gradient(45deg, #00ffff, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cca-content-section p {
    color: #cccccc;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .cca-content { 
        grid-template-columns: 1fr; 
        gap: 40px;
    }
    .cca-description { 
        position: static; 
    }
    .cca-gallery { 
        grid-template-columns: 1fr; 
    }
    .cca-image-container {
        height: 200px;
    }
}

        /* Contact Section */
        .contact {
            padding: 100px 50px;
            text-align: center;
        }

        .contact h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #00ffff;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 50px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            color: #cccccc;
            font-size: 1.1rem;
        }

        .contact-icon {
            font-size: 1.5rem;
            color: #00ffff;
        }

        /* Footer */
        footer {
            background: rgba(0, 0, 0, 0.9);
            text-align: center;
            padding: 40px 50px;
            border-top: 1px solid rgba(0, 255, 255, 0.3);
        }

        /* Animations */
        @keyframes glow {
            0% { text-shadow: 0 0 20px #00ffff; }
            100% { text-shadow: 0 0 30px #00ffff, 0 0 40px #00ffff; }
        }

        @keyframes fadeInUp {
            0% { opacity: 0; transform: translateY(50px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }

        @keyframes titleGlow {
            0% { filter: brightness(1); }
            100% { filter: brightness(1.2); }
        }

        @keyframes float {
            0% { transform: translateY(100vh) rotate(0deg); }
            100% { transform: translateY(-100vh) rotate(360deg); }
        }

        @keyframes slideInFromLeft {
            0% { opacity: 0; transform: translateX(-100px); }
            100% { opacity: 1; transform: translateX(0); }
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        @keyframes countUp {
            0% { opacity: 0; transform: translateY(20px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.2rem; }
            .section-title { font-size: 2rem; }
            .nav-links { display: none; }
            .contact-info { flex-direction: column; gap: 30px; }
            .cca-content { 
                grid-template-columns: 1fr; 
                gap: 40px;
            }
            .cca-description { 
                position: static; 
            }
            .cca-gallery { 
                grid-template-columns: 1fr; 
            }
            .certifications-grid {
                grid-template-columns: 1fr;
            }
        }