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

        body {
            font-family: 'Poppins', sans-serif;
            background-color: #0a0a0a;
            color: #ffffff;
            line-height: 1.6;
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
        }

        /* Navbar */
        .navbar {
            position: fixed;
            top: 0;
            right: 0;
            z-index: 1000;
            padding: 30px 50px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 400;
            font-size: 14px;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: #666666;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: -5px;
            left: 0;
            background-color: #ffffff;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Logo */
        .logo {
            position: fixed;
            top: 30px;
            left: 50px;
            z-index: 1000;
            font-size: 20px;
            font-weight: 700;
            letter-spacing: 2px;
        }

        /* Sections */
        section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0 50px;
            position: relative;
        }

        .container {
            max-width: 1200px;
            width: 100%;
            text-align: center;
        }

        /* Home Section */
        .home-content h1 {
            font-size: clamp(3rem, 8vw, 8rem);
            font-weight: 700;
            margin-bottom: 20px;
            letter-spacing: -2px;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(50px);
            animation: fadeInUp 1s ease forwards;
        }

        .home-content .subtitle {
            font-size: 14px;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #888888;
            margin-bottom: 10px;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.3s forwards;
        }

        .home-content .role {
            font-size: 18px;
            font-weight: 300;
            color: #cccccc;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease 0.6s forwards;
        }

        /* About Section */
        .about-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 80px;
            align-items: center;
            text-align: left;
        }

        .profile-img {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: linear-gradient(45deg, #333, #555);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 100px;
            color: #666;
            margin: 0 auto;
        }

        .about-text h2 {
            font-size: 48px;
            margin-bottom: 30px;
            font-weight: 300;
        }

        .about-text p {
            font-size: 16px;
            line-height: 1.8;
            color: #cccccc;
            margin-bottom: 20px;
        }

        /* Skills Section */
        .skills-content h2 {
            font-size: 48px;
            margin-bottom: 60px;
            font-weight: 300;
        }

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

        .skill-item {
            text-align: left;
        }

        .skill-item h3 {
            font-size: 18px;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .skill-bar {
            width: 100%;
            height: 2px;
            background-color: #333;
            border-radius: 1px;
            overflow: hidden;
        }

        .skill-progress {
            height: 100%;
            background-color: #ffffff;
            border-radius: 1px;
            transition: width 2s ease;
            width: 0;
        }

        /* Portfolio Section */
        .portfolio-content h2 {
            font-size: 48px;
            margin-bottom: 60px;
            font-weight: 300;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
        }

        .project-card {
            background: #111111;
            border-radius: 10px;
            overflow: hidden;
            transition: transform 0.3s ease;
            cursor: pointer;
        }

        .project-card:hover {
            transform: translateY(-10px);
        }

        .project-img {
            width: 100%;
            height: 250px;
            background: linear-gradient(45deg, #222, #444);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 60px;
            color: #555;
        }

        .project-info {
            padding: 30px;
            text-align: left;
        }

        .project-info h3 {
            font-size: 20px;
            margin-bottom: 15px;
            font-weight: 500;
        }

        .project-info p {
            color: #888;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .view-btn {
            background: transparent;
            border: 1px solid #ffffff;
            color: #ffffff;
            padding: 12px 24px;
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            border-radius: 0;
        }

        .view-btn:hover {
            background: #ffffff;
            color: #000000;
        }

        /* Contact Section */
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            text-align: left;
        }

        .contact-info h2 {
            font-size: 48px;
            margin-bottom: 40px;
            font-weight: 300;
        }

        .contact-details {
            margin-bottom: 40px;
        }

        .contact-details h3 {
            font-size: 18px;
            margin-bottom: 10px;
            font-weight: 500;
        }

        .contact-details p {
            color: #888;
            font-size: 14px;
        }

        .contact-form h3 {
            font-size: 24px;
            margin-bottom: 30px;
            font-weight: 500;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px 0;
            background: transparent;
            border: none;
            border-bottom: 1px solid #333;
            color: #ffffff;
            font-size: 14px;
            transition: border-color 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-bottom-color: #ffffff;
        }

        .form-group textarea {
            height: 120px;
            resize: vertical;
        }

        .send-btn {
            background: transparent;
            border: 1px solid #ffffff;
            color: #ffffff;
            padding: 15px 30px;
            font-size: 12px;
            letter-spacing: 1px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }

        .send-btn:hover {
            background: #ffffff;
            color: #000000;
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 50px;
            border-top: 1px solid #222;
            color: #666;
            font-size: 12px;
            letter-spacing: 1px;
        }

        /* Social Links */
        .social-links {
            position: fixed;
            left: 50px;
            bottom: 50px;
            z-index: 1000;
        }

        .social-links a {
            display: block;
            color: #666;
            font-size: 14px;
            margin-bottom: 20px;
            text-decoration: none;
            transition: color 0.3s ease;
            writing-mode: vertical-rl;
            text-orientation: mixed;
        }

        .social-links a:hover {
            color: #ffffff;
        }

        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .navbar {
                padding: 20px;
                top: 20px;
                right: 20px;
            }

            .nav-links {
                gap: 20px;
            }

            .logo {
                top: 20px;
                left: 20px;
            }

            section {
                padding: 0 20px;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .profile-img {
                width: 200px;
                height: 200px;
                font-size: 60px;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .social-links {
                left: 20px;
                bottom: 20px;
            }
            
            .project-img {
  width: 100%;
  height: 200px;        
  overflow: hidden;
  border-radius: 8px;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.profile-img img {
  width: 180px;
  height: 180px;
  border-radius: 50%; 
  object-fit: cover;  
}

/* Toast Styles */
.toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background: #111827; /* dark mode */
    color: #fff;
    text-align: center;
    border-radius: 12px;
    padding: 16px;
    position: fixed;
    z-index: 1000;
    left: 50%;
    bottom: 30px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.4s, bottom 0.4s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 50px;
}
        }