             @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

             :root {
                 --main-theme: #625BFF;
                 --hover-theme: #D669A0;
                 --light-theme-bg: #FAFBFC;
                 --light-theme-component: white;
                 --dark-theme-bg: #101828;
                 --dark-theme-component: #171F2F;
             }

             .light-theme {
                 --bg-theme: #FAFBFC;
                 --bg-component: white;
                 --color-theme: #101828;
                 --text-color: #667085;
                 --heading-color: #101828;
                 --border-color: rgba(0, 0, 0, 0.1);
                 --shadow-color: rgba(0, 0, 0, 0.05);
                 --glass-bg: rgba(255, 255, 255, 0.7);
                 --glass-border: rgba(255, 255, 255, 0.18);
             }

             .dark-theme {
                 --bg-theme: #101828;
                 --bg-component: #171F2F;
                 --color-theme: #FAFBFC;
                 --text-color: #98A2B3;
                 --heading-color: #EAECF0;
                 --border-color: rgba(255, 255, 255, 0.1);
                 --shadow-color: rgba(0, 0, 0, 0.2);
                 --glass-bg: rgba(30, 41, 59, 0.5);
                 --glass-border: rgba(255, 255, 255, 0.05);
             }

             * {
                 margin: 0;
                 padding: 0;
                 box-sizing: border-box;
             }

             html {
                 scroll-behavior: smooth;
             }

             body {
                 font-family: 'Poppins', sans-serif;
                 background-color: var(--bg-theme);
                 color: var(--color-theme);
                 transition: all 0.3s ease;
                 overflow-x: hidden;
             }

             .container {
                 width: 100%;
                 max-width: 1200px;
                 margin: 0 auto;
                 padding: 0 20px;
             }

             section {
                 padding: 100px 0;
             }

             .section-header {
                 text-align: center;
                 margin-bottom: 60px;
             }

             .section-title {
                 font-size: 2.5rem;
                 font-weight: 700;
                 color: var(--heading-color);
                 margin-bottom: 15px;
                 position: relative;
                 display: inline-block;
             }

             .section-title span {
                 color: var(--main-theme);
             }

             .section-title::after {
                 content: '';
                 position: absolute;
                 width: 50px;
                 height: 3px;
                 background: var(--main-theme);
                 bottom: -10px;
                 left: 50%;
                 transform: translateX(-50%);
             }

             .section-subtitle {
                 font-size: 1rem;
                 color: var(--text-color);
                 max-width: 600px;
                 margin: 0 auto;
             }

             .btn {
                 display: inline-block;
                 padding: 12px 30px;
                 border-radius: 30px;
                 font-weight: 600;
                 text-decoration: none;
                 transition: all 0.3s ease;
                 cursor: pointer;
                 border: none;
                 outline: none;
                 font-size: 1rem;
             }

             .primary-btn {
                 background: var(--main-theme);
                 color: white;
                 box-shadow: 0 4px 15px rgba(98, 91, 255, 0.3);
             }

             .primary-btn:hover {
                 background: var(--hover-theme);
                 transform: translateY(-3px);
                 box-shadow: 0 6px 20px rgba(214, 105, 160, 0.4);
             }

             .secondary-btn {
                 background: transparent;
                 color: var(--main-theme);
                 border: 2px solid var(--main-theme);
             }

             .secondary-btn:hover {
                 background: var(--main-theme);
                 color: white;
                 transform: translateY(-3px);
                 box-shadow: 0 6px 20px rgba(98, 91, 255, 0.4);
             }

             .glass-card {
                 background: var(--glass-bg);
                 border-radius: 16px;
                 box-shadow: 0 4px 30px var(--shadow-color);
                 backdrop-filter: blur(10px);
                 -webkit-backdrop-filter: blur(10px);
                 border: 1px solid var(--glass-border);
                 transition: all 0.3s ease;
                 position: relative;
                 overflow: hidden;
                 z-index: 1;
             }

             .glass-card::before {
                 content: '';
                 position: absolute;
                 top: 0;
                 left: 0;
                 width: 100%;
                 height: 100%;
                 background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
                 z-index: -1;
             }

             .glass-nav {
                 background: var(--glass-bg);
                 backdrop-filter: blur(10px);
                 -webkit-backdrop-filter: blur(10px);
                 border-bottom: 1px solid var(--glass-border);
                 position: fixed;
                 width: 100%;
                 top: 0;
                 left: 0;
                 z-index: 1000;
                 transition: all 0.3s ease;
             }

             .glass-nav.scrolled {
                 box-shadow: 0 5px 20px var(--shadow-color);
             }

             header {
                 padding: 20px 0;
             }

             header .container {
                 display: flex;
                 justify-content: space-between;
                 align-items: center;
             }

             .logo {
                 font-size: 1.8rem;
                 font-weight: 700;
                 color: var(--heading-color);
                 text-decoration: none;
             }

             .logo span {
                 color: var(--main-theme);
             }

             nav ul {
                 display: flex;
                 list-style: none;
             }

             nav ul li {
                 margin-left: 30px;
             }

             nav ul li a {
                 color: var(--text-color);
                 text-decoration: none;
                 font-weight: 500;
                 font-size: 1rem;
                 transition: all 0.3s ease;
                 position: relative;
             }

             nav ul li a:hover,
             nav ul li a.active {
                 color: var(--hover-theme);
             }

             nav ul li a::after {
                 content: '';
                 position: absolute;
                 width: 0;
                 height: 2px;
                 background: var(--main-theme);
                 bottom: -5px;
                 left: 0;
                 transition: width 0.3s ease;
             }

             nav ul li a:hover::after,
             nav ul li a.active::after {
                 width: 100%;
             }

             .theme-toggle {
                 width: 40px;
                 height: 40px;
                 border-radius: 50%;
                 background: var(--glass-bg);
                 backdrop-filter: blur(10px);
                 -webkit-backdrop-filter: blur(10px);
                 display: flex;
                 justify-content: center;
                 align-items: center;
                 cursor: pointer;
                 margin-left: 20px;
                 transition: all 0.3s ease;
             }

             .theme-toggle i {
                 color: var(--text-color);
                 font-size: 1.2rem;
                 transition: all 0.3s ease;
             }

             .theme-toggle:hover {
                 background: var(--main-theme);
             }

             .theme-toggle:hover i {
                 color: white;
             }

             .hamburger {
                 display: none;
                 flex-direction: column;
                 justify-content: space-between;
                 width: 30px;
                 height: 20px;
                 cursor: pointer;
             }

             .hamburger span {
                 width: 100%;
                 height: 3px;
                 background: var(--text-color);
                 transition: all 0.3s ease;
                 border-radius: 3px;
             }

             .hero-section {
                 height: 100vh;
                 display: flex;
                 align-items: center;
                 position: relative;
                 overflow: hidden;
             }

             .hero-section .container {
                 display: flex;
                 align-items: center;
                 justify-content: space-between;
                 height: 100%;
             }

             .hero-content {
                 flex: 1;
                 max-width: 600px;
             }

             .hero-title {
                 font-size: 3.5rem;
                 font-weight: 700;
                 line-height: 1.2;
                 margin-bottom: 20px;
                 color: var(--heading-color);
                 overflow: hidden;
             }

             .title-word {
                 display: inline-block;
                 opacity: 0;
                 transform: translateY(20px);
                 transition: all 0.5s ease;
             }

             .title-word-1 {
                 transition-delay: 0.1s;
             }

             .title-word-2 {
                 transition-delay: 0.3s;
             }

             .title-word-3 {
                 transition-delay: 0.5s;
             }

             .title-word-4 {
                 transition-delay: 0.7s;
             }

             .hero-title.animate .title-word {
                 opacity: 1;
                 transform: translateY(0);
             }

             .hero-subtitle {
                 font-size: 1.2rem;
                 color: var(--text-color);
                 margin-bottom: 30px;
                 line-height: 1.6;
             }

             .hero-buttons {
                 display: flex;
                 gap: 20px;
             }

             .hero-image {
                 flex: 1;
                 display: flex;
                 justify-content: center;
                 align-items: center;
             }

             .image-wrapper {
                 width: 400px;
                 text-align: center;
                 height: 400px;
                 border-radius: 20px;
                 overflow: hidden;
                 position: relative;
             }

             .image-wrapper img {
                 width: 300px;
                 margin: auto;
                 height: 100%;
                 object-fit: contain;
             }

             .glow {
                 position: absolute;
                 width: 200px;
                 height: 200px;
                 background: var(--main-theme);
                 filter: blur(100px);
                 border-radius: 50%;
                 top: 50%;
                 left: 50%;
                 transform: translate(-50%, -50%);
                 z-index: -1;
                 opacity: 0.3;
             }

             .about-content {
                 display: flex;
                 gap: 50px;
                 align-items: center;
             }

             .about-image {
                 width: 400px;
                 height: 500px;
                 overflow: hidden;
                 border-radius: 20px;
             }

             .about-image img {
                 width: 100%;
                 height: 100%;
                 object-fit: cover;
             }

             .about-text {
                 flex: 1;
                 padding: 40px;
             }

             .about-text h3 {
                 font-size: 1.8rem;
                 margin-bottom: 20px;
                 color: var(--heading-color);
             }

             .about-text p {
                 color: var(--text-color);
                 margin-bottom: 20px;
                 line-height: 1.6;
             }

             .about-info {
                 display: grid;
                 grid-template-columns: repeat(2, 1fr);
                 gap: 20px;
                 margin: 30px 0;
             }

             .info-item {
                 display: flex;
                 gap: 10px;
             }

             .info-item span {
                 font-weight: 600;
                 color: var(--heading-color);
             }

             .info-item p {
                 color: var(--text-color);
                 margin: 0;
             }

             .skills-buttons {
                 display: flex;
                 flex-wrap: wrap;
                 gap: 15px;
                 justify-content: center;
             }

             .skill-btn {
                 padding: 10px 20px;
                 background: rgba(98, 91, 255, 0.1);
                 border: none;
                 border-radius: 30px;
                 color: var(--main-theme);
                 font-weight: 500;
                 cursor: default;
                 transition: all 0.3s ease;
             }

             .skill-btn:hover {
                 background: var(--main-theme);
                 color: white;
                 transform: translateY(-3px);
             }

             .services-grid {
                 display: grid;
                 grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
                 gap: 30px;
             }

             .service-card {
                 padding: 30px;
                 transition: all 0.3s ease;
                 text-align: center;
             }

             .service-card:hover {
                 transform: translateY(-10px);
                 box-shadow: 0 15px 30px var(--shadow-color);
             }

             .service-icon {
                 width: 70px;
                 height: 70px;
                 background: rgba(98, 91, 255, 0.1);
                 border-radius: 50%;
                 display: flex;
                 justify-content: center;
                 align-items: center;
                 margin: 0 auto 20px;
                 color: var(--main-theme);
                 font-size: 1.5rem;
                 transition: all 0.3s ease;
             }

             .service-card:hover .service-icon {
                 background: var(--main-theme);
                 color: white;
             }

             .service-card h3 {
                 font-size: 1.3rem;
                 margin-bottom: 15px;
                 color: var(--heading-color);
             }

             .service-card p {
                 color: var(--text-color);
                 margin-bottom: 20px;
                 line-height: 1.6;
             }

             .portfolio-filter {
                 display: flex;
                 justify-content: center;
                 gap: 15px;
                 margin-bottom: 40px;
             }

             .filter-btn {
                 padding: 8px 20px;
                 background: transparent;
                 border: 1px solid var(--border-color);
                 color: var(--text-color);
                 border-radius: 30px;
                 cursor: pointer;
                 transition: all 0.3s ease;
             }

             .filter-btn.active,
             .filter-btn:hover {
                 background: var(--main-theme);
                 color: white;
                 border-color: var(--main-theme);
             }

             .portfolio-grid {
                 display: grid;
                 grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
                 gap: 30px;
             }

             .portfolio-item {
                 height: 250px;
                 border-radius: 15px;
                 overflow: hidden;
                 position: relative;
                 transition: all 0.3s ease;
             }

             .portfolio-item:hover {
                 transform: translateY(-10px);
                 box-shadow: 0 15px 30px var(--shadow-color);
             }

             .portfolio-img {
                 width: 100%;
                 height: 100%;
             }

             .portfolio-img img {
                 width: 100%;
                 height: 100%;
                 object-fit: cover;
                 transition: all 0.5s ease;
             }

             .portfolio-item:hover .portfolio-img img {
                 transform: scale(1.1);
             }

             .portfolio-overlay {
                 position: absolute;
                 bottom: -100%;
                 left: 0;
                 width: 100%;
                 padding: 20px;
                 background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
                 color: white;
                 transition: all 0.3s ease;
             }

             .portfolio-item:hover .portfolio-overlay {
                 bottom: 0;
             }

             .portfolio-overlay h3 {
                 font-size: 1.3rem;
                 margin-bottom: 5px;
             }

             .portfolio-overlay p {
                 font-size: 0.9rem;
                 margin-bottom: 15px;
             }

             .portfolio-link {
                 display: inline-flex;
                 justify-content: center;
                 align-items: center;
                 width: 40px;
                 height: 40px;
                 background: var(--main-theme);
                 color: white;
                 border-radius: 50%;
                 text-decoration: none;
                 transition: all 0.3s ease;
             }

             .portfolio-link:hover {
                 background: var(--hover-theme);
                 transform: rotate(45deg);
             }

             .contact-card {
                 max-width: 800px;
                 margin: 0 auto;
                 padding: 40px;
                 text-align: center;
             }

             .contact-info {
                 margin-bottom: 40px;
             }

             .info-item {
                 display: flex;
                 align-items: flex-start;
                 gap: 20px;
                 margin-bottom: 30px;
                 text-align: left;
             }

             .info-icon {
                 width: 50px;
                 height: 50px;
                 background: rgba(98, 91, 255, 0.1);
                 border-radius: 50%;
                 display: flex;
                 justify-content: center;
                 align-items: center;
                 color: var(--main-theme);
                 font-size: 1.2rem;
                 flex-shrink: 0;
             }

             .info-text h4 {
                 font-size: 1.1rem;
                 margin-bottom: 10px;
                 color: var(--heading-color);
             }

             .info-text p {
                 margin: 5px 0;
                 color: var(--text-color);
             }

             .social-links h4 {
                 font-size: 1.2rem;
                 margin-bottom: 20px;
                 color: var(--heading-color);
             }

             .social-icons {
                 display: flex;
                 justify-content: center;
                 gap: 15px;
                 flex-wrap: wrap;
             }

             .social-icon {
                 display: flex;
                 justify-content: center;
                 align-items: center;
                 width: 50px;
                 height: 50px;
                 background: rgba(98, 91, 255, 0.1);
                 border-radius: 50%;
                 color: var(--main-theme);
                 font-size: 1.2rem;
                 transition: all 0.3s ease;
             }

             .social-icon:hover {
                 background: var(--main-theme);
                 color: white;
                 transform: translateY(-5px);
             }

             .footer {
                 background: var(--glass-bg);
                 border-top: 1px solid var(--glass-border);
                 padding: 40px 0;
             }

             .footer-content {
                 display: flex;
                 flex-direction: column;
                 align-items: center;
                 gap: 20px;
             }

             .footer-logo .logo {
                 font-size: 1.8rem;
                 margin-bottom: 10px;
                 display: inline-block;
             }

             .footer-logo p {
                 color: var(--text-color);
                 line-height: 1.6;
                 text-align: center;
             }

             .footer-copyright p {
                 color: var(--text-color);
                 font-size: 0.9rem;
             }

             .background-shapes {
                 position: fixed;
                 top: 0;
                 left: 0;
                 width: 100%;
                 height: 100%;
                 z-index: -1;
                 overflow: hidden;
             }

             .shape {
                 position: absolute;
                 border-radius: 50%;
                 filter: blur(60px);
                 opacity: 0.2;
             }

             .shape-1 {
                 width: 500px;
                 height: 500px;
                 background: var(--main-theme);
                 top: -100px;
                 left: -100px;
                 animation: float 15s infinite ease-in-out;
             }

             .shape-2 {
                 width: 400px;
                 height: 400px;
                 background: var(--hover-theme);
                 bottom: -100px;
                 right: -100px;
                 animation: float 18s infinite ease-in-out reverse;
             }

             .shape-3 {
                 width: 300px;
                 height: 300px;
                 background: #4FD1C5;
                 top: 50%;
                 left: 30%;
                 animation: float 12s infinite ease-in-out;
             }

             .cursor {
                 position: fixed;
                 width: 20px;
                 height: 20px;
                 border-radius: 50%;
                 background: var(--main-theme);
                 transform: translate(-50%, -50%);
                 pointer-events: none;
                 mix-blend-mode: difference;
                 z-index: 9999;
                 transition: transform 0.1s ease;
             }

             .cursor-follower {
                 position: fixed;
                 width: 40px;
                 height: 40px;
                 border-radius: 50%;
                 background: rgba(98, 91, 255, 0.2);
                 transform: translate(-50%, -50%);
                 pointer-events: none;
                 z-index: 9998;
                 transition: all 0.3s ease;
             }

             @keyframes float {
                 0% {
                     transform: translate(0, 0);
                 }

                 50% {
                     transform: translate(50px, 50px);
                 }

                 100% {
                     transform: translate(0, 0);
                 }
             }

             @media (max-width: 992px) {
                 .hero-section {
                     margin-top: 8rem;
                 }

                 .hero-section .container {
                     flex-direction: column;
                     text-align: center;
                     justify-content: center;
                 }

                 .hero-content {
                     margin-bottom: 50px;
                     max-width: 100%;
                 }

                 .hero-buttons {
                     justify-content: center;
                 }

                 .about-content {
                     flex-direction: column;
                 }

                 .about-image {
                     width: 100%;
                     max-width: 400px;
                     height: auto;
                     aspect-ratio: 4/5;
                 }
             }

             @media (max-width: 768px) {
                 .hero-section {
                     margin-top: 10rem;
                 }

                 section {
                     padding: 70px 0;
                 }

                 .section-title {
                     font-size: 2rem;
                 }

                 .hero-title {
                     font-size: 2.5rem;
                 }

                 nav ul {
                     position: fixed;
                     top: 80px;
                     left: -100%;
                     width: 100%;
                     height: calc(100vh - 80px);
                     background: var(--bg-component);
                     flex-direction: column;
                     align-items: center;
                     justify-content: center;
                     gap: 30px;
                     transition: all 0.3s ease;
                     z-index: 999;
                 }

                 nav ul.active {
                     left: 0;
                 }

                 nav ul li {
                     margin: 0;
                 }

                 .hamburger {
                     display: flex;
                 }

                 .hamburger.active span:nth-child(1) {
                     transform: translateY(8px) rotate(45deg);
                 }

                 .hamburger.active span:nth-child(2) {
                     opacity: 0;
                 }

                 .hamburger.active span:nth-child(3) {
                     transform: translateY(-8px) rotate(-45deg);
                 }

                 .portfolio-grid {
                     grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                 }

                 .contact-card {
                     padding: 30px 20px;
                 }

                 .info-item {
                     flex-direction: column;
                     align-items: center;
                     text-align: center;
                 }
             }

             @media (max-width: 576px) {
                 .hero-section {
                     margin-top: 12rem;
                 }

                 section {
                     padding: 50px 0;
                 }

                 .section-title {
                     font-size: 1.8rem;
                 }

                 .hero-title {
                     font-size: 2rem;
                 }

                 .hero-buttons {
                     flex-direction: column;
                     gap: 15px;
                 }

                 .about-info {
                     grid-template-columns: 1fr;
                 }

                 .skills-buttons {
                     justify-content: flex-start;
                 }
             }