
        :root {
            --main: rgba(70,30,90);
            --text: rgba(255, 175, 55);
            --secondary: rgba(98, 37, 135);
            --black: rgba(0,0,0);
            --white: rgba(255,255,255);
            --hover: rgba(83, 1, 143, 0.673);
            --active: rgb(232, 146, 160);
            --section: rgb(239, 217, 252);
        }
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        body {
            font-family: "texturina", Arial, Helvetica, sans-serif;
            line-height: 1.6;
            /* color: var(--black);
            background-color: var(--white);
            margin: 5%; */
        }

        /* Header/Nav */
        header {
            background-color: var(--secondary);
            color: var(--text);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
            border-radius: 300px;
            width: 65%;
            margin: 2% auto;
            transition: width 0.4s ease, border-radius 0.4s ease, margin 0.4s ease;
        }
        header.scrolled {
            width: 100%;
            left: 0;
            transform: none;
            border-radius: 0;
            margin-top: 0;
            top: 0;
        }
        #nav {
            display: flex;
            height: 5rem;
            width: 100%;
            justify-content: space-between;
            align-items: center;
            padding: 0 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }
        .logo {
            flex: 0 0 auto;
            white-space: nowrap;
        }
        .logo span {
            display: flex;
            font-size: 1.5rem;
            font-weight: bold;
            white-space: nowrap;
        }
        .logo img {
            display: none;
        }
        .logo a {
            text-decoration: none;
            color: inherit;
        }
        .nav-links {
            display: flex;
            gap: 2rem;
            list-style: none;
        }
        .nav-links li a {
            text-decoration: none;
            color: var(--text);
            font-weight: 500;
            transition: color 0.3s ease;
        }
        .nav-links li a:hover, .logo:hover {
            color: var(--active);
        }
        .cta-button {
            background-color: var(--secondary);
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            color: var(--text);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: inherit;
            font-size: 1rem;
        }
        .cta-button:hover {
            background-color: var(--hover);
            transform: translateY(-2px);
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            background: none;
            border: none;
            padding: 5px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--text);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        /* Hero */
        .hero {
            background-image: url(images/frame.jpg);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 150px 2rem 80px;
            text-align: center;
            margin-top: 20%;
            
        }
        .hero h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        .hero span {
            display: block;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            color: var(--text)
        }
        .hero p {
            max-width: 700px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }
        .hero-buttons a {
            padding: 15px 30px;
            background-color: var(--text);
            color: var(--main);
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        .hero-buttons a:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--main);
        }

        /* Services */
        .services {
            padding: 80px 0;
            background-color: var(--white);
            border-radius: 20px;
            margin: 2rem 0;
        }
        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        .service-card {
            background: var(--white);
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            text-align: center;
        }
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        .service-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: var(--text);
        }
        .service-card h3 {
            color: var(--main);
            margin-bottom: 1rem;
        }

        /* Process */
        .process {
            padding: 80px 0;
            background-color: var(--section);
        }
        .process-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }
        .step {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            padding: 2rem;
            background: var(--white);
            border-radius: 15px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            text-align: center;
            align-items: center;
        }
        .step:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 25px rgba(0,0,0,0.15);
        }
        .step-number {
            width: 60px;
            height: 60px;
            background: var(--main);
            color: var(--text);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 0.5rem;
        }
        .step h3 {
            color: var(--main);
            margin-bottom: 0.5rem;
        }
        .step p {
            flex-grow: 1;
            line-height: 1.6;
        }
        .step-payment {
            background: var(--text);
            color: var(--main);
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: bold;
            text-align: center;
        }

        /* About */
        .about {
            padding: 80px 0;
            background: var(--white);
            border-radius: 20px;
            margin: 2rem 0;
        }
        .about .container {
            text-align: center;
        }
        .about img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            margin: 0 auto 2rem;
            display: block;
            object-fit: cover;
            border: 5px solid var(--main);
        }
        .about p {
            max-width: 800px;
            margin: 0 auto 2rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }
        .about > span {
            display: block;
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--main);
            margin: 2rem 0 1rem;
        }
        .skills-list {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            max-width: 600px;
            margin: 0 auto;
        }
        .skill-tag {
            background: var(--main);
            color: var(--text);
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: 500;
        }

        /* Portfolio */
        .portfolio {
            padding: 80px 0;
        }
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }
        .portfolio-item {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            text-decoration: none;
            color: inherit;
            display: block;
        }
        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        .portfolio-image {
            background: linear-gradient(135deg, var(--main), var(--secondary));
            color: var(--text);
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
        }

        .portfolio-image.portfolio-1 {
            background-image: url('images/todo.png');
            background-size: cover;
            background-position: center;
        }
        .portfolio-content {
            padding: 2rem;
        }
        .portfolio-content h3 {
            color: var(--main);
            margin-bottom: 1rem;
        }
        .portfolio-content p {
            margin-bottom: 1rem;
            line-height: 1.6;
        }
        .portfolio-tags {
            display: flex;
            gap: 0.5rem;
            flex-wrap: wrap;
        }
        .portfolio-tag {
            background: var(--text);
            color: var(--main);
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Contact */
        .contact {
            padding: 80px 0;
            background: var(--section);
            border-radius: 20px;
            margin: 2rem 0;
        }
        .contact-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: start;
        }
        .contact-form h3 {
            color: var(--main);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }
        .form-group {
            margin-bottom: 1.5rem;
        }
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            color: var(--main);
            font-weight: 500;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-family: inherit;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--main);
        }
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }
        .contact-item {
            display: flex;
            gap: 1rem;
            align-items: start;
            padding: 1.5rem;
            background: #f9f9f9;
            border-radius: 10px;
        }
        .contact-icon {
            color: var(--text);
            font-size: 2rem;
            min-width: 40px;
        }
        .contact-item h4 {
            color: var(--main);
            margin-bottom: 0.5rem;
        }
        .send {
            width: 100%;
        }
        

        /* Footer */
        footer {
            background: var(--main);
            color: var(--text);
            padding: 3rem 2rem 2rem;
            text-align: center;
            border-radius: 20px;
            margin-top: 2rem;
        }
        .social-title {
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }
        .socials .icons {
            display: flex;
            gap: 2rem;
            justify-content: center;
            list-style: none;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }
        .socials .icons li a {
            color: var(--text);
            text-decoration: none;
            font-size: 2rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .socials .icons li a::before {
            font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands";
            font-weight: 900;
        }
        .socials .icons li a:hover {
            color: var(--active);
            transform: translateY(-3px);
        }
        footer p {
            margin-top: 2rem;
            padding-top: 2rem;
            border-top: 1px solid var(--text);
        }

        /* Responsive */
        @media (max-width: 768px) {
            
             header {
                width: 90%;
                border-radius: 50px;
                margin: 4% auto;
            }

            .logo span {
                display: none;
            }
            .logo img {
                display: block;
                max-width: 15%;

            }
            .nav-links {
                display: none;
                position: absolute;
                top: 50%;
                left: 0;
                right: 0;
                background: var(--main);
                flex-direction: column;
                padding: 2rem;
                border-radius: 0 0 20px 20px;
                margin-top: 1rem;
                
            }
            .nav-links.active {
                display: flex;
            }
            .hamburger {
                display: flex;
            }
            .cta-button {
                display: none;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .hero span {
                font-size: 1.2rem;
            }
            .contact-content {
                grid-template-columns: 1fr;
            }
            .process-grid {
                grid-template-columns: 1fr;
            }
            .send {
                display: block;
            }
        }