* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            background-color: #000;
            color: #fff;
            line-height: 1.6;
        }

        /* Navigation Styles */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(0, 0, 0, 0.9);
            padding: 20px 0;
            z-index: 1000;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #FFC107;
        }

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 18px;
            transition: color 0.3s ease;
        }

        .nav-links a:hover {
            color: #FFC107;
        }

        /* Section Styles */
        section {
            min-height: 100vh;
            padding: 100px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        h2 {
            font-size: 2.5rem;
            margin-bottom: 30px; /* Adjusted margin for better spacing */
            text-align: center;
            color: #FFC107;
            position: relative; /* For underline effect */
        }

        h2::after {
            content: '';
            display: block;
            width: 50px; /* Width of the underline */
            height: 4px; /* Height of the underline */
            background: #FFC107; /* Color of the underline */
            margin: 10px auto; /* Center the underline */
            border-radius: 5px; /* Rounded corners for the underline */
        }

        /* Home Section Styles */
        #home {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 120px;
            position: relative;
            overflow: hidden;
        }

        .home-content {
            flex: 1;
        }

        .home-image {
            flex: 1;
            text-align: center;
        }

        .home-image img {
            max-width: 400px;
            border-radius: 50%;
        }

        .home-title {
            font-size: 3rem;
            margin-bottom: 20px;
            color: #FFC107;
            font-family: Arial, sans-serif;
        }

        .home-subtitle {
            font-size: 1.5rem;
            margin-bottom: 30px;
        }

        .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, #FFC107, #ff9800);
            color: #000;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
            font-size: 18px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
        }

        /* Background Animation */
        .background-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .background-animation div {
            position: absolute;
            width: 60px;
            height: 60px;
            background: rgba(255, 193, 7, 0.2);
            border-radius: 50%;
            animation: move 10s linear infinite;
        }

        @keyframes move {
            0% {
                transform: translateY(0) translateX(0);
            }
            100% {
                transform: translateY(-100vh) translateX(100vw);
            }
        }

        /* About Section Styles */
        #about {
            text-align: center;
        }

        .about-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .about-content p {
            margin-bottom: 20px;
            font-size: 4vh;
        }

        /* Skills Section Styles */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 50px;
        }

        .skill-card {
            background: linear-gradient(145deg, #1a1a1a, #222);
            border-radius: 15px;
            padding: 20px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            animation: moveSkill 3s infinite alternate;
        }

        @keyframes moveSkill {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-10px);
            }
        }

        .skill-card h3 {
            color: #FFC107;
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .skill-card p {
            color: #ccc;
            font-size: 0.9rem;
        }

        /* Projects Section Styles */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .project-card {
            background: linear-gradient(145deg, #1a1a1a, #222);
            border-radius: 15px;
            padding: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(255, 193, 7, 0.2);
        }

        .project-card h3 {
            color: #FFC107;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .project-card p {
            color: #ccc;
            margin-bottom: 20px;
        }

        .project-links {
            display: flex;
            gap: 15px;
            position: absolute;
            bottom: -50px;
            left: 0;
            width: 100%;
            padding: 15px;
            background: rgba(0, 0, 0, 0.8);
            transition: bottom 0.3s ease;
        }

        .project-card:hover .project-links {
            bottom: 0;
        }

        .project-btn {
            flex: 1;
            padding: 10px;
            background: linear-gradient(45deg, #FFC107, #ff9800);
            color: #000;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
            text-align: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .project-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
        }

        /* Contact Section Styles */
        #contact {
            min-height: auto;
            padding: 80px 20px;
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            background: linear-gradient(145deg, #1a1a1a, #222);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .contact-info h3 {
            color: #FFC107;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(10px);
        }

        .contact-item i {
            color: #FFC107;
            font-size: 24px;
            margin-right: 15px;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: #fff;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: none;
            border-color: #FFC107;
            background: rgba(255, 255, 255, 0.15);
        }

        .submit-btn {
            width: 100%;
            padding: 12px;
            background: linear-gradient(45deg, #FFC107, #ff9800);
            color: #000;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            color: #FFC107;
            font-size: 24px;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #ff9800;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .nav-content {
                flex-direction: column;
            }
            .projects-grid,
            .contact-container {
                grid-template-columns: 1fr;
            }
        }

        #contact {
            background: linear-gradient(45deg, #1a1a1a, #2d2d2d);
            padding: 80px 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            min-height: 100vh;
            display: flex;
            align-items: center;
        }

        .contact-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            padding: 20px;
        }

        .contact-info {
            padding: 20px;
        }

        .contact-info h2 {
            color: #FFC107;
            margin-bottom: 30px;
            font-size: 2.5rem;
        }

        .contact-details {
            margin-top: 30px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
        }

        .contact-item:hover {
            transform: translateX(10px);
        }

        .contact-item i {
            color: #FFC107;
            margin-right: 15px;
            font-size: 20px;
            width: 30px;
        }

        .contact-item p {
            color: #fff;
            font-size: 1.1rem;
        }

        .social-links {
            margin-top: 40px;
        }

        .social-links a {
            color: #fff;
            margin-right: 20px;
            font-size: 24px;
            transition: color 0.3s ease;
        }

        .social-links a:hover {
            color: #FFC107;
        }

        .cv-download {
            display: inline-block;
            margin-top: 30px;
            padding: 12px 25px;
            background: linear-gradient(45deg, #FFC107, #ff9800);
            color: #000;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .cv-download:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(10px);
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-bottom: 20px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            color: #fff;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            border-color: #FFC107;
            outline: none;
            background: rgba(255, 255, 255, 0.15);
        }

        .contact-form button {
            width: 100%;
            padding: 12px;
            background: #FFC107;
            color: #000;
            border: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contact-form button:hover {
            background: #ff9800;
            transform: translateY(-2px);
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            #home {
                flex-direction: column;
                text-align: center;
            }

            .home-image img {
                max-width: 300px;
                margin-top: 30px;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .contact-info {
                text-align: center;
            }

            .contact-item {
                justify-content: center;
            }
        }