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

body {
    background:
        radial-gradient(circle at 50% 15%, rgba(255, 105, 180, 0.55), transparent 60%),
        radial-gradient(circle at 50% 85%, rgba(50, 10, 40, 0.85), transparent 60%),
        linear-gradient(180deg, #0a030a, #120214);
    color: #eaeaea;
    margin: 0;
}

/* MAIN */

#intro {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main {
    width: 92%;
    max-width: 1200px;
}

.card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 26px;
    padding: 42px;
    backdrop-filter: blur(28px);
    box-shadow: 0 0 90px rgba(255, 105, 180, 0.28);
}

/* TOP TAGS */
.top-tags {
    display: flex;
    gap: 14px;
    margin-bottom: 34px;
}

.top-tags span {
    font-size: 11px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 1px;
    color: #cfcfcf;
}

.dot {
    color: #ff69b4;
}

/* CONTENT */
.content {
    display: flex;
    gap: 60px;
}

/* LEFT */
.left h1 {
    font-size: 50px;
    font-weight: 600;
    line-height: 1.15;
    color: #f3f3f3;
}

.desc {
    margin: 18px 0 28px;
    font-size: 15px;
    color: #b8b8b8;
    max-width: 460px;
}

.live-line {
    margin-bottom: 22px;
}

.live-line span {
    font-size: 12px;
    letter-spacing: 2px;
    color: #ff69b4;
}

/* BUTTONS */
.buttons {
    display: flex;
    gap: 14px;
}

.btn {
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.btn i {
    color: #ff69b4;
}

.btn:hover {
    background: rgba(255, 105, 180, 0.15);
    box-shadow: 0 0 16px rgba(255, 105, 180, 0.45);
}

/* SITE LINK (LEFT) */
.site-link {
    margin-top: 22px;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ff69b4;
}

/* RIGHT CARD */
.right {
    flex: 1;
    background: linear-gradient(180deg, rgba(60, 10, 50, 0.9), rgba(15, 5, 20, 0.95));
    border-radius: 22px;
    padding: 28px;
    box-shadow: inset 0 0 40px rgba(255, 105, 180, 0.08);
    position: relative;
}

/* RIGHT HEADER */
.right-head {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    letter-spacing: 2px;
    color: #bdbdbd;
    margin-bottom: 20px;
}

.online {
    color: #7cffb2;
}

/* ORBIT */
.orbit-box {
    width: 240px;
    height: 240px;
    margin: auto;
    position: relative;
}

.orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(255, 105, 180, 0.35);
    animation: spin 16s linear infinite;
}

.orbit i {
    position: absolute;
    background: #14060c;
    color: #ff69b4;
    padding: 7px;
    border-radius: 50%;
    box-shadow: 0 0 14px rgba(255, 105, 180, 0.55);
    font-size: 13px;
}

