/* Portfolio Website Stylesheet */
        body {
            background: linear-gradient(135deg, #5bd4e9 0%, #1c56f7 90%);
            font-family: 'Segoe UI', Arial, sans-serif;
            margin: 0;
            color: #222;
        }
        header {
            background: linear-gradient(180deg, #1cf791 0%, #2327f5 100%);
            box-shadow: 0 2px 8px rgb(0, 0, 0);
            padding: 2rem 0 1rem 0;
            text-align: center;
            position: relative;
        }
        .logo {
            width: 80px;
            border-radius: 50%;
            border: 3px solid #000000;
            margin-bottom: 1rem;
        }
        h1 {
            font-size: 2.5rem;
            margin: 0;
            color: #f75a1c;
            letter-spacing: 2px;
        }
        .tagline {
            font-size: 1.1rem;
            color: #f7e600;
            margin-bottom: 1rem;
        }
        nav {
            margin-top: 1rem;
        }
        nav a {
            color: #f76b1c;
            text-decoration: none;
            margin: 0 1rem;
            font-weight: bold;
            transition: color 0.2s;
        }
        nav a:hover {
            color: #f5a623;
        }
        .container {
            max-width: 900px;
            margin: 2rem auto;
            background: rgba(255,255,255,0.95);
            border-radius: 16px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.829);
            padding: 2rem;
        }
        section {
            margin-bottom: 2.5rem;
        }
        .about {
            display: flex;
            align-items: center;
            gap: 2rem;
        }
        .about img {
            width: 140px;
            border-radius: 50%;
            border: 4px solid #3c80ff;
        }
        .about-bio {
            flex: 1;
        }
        .resume-link {
            display: inline-block;
            margin-top: 1rem;
            background: #3853eed7;
            color: #fff;
            padding: 0.6rem 1.2rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.2s;
        }
        .resume-link:hover {
            background: #23f523;
        }
        .skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }
        .skill {
            background: linear-gradient(180deg, #321cf7 50%, #f5c423be 100%);
            color: #fff;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-weight: 500;
            box-shadow: 0 2px 8px rgba(12, 11, 10, 0.856);
        }
        .projects {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 1.5rem;
        }
        .project-card {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 2px 12px rgba(247, 108, 28, 0.856);
            padding: 1.2rem;
            text-align: center;
            transition: transform 0.2s;
        }
        .project-card:hover {
            transform: translateY(-6px) scale(1.03);
        }
        .project-card img {
            width: 100%;
            max-width: 220px;
            border-radius: 8px;
            margin-bottom: 0.8rem;
            box-shadow: 0 2px 8px rgba(245,166,35,0.10);
        }
        .project-card h3 {
            color: #f76b1c;
            margin: 0.5rem 0;
        }
        .project-card p {
            color: #444;
            font-size: 1rem;
        }
        .project-card a {
            display: inline-block;
            margin-top: 0.6rem;
            color: #fff;
            background: #f76b1c;
            padding: 0.4rem 1rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: bold;
            transition: background 0.2s;
        }
        .project-card a:hover {
            background: #f5a623;
        }
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 400px;
        }
        .contact-form input, .contact-form textarea {
            padding: 0.7rem;
            border-radius: 6px;
            border: 1px solid #f5a623;
            font-size: 1rem;
        }
        .contact-form button {
            background: #f76b1c;
            color: #fff;
            border: none;
            padding: 0.7rem;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background 0.2s;
        }
        .contact-form button:hover {
            background: #f5a623;
        }
        .contact-info {
            margin-top: 1.5rem;
            font-size: 1.05rem;
            color: #333;
        }
        .contact-info span {
            display: block;
            margin-bottom: 0.4rem;
        }
        footer {
            text-align: center;
            padding: 1.5rem 0;
            background: #fff;
            color: #f76b1c;
            font-size: 1rem;
            border-top: 2px solid #f5a623;
        }
        .footer-links {
            margin-top: 0.5rem;
        }
        .footer-links a {
            color: #f76b1c;
            margin: 0 0.7rem;
            text-decoration: none;
            font-weight: 500;
        }
        .footer-links a:hover {
            text-decoration: underline;
        }
        @media (max-width: 700px) {
            .about {
                flex-direction: column;
                text-align: center;
            }
            .container {
                padding: 1rem;
            }
        }