        :root {
            --primary: #EAEFEF;
            --secondary: #ffffff;
            --accent: #BFC9D1;
            --highlight: #FF9B51;
            --light: #25343F;
            --text: #25343F;
            --text-dark: #3A4B58;
            --bg-gradient: linear-gradient(135deg, #EAEFEF 0%, #BFC9D1 100%);
            --font-heading: 'Abril Fatface', serif;
            /* --font-heading: 'Playfair Display', serif; */
        }

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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Work Sans', sans-serif;
            background: var(--primary);
            color: var(--text);
            line-height: 1.7;
            overflow-x: hidden;
        }

        /* Navigation */
        .nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 1.2rem 5%;
            z-index: 1000;
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(255, 155, 81, 0.15);
        }

        .nav.scrolled {
            padding: 0.8rem 5%;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
        }

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

        .logo {
            font-family: var(--font-heading);
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--light);
            /* letter-spacing: -1px; */
            display: flex;
        }

        .nav-menu {
            display: flex;
            gap: 2.5rem;
            list-style: none;
        }

        .nav-link {
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

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

        .nav-link:hover,
        .nav-link.active {
            color: var(--light);
        }

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

        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            color: var(--light);
            cursor: pointer;
        }

        .logo #underscore {
            animation: blink 1s infinite;
        }

        @keyframes blink {
            0%, 50% { opacity: 1; }
            51%, 100% { opacity: 0; }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 8rem 5% 4rem;
            background: var(--bg-gradient);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background:
                radial-gradient(circle at 20% 50%, rgba(255, 155, 81, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(37, 52, 63, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-content {
            animation: fadeInUp 0.8s ease-out;
        }

        .hero-greeting {
            font-size: 1.2rem;
            color: var(--highlight);
            font-weight: 500;
            margin-bottom: 0.5rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.2s forwards;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-size: 4rem;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 1rem;
            color: var(--text);
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.4s forwards;
        }

        .hero-subtitle {
            font-size: 2rem;
            color: var(--highlight);
            margin-bottom: 1.5rem;
            font-weight: 300;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.6s forwards;
        }

        .hero-description {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 2.5rem;
            line-height: 1.8;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 0.8s forwards;
        }

        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            opacity: 0;
            animation: fadeInUp 0.8s ease-out 1s forwards;
        }

        .btn {
            padding: 1rem 2.5rem;
            border: none;
            border-radius: 50px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .btn-primary {
            background: var(--highlight);
            color: white;
            box-shadow: 0 10px 30px rgba(255, 155, 81, 0.3);
        }

        .btn-primary:hover {
            background: var(--light);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(255, 155, 81, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: var(--light);
            border: 2px solid var(--highlight);
        }

        .btn-secondary:hover {
            background: var(--highlight);
            color: white;
            transform: translateY(-3px);
        }

        .hero-image {
            position: relative;
            opacity: 0;
            animation: fadeInRight 1s ease-out 0.5s forwards;
        }

        .hero-image-wrapper {
            position: relative;
            width: 500px;
            height: 500px;
            margin: 0 auto;
        }

        .hero-image-bg {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 100%;
            height: 100%;
            background: var(--highlight);
            border-radius: 50%;
            opacity: 0.2;
            animation: pulse 3s ease-in-out infinite;
        }

        .hero-image-main {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid var(--highlight);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
        }

        .hero-image-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--highlight) 0%, var(--light) 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8rem;
            color: white;
            font-family: var(--font-heading);
        }

        /* Social Links */
        .social-links {
            display: flex;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 155, 81, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--light);
            font-size: 1.2rem;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .social-link:hover {
            background: var(--highlight);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 155, 81, 0.3);
        }

        /* Section Styles */
        .section {
            padding: 6rem 5%;
            position: relative;
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-family: var(--font-heading);
            font-size: 3rem;
            font-weight: 900;
            color: var(--text);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--highlight);
            border-radius: 2px;
        }

        .section-subtitle {
            color: var(--text-dark);
            font-size: 1.1rem;
            margin-top: 1.5rem;
        }

        /* About Section */
        .about {
            background: var(--secondary);
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-text p {
            margin-bottom: 1.5rem;
            color: var(--text-dark);
            font-size: 1.05rem;
        }

        .about-info {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .info-icon {
            width: 45px;
            height: 45px;
            border-radius: 10px;
            background: var(--highlight);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
        }

        .info-details h4 {
            color: var(--text);
            font-size: 0.9rem;
            margin-bottom: 0.3rem;
        }

        .info-details p {
            color: var(--text-dark);
            font-size: 0.95rem;
            margin: 0;
        }

        /* Skills Section */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .skill-category {
            background: var(--secondary);
            padding: 2.5rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 155, 81, 0.15);
            transition: all 0.3s ease;
        }

        .skill-category:hover {
            transform: translateY(-5px);
            border-color: var(--highlight);
            box-shadow: 0 10px 30px rgba(255, 155, 81, 0.15);
        }

        .skill-category h3 {
            color: var(--text);
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .skill-category h3 i {
            color: var(--highlight);
            font-size: 1.8rem;
        }

        .skill-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
        }

        .skill-tag {
            background: var(--highlight);
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .skill-tag:hover {
            background: var(--light);
            transform: scale(1.05);
        }

        /* Experience Section */
        .experience {
            background: var(--secondary);
        }

        .timeline {
            position: relative;
            padding-left: 3rem;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 2px;
            background: var(--highlight);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            padding-left: 2rem;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -3.5rem;
            top: 0;
            width: 15px;
            height: 15px;
            border-radius: 50%;
            background: var(--light);
            border: 3px solid var(--secondary);
            box-shadow: 0 0 0 3px var(--highlight);
        }

        .timeline-date {
            display: inline-block;
            background: var(--highlight);
            color: white;
            padding: 0.4rem 1rem;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .timeline-item h3 {
            color: var(--text);
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .timeline-item h4 {
            color: var(--highlight);
            font-size: 1.1rem;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .timeline-item ul {
            list-style: none;
            margin-top: 1rem;
        }

        .timeline-item ul li {
            color: var(--text-dark);
            margin-bottom: 0.8rem;
            padding-left: 1.5rem;
            position: relative;
        }

        .timeline-item ul li::before {
            content: '▹';
            position: absolute;
            left: 0;
            color: var(--highlight);
            font-weight: bold;
        }

        /* Projects Section */
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .project-card {
            background: var(--secondary);
            border-radius: 15px;
            overflow: hidden;
            border: 1px solid rgba(255, 155, 81, 0.15);
            transition: all 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(255, 155, 81, 0.2);
            border-color: var(--highlight);
        }

        .project-content {
            padding: 2rem;
        }

        .project-card h3 {
            color: var(--text);
            font-size: 1.5rem;
            margin-bottom: 1rem;
        }

        .project-card p {
            color: var(--text-dark);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }

        .project-link {
            color: var(--highlight);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .project-link:hover {
            color: var(--light);
            gap: 1rem;
        }

        /* Contact Section */
        .contact {
            background: var(--secondary);
        }

        .contact-container {
            max-width: 800px;
            margin: 0 auto;
        }

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

        .contact-item {
            background: var(--primary);
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            border: 1px solid rgba(255, 155, 81, 0.15);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-5px);
            border-color: var(--highlight);
        }

        .contact-item i {
            font-size: 2.5rem;
            color: var(--highlight);
            margin-bottom: 1rem;
        }

        .contact-item h3 {
            color: var(--text);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .contact-item p {
            color: var(--text-dark);
            margin: 0;
        }

        .contact-item a {
            color: var(--text-dark);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: var(--highlight);
        }

        .contact-form {
            background: var(--primary);
            padding: 3rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 155, 81, 0.15);
        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-group label {
            display: block;
            color: var(--text);
            margin-bottom: 0.5rem;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 1rem;
            background: var(--secondary);
            border: 1px solid rgba(255, 155, 81, 0.2);
            border-radius: 8px;
            color: var(--text);
            font-family: 'Work Sans', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--highlight);
            box-shadow: 0 0 0 3px rgba(255, 155, 81, 0.1);
        }

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

        /* Footer */
        .footer {
            background: var(--primary);
            padding: 2rem 5%;
            text-align: center;
            border-top: 1px solid rgba(255, 155, 81, 0.15);
        }

        .footer p {
            color: var(--text-dark);
            margin: 0;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.2;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.3;
            }
        }

        /* Scroll Animation */
        .scroll-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease-out;
        }

        .scroll-animate.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-container,
            .about-content {
                grid-template-columns: 1fr;
                gap: 3rem;
            }

            .hero-image-wrapper {
                width: 300px;
                height: 300px;
            }

            .hero-title {
                font-size: 3rem;
            }

            .hero-subtitle {
                font-size: 1.5rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .nav-menu {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: rgba(255, 255, 255, 0.98);
                width: 100%;
                padding: 2rem 5%;
                gap: 1.5rem;
                transition: left 0.3s ease;
                border-bottom: 1px solid rgba(255, 155, 81, 0.15);
            }

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

            .menu-toggle {
                display: block;
            }

            .about-info {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 640px) {
            .hero {
                padding: 6rem 5% 3rem;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.3rem;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

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

            .section {
                padding: 4rem 5%;
            }

            .contact-form {
                padding: 2rem;
            }
        }

        /* Contact Form Messages */
        .form-message {
            padding: 1rem 1.5rem;
            border-radius: 8px;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            animation: fadeInUp 0.3s ease-out;
        }

        .form-message.success {
            background: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .form-message.error {
            background: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        #contactForm #phone {
            display: contents;
            width: 0px;
            height: 0px;
            opacity: 0;
        }
    </style>
</head>
