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

   body {
       font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
       line-height: 1.6;
       color: #ffffff;
       background: #2d3436;
       min-height: 100vh;
   }

   .container {
       max-width: 1200px;
       margin: 0 auto;
       padding: 20px;
   }

   header {
       background: rgba(34, 40, 49, 0.95);
       backdrop-filter: blur(20px);
       border-radius: 0;
       padding: 4rem 2rem;
       text-align: left;
       margin-bottom: 3rem;
       box-shadow: none;
       border: none;
       border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   }

   .header-content {
       max-width: 800px;
       margin: 0 auto;
   }

   .greeting {
       font-size: 1.2rem;
       color: #ff7675;
       margin-bottom: 1rem;
       font-weight: 400;
   }

   h1 {
       font-size: 4rem;
       margin-bottom: 1rem;
       color: #ffffff;
       font-weight: 700;
       line-height: 1.1;
   }

   .name-highlight {
       color: #ff7675;
   }

   .subtitle {
       font-size: 3rem;
       color: #dfe6e9;
       margin-bottom: 1.5rem;
       font-weight: 600;
       line-height: 1.1;
   }

   .description {
       font-size: 1.2rem;
       color: #dfe6e9;
       max-width: 540px;
       line-height: 1.6;
       margin-bottom: 3rem;
   }

   .contact-links {
       display: flex;
       gap: 1.5rem;
       align-items: center;
       flex-wrap: wrap;
   }

   .contact-links a {
       display: flex;
       align-items: center;
       gap: 0.5rem;
       padding: 0.8rem 1.5rem;
       background: transparent;
       color: #ff7675;
       text-decoration: none;
       border: 1px solid #ff7675;
       border-radius: 4px;
       transition: all 0.3s ease;
       font-weight: 500;
       font-size: 0.95rem;
   }

   .contact-links a:hover {
       background: rgba(255, 118, 117, 0.1);
       transform: translateY(-2px);
       box-shadow: 0 10px 30px rgba(255, 118, 117, 0.2);
   }

   .contact-links .primary-btn {
       background: linear-gradient(45deg, #ff7675, #fab1a0);
       color: #2d3436;
       border-color: #ff7675;
   }

   .contact-links .primary-btn:hover {
       background: linear-gradient(45deg, #fab1a0, #ff7675);
       color: #2d3436;
   }

   .social-links {
       display: flex;
       gap: 1rem;
       margin-top: 2rem;
   }

   .social-links a {
       display: flex;
       align-items: center;
       justify-content: center;
       width: 40px;
       height: 40px;
       background: transparent;
       color: #dfe6e9;
       border: none;
       border-radius: 4px;
       transition: all 0.3s ease;
       font-size: 1.2rem;
   }

   .social-links a:hover {
       color: #ff7675;
       transform: translateY(-3px);
   }

   .section {
       background: rgba(34, 40, 49, 0.95);
       backdrop-filter: blur(20px);
       border-radius: 0;
       padding: 3rem 2rem;
       margin-bottom: 3rem;
       box-shadow: none;
       border: none;
       border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   }

   .section-content {
       max-width: 800px;
       margin: 0 auto;
   }

   .section h2 {
       font-size: 2rem;
       margin-bottom: 1.5rem;
       color: #ffffff;
       position: relative;
       font-weight: 600;
   }

   .section h2::after {
       content: '';
       position: absolute;
       bottom: -5px;
       left: 0;
       width: 50px;
       height: 2px;
       background: #ff7675;
       border-radius: 2px;
   }

   .skills-section {
       max-width: 1000px;
       margin: 0 auto;
   }

   .skills-section h2 {
       font-size: 2.5rem;
       margin-bottom: 1rem;
       text-align: center;
       color: #ffffff;
   }

   .skills-subtitle {
       text-align: center;
       color: #dfe6e9;
       margin-bottom: 3rem;
       font-size: 1.1rem;
   }

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

   .skill-item {
       background: rgba(34, 40, 49, 0.6);
       padding: 2rem 1.5rem;
       border-radius: 12px;
       text-align: center;
       transition: all 0.4s ease;
       border: 2px solid transparent;
       position: relative;
       overflow: hidden;
   }

   .skill-item::before {
       content: '';
       position: absolute;
       top: 0;
       left: -100%;
       width: 100%;
       height: 100%;
       background: linear-gradient(90deg, transparent, rgba(255, 118, 117, 0.1), transparent);
       transition: left 0.6s ease;
   }

   .skill-item:hover {
       transform: translateY(-10px);
       border-color: #ff7675;
       box-shadow: 0 20px 40px rgba(255, 118, 117, 0.2);
       background: rgba(34, 40, 49, 0.9);
   }

   .skill-item:hover::before {
       left: 100%;
   }

   .skill-icon {
       font-size: 3rem;
       margin-bottom: 1rem;
       display: block;
   }

   .skill-name {
       font-size: 1.2rem;
       font-weight: 600;
       color: #ffffff;
       margin-bottom: 0.5rem;
   }

   .skill-description {
       color: #dfe6e9;
       font-size: 0.9rem;
       line-height: 1.4;
   }

   .skill-level {
       margin-top: 1rem;
       display: flex;
       justify-content: center;
       gap: 0.3rem;
   }

   .level-dot {
       width: 8px;
       height: 8px;
       border-radius: 50%;
       background: rgba(255, 118, 117, 0.3);
   }

   .level-dot.active {
       background: #ff7675;
   }

   /* Featured Skills Section */
   .featured-skills {
       margin-top: 3rem;
       text-align: center;
   }

   .featured-skills h3 {
       color: #ff7675;
       font-size: 1.5rem;
       margin-bottom: 1.5rem;
   }

   .featured-skills-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
       gap: 1.5rem;
       max-width: 800px;
       margin: 0 auto;
   }

   .featured-skill {
       background: linear-gradient(135deg, rgba(255, 118, 117, 0.1) 0%, rgba(250, 177, 160, 0.05) 100%);
       border-radius: 15px;
       padding: 1.5rem 1rem;
       text-align: center;
       transition: all 0.3s ease;
       border: 1px solid rgba(255, 118, 117, 0.1);
   }

   .featured-skill:hover {
       transform: translateY(-5px);
       box-shadow: 0 10px 25px rgba(255, 118, 117, 0.15);
       border-color: rgba(255, 118, 117, 0.3);
   }

   .featured-skill-icon {
       font-size: 2.5rem;
       margin-bottom: 0.8rem;
       display: block;
   }

   .featured-skill-name {
       color: #ffffff;
       font-weight: 600;
       font-size: 0.95rem;
   }

   .project {
       background: linear-gradient(135deg, rgba(255, 118, 117, 0.1) 0%, rgba(250, 177, 160, 0.05) 100%);
       padding: 1.5rem;
       border-radius: 15px;
       margin-bottom: 1.5rem;
       border-left: 4px solid #ff7675;
       transition: transform 0.3s ease, box-shadow 0.3s ease;
   }

   .project:hover {
       transform: translateY(-5px);
       box-shadow: 0 15px 30px rgba(255, 118, 117, 0.2);
   }

   .project h3 {
       color: #ff7675;
       margin-bottom: 0.5rem;
       font-size: 1.3rem;
   }

   .project p {
       color: #dfe6e9;
       margin-bottom: 0.5rem;
   }

   .project-links {
       margin-top: 1rem;
   }

   .project-links a {
       display: inline-block;
       padding: 0.4rem 1rem;
       background: linear-gradient(45deg, #ff7675, #fab1a0);
       color: #2d3436;
       text-decoration: none;
       border-radius: 20px;
       margin-right: 0.5rem;
       font-size: 0.9rem;
       transition: transform 0.3s ease;
       font-weight: 500;
   }

   .project-links a:hover {
       transform: translateY(-2px);
   }

   .experience-item {
       border-left: 3px solid #ff7675;
       padding-left: 1.5rem;
       margin-bottom: 2rem;
       position: relative;
   }

   .experience-item::before {
       content: '';
       position: absolute;
       left: -6px;
       top: 0;
       width: 12px;
       height: 12px;
       background: #ff7675;
       border-radius: 50%;
   }

   .experience-title {
       font-size: 1.2rem;
       font-weight: 600;
       color: #ffffff;
       margin-bottom: 0.5rem;
   }

   .experience-company {
       color: #ff7675;
       font-weight: 500;
       margin-bottom: 0.3rem;
   }

   .experience-date {
       color: #dfe6e9;
       font-size: 0.9rem;
       margin-bottom: 1rem;
   }

   .experience-item ul li {
       color: #dfe6e9;
   }

   .about-text {
       font-size: 1.1rem;
       line-height: 1.8;
       color: #dfe6e9;
   }

   .education-item {
       background: linear-gradient(135deg, rgba(255, 118, 117, 0.1) 0%, rgba(250, 177, 160, 0.05) 100%);
       padding: 1.5rem;
       border-radius: 15px;
       margin-bottom: 1.5rem;
       border-left: 4px solid #ff7675;
       transition: transform 0.3s ease;
   }

   .education-item:hover {
       transform: translateY(-3px);
   }

   .education-title {
       color: #ff7675;
       font-size: 1.1rem;
       font-weight: 600;
       margin-bottom: 0.5rem;
   }

   .education-school {
       color: #ffffff;
       font-weight: 500;
       margin-bottom: 0.3rem;
   }

   .education-date {
       color: #dfe6e9;
       font-size: 0.9rem;
   }

   .certifications-list {
       list-style: none;
       padding: 0;
   }

   .certifications-list li {
       background: linear-gradient(135deg, rgba(255, 118, 117, 0.1) 0%, rgba(250, 177, 160, 0.05) 100%);
       padding: 1rem 1.5rem;
       margin-bottom: 0.5rem;
       border-radius: 8px;
       border-left: 4px solid #ff7675;
       color: #ffffff;
       transition: transform 0.3s ease;
   }

   .certifications-list li:hover {
       transform: translateX(5px);
   }

   .languages-grid {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
       gap: 1rem;
   }

   .language-item {
       background: linear-gradient(135deg, rgba(255, 118, 117, 0.1) 0%, rgba(250, 177, 160, 0.05) 100%);
       padding: 1rem;
       border-radius: 8px;
       border-left: 4px solid #ff7675;
       text-align: center;
   }

   .language-name {
       color: #ff7675;
       font-weight: 600;
       margin-bottom: 0.5rem;
   }

   .language-level {
       color: #dfe6e9;
   }

   @media (max-width: 768px) {
       .container {
           padding: 10px;
       }

       header {
           padding: 2rem 1rem;
       }

       h1 {
           font-size: 2.5rem;
       }

       .subtitle {
           font-size: 2rem;
       }

       .contact-links {
           flex-direction: column;
           align-items: center;
       }

       .skills-grid {
           grid-template-columns: 1fr;
       }

       .featured-skills-grid {
           grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
       }

       .skill-card {
           padding: 1.5rem;
       }
   }

   .fade-in {
       opacity: 0;
       transform: translateY(20px);
       animation: fadeInUp 0.6s ease forwards;
   }

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

   .contact-form {
       display: grid;
       gap: 1rem;
       margin-top: 1rem;
   }

   .form-group {
       display: flex;
       flex-direction: column;
   }

   .form-group label {
       color: #ff7675;
       margin-bottom: 0.5rem;
       font-weight: 500;
   }

   .form-group input,
   .form-group textarea {
       background: rgba(255, 118, 117, 0.1);
       border: 1px solid rgba(255, 118, 117, 0.3);
       border-radius: 8px;
       padding: 0.8rem;
       color: #ffffff;
       font-size: 1rem;
       transition: border-color 0.3s ease, box-shadow 0.3s ease;
   }

   .form-group input::placeholder,
   .form-group textarea::placeholder {
       color: #dfe6e9;
   }

   .form-group input:focus,
   .form-group textarea:focus {
       outline: none;
       border-color: #ff7675;
       box-shadow: 0 0 10px rgba(255, 118, 117, 0.3);
   }

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

   .submit-btn {
       background: linear-gradient(45deg, #ff7675, #fab1a0);
       color: #2d3436;
       border: none;
       padding: 1rem 2rem;
       border-radius: 25px;
       font-size: 1rem;
       font-weight: 500;
       cursor: pointer;
       transition: transform 0.3s ease, box-shadow 0.3s ease;
       justify-self: start;
   }

   .submit-btn:hover {
       transform: translateY(-2px);
       box-shadow: 0 10px 20px rgba(255, 118, 117, 0.4);
   }

   .contact-info {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 1.5rem;
       margin-bottom: 2rem;
   }

   .contact-item {
       background: linear-gradient(135deg, rgba(255, 118, 117, 0.1) 0%, rgba(250, 177, 160, 0.05) 100%);
       padding: 1.5rem;
       border-radius: 15px;
       border-left: 4px solid #ff7675;
       text-align: center;
   }

   .contact-item h4 {
       color: #ff7675;
       margin-bottom: 0.5rem;
       font-size: 1.1rem;
   }

   .contact-item p {
       color: #dfe6e9;
   }

   .contact-item a {
       color: #ff7675;
       text-decoration: none;
   }

   .contact-item a:hover {
       color: #fab1a0;
   }

   .navbar {
       position: fixed;
       top: 0;
       left: 0;
       right: 0;
       background: rgba(34, 40, 49, 0.95);
       backdrop-filter: blur(20px);
       border-bottom: 1px solid rgba(255, 255, 255, 0.1);
       padding: 1rem 0;
       z-index: 1000;
       transition: all 0.3s ease;
   }

   .navbar.scrolled {
       background: rgba(34, 40, 49, 0.98);
       box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
   }

   .nav-container {
       max-width: 1200px;
       margin: 0 auto;
       display: flex;
       justify-content: space-between;
       align-items: center;
       padding: 0 2rem;
   }

   .nav-logo {
       font-size: 1.5rem;
       font-weight: 700;
       color: #ff7675;
       text-decoration: none;
       transition: color 0.3s ease;
   }

   .nav-logo:hover {
       color: #fab1a0;
   }

   .nav-menu {
       display: flex;
       list-style: none;
       gap: 2rem;
       margin: 0;
       padding: 0;
   }

   .nav-item {
       position: relative;
   }

   .nav-link {
       color: #dfe6e9;
       text-decoration: none;
       font-weight: 500;
       font-size: 0.95rem;
       padding: 0.5rem 0;
       transition: color 0.3s ease;
       position: relative;
   }

   .nav-link::after {
       content: '';
       position: absolute;
       bottom: -5px;
       left: 0;
       width: 0;
       height: 2px;
       background: #ff7675;
       transition: width 0.3s ease;
   }

   .nav-link:hover {
       color: #ff7675;
   }

   .nav-link:hover::after,
   .nav-link.active::after {
       width: 100%;
   }

   .nav-link.active {
       color: #ff7675;
   }

   .nav-toggle {
       display: none;
       background: none;
       border: none;
       color: #dfe6e9;
       font-size: 1.5rem;
       cursor: pointer;
       padding: 0.5rem;
   }

   .nav-toggle:hover {
       color: #ff7675;
   }

   /* Mobile Styles */
   @media (max-width: 768px) {
       .nav-menu {
           position: fixed;
           top: 70px;
           left: -100%;
           width: 100%;
           height: calc(100vh - 70px);
           background: rgba(34, 40, 49, 0.98);
           backdrop-filter: blur(20px);
           flex-direction: column;
           justify-content: flex-start;
           align-items: center;
           padding-top: 2rem;
           transition: left 0.3s ease;
           gap: 1.5rem;
       }

       .nav-menu.active {
           left: 0;
       }

       .nav-toggle {
           display: block;
       }

       .nav-link {
           font-size: 1.1rem;
           padding: 1rem 0;
       }
   }

   #home{
        margin-top: 50px;
   }
