* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #0f172a;
    color: white;
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
}

.hero h2 {
    color: #f97316;
}
#intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #020617;

    display: flex;
    justify-content: center;
    align-items: center;

    z-index: 999;
}

#intro #terminal-text {
    color: #22c55e;
    font-family: monospace;
    text-shadow: 0 0 8px rgba(34,197,94,0.6);
}

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: transparent;

}

.hero h1 {
    font-size: 52px;
    margin-bottom: 10px;
}

.hero h2 {
    color: #f97316;
    height: 40px;
}

.cursor {
    animation: blink 1s infinite;
}

@keyframes blink {
    0% {opacity: 1;}
    50% {opacity: 0;}
    100% {opacity: 1;}
}
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.logo {
    font-weight: bold;
    font-size: 20px;
    color: #f97316;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #f97316;
}
.hero {
    position: relative;
    overflow: hidden;
}

.grid-bg {
    position: absolute;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    from {
        transform: translate(0,0);
    }
    to {
        transform: translate(-40px,-40px);
    }
}
.beyond {
    padding: 100px 10%;
    background: transparent;
    text-align: center;
}

.beyond h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.beyond-container {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.expectation,
.reality {
    flex: 1;
    padding: 40px;
    border-radius: 10px;
    background: #020617;
    transition: 0.3s;
}

.expectation:hover,
.reality:hover {
    transform: translateY(-10px);
}

.expectation h3 {
    color: #94a3b8;
}

.reality h3 {
    color: #f97316;
}
.ai-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #f97316;
    color: white;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    z-index: 200;
}

.ai-chat {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background: #0f172a;
    border-radius: 10px;
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 200;
}

.ai-header {
    background: #020617;
    padding: 10px;
    display: flex;
    justify-content: space-between;
}

.ai-body {
    height: 250px;
    overflow-y: auto;
    padding: 10px;
    font-size: 14px;
}

.ai-input {
    display: flex;
}

.ai-input input {
    flex: 1;
    padding: 10px;
    border: none;
}

.ai-input button {
    background: #f97316;
    border: none;
    color: white;
    padding: 10px;
}
.projects {
    padding: 100px 10%;
    background: transparent;
    text-align: center;
}

.projects h2 {
    font-size: 36px;
    margin-bottom: 50px;
}

.project-container {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.project-card {
    background: #020617;
    border-radius: 12px;
    overflow: hidden;
    width: 320px;
    transition: 0.3s;
}

.project-card:hover {
    transform: translateY(-10px);
}

.project-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.project-info {
    padding: 20px;
    text-align: left;
}

.project-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
}

.project-buttons a {
    text-decoration: none;
    padding: 8px 12px;
    background: #f97316;
    color: white;
    border-radius: 5px;
    font-size: 14px;
}
.about {
    padding: 100px 10%;
    background: transparent;

}

.about-container {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
}

.about-stats {
    flex: 1;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 32px;
    color: #f97316;
}
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 0.8s;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.stat h3 {
    font-size: 32px;
    color: #f97316;
    text-shadow: 0 0 10px rgba(249,115,22,0.5);
}
.skills {
    padding: 100px 10%;
   background: transparent;
}

.skills h2 {
    text-align: center;
    margin-bottom: 40px;
}

.skill {
    margin-bottom: 25px;
}

.skill-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
}

.skill-bar {
    width: 100%;
    height: 8px;
    background: #0f172a;
    border-radius: 10px;
    overflow: hidden;
}

.skill-progress {
    height: 100%;
    width: 0;
    background: #f97316;
    transition: width 1.5s ease;
}
.contact {
    padding: 100px 10%;
    background: transparent;
}

.contact h2 {
    text-align: center;
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
}

.contact-info a {
    display: inline-block;
    margin-top: 10px;
    margin-right: 10px;
    padding: 10px 15px;
    background: #f97316;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border: none;
    border-radius: 5px;
    background: #020617;
    color: white;
}

.contact-form button {
    background: #f97316;
    border: none;
    padding: 12px;
    color: white;
    cursor: pointer;
    border-radius: 5px;
}
.footer {
    text-align: center;
    padding: 20px;
    background: #020617;
    color: #94a3b8;
}
html {
    scroll-behavior: smooth;
}
.nav-links a.active {
    color: #f97316;
}
section {
    position: relative;
}