.i1 {
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.i2 {
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
}

.i3 {
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
}

.i4 {
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
}

/* CENTER */
.core {
    position: absolute;
    inset: 52px;
    border-radius: 50%;
    background: radial-gradient(circle, #ff69b4, #3b0715);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(255, 105, 180, 0.6);
}

.core span {
    font-family: 'Orbitron', sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    color: #f0f0f0;
}

/* STATS */
.stats {
    display: flex;
    gap: 18px;
    margin-top: 22px;
}

.stats div {
    flex: 1;
    padding: 14px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    text-align: left;
}

.stats h4 {
    font-size: 22px;
    font-weight: 500;
    color: #f2f2f2;
}

.stats p {
    font-size: 12px;
    color: #bdbdbd;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ===== TYPEWRITER & ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(25px);
    animation: fadeInUp 0.8s ease forwards;
}

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

.smooth-out {
    animation: smoothOut 1.2s ease forwards;
}

@keyframes smoothOut {
    from {
        opacity: 1;
        transform: scale(1);
        filter: blur(0);
    }

    to {
        opacity: 0;
        transform: scale(1.1);
        filter: blur(25px);
    }
}

/* ===== FROM DIRECTIONS ===== */
.from-top {
    opacity: 0;
    transform: translateY(-40px);
    animation: fromTop 0.8s ease forwards;
}

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

.from-left {
    opacity: 0;
    transform: translateX(-40px);
    animation: fromLeft 0.8s ease forwards;
}

@keyframes fromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.from-right {
    opacity: 0;
    transform: translateX(40px);
    animation: fromRight 0.8s ease forwards;
}

@keyframes fromRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.from-bottom {
    opacity: 0;
    transform: translateY(40px);
    animation: fromBottom 0.8s ease forwards;
}

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

.zoom-in {
    opacity: 0;
    transform: scale(0.85);
    animation: zoomIn 0.8s ease forwards;
}

@keyframes zoomIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.typewriter {
    border-right: 2px solid #ff69b4;
    white-space: nowrap;
    overflow: hidden;
}


/* ===== HEADER MENU ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-list {
    margin: 15px 20px;
}

.div-list {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.ul-list {
    list-style: none;
    display: flex;
    gap: 3rem;
    padding: 12px 28px;
    border-radius: 30px;
    background: rgba(255, 20, 147, 0.45);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 105, 180, 0.25);
    box-shadow: 0 8px 25px rgba(255, 105, 180, 0.25);
}

.ul-list li {
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 25px;
    padding: 8px 14px;
    transition: 0.3s ease;
}

.ul-list li a {
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
    color: #ffc0cb;
    font-size: 14px;
    transition: 0.3s;
}

.ul-list li i {
    color: #ff69b4;
}

.ul-list li:hover {
    background: rgba(255, 105, 180, 0.25);
    box-shadow: 0 0 12px rgba(255, 105, 180, 0.4);
}

.ul-list li.active {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.6);
}

.ul-list li.active a,
.ul-list li.active i {
    color: #fff;
}

/* ===== HOME SECTION ===== */
.home {
    margin: 160px 200px;
    color: #f2f2f2;
}

.home-container {
    display: flex;
    gap: 6rem;
}

.home-p {
    background: rgba(255, 105, 180, 0.15);
    color: #ffb6c1;
    display: inline-block;
    border-radius: 25px;
    padding: 6px 14px;
    margin-bottom: 30px;
    font-size: 14px;
}

.home-s {
    font-weight: bold;
    color: #ff69b4;
}

.info-home h1 {
    font-size: 70px;
    font-family: "Raleway", sans-serif;
    margin-bottom: 20px;
    color: #ffffff;
}

.home img {
    width: 400px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.4);
    animation: floatImage 3s ease-in-out infinite;
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    will-change: transform;
}

.home img:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 40px rgba(255, 105, 180, 0.6);
}

@keyframes floatImage {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-18px);
    }

    100% {
        transform: translateY(0);
    }
}


.info-home h3 {
    font-size: 40px;
    font-family: "Playfair Display", serif;
    margin-bottom: 20px;
    color: #ffb6c1;
}

.info-p {
    color: #d0d0d0;
    padding-bottom: 20px;
}

.info-p p {
    padding-bottom: 5px;
}

.info-p2 {
    display: flex;
    gap: 1rem;
    color: #cfcfcf;
    font-size: 14px;
    padding-bottom: 20px;
}

/* BUTTONS */
.btnn {
    display: flex;
    gap: 1rem;
    padding-bottom: 30px;
}

.btn-home1 {
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 12px 18px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 0 15px rgba(255, 105, 180, 0.4);
}

.btn-home1:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.6);
}

.btn-home2 {
    background: transparent;
    border: 2px solid #ff69b4;
    border-radius: 12px;
    padding: 12px 18px;
    color: #ff69b4;
    cursor: pointer;
    transition: 0.3s;
}

.btn-home2:hover {
    background: #ff69b4;
    color: #fff;
}

.hhr {
    padding-bottom: 30px;
}

hr {
    width: 90%;
    border: 1px solid rgba(255, 105, 180, 0.4);
}

/* SOCIAL */
.follow {
    display: flex;
    gap: 1rem;
}

.follow ul {
    display: flex;
    gap: 2rem;
    font-size: 20px;
}

.follow ul li {
    list-style: none;
}

.follow ul a {
    text-decoration: none;
    color: #ffb6c1;
    transition: 0.3s;
}

.follow ul a:hover {
    color: #fff;
    text-shadow: 0 0 10px #ff69b4;
}

/* IMAGE */
.home img {
    width: 400px;
    border-radius: 15px;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.4);
}

/* ===== PROJECT SECTION ===== */
.project {
    margin: 160px 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f2f2f2;
}

.project h1 {
    font-family: "Orbitron", sans-serif;
    padding-bottom: 10px;
    color: #ff69b4;
    letter-spacing: 1px;
}

