@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    border: none;
    outline: none;
}

body {
    background-color: #050505;
    color: #fff;
    overflow-x: hidden;
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 10%;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.header.sticky {
    background: #050505;
    padding: 15px 10%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.logo {
    font-size: 25px;
    color: #fff;
    font-weight: 600;
}

.logo-highlight {
    color: #a855f7;
}

.navbar a {
    font-size: 15px;
    color: #fff;
    margin-left: 35px;
    transition: .3s;
    position: relative;
    font-weight: 500;
    text-decoration: none;
}

.navbar a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #a855f7;
    bottom: -5px;
    left: 0;
    transition: .3s;
}

.navbar a:hover {
    color: #a855f7;
}

.navbar a:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dark-mode-icon {
    font-size: 20px;
    color: #00eeff;
    cursor: pointer;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 25px;
    background: #a855f7;
    color: #fff;
    border: 2px solid #a855f7;
    border-radius: 8px;
    font-weight: 600;
    transition: .5s;
}

.btn:hover {
    background: transparent;
    color: #a855f7;
    box-shadow: 0 0 20px #a855f7;
}

.download-btn {
    background: #a855f7;
    border-color: #a855f7;
    color: #fff;
}

.download-btn:hover {
    background: transparent;
    color: #a855f7;
    box-shadow: 0 0 20px #a855f7;
    transform: translateY(-3px);
}

.contact-btn {
    background: transparent;
    color: #a855f7;
}

/* Hero */
.home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100vh;
    padding: 0 10%;
    margin-top: 50px;
    position: relative;
    /* For absolute social icons */
}

.home-content {
    max-width: 600px;
    z-index: 5;
}

.home-content h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: -10px;
}

.home-content h1 {
    font-size: 55px;
    font-weight: 700;
    line-height: 1.2;
    margin: 5px 0;
}

