
        /* Basic Reset */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Arial', sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
            background-color: #f4f4f9;
            scroll-behavior: smooth;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: #3498db;
            z-index: 1000;
            padding: 15px 0;
            box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        }

        nav ul {
            display: flex;
            justify-content: center;
            list-style: none;
        }

        nav ul li {
            margin: 0 15px;
        }

        nav ul li a {
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            padding: 5px 10px;
            border-radius: 4px;
            transition: background-color 0.3s;
        }

        nav ul li a:hover {
            background-color: #2980b9;
        }

        /* Sections */
        section {
            min-height: 100vh;
            padding: 100px 20px 20px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        section h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            color: #2c3e50;
            text-align: center;
        }

        /* Home Section */
        #home {
            background-color: #ecf8ff;
            text-align: center;
        }

        #home img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            margin-bottom: 20px;
            border: 5px solid #3498db;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
        }

        #home img:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(14, 224, 179, 0.3);
        }

        #home h1 {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: #2c3e50;
        }

        #home p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 20px;
        }

        /* Education Section */
        #education {
            background-color: #dff6e4;
        }

        .education-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1000px;
        }

        .education-item {
            background: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 300px;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .education-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
        }

        .education-item h3 {
            color: #3498db;
            margin-bottom: 10px;
        }

        .education-item p {
            margin-bottom: 5px;
        }

        /* Skills Section */
        #skills {
            background-color: #fef7e0;
        }

        .skills-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            max-width: 800px;
        }

        .skill-category {
            background: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 350px;
        }

        .skill-category h3 {
            color: #3498db;
            margin-bottom: 15px;
            text-align: center;
        }

        .skill-item {
            margin-bottom: 10px;
        }

        .skill-name {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .skill-bar {
            height: 10px;
            background: #ecf0f1;
            border-radius: 5px;
            overflow: hidden;
        }

        .skill-level {
            height: 100%;
            background: #3498db;
            border-radius: 5px;
        }

        /* Contact Section */
        #contact {
            background-color: #f4f8ff;
        }

        .contact-form {
            background: #fff;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 500px;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 1rem;
        }

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

        button {
            background-color: #3498db;
            color: white;
            border: none;
            padding: 12px 35px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 1rem;
            transition: background-color 0.3s;
        }

        button:hover {
            background-color: #2980b9;
        }

        .socialLinks {
            margin-top: 40px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .socialLinks a {
            color: #29c1af;
            font-size: 0.95rem;
            transition: transform 0.3s;
        }

        .socialLinks a:hover {
            transform: scale(1.2);
        }

        /* Footer */
        footer {
            text-align: center;
            padding: 15px;
            background-color: #3498db;
            color: white;
            font-size: 0.9rem;
        }
  