                     :root {
                        --primary: #6c5ce7;
                        --secondary: #00cec9;
                        --dark: #2d3436;
                        --light: #f5f6fa;
                        --accent: #fd79a8;
                    }
                    
                    * {
                        margin: 0;
                        padding: 0;
                        box-sizing: border-box;
                        cursor: none;
                    }
                    /* Scroll Animation Styles */
                    
                      .sticky-nav {
                    position: fixed;
                    top: 20px;
                    left: 0;
                    right: 0;
                    width: 100%;
                    z-index: 1000;
                    transition: box-shadow 0.2s;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    padding: 14px 20px;
                    margin: 0 auto;
                    max-width: 1400px;
                }
                
                .sticky-nav .logo {
                    flex-shrink: 0;
                }
                
                .sticky-nav .nav-links {
                    display: flex;
                    align-items: center;
                    gap: 32px;
                    margin: 0;
                    padding: 0;
                    list-style: none;
                }
                
                .sticky-nav .nav-links li a {
                    color: #fff;
                    text-decoration: none;
                    font-weight: 500;
                    padding: 12px 8px;
                    transition: color 0.2s;
                }
                
                .sticky-nav .nav-links li a:hover {
                    color: var(--primary, #2A73CC);
                }
                /* Mobile nav styles */
                
                @media (max-width: 768px) {
                    .nav-links {
                        position: fixed;
                        top: 0;
                        right: -100%;
                        width: 70vw;
                        height: 100vh;
                        background: #181c24b2;
                        flex-direction: column;
                        align-items: flex-start;
                        justify-content: flex-start;
                        padding-top: 20px;
                        padding-left: 32px;
                        display: flex;
                        transition: right 0.3s cubic-bezier(.4, 0, .2, 1);
                        z-index: 100;
                        box-shadow: -2px 0 16px rgba(0, 0, 0, 0.18);
                    }
                    .nav-links li {
                        margin: 5px 0;
                    }
                    .nav-links li a {
                        color: #fff;
                        font-size: 1rem;
                        width: 100%;
                        display: block;
                        padding: 10px 0;
                    }
                    .nav-toggle-label {
                        display: block !important;
                        position: absolute;
                        top: 22px;
                        right: 24px;
                        cursor: pointer;
                        width: 32px;
                        height: 32px;
                        z-index: 200;
                    }
                    .nav-toggle-label span {
                        display: block !important;
                        width: 100%;
                        height: 4px;
                        margin: 6px 0;
                        background: #fff;
                        transition: 0.3s;
                    }
                    /* Show nav-links when nav-toggle is checked */
                    #nav-toggle:checked~.nav-links {
                        right: 0;
                    }
                    /* Animate hamburger to X */
                    #nav-toggle:checked+.nav-toggle-label span:nth-child(1) {
                        transform: translateY(10px) rotate(45deg);
                    }
                    #nav-toggle:checked+.nav-toggle-label span:nth-child(2) {
                        opacity: 0;
                    }
                    #nav-toggle:checked+.nav-toggle-label span:nth-child(3) {
                        transform: translateY(-10px) rotate(-45deg);
                    }
                    nav {
                        position: relative;
                    }
                }

                .project-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.project-buttons {
  margin-top: auto;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.project-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 20px;
}