.creative-text {
    background: linear-gradient(to bottom, #fff 30%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.typing-text {
    color: #a855f7;
}

.cursor {
    display: inline-block;
    color: #a855f7;
    font-weight: bold;
    animation: blink .7s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.home-content p {
    font-size: 14px;
    margin: 20px 0 30px;
    line-height: 1.6;
    color: #ccc;
}

/* Social icons - Vertical on left */
.social-icons {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 10;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    background: transparent;
    font-size: 18px;
    color: #fff;
    opacity: 0.6;
    transition: .3s;
}

.social-icons a:hover {
    color: #a855f7;
    opacity: 1;
    transform: scale(1.2);
}

.btn-group {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

/* ===== IMAGE SECTION ===== */
.home-img {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-left: -20px;
}

/* background glow - Purple */
.home-img::before {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, rgba(88, 28, 135, 0.2) 50%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
}

.blob-wrapper {
    position: relative;
    width: 550px;
    height: 650px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

/* ✅ clean neon ring */
.blob-outline {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 510px;
    height: 510px;

    clip-path: url(#blob-shape);
    background: transparent;
    border: 2px solid rgba(168, 85, 247, .5);

    box-shadow:
        0 0 20px rgba(168, 85, 247, .3),
        0 0 50px rgba(168, 85, 247, .15);

    z-index: 3;
    transition: .35s ease;
}

/* image box */
.img-box {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -40%);
    width: 500px;
    height: 500px;

    background: radial-gradient(circle, #00eeff 0%, #0077ff 100%);
    clip-path: url(#blob-shape);

    box-shadow:
        0 0 22px rgba(0, 238, 255, .35),
        inset 0 0 30px rgba(0, 238, 255, .35);

    transition: .35s ease;
    z-index: 4;
    cursor: pointer;
}

.img-box img {
    width: 100%;
    height: 106%;
    object-fit: cover;
    object-position: center 35%;
    clip-path: inherit;
    display: block;
}

/* ✅ PERFECT 3 DOTS (120° spacing) */
.orbit {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 540px;
    height: 540px;
    border-radius: 50%;
    animation: orbitSpin 10s linear infinite;
    z-index: 5;
    pointer-events: none;
}

.orbit span {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #00eeff;
    box-shadow: 0 0 14px #00eeff, 0 0 35px rgba(0, 238, 255, .7);
    top: 50%;
    left: 50%;
}

/* 120° exactly */
.orbit span:nth-child(1) {
    transform: rotate(0deg) translateX(270px);
}

.orbit span:nth-child(2) {
    transform: rotate(120deg) translateX(270px);
}

.orbit span:nth-child(3) {
    transform: rotate(240deg) translateX(270px);
}

@keyframes orbitSpin {
    from {
        transform: translate(-50%, -45%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -45%) rotate(360deg);
    }
}

/* ✅ hover boost */
.blob-wrapper:hover .img-box {
    transform: translate(-50%, -40%) scale(1.05);
    box-shadow:
        0 0 35px rgba(0, 238, 255, .65),
        0 0 110px rgba(0, 238, 255, .35),
        inset 0 0 40px rgba(0, 238, 255, .4);
}

.blob-wrapper:hover .blob-outline {
    border-color: #00eeff;
    box-shadow:
        0 0 30px rgba(0, 238, 255, .9),
        0 0 95px rgba(0, 238, 255, .55),
        0 0 160px rgba(0, 238, 255, .35);
}

/* Stats */
.stats {
    display: flex;
    justify-content: space-between;
    padding: 30px 10%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: -50px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item h2 {
    font-size: 35px;
    color: #fff;
}

.stat-item p {
    font-size: 12px;
    color: #ccc;
    line-height: 1.4;
}


/* ===== ANIMATIONS ===== */

/* Reveal Utility */
.reveal {
    opacity: 0;
    transition: all 0.5s ease;
}

.reveal.show {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Directional Reveals */
.fade-up {
    transform: translateY(50px);
}

.fade-down {
    transform: translateY(-50px);
}

.logo {
    font-size: 25px;
    color: #fff;
    font-weight: 600;
    display: inline-block;
}


.fade-left {
    transform: translateX(-50px);
}

.fade-right {
    transform: translateX(50px);
}

.zoom-in {
    transform: scale(0.8);
}

/* Staggered Delays */
.delay-1 {
    transition-delay: 0.05s;
}

.delay-2 {
    transition-delay: 0.1s;
}

.delay-3 {
    transition-delay: 0.15s;
}

.delay-4 {
    transition-delay: 0.2s;
}

.delay-5 {
    transition-delay: 0.25s;
}

.delay-6 {
    transition-delay: 0.3s;
}

.delay-7 {
    transition-delay: 0.35s;
}

.delay-8 {
    transition-delay: 0.4s;
}

/* Custom Keyframes for Orbit */
@keyframes orbitSpin {
    from {
        transform: translate(-50%, -45%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -45%) rotate(360deg);
    }
}

/* Typing Cursor Animation */
@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

/* ===== SKILLS SECTION ===== */
.skills {
    padding: 100px 10%;
    margin-top: -50px;
    scroll-margin-top: 80px;
}

.skills-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.skills-container h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.skills-container p {
    font-size: 14px;
    color: #ccc;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.skills-wrapper {
    position: relative;
    padding: 0 50px;
}

.skills-list {
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    overflow-x: scroll;
    /* Force overflow for subagent to see */
    scroll-behavior: smooth;
    padding: 30px 10px;
    scroll-snap-type: x mandatory;
    cursor: grab;
}

.skills-list::-webkit-scrollbar {
    display: none;
}

.skill-item {
    flex: 0 0 calc(33.333% - 40px);
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    scroll-snap-align: center;
}

/* Circular Progress Bar */
.progress-container {
    position: relative;
    width: 150px;
    height: 150px;
}

.progress-container svg {
    width: 150px;
    height: 150px;
    transform: rotate(-90deg);
}

.progress-container circle {
    fill: none !important;
    stroke-width: 8;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-linecap: round;
}

.progress-container .progress-bar {
    stroke-dasharray: 440;
    stroke-dashoffset: 440;
    transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Specific colors for bars - Purple & Violet Palette */
.skill-item:nth-child(1) .progress-bar {
    stroke: #a855f7;
}

.skill-item:nth-child(2) .progress-bar {
    stroke: #8b5cf6;
}

.skill-item:nth-child(3) .progress-bar {
    stroke: #6366f1;
}

.skill-item:nth-child(4) .progress-bar {
    stroke: #d946ef;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    font-weight: 700;
}

.skill-item h3 {
    font-size: 18px;
    font-weight: 500;
    color: #fff;
}

/* Progress bar animation trigger */
.reveal.show .progress-bar {
    stroke-dashoffset: calc(440 - (440 * var(--target-offset)) / 100);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    transition: .3s;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    z-index: 10;
}

.slider-btn:hover {
    background: #a855f7;
    color: #fff;
    transform: scale(1.1);
}

/* ===== PROJECTS SECTION ===== */
.projects {
    padding: 100px 10%;
    background: #050505;
    scroll-margin-top: 80px;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
}

.projects-header h2 {
    font-size: 55px;
    font-weight: 700;
}

.purple-text {
    color: #a855f7;
    background: linear-gradient(to right, #fff, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.projects-wrapper {
    position: relative;
    padding: 0 20px;
}

.projects-list {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 20px 10px 50px;
}

.projects-list::-webkit-scrollbar {
    display: none;
}

.project-card {
    flex: 0 0 400px;
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    padding: 40px;
    scroll-snap-align: center;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Corner Glows */
.project-card::before,
.project-card::after {
    content: '';
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
    filter: blur(20px);
}

.project-card::before {
    top: -50px;
    left: -50px;
}

.project-card::after {
    bottom: -50px;
    right: -50px;
    left: auto;
    transform: none;
}

.project-card:hover {
    transform: translateY(-10px);
    border-color: rgba(168, 85, 247, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.project-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.project-num {
    font-size: 55px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
}

.project-cat {
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
    opacity: 0.9;
}

.project-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
}

.tech-used {
    margin-bottom: 30px;
}

.tech-used p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.tech-list {
    font-size: 15px;
    color: #aaa;
    line-height: 1.6;
    font-weight: 400;
}

.project-img {
    width: 100%;
    height: 240px;
    border-radius: 30px;
    overflow: hidden;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.project-card:hover .project-img img {
    transform: scale(1.1);
}

.project-slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 100px 10%;
    background: #050505;
    scroll-margin-top: 80px;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-box {
    display: flex;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.contact-form {
    flex: 1.5;
    padding: 50px;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form h2 {
    font-size: 40px;
    margin-bottom: 15px;
}

.contact-form p {
    font-size: 14px;
    color: #888;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-box label {
    font-size: 14px;
    color: #ccc;
    font-weight: 500;
}

.input-box input,
.input-box textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 15px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    transition: 0.35s;
}

.input-box textarea {
    height: 150px;
    resize: none;
}

.input-box input:focus,
.input-box textarea:focus {
    outline: none;
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.05);
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.contact-form .btn {
    align-self: flex-start;
    padding: 15px 35px;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.contact-info {
    flex: 1;
    background: rgba(168, 85, 247, 0.03);
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a855f7;
    font-size: 20px;
}

.text-box p {
    font-size: 15px;
    color: #fff;
    margin-bottom: 4px;
}

.text-box span {
    font-size: 13px;
    color: #888;
}

.contact-socials {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.contact-socials a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.contact-socials a:hover {
    background: #a855f7;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.4);
}

#menu-icon {
    font-size: 25px;
    color: #fff;
    cursor: pointer;
    display: none;
    z-index: 1001;
}

/* ===== BREAKPOINTS ===== */

@media (max-width: 991px) {
    .header {
        padding: 15px 5%;
    }

    .home {
        padding: 0 5%;
    }

    .stats {
        padding: 20px 5%;
        flex-wrap: wrap;
        gap: 20px;
    }

    .skills,
    .projects,
    .contact {
        padding: 60px 5%;
    }

    .contact-box {
        flex-direction: column;
    }

    .contact-form {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
}

@media (max-width: 768px) {
    .header {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding: 15px 25px !important;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: #080808 !important;
        /* Slightly distinct from #050505 */
        z-index: 10000 !important;
        border-bottom: 1px solid rgba(168, 85, 247, 0.3) !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
        transition: none !important;
        /* Avoid jumping on scroll */
    }

    .logo {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        font-size: 24px;
    }

    .header.sticky {
        padding: 12px 25px !important;
    }

    #menu-icon {
        display: flex !important;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        cursor: pointer;
        z-index: 10005;
        position: fixed !important;
        right: 25px;
        top: 25px;
    }

    #menu-icon span {
        display: block !important;
        width: 100%;
        height: 3px;
        background-color: #ffffff !important;
        border-radius: 5px;
        transition: 0.3s ease;
    }

    /* Animation for the X button */
    #menu-icon.active span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }

    #menu-icon.active span:nth-child(2) {
        opacity: 0;
    }

    #menu-icon.active span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        padding: 1rem 5%;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        display: none;
    }

    .navbar.active {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .navbar a {
        margin-left: 0;
        font-size: 1.1rem;
    }

    .header-right {
        display: none !important;
    }

    .home {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* Centering children horizontally */
        height: auto;
        padding-top: 120px;
        padding-bottom: 50px;
        text-align: center;
    }

    .home-content {
        order: 1;
    }

    .home-content h1 {
        font-size: 40px;
    }

    .home-content h3 {
        font-size: 20px;
    }

    .social-icons {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin: 40px 0 20px;
        /* More margin on top to separate from image */
        transform: none;
        order: 3;
    }

    .btn-group {
        justify-content: center;
    }

    .home-img {
        margin-left: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        order: 2;
        /* Explicit order to be sure */
        overflow: hidden;
    }

    .home-img::before {
        width: 250px;
        height: 250px;
        filter: blur(30px);
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    /* Hero Image Responsiveness */
    .blob-wrapper {
        width: 320px;
        height: 380px;
        margin: 0 auto 30px;
        /* Centering and adding bottom margin */
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .img-box {
        width: 280px;
        height: 280px;
    }

    .blob-outline {
        width: 290px;
        height: 290px;
    }

    .orbit {
        width: 310px;
        height: 310px;
    }

    .orbit span:nth-child(1) {
        transform: rotate(0deg) translateX(155px);
    }

    .orbit span:nth-child(2) {
        transform: rotate(120deg) translateX(155px);
    }

    .orbit span:nth-child(3) {
        transform: rotate(240deg) translateX(155px);
    }

    .stats {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
        gap: 30px;
        padding-top: 50px;
    }

    .stat-item {
        flex: 0 0 140px;
        justify-content: center;
    }

    .skills-container h2,
    .projects-header h2 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .projects-list {
        gap: 0;
        padding: 20px 0 50px;
    }

    .project-card-link {
        flex: 0 0 100%;
        width: 100%;
        scroll-snap-align: center;
        display: block;
    }

    .project-card {
        width: 100%;
        padding: 25px;
        /* Reduced padding to make it less tall */
        border-radius: 35px;
        margin: 0;
    }

    .project-num {
        font-size: 38px;
        /* Slightly smaller */
    }

    .project-info h3 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .tech-used {
        margin-bottom: 15px;
    }

    .project-img {
        height: 180px;
        /* Reduced height to make it less tall */
        border-radius: 25px;
    }

    .contact-form {
        padding: 30px;
    }

    .contact-info {
        padding: 30px;
    }

    .contact-form h2 {
        font-size: 32px;
    }
}

@media (max-width: 450px) {
    .home-content h1 {
        font-size: 32px;
    }

    .blob-wrapper {
        width: 260px;
        height: 320px;
    }

    .img-box,
    .blob-outline {
        width: 230px;
        height: 230px;
    }

    .orbit {
        width: 250px;
        height: 250px;
    }

    .orbit span:nth-child(1) {
        transform: rotate(0deg) translateX(125px);
    }

    .orbit span:nth-child(2) {
        transform: rotate(120deg) translateX(125px);
    }

    .orbit span:nth-child(3) {
        transform: rotate(240deg) translateX(125px);
    }
}