.project p {
    padding-bottom: 20px;
    font-size: 14px;
    color: #c9c9c9;
}

.project hr {
    width: 80px;
    height: 3px;
    border: none;
    background: linear-gradient(90deg, #ff69b4, #ff1493);
    margin-bottom: 20px;
    border-radius: 10px;
}

.projects-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 4 cards in one row */
    gap: 30px;
    max-width: 1400px; /* important so they fit nicely */
    margin: auto;
}


.project-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 105, 180, 0.25);
    padding: 22px;
    border-radius: 18px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.15);
    transition: 0.35s ease;
}


.project-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 35px rgba(255, 105, 180, 0.45);
}

.project-card img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 105, 180, 0.25);
}

.project-card h3 {
    color: #ffb6c1;
    margin-bottom: 8px;
}

.project-card p {
    color: #d1d1d1;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.project-card .skills a {
    display: inline-block;
    margin: 4px 6px 0 0;
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 20px;
    color: #ffb6c1;
    border: 1px solid rgba(255, 105, 180, 0.4);
    background: rgba(255, 105, 180, 0.08);
}

.project-card .btns {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.project-card .btn {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #fff;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    text-decoration: none;
    transition: 0.3s ease;
}

.project-card .btn:hover {
    box-shadow: 0 0 18px rgba(255, 105, 180, 0.6);
    transform: translateY(-2px);
}


.project-card img {
    width: 100%;
    border-radius: 14px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 105, 180, 0.25);
}

.project-card h3 {
    color: #ffb6c1;
    margin-bottom: 8px;
}

.project-card p {
    color: #d1d1d1;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.project-card .skills a {
    display: inline-block;
    margin: 4px 6px 0 0;
    padding: 6px 12px;
    font-size: 11px;
    border-radius: 20px;
    color: #ffb6c1;
    border: 1px solid rgba(255, 105, 180, 0.4);
    background: rgba(255, 105, 180, 0.08);
}

.project-card .btns {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.project-card .btn {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    color: #fff;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    text-decoration: none;
    transition: 0.3s ease;
}

.project-card .btn:hover {
    box-shadow: 0 0 18px rgba(255, 105, 180, 0.6);
    transform: translateY(-2px);
}

/* ===== ABOUT ===== */
.about {
    margin: 160px 200px;
    font-family: "Poppins", sans-serif;
    color: #f2f2f2;
}

.about-info {
    display: flex;
    gap: 0.8rem;
    margin-bottom: 4rem;
    align-items: center;
}

.img-about img {
    width: 55px;
    border-radius: 50%;
    border: 2px solid rgba(255, 105, 180, 0.6);
    box-shadow: 0 0 12px rgba(255, 105, 180, 0.6);
}

.info-text {
    position: relative;
    bottom: -6px;
}
.about p {
    font-size: 1.2rem; 
    line-height: 1.8;  
}
.info-text p {
    color: #cfcfcf;
    font-size: 14px;
}

.info-text h5 {
    margin-bottom: 4px;
    color: #ffb6c1;
}

.about h3 {
    margin-bottom: 1rem;
    font-size: 28px;
    color: #ff69b4;
    font-family: "Orbitron", sans-serif;
}

.about-text p {
    margin-bottom: 1rem;
    font-family: "Montserrat", sans-serif;
    color: #d2d2d2;
    line-height: 1.7;
}

.about-text span {
    color: #ff69b4;
    font-weight: 600;
}

.about-info2 {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.photo-container {
    position: relative;
    display: inline-block;
    padding: 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 105, 180, 0.25);
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.25);
}
.about-info2 ul {
    line-height: 1.6;       
    color: #e0e0e0;        
    margin-top: 15px;       
}

.about-info2 ul li {
    margin-bottom: 10px;    /* space between each list item */
}
.photo-container img {
    width: 260px;
    border-radius: 12px;
    display: block;
}

.tape {
    position: absolute;
    width: 90px;
    height: 30px;
    background: linear-gradient(145deg, #2a0b12, #14060c);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.15), inset 0 -2px 4px rgba(0, 0, 0, 0.8), 0 4px 12px rgba(255, 105, 180, 0.4);
    border-radius: 4px;
    opacity: 0.9;
    z-index: 2;
}

.tape::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
}

.tape1 {
    top: -18px;
    left: 30px;
    transform: rotate(-10deg);
}

.tape2 {
    bottom: -18px;
    right: 30px;
    transform: rotate(10deg);
}