h2 {
    letter-spacing: 1px;
}

section p {
    line-height: 1.7;
    color: #cbd5f5;
}
.project-card,
.expectation,
.reality {
    background: rgba(15,23,42,0.85);
    border: 1px solid rgba(255,255,255,0.05);
}
.hero h1 {
    text-shadow: 0 0 30px rgba(249,115,22,0.3);
}
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    margin-right: 10px;
    padding: 10px 15px;
    background: #f97316;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.contact-link i {
    font-size: 18px;
}
.contact-link:hover .fa-whatsapp {
    color: #25D366;
}

.contact-link:hover .fa-instagram {
    color: #E1306C;
}
.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
.contact-link:hover .fa-whatsapp {
    color: #25D366;
}

.contact-link:hover .fa-instagram {
    color: #E1306C;
}

.contact-link:hover .fa-envelope {
    color: #000000;
}

.contact-link:hover .fa-phone {
    color: #000000;
}
body {
    font-family: Arial, sans-serif;
    background: #020617;
    color: white;
    position: relative;
}
body::before {
    content: "";
    position: fixed;
    width: 200%;
    height: 200%;
    top: 0;
    left: 0;

    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);

    background-size: 40px 40px;
    animation: moveGrid 30s linear infinite;

    z-index: -1;
}
section {
    background: linear-gradient(
        to bottom,
        rgba(2,6,23,0.8),
        rgba(2,6,23,0.95)
    );
}
.grid-bg {
    opacity: 0.4;
}
.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: bold;
    font-size: 20px;
    color: #f97316;
    text-decoration: none;
    transition: all 0.3s ease;
}

.logo i {
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
    text-shadow: 0 0 12px rgba(249,115,22,0.6);
}

.logo:hover i {
    transform: rotate(-10deg) scale(1.1);
}
.project-card {
    background: linear-gradient(
        to bottom,
        rgba(2,6,23,0.8),
        rgba(2,6,23,1)
    );
}
.contact-form textarea {
    min-height: 120px;
    border: 1px solid rgba(255,255,255,0.08);
}
.contact-form input,
.contact-form textarea {
    background: rgba(2,6,23,0.9);
}
.footer {
    background: #010409;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #94a3b8;
}
.form-box {
    background: rgba(2,6,23,0.9);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 8px;
    padding: 12px;
    transition: 0.25s;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    color: white;
    font-size: 14px;
}
.form-box:focus-within {
    border-color: #f97316;
    box-shadow: 0 0 10px rgba(249,115,22,0.3);
}
.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    max-width: 1200px;
    margin: auto;
}
.hero-content {
    flex: 1;
    text-align: left;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.hero-image img {
    height: 80vh;
    max-height: 700px;
    width: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
@media (max-width: 1024px) {

    .hero-container {
        gap: 20px;
    }

    .hero-image img {
        height: 60vh;
    }
}
@media (max-width: 768px) {

    .hero-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-image img {
        height: 280px;
        transform: none;
    }
}
@media (max-width: 768px) {

    .navbar {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }
}
@media (max-width: 768px) {

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-stats {
        flex-wrap: wrap;
    }
}
@media (max-width: 768px) {

    .beyond-container {
        flex-direction: column;
    }
}
@media (max-width: 768px) {

    .project-container {
        flex-direction: column;
        align-items: center;
    }

    .project-card {
        width: 100%;
        max-width: 350px;
    }
}
@media (max-width: 768px) {

    .skill-info {
        font-size: 14px;
    }
}
@media (max-width: 768px) {

    .contact-container {
        flex-direction: column;
    }

    .contact-form {
        width: 100%;
    }
}
img {
    max-width: 100%;
    height: auto;
}

body {
    overflow-x: hidden;
}
.wa-notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);

    display: flex;
    align-items: center;
    gap: 10px;

    background: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;

    box-shadow: 0 10px 25px rgba(0,0,0,0.3);

    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
    z-index: 999;
}

.wa-notification i {
    font-size: 18px;
}

.wa-notification.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

