body {
            font-family: 'Poppins', sans-serif;
            scroll-behavior: smooth;
            background: #0a0a0a;
            color: #f9f9f9;
            overflow-x: hidden;
            margin: 0;
        }

        .text-gradient {
            background: linear-gradient(to right, #FFD700, #FFA500);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .text-yellow {
            color: #FFD700; 
        }

        .btn-gradient {
            background: linear-gradient(to right, #FFD700, #FFA500);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .btn-gradient:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 16px rgba(255, 215, 0, 0.3);
        }

        .navbar-scrolled {
            background: rgba(10, 10, 10, 0.9);
            backdrop-filter: blur(8px);
            border-bottom: 1px solid rgba(255, 215, 0, 0.2);
        }

        .hero-img {
            border-radius: 1.5rem;
            transition: transform 0.5s ease;
            object-fit: cover;
            max-width: 100%;
            height: auto;
        }

        .hero-img:hover {
            transform: scale(1.03);
        }

        .section-title {
            position: relative;
            display: inline-block;
            margin-bottom: 2rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(to right, #FFD700, #FFA500);
            border-radius: 1px;
        }

        .portfolio-card {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
            position: relative;
            overflow: hidden;
            border-radius: 1rem;
            border: 1px solid rgba(255, 215, 0, 0.1);
        }

        .portfolio-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 24px rgba(255, 215, 0, 0.2);
            border-color: rgba(255, 215, 0, 0.4);

        }

        .portfolio-content {
            position: relative;
            z-index: 2;
        }

        .social-icon {
            transition: transform 0.3s ease, color 0.3s ease;
        }

        .social-icon:hover {
            transform: translateY(-4px);
            color: #FFD700;
        }

        .cursor-dot {
            position: fixed;
            width: 12px;
            height: 12px;
            background: rgba(255, 215, 0, 0.7);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9999;
            transform: translate(-50%, -50%);
            transition: transform 0.1s ease;
        }

        .cursor-outline {
            position: fixed;
            width: 32px;
            height: 32px;
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 50%;
            pointer-events: none;
            z-index: 9998;
            transform: translate(-50%, -50%);
            transition: transform 0.15s ease;
        }

        .service-card {
            background: linear-gradient(145deg, #121212, #1a1a1a);
            border: 1px solid rgba(255, 215, 0, 0.1);
            transition: transform 0.3s ease, border-color 0.3s ease;
            border-radius: 1rem;
        }

        .service-card:hover {
            border-color: rgba(255, 215, 0, 0.4);
            transform: translateY(-8px);
        }

        .process-card:hover {
            border-color: rgba(255, 215, 0, 0.4);
            transform: translateY(-8px);
        }

        .animated-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .animated-bg span {
            position: absolute;
            display: block;
            width: 20px;
            height: 20px;
            background: rgba(255, 215, 0, 0.1);
            animation: animate 25s linear infinite;
            bottom: -150px;
            border-radius: 50%;
        }

        @keyframes animate {
            0% {
                opacity: 1;
                transform: translateY(0) rotate(0deg);
            }

            100% {
                opacity: 0;
                transform: translateY(-1000px) rotate(720deg);
            }
        }

        .animated-bg span:nth-child(1) {
            left: 25%;
            width: 80px;
            height: 80px;
            animation-delay: 0s;
        }

        .animated-bg span:nth-child(2) {
            left: 10%;
            width: 20px;
            height: 20px;
            animation-delay: 2s;
            animation-duration: 12s;
        }

        .animated-bg span:nth-child(3) {
            left: 70%;
            width: 20px;
            height: 20px;
            animation-delay: 4s;
        }

        .animated-bg span:nth-child(4) {
            left: 40%;
            width: 60px;
            height: 60px;
            animation-delay: 0s;
            animation-duration: 18s;
        }

        .animated-bg span:nth-child(5) {
            left: 65%;
            width: 20px;
            height: 20px;
            animation-delay: 0s;
        }

        .animated-bg span:nth-child(6) {
            left: 75%;
            width: 110px;
            height: 110px;
            animation-delay: 3s;
        }

        .animated-bg span:nth-child(7) {
            left: 35%;
            width: 150px;
            height: 150px;
            animation-delay: 7s;
        }

        .animated-bg span:nth-child(8) {
            left: 50%;
            width: 25px;
            height: 25px;
            animation-delay: 15s;
            animation-duration: 45s;
        }

        .animated-bg span:nth-child(9) {
            left: 20%;
            width: 15px;
            height: 15px;
            animation-delay: 2s;
            animation-duration: 35s;
        }

        .animated-bg span:nth-child(10) {
            left: 85%;
            width: 150px;
            height: 150px;
            animation-delay: 0s;
            animation-duration: 11s;
        }

        .reveal {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .image-frame {
            position: relative;
            max-width: 400px;
            width: 100%;
        }

        .image-frame::before {
            content: '';
            position: absolute;
            top: -8px;
            left: -8px;
            right: 20px;
            bottom: 20px;
            border: 2px solid #FFD700;
            z-index: -1;
            transition: all 0.3s ease;
        }

        .image-frame:hover::before {
            top: -12px;
            left: -12px;
        }

        .technical-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .skill-tag {
            background: rgba(255, 215, 0, 0.15);
            border: 1px solid rgba(255, 215, 0, 0.4);
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .skill-tag:hover {
            background: rgba(255, 215, 0, 0.25);
            transform: translateY(-3px);
            box-shadow: 0 4px 8px rgba(255, 215, 0, 0.2);
        }

        @keyframes blink {
            50% {
                opacity: 0;
            }
        }

        .cursor::after {
            content: '|';
            color: #FFD700;
            animation: blink 0.7s infinite;
        }

                /* Toast styling */
                .toast {
            position: fixed;
            top: 1rem;
            right: 1rem;
            min-width: 16rem;
            max-width: 24rem;
            padding: 1rem 1.5rem;
            border-radius: 0.5rem;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
            opacity: 0;
            transform: translateX(100%);
            transition: opacity 0.3s ease, transform 0.3s ease;
            z-index: 1000;
        }

        .toast.show {
            opacity: 1;
            transform: translateX(0);
        }

        .toast-progress {
            position: absolute;
            bottom: 0;
            left: 0;
            height: 4px;
            background: rgba(255, 255, 255, 0.3);
            width: 100%;
            border-bottom-left-radius: 0.5rem;
            border-bottom-right-radius: 0.5rem;
            overflow: hidden;
        }

        .toast-progress-bar {
            height: 100%;
            background: rgba(255, 255, 255, 0.8);
            width: 100%;
            animation: progress 10s linear forwards;
        }

        @keyframes progress {
            from { width: 100%; }
            to { width: 0; }
        }

        /* Close button */
        .toast-close {
            position: absolute;
            top: 0.5rem;
            right: 0.5rem;
            cursor: pointer;
            color: rgba(255, 255, 255, 0.7);
            transition: color 0.2s ease;
        }

        .toast-close:hover {
            color: rgba(255, 255, 255, 1);
        }


        @media (max-width: 768px) {

            .cursor-dot,
            .cursor-outline {
                display: none;
            }

            .hero-img {
                max-width: 300px;
            }
        }