/* ===== SERVICES ===== */
.services::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(255, 105, 180, 0.25) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(120px);
    animation: float 8s ease-in-out infinite;
    z-index: -1;
}

.services-content {
    max-width: 1300px;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 105, 180, 0.25);
    border-radius: 22px;
    padding: 2.5rem;
    text-align: center;
    backdrop-filter: blur(14px);
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.15);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 105, 180, 0.25), transparent);
    transition: 0.6s;
}

.service-card:hover::before {
    left: 120%;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 0 40px rgba(255, 105, 180, 0.5);
}

.service-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #ff69b4, #ff1493);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.2rem;
    color: #fff;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.6);
}

.section-title {
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffb6c1;
}

.service-card p {
    color: #d0d0d0;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.service-features span {
    background: rgba(255, 105, 180, 0.15);
    color: #ffb6c1;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 105, 180, 0.35);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.services {
    margin: 160px 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #f2f2f2;
}

.services h1 {
    font-family: "Orbitron", sans-serif;
    padding-bottom: 10px;
    color: #ff69b4;
    letter-spacing: 1px;
}

.services p {
    padding-bottom: 20px;
    font-size: 14px;
    color: #c9c9c9;
}

.services hr {
    width: 80px;
    height: 3px;
    border: none;
    background: linear-gradient(90deg, #ff69b4, #ff1493);
    margin-bottom: 20px;
    border-radius: 10px;
}

/* ===== CONTACT ===== */
#contact {
    width: 100%;
    padding: 120px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-content {
    width: 100%;
    max-width: 1100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin: auto;
}

.contact-info p {
    color: #cfcfcf;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-details {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #d0d0d0;
}

.contact-item svg {
    color: #ff69b4;
    filter: drop-shadow(0 0 6px rgba(255, 105, 180, 0.6));
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255, 105, 180, 0.12);
    border: 1px solid rgba(255, 105, 180, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffb6c1;
    transition: 0.3s ease;
}

.social-link:hover {
    transform: scale(1.15);
    color: #fff;
    box-shadow: 0 0 25px rgba(255, 105, 180, 0.6);
}

.contact-form {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 105, 180, 0.25);
    border-radius: 18px;
    padding: 35px;
    backdrop-filter: blur(12px);
    box-shadow: 0 0 30px rgba(255, 105, 180, 0.25);
}

.form-group {
    margin-bottom: 22px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 105, 180, 0.3);
    border-radius: 10px;
    color: #f2f2f2;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff69b4;
    box-shadow: 0 0 12px rgba(255, 105, 180, 0.5);
}

/* ANIMATION PRESETS */
.slide-in-left {
    transform: translateX(-40px);
    opacity: 0;
    transition: all 1.2s ease;
}

.slide-in-right {
    transform: translateX(40px);
    opacity: 0;
    transition: all 1.2s ease;
}

.slide-in-up {
    transform: translateY(40px);
    opacity: 0;
    transition: all 1.2s ease;
}

.glow-genz-button {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width:900px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .contact-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }
}

/* ===== RESPONSIVE ===== */

/* Medium screens */
@media (max-width: 1200px) {
    .home {
        margin: 160px 100px;
    }

    .project,
    .about,
    .services {
        margin: 120px 100px;
    }

    .content {
        gap: 40px;
    }

    .home-container {
        gap: 4rem;
    }

    .home img {
        width: 300px;
    }

    .info-home h1 {
        font-size: 60px;
    }

    .info-home h3 {
        font-size: 32px;
    }
}