.project-buttons .btn {
  min-width: 110px;
  text-align: center;
}


                    section {
                        opacity: 0;
                        transform: translateY(20px);
                        transition: opacity 0.8s ease-out, transform 0.6s ease-out;
                    }
                    
                    section.visible {
                        opacity: 1;
                        transform: translateY(0);
                    }
                    /* Stronger zoom-in effect for all images */
                    
                    img:hover {
                        transform: scale(1.18);
                        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                        z-index: 2;
                        position: relative;
                        background: none !important;
                    }
                    
                    img {
                        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                        background: none !important;
                    }
                    /* Why Hire Me Section Styles*/
                    
                    #why-hire-me .section-title {
                        font-size: 2.5rem;
                        font-weight: 700;
                        letter-spacing: 1px;
                    }
                    
                    .why-hire-grid {
                        display: grid;
                        grid-template-columns: 1fr;
                        gap: 32px;
                    }
                    
                    @media (min-width: 768px) {
                        .why-hire-grid {
                            grid-template-columns: 1fr 1fr;
                        }
                    }
                    
                    @media (min-width: 1100px) {
                        .why-hire-grid {
                            grid-template-columns: 1fr 1fr 1fr;
                        }
                    }
                    
                    .why-hire-card {
                        background: #fff;
                        border-radius: 18px;
                        box-shadow: 0 8px 32px rgba(108, 92, 231, 0.08);
                        padding: 36px 28px 32px 28px;
                        text-align: center;
                        transition: box-shadow 0.2s;
                        border: 1px solid rgba(108, 92, 231, 0.10);
                    }
                    
                    .why-hire-card:hover {
                        box-shadow: 0 12px 40px rgba(108, 92, 231, 0.18);
                        border-color: var(--primary, #6c5ce7);
                    }
                    
                    .why-hire-icon {
                        width: 60px;
                        height: 60px;
                        margin: 0 auto 20px auto;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        background: rgba(108, 92, 231, 0.08);
                        border-radius: 16px;
                        font-size: 2rem;
                        color: var(--primary, #6c5ce7);
                    }
                    
                    .why-hire-card h3 {
                        font-size: 1.25rem;
                        font-weight: 600;
                        margin-bottom: 14px;
                        color: var(--primary, #6c5ce7);
                    }
                    
                    .why-hire-card p {
                        color: #444;
                        font-size: 1rem;
                        line-height: 1.7;
                    }
                    
                    .cursor-blink {
                        display: inline-block;
                        width: 1ch;
                        animation: blink 1s steps(1) infinite;
                    }
                    
                    @keyframes blink {
                        0%,
                        50% {
                            opacity: 1;
                        }
                        51%,
                        100% {
                            opacity: 0;
                        }
                    }
                    
                    body {
                        font-family: 'Poppins', sans-serif;
                        background-color: var(--dark);
                        color: var(--light);
                        overflow-x: hidden;
                    }
                    /* Custom Cursor */
                    
                    .cursor {
                        position: fixed;
                        width: 20px;
                        height: 20px;
                        border-radius: 50%;
                        background-color: var(--primary);
                        mix-blend-mode: difference;
                        pointer-events: none;
                        z-index: 9999;
                        transform: translate(-50%, -50%);
                        transition: transform 0.1s ease;
                    }
                    
                    .cursor-follower {
                        position: fixed;
                        width: 40px;
                        height: 40px;
                        border: 2px solid var(--secondary);
                        border-radius: 50%;
                        pointer-events: none;
                        z-index: 9998;
                        transform: translate(-50%, -50%);
                        transition: transform 0.4s ease, width 0.3s ease, height 0.3s ease;
                    }
                    /* Cursor states */
                    
                    .cursor.active {
                        transform: translate(-50%, -50%) scale(1.5);
                        background-color: var(--accent);
                    }
                    
                    .cursor-follower.active {
                        transform: translate(-50%, -50%) scale(0.4);
                        background-color: rgba(253, 121, 168, 0.2);
                    }
                    
                    .cursor.hover-btn {
                        transform: translate(-50%, -50%) scale(2);
                        background-color: var(--secondary);
                    }
                    
                    .cursor-follower.hover-btn {
                        transform: translate(-50%, -50%) scale(0.3);
                        border-color: var(--secondary);
                    }
                    
                    #canvas-container {
                        position: fixed;
                        top: 0;
                        left: 0;
                        width: 100%;
                        height: 100%;
                        z-index: -1;
                    }
                    
                    .container {
                        max-width: 1200px;
                        margin: 0 auto;
                        padding: 0 20px;
                    }
                    
                    header {
                        padding: 30px 0;
                        position: relative;
                        z-index: 10;
                    }
                    
                    nav {
                        display: flex;
                        justify-content: space-between;
                        align-items: center;
                    }
                    
                    .logo {
                        font-size: 28px;
                        font-weight: 700;
                        color: var(--light);
                        text-decoration: none;
                    }
                    
                    .logo span {
                        color: var(--primary);
                    }
                    
                    .nav-links {
                        display: flex;
                        list-style: none;
                    }
                    
                    .nav-links li {
                        margin-left: 30px;
                    }
                    
                    .nav-links a {
                        color: var(--light);
                        text-decoration: none;
                        font-weight: 500;
                        font-size: 16px;
                        transition: all 0.3s ease;
                        position: relative;
                    }
                    
                    .nav-links a:hover {
                        color: var(--primary);
                    }
                    
                    .nav-links a:after {
                        content: '';
                        position: absolute;
                        width: 0;
                        height: 2px;
                        background: var(--primary);
                        bottom: -5px;
                        left: 0;
                        transition: width 0.3s ease;
                    }
                    
                    .nav-links a:hover:after {
                        width: 100%;
                    }
                    
                    .hero {
                        height: 90vh;
                        display: flex;
                        align-items: center;
                        position: relative;
                        z-index: 5;
                    }
                    
                    .hero-content {
                        max-width: 600px;
                    }
                    
                    .hero h1 {
                        font-size: 60px;
                        font-weight: 700;
                        margin-bottom: 20px;
                        line-height: 1.2;
                    }
                    
                    .hero h1 span {
                        color: var(--primary);
                    }
                    
                    .hero p {
                        font-size: 18px;
                        margin-bottom: 30px;
                        line-height: 1.6;
                        opacity: 0.9;
                    }
                    
                    .btn {
                        display: inline-block;
                        background: var(--primary);
                        color: var(--light);
                        padding: 12px 30px;
                        border-radius: 30px;
                        text-decoration: none;
                        font-weight: 500;
                        transition: all 0.3s ease;
                        border: none;
                        cursor: none;
                        font-size: 16px;
                    }
                    
                    .btn:hover {
                        transform: translateY(-3px);
                        box-shadow: 0 10px 20px rgba(108, 92, 231, 0.3);
                    }
                    
                    .btn-outline {
                        background: transparent;
                        border: 2px solid var(--primary);
                        margin-left: 15px;
                    }
                    
                    .btn-outline:hover {
                        background: var(--primary);
                    }
                    
                    section {
                        padding: 100px 0;
                        position: relative;
                    }
                    
                    .section-title {
                        font-size: 40px;
                        font-weight: 700;
                        margin-bottom: 50px;
                        text-align: center;
                        position: relative;
                    }
                    
                    .section-title:after {
                        content: '';
                        position: absolute;
                        width: 80px;
                        height: 4px;
                        background: var(--primary);
                        bottom: -15px;
                        left: 50%;
                        transform: translateX(-50%);
                        border-radius: 2px;
                    }
                    
                    .skills-container {
                        display: grid;
                        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                        gap: 30px;
                    }
                    
                    .skill-card {
                        background: rgba(45, 52, 54, 0.7);
                        backdrop-filter: blur(10px);
                        border-radius: 15px;
                        padding: 30px;
                        transition: all 0.3s ease;
                        border: 1px solid rgba(108, 92, 231, 0.2);
                    }
                    
                    .skill-card:hover {
                        transform: translateY(-10px);
                        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
                        border-color: var(--primary);
                    }
                    
                    .skill-card h3 {
                        font-size: 22px;
                        margin-bottom: 15px;
                        color: var(--primary);
                    }
                    
                    .skill-card p {
                        opacity: 0.8;
                        line-height: 1.6;
                    }
                    
                    .projects-container {
                        display: grid;
                        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
                        gap: 30px;
                    }
                    
                    .project-card {
                        background: rgba(45, 52, 54, 0.7);
                        backdrop-filter: blur(10px);
                        border-radius: 15px;
                        overflow: hidden;
                        transition: all 0.3s ease;
                        border: 1px solid rgba(108, 92, 231, 0.2);
                    }
                    
                    .project-card:hover {
                        transform: translateY(-10px);
                        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
                        border-color: var(--primary);
                    }
                    
                    .project-img {
                        height: 200px;
                        width: 100%;
                        object-fit: cover;
                    }
                    
                    .project-content {
                        padding: 25px;
                    }
                    
                    .project-content h3 {
                        font-size: 22px;
                        margin-bottom: 10px;
                    }
                    
                    .project-content p {
                        opacity: 0.8;
                        margin-bottom: 20px;
                        line-height: 1.6;
                    }
                    
                    .project-tags {
                        display: flex;
                        flex-wrap: wrap;
                        gap: 10px;
                        margin-bottom: 20px;
                    }
                    
                    .project-tag {
                        background: rgba(108, 92, 231, 0.2);
                        color: var(--primary);
                        padding: 5px 12px;
                        border-radius: 20px;
                        font-size: 12px;
                        font-weight: 500;
                    }
                    /* Updated Certifications Section with Flip Cards */
                    
                    .certifications-container {
                        display: grid;
                        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
                        gap: 30px;
                        perspective: 1000px;
                        background-size: cover;
                        background-position: center;
                        background-repeat: no-repeat;
                    }
                    
                    .certification-flip {
                        height: 250px;
                        transition: transform 0.6s;
                        transform-style: preserve-3d;
                        position: relative;
                        background-size: cover;
                        background-position: center;
                        background-repeat: no-repeat;
                    }
                    
                    .certification-flip:hover {
                        transform: rotateY(180deg);
                    }
                    
                    .flip-front,
                    .flip-back {
                        position: absolute;
                        width: 100%;
                        height: 100%;
                        backface-visibility: hidden;
                        border-radius: 15px;
                        padding: 30px;
                        background: rgba(45, 52, 54, 0.7);
                        backdrop-filter: blur(10px);
                        border: 1px solid rgba(108, 92, 231, 0.2);
                        display: flex;
                        flex-direction: column;
                        justify-content: center;
                        align-items: center;
                        transition: all 0.3s ease;
                        background-size: cover;
                        background-position: center;
                        background-repeat: no-repeat;
                    }
                    
                    .flip-back {
                        transform: rotateY(180deg);
                        background: rgba(45, 52, 54, 0.9);
                        background-size: cover;
                        background-position: center;
                        background-repeat: no-repeat;
                    }
                    
                    .cert-logo {
                        width: 80px;
                        height: 80px;
                        border-radius: 50%;
                        background: var(--primary);
                        color: white;
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        font-size: 36px;
                        font-weight: bold;
                        margin-bottom: 20px;
                    }
                    
                    .flip-front h3 {
                        font-size: 22px;
                        margin-bottom: 10px;
                        text-align: center;
                    }
                    
                    .flip-back p {
                        margin-bottom: 10px;
                        text-align: center;
                        opacity: 0.8;
                    }
                    
                    .flip-back .btn {
                        margin-top: 15px;
                        padding: 8px 20px;
                        font-size: 14px;
                    }
                    
                    .contact-form {
                        max-width: 600px;
                        margin: 0 auto;
                        background: rgba(45, 52, 54, 0.7);
                        backdrop-filter: blur(10px);
                        padding: 40px;
                        border-radius: 15px;
                        border: 1px solid rgba(108, 92, 231, 0.2);
                    }
                    
                    .form-group {
                        margin-bottom: 25px;
                    }
                    
                    .form-group label {
                        display: block;
                        margin-bottom: 8px;
                        font-weight: 500;
                    }
                    
                    .form-group input,
                    .form-group textarea {
                        width: 100%;
                        padding: 12px 15px;
                        background: rgba(255, 255, 255, 0.1);
                        border: 1px solid rgba(255, 255, 255, 0.1);
                        border-radius: 8px;
                        color: var(--light);
                        font-family: 'Poppins', sans-serif;
                        transition: all 0.3s ease;
                    }
                    
                    .form-group input:focus,
                    .form-group textarea:focus {
                        outline: none;
                        border-color: var(--primary);
                        background: rgba(108, 92, 231, 0.1);
                    }
                    
                    .form-group textarea {
                        resize: vertical;
                        min-height: 150px;
                    }
                    
                    footer {
                        text-align: center;
                        padding: 30px 0;
                        background: rgba(45, 52, 54, 0.7);
                        backdrop-filter: blur(10px);
                        margin-top: 100px;
                    }
                    
                    .social-links {
                        display: flex;
                        justify-content: center;
                        list-style: none;
                        margin-bottom: 20px;
                    }
                    
                    .social-links li {
                        margin: 0 15px;
                    }
                    
                    .social-links a {
                        color: var(--light);
                        font-size: 22px;
                        transition: all 0.3s ease;
                    }
                    
                    .social-links a:hover {
                        color: var(--primary);
                        transform: translateY(-3px);
                    }
                    
                    .copyright {
                        opacity: 0.7;
                        font-size: 14px;
                    }
                    /* 3D Model Containers */
                    
                    .model-container {
                        position: absolute;
                        width: 300px;
                        height: 300px;
                        z-index: 1;
                    }
                    
                    #hero-model {
                        right: 50px;
                        top: 50%;
                        transform: translateY(-100%);
                        visibility: hidden;
                    }
                    
                    #skills-model {
                        left: 50px;
                        top: 50%;
                        transform: translateY(-50%);
                    }
                    
                    #projects-model {
                        right: 50px;
                        top: 50%;
                        transform: translateY(-50%);
                        visibility: hidden;
                    }
                    
                    @media (max-width: 1200px) {
                        .model-container {
                            display: none;
                        }
                        .hero h1 {
                            font-size: 40px;
                        }
                        .hero p {
                            font-size: 16px;
                        }
                        .btn {
                            padding: 10px 20px;
                            font-size: 14px;
                        }
                        .section-title {
                            font-size: 32px;
                        }
                        .projects-container {
                            grid-template-columns: 1fr;
                        }
                        .nav-links {
                            display: none;
                        }
                        /* Adjust flip cards for mobile */
                        .certification-flip {
                            height: auto;
                            min-height: 250px;
                        }
                        .flip-front,
                        .flip-back {
                            position: relative;
                            transform: none;
                            backface-visibility: visible;
                        }
                        .certification-flip:hover {
                            transform: none;
                        }
                    }

                      /* Certifications Section - Mobile Responsive */
        
        .certifications-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
            padding: 10px;
        }
        
        .certification-flip {
            perspective: 1000px;
            height: 300px;
        }
        
        .flip-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.6s;
            transform-style: preserve-3d;
        }
        
        .certification-flip:hover .flip-inner {
            transform: rotateY(180deg);
        }
        
        .flip-front,
        .flip-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: 15px;
            padding: 20px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }
        
        .flip-front {
            background-color: #fff;
            color: #333;
        }
        
        .flip-back {
            background-color: #2d3436;
            color: white;
            transform: rotateY(180deg);
        }
        
        .cert-logo {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 15px;
        }
        
        .flip-front h3 {
            margin: 10px 0;
            font-size: 18px;
            color: #000;
            /* Ensure text is visible on background */
            text-shadow: 0 0 5px rgba(255, 255, 255, 0.8);
        }
        
        .flip-back p {
            margin: 8px 0;
            font-size: 14px;
        }
        /* Mobile-specific styles */
        
        @media (max-width: 768px) {
            .certifications-container {
                grid-template-columns: 1fr;
                max-width: 100%;
                padding: 0;
            }
            .certification-flip {
                height: 250px;
                margin-bottom: 15px;
            }
            .flip-front,
            .flip-back {
                padding: 15px;
            }
            .cert-logo {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
            .flip-front h3 {
                font-size: 16px;
            }
            /* Change flip behavior to click on mobile */
            .certification-flip.active .flip-inner {
                transform: rotateY(180deg);
            }
        }