        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            background-color: #f4f4f4;
        }

        header {
                height: 100vh;
                background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('2.jpg') no-repeat center center/cover;
                color: rgb(251, 251, 251);
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
           }


        nav {
            position: absolute;
            top: 0;
            width: 100%;
            padding: 1rem;
        }

        .nav-links {
            list-style: none;
            display: flex;
            justify-content: flex-end;
            margin-right: 2rem;
        }

        .nav-links li {
            margin: 0 15px;
        }

        .nav-links a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
        }

        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            animation: fadeIn 2s ease-out;
        }

        .hero p {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .hero .btn {
            padding: 10px 20px;
            background-color: #ff5733;
            color: white;
            border: none;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .hero .btn:hover {
            background-color: #c70039;
        }

        section {
            padding: 2rem 0;
            text-align: center;
            opacity: 0; /* Initially hidden */
            transform: translateY(20px); /* Move down */
            transition: opacity 0.5s ease, transform 0.5s ease; /* Transition effects */
        }

        section.active {
            opacity: 1; /* Fully visible */
            transform: translateY(0); /* Move back to original position */
        }

        .about-content, .skills-content, .resume-content, .contact-form {
            margin: 2rem auto;
            max-width: 800px;
            background-color: white;
            padding: 1.5rem;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
        }

        .about-content img {
            width: 150px;
            border-radius: 50%;
            margin: 1rem 0;
        }

        .skills-content ul {
            list-style-type: none;
            padding: 0;
        }

        .skills-content li {
            font-size: 1.2rem;
            margin: 0.5rem 0;
        }

        .project-grid {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin: 2rem;
        }

        .project-card {
            background-color: white;
            padding: 1rem;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
            max-width: 300px;
        }

        .project-card:hover {
            transform: scale(1.05);
        }

        .project-card img {
            width: 100%;
            height: auto;
            border-radius: 10px;
        }

        footer {
            background-color: #333;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }

        footer h2, footer p {
            margin-bottom: 1rem;
        }

        .social-icons a {
            margin: 0 10px;
            color: white;
            font-size: 1.5rem;
            transition: color 0.3s ease;
        }

        .social-icons a:hover {
            color: #ff5733;
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
        }

        .contact-form button {
            background-color: #ff5733;
            color: white;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .contact-form button:hover {
            background-color: #c70039;
        }

        .resume-content h3, .resume-content h4 {
            margin: 0.5rem 0;
        }

        .experience-card {
            background-color: #f9f9f9;
            padding: 1rem;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            margin: 1rem 0;
            transition: transform 0.3s ease;
        }

        .experience-card:hover {
            transform: scale(1.02);
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
 
    <!-- Font Awesome for social icons >
    