/* Small screens / tablets */
@media (max-width: 900px) {
    .home {
        margin: 140px 50px;
        text-align: center;
    }

    .home-container {
        flex-direction: column;
        gap: 3rem;
        align-items: center;
    }

    .home img {
        width: 250px;
    }

    .content {
        flex-direction: column;
        gap: 30px;
    }

    .left h1 {
        font-size: 36px;
    }

    .desc {
        max-width: 100%;
        font-size: 14px;
    }

    .right {
        padding: 20px;
    }

    .project,
    .about,
    .services {
        margin: 100px 40px;
    }

    .projects-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-info2 {
        flex-direction: column;
        gap: 2rem;
    }

    .photo-container img {
        width: 200px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Extra small screens / mobile */
@media (max-width: 600px) {
    .home {
        margin: 120px 20px;
    }

    .info-home h1 {
        font-size: 28px;
    }

    .info-home h3 {
        font-size: 22px;
    }

    .home img {
        width: 180px;
    }

    .btnn {
        flex-direction: column;
        gap: 1rem;
    }

    .project,
    .about,
    .services {
        margin: 80px 20px;
    }

    .project-card {
        padding: 18px;
    }

    .about-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .about-info2 {
        gap: 1.5rem;
    }

    .photo-container img {
        width: 180px;
    }

    .services-grid {
        gap: 1.5rem;
    }
}

/* ===== HEADER MENU RESPONSIVE ===== */

/* Hide the original menu and show hamburger on small screens */
@media (max-width: 900px) {
    .ul-list {
        /*display: none;*/
        /* hide normal menu */
        flex-direction: column;
        position: fixed;
        top: 70px;
        right: -300px;
        width: 250px;
        height: calc(100% - 70px);
        background: rgba(18, 2, 14, 0.95);
        backdrop-filter: blur(12px);
        padding: 20px;
        gap: 1.5rem;
        border-radius: 12px 0 0 12px;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .ul-list li {
        justify-content: flex-start;
        padding: 10px 15px;
    }

    /* Hamburger button */
    .hamburger {
        display: block;
        position: fixed;
        top: 22px;
        right: 28px;
        width: 30px;
        height: 22px;
        cursor: pointer;
        z-index: 1001;
        flex-direction: column;
        justify-content: space-between;
    }

    .hamburger span {
        display: block;
        height: 3px;
        width: 100%;
        background: #ff69b4;
        border-radius: 3px;
        transition: 0.3s;
    }

    /* When menu is open */
    .ul-list.open {
        right: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(9px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-9px);
    }
}

/* Extra small screens */
@media (max-width: 600px) {
    .hamburger {
        top: 18px;
        right: 20px;
        width: 28px;
        height: 18px;
    }

    .home {
        margin: 100px 15px;
    }

    .project,
    .about,
    .services {
        margin: 70px 15px;
    }
}

/* ===== GENERAL RESPONSIVE ===== */
@media (max-width: 900px) {

    /* Home Section */
    .home {
        margin: 120px 30px;
    }

    .home-container {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .home img {
        width: 300px;
    }

    .info-home h1 {
        font-size: 50px;
        text-align: center;
    }

    .info-home h3 {
        font-size: 28px;
        text-align: center;
    }

    .info-p,
    .info-p2 {
        text-align: center;
    }

    .btnn {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    /* Projects Section */
    .project {
        margin: 80px 20px;
    }

    .projects-container {
        gap: 20px;
    }

    .project-card {
        padding: 18px;
    }

    /* About Section */
    .about {
        margin: 80px 20px;
    }

    .about-info {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .about-info2 {
        flex-direction: column;
        gap: 1.5rem;
    }

    .photo-container img {
        width: 200px;
    }

    /* Services Section */
    .services {
        margin: 80px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
    }

    /* Contact Section */
    #contact {
        padding: 80px 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-form {
        padding: 25px;
    }
}

/* ===== MOBILE SMALL SCREENS ===== */
@media (max-width: 600px) {
    .home {
        margin: 100px 15px;
    }

    .info-home h1 {
        font-size: 36px;
    }

    .info-home h3 {
        font-size: 22px;
    }

    .home img {
        width: 220px;
    }

    .project,
    .about,
    .services {
        margin: 60px 15px;
    }

    .badge {
        background-color: #e91e63;
        /* pink */
        color: white;
        font-size: 0.7rem;
        padding: 2px 6px;
        border-radius: 4px;
        margin-left: 8px;
    }


    .about h3,
    .services h1,
    .project h1 {
        font-size: 22px;
    }

    .about-text p,
    .service-card p,
    .project-card p {
        font-size: 14px;
    }

    .photo-container img {
        width: 160px;
    }

    .contact-form {
        padding: 20px;
    }
}

/* ===== HAMBURGER STYLE ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 100;
}

.hamburger span {
    display: block;
    height: 3px;
    background-color: #fff;
    /* or pink to match theme */
    border-radius: 3px;
}

/* ===== SHOW HAMBURGER ON SMALL SCREENS ===== */
@media (max-width: 900px) {
    .ul-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease-in-out;
        z-index: 99;
    }

    .ul-list li {
        font-size: 20px;
    }

    .ul-list.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
    }
}