@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap&subset=latin');

:root {
    --body-color:      #07070a;
    --surface-1:       #0e0e12;   
    --surface-2:       #141418; 
    --surface-3:       #1c1c22; 

    --accent:          #2952e3;
    --accent-end:      #6366f1;
    --accent-hover:    #3a63f5;
    --accent-glow:     rgba(41, 82, 227, 0.35);

    --text-primary:    #f0f0f5;
    --text-secondary:  #8888a0;
    --text-muted:      #50505f;

    --border-subtle:   rgba(255, 255, 255, 0.06);
    --border-accent:   rgba(41, 82, 227, 0.5);

    --font-display:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body:       'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--body-color);
    font-family: var(--font-body);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

p, h1, h2, h3, h4, h5, h6, .nav-name {
    cursor: default;
    text-wrap: balance;
}

button, a, i {
    -webkit-tap-highlight-color: transparent;
}

.grain {
    position: fixed;
    inset: -200%;
    width: 400%;
    height: 400%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 128px 128px;
    opacity: 0.028;
    pointer-events: none;
    z-index: 9999;
    animation: grain-shift 8s steps(10) infinite;
}

@keyframes grain-shift {
    0%, 100% { transform: translate(0, 0); }
    10%       { transform: translate(-2%, -3%); }
    20%       { transform: translate(2%, 1%); }
    30%       { transform: translate(-1%, 4%); }
    40%       { transform: translate(3%, -2%); }
    50%       { transform: translate(-3%, 3%); }
    60%       { transform: translate(1%, -1%); }
    70%       { transform: translate(-2%, 2%); }
    80%       { transform: translate(4%, -3%); }
    90%       { transform: translate(-1%, 1%); }
}


::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--body-color);
}
::-webkit-scrollbar-thumb {
    background: var(--surface-3);
    border-radius: 99px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}


.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 12px 22px;
    background: var(--surface-2);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    text-decoration: none;
}

.btn:hover {
    background: var(--surface-3);
    border-color: var(--border-accent);
    box-shadow: 0 0 20px var(--accent-glow);
}

i {
    font-size: 1rem;
}

.container {
    width: 100%;
    position: relative;
}

nav {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100vw;
    height: 80px;
    background: rgba(14, 14, 18, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding-inline: 9vw;
    transition: height 0.3s ease, box-shadow 0.3s ease;
    z-index: 100;
}

nav.scrolled {
    height: 64px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

nav.scrolled .nav-menu {
    top: 64px;
}

.nav-logo {
    position: relative;
    line-height: 1;
}

.nav-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--accent);
    letter-spacing: -0.5px;
}

.nav-logo span {
    position: absolute;
    top: -8px;
    right: -14px;
    font-size: 3rem;
    color: var(--text-primary);
    line-height: 1;
}

.nav-menu,
.nav_menu_list {
    display: flex;
    align-items: center;
}

.nav_menu_list {
    gap: 4px;
    list-style: none;
}

.nav-link {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.nav-link:hover {
    color: var(--text-primary);
    background: var(--surface-2);
}

.active-link {
    color: var(--text-primary);
}

.active-link::after {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 12px;
    right: 12px;
    height: 2px;
    background: var(--accent);
    border-radius: 99px;
}

.nav-menu-btn {
    display: none;
    color: var(--text-primary);
    cursor: pointer;
}

.nav-menu-btn i {
    font-size: 1.4rem;
}

.toast {
    visibility: hidden;
    min-width: 250px;
    background: var(--surface-2);
    color: var(--text-primary);
    border: 1px solid var(--border-subtle);
    text-align: center;
    padding: 11px 20px;
    font-size: 0.8rem;
    position: fixed;
    bottom: 30px;
    left: 50vw;
    translate: -50% 0;
    border-radius: 99px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.4s ease, top 0.4s ease; 
    z-index: 9999;
}

.toast.show {
    visibility: visible;
    opacity: 1;
    bottom: 48px;
}

.wrapper {
    padding-inline: 10vw;
}

.spotlight {
    position: absolute;
    width: 150vw;
    height: 30vh;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.018) 20%,
        rgba(255,255,255,0.035) 50%,
        rgba(255,255,255,0.055) 80%,
        rgba(255,255,255,0.09) 100%
    );
    transform: rotate(-30deg);
    top: 0;
    right: -75vw;
    z-index: -1;
    pointer-events: none;
}

.reveal-top,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition:
        opacity 0.7s ease calc(var(--reveal-delay, 0ms)),
        transform 0.7s ease calc(var(--reveal-delay, 0ms));
}

.reveal-top  { transform: translateY(50px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right{ transform: translateX(60px); }

.reveal-top.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible {
    opacity: 1;
    transform: translate(0);
}

.featured-box {
    position: relative;
    display: flex;
    align-items: center;
    height: 100vh;
    min-height: 700px;
    padding-top: 80px;
}

.featured-text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    width: 50%;
    padding-left: 20px;
}

.featured-text-card span {
    background: var(--surface-2);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    padding: 4px 12px;
    font-size: 0.8rem;
    border-radius: 99px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.featured-name {
    margin-block: 22px;
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    color: var(--text-primary);
    line-height: 1.15;
}

.featured-name p {
    white-space: nowrap;
}

.typedText {
    background: linear-gradient(135deg, var(--accent), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.typed-caret {
    color: var(--text-primary);
    -webkit-text-fill-color: var(--text-primary);
    margin-left: 2px;
    animation: caret-blink 1.1s step-start infinite;
}

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

.featured-text-info {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 32px;
    color: var(--text-secondary);
    max-width: 480px;
}

.featured-text-btn {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.blue-btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-end)) !important;
    color: #fff !important;
    border-color: transparent !important;
}

.blue-btn:hover {
    filter: brightness(1.12);
    box-shadow: 0 0 28px var(--accent-glow) !important;
}

.social_icons {
    display: flex;
    margin-top: 40px;
    gap: 16px;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.icon i {
    font-size: 1.2rem;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.icon:hover {
    background: var(--surface-3);
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.icon:hover i {
    color: var(--text-primary);
}

.featured-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
}

.tilt-scene {
    perspective: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tilt-glow {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle at var(--mx, 50%) var(--my, 50%),
        rgba(41, 82, 227, 0.18) 0%,
        transparent 50%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.tilt-card:hover .tilt-glow {
    opacity: 1;
}

.tilt-card {
    position: relative;
    width: 500px;
    height: 300px;
    border-radius: 24px;
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    transform-style: preserve-3d;
    transition: transform 0.08s linear, box-shadow 0.3s ease;
    cursor: default;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px var(--accent-glow);
}

.tilt-card-inner {
    position: relative;
    z-index: 2;
    padding: 24px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.tilt-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.tilt-tag {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    border: 1px solid var(--border-subtle);
    padding: 4px 10px;
    border-radius: 99px;
    width: fit-content;
}

.tilt-initials {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.05em;
    line-height: 1;
    color: var(--accent);
    opacity: 0.15;
}

.tilt-card-bottom {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.tilt-name {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 2px;
}

.tilt-role {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-secondary);
    cursor: default;
}

.tilt-divider {
    width: 100%;
    height: 1px;
    background: var(--border-subtle);
    margin-block: 12px;
}

.tilt-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.tilt-location {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: default;
    margin-bottom: 10px;
}

.tilt-available {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.08);
    border: 1px solid rgba(74, 222, 128, 0.2);
    border-radius: 99px;
    padding: 4px 12px;
    width: fit-content;
}

.available-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 6px #4ade80;
    animation: pulse-dot 2s ease infinite;
}

.scroll-icon-box {
    position: absolute;
    bottom: 32px;
    left: 50%;
    translate: -50% 0;
}

.scroll-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.8rem;
    padding: 10px 20px;
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: 99px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.scroll-btn:hover {
    color: var(--text-primary);
    border-color: var(--border-accent);
}

.scroll-btn i {
    font-size: 1rem;
}

.section {
    padding-block: 6em;
}

.row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
}

.col {
    display: flex;
    width: 50%;
}

.top-header {
    text-align: center;
    margin-bottom: 4em;
}

.top-header h1 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.top-header span {
    color: var(--text-muted);
    font-size: 1rem;
}

h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 14px;
    line-height: 1.4;
}

.about-info {
    display: flex;
    flex-direction: column;
    padding: 36px;
    width: 100%;
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    transition: border-color 0.3s ease, opacity 0.7s ease, transform 0.7s ease;
}

.about-info:hover {
    border-color: var(--border-accent);
}

.about-info h3 {
    font-size: 1rem;
    margin-bottom: 16px;
}

.about-info p {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
}

.skills-box {
    margin: 8px;
    min-width: 150px;
}

.skills-box h3 {
    font-size: clamp(11px, 0.9vw, 14px);
    color: var(--text-secondary);
    font-weight: 500;
}

.skills-header {
    margin-bottom: 14px;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.skills-list span {
    font-size: clamp(10px, 0.8vw, 12px);
    font-weight: 500;
    background: linear-gradient(135deg, var(--accent), var(--accent-end));
    color: #fff;
    padding: 3px 10px;
    border-radius: 5px;
    letter-spacing: 0.02em;
}

.project-container {
    display: flex;
    width: 100%;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.project-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 25%;
    height: 240px;
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    cursor: default;
    overflow: hidden;
}

.project-box > i {
    font-size: 2.4rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.project-box h3 {
    font-size: 1rem;
}

.project-box label {
    font-size: 0.8rem;
    color: var(--text-muted);
    cursor: default;
}

.project-box:hover {
    border-color: var(--border-accent);
    box-shadow: 0 0 30px var(--accent-glow);
    transform: translateY(-4px);
}

.project-box::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 50%,
        transparent 100%
    );
    transform: skewX(-15deg);
    transition: left 0.5s ease;
}

.project-box:hover::after {
    left: 150%;
}

.project-clients {
    overflow: hidden;
    padding-top: 70px;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: carousel-slide 35s linear infinite;
    will-change: transform;
}

.carousel-track img {
    height: 70px;
    width: auto;
    margin: 0 50px;
    opacity: 0.55;
    filter: grayscale(1);
    transition: opacity 0.3s ease, filter 0.3s ease;
    object-fit: contain;
}

.carousel-track:hover img {
    opacity: 0.8;
    filter: grayscale(0.3);
}

@keyframes carousel-slide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.testimonial-col {
    flex: 1;
}

.testimonial-container {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 32px 28px 28px;
    height: 100%;
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    text-align: center;
    transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
}

.testimonial-container:hover {
    border-color: var(--border-accent);
    box-shadow: 0 0 40px var(--accent-glow);
    transform: translateY(-4px);
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 0.6;
    color: var(--accent);
    opacity: 0.25;
    margin-bottom: 20px;
    display: block;
    user-select: none;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 300;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

.testimonial-author {
    color: var(--text-primary);
    font-size: 0.6rem;
    font-weight: 500;
    margin-bottom: 14px;
}

.rating {
    display: flex;
    justify-content: center;
    gap: 2px;
}

.rating i {
    font-size: 1rem;
    color: var(--accent);
    transition: transform 0.2s ease;
}

.testimonial-container:hover .rating i {
    animation: star-bounce 0.4s forwards;
}

.testimonial-container:hover .rating i:nth-child(1) { animation-delay: 0.05s; }
.testimonial-container:hover .rating i:nth-child(2) { animation-delay: 0.10s; }
.testimonial-container:hover .rating i:nth-child(3) { animation-delay: 0.15s; }
.testimonial-container:hover .rating i:nth-child(4) { animation-delay: 0.20s; }
.testimonial-container:hover .rating i:nth-child(5) { animation-delay: 0.25s; }

@keyframes star-bounce {
    0%   { transform: scale(1); color: var(--accent); }
    50%  { transform: scale(1.35); color: white; }
    100% { transform: scale(1); color: var(--accent); }
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 36px;
    width: 100%;
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    transition: border-color 0.3s ease, opacity 0.7s ease, transform 0.7s ease;
}

.contact-info:hover {
    border-color: var(--border-accent);
}

.contact-info h2 {
    color: var(--text-primary);
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 300;
    line-height: 1.7;
    margin-block: 6px;
}

.contact-info p i {
    font-size: 1rem;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.form-control {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
}

.form-inputs {
    display: flex;
    gap: 12px;
    width: 100%;
}

.input-field {
    width: 50%;
    height: 52px;
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding-inline: 18px;
    outline: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-field:focus {
    border-color: var(--border-accent);
    box-shadow: 0 0 0 3px rgba(41, 82, 227, 0.12);
}

.input-field::placeholder,
textarea::placeholder {
    color: var(--text-muted);
}

.input-field.error {
    border-color: #e05555;
}

textarea {
    width: 100%;
    height: 220px;
    background: var(--surface-1);
    border: 1px solid var(--border-subtle);
    border-radius: 10px;
    padding: 16px 18px;
    outline: none;
    resize: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea:focus {
    border-color: var(--border-accent);
    box-shadow: 0 0 0 3px rgba(41, 82, 227, 0.12);
}

textarea.error {
    border-color: #e05555;
}

.error-message {
    color: #e05555;
    font-size: 1rem;
    min-height: 18px;
    display: none;
}

.form-button .btn {
    background: linear-gradient(135deg, var(--accent), var(--accent-end));
    color: #fff;
    border-color: transparent;
}

.form-button .btn:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 24px var(--accent-glow);
}

.form-button .btn i {
    rotate: -45deg;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 28px;
    background: var(--surface-1);
    border-top: 1px solid var(--border-subtle);
    padding-block: 48px 60px;
}

.top-footer p {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--text-primary);
}

.footer-dot {
    color: var(--accent);
}

.middle-footer .footer-menu {
    display: flex;
    gap: 6px;
    list-style: none;
}

.footer_menu_list a {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 5px 12px;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
}

.footer_menu_list a:hover {
    color: var(--text-primary);
    background: var(--surface-2);
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.bottom-footer {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.bottom-footer a {
    color: var(--accent);
    text-decoration: none;
}

@media only screen and (max-width: 900px) {
    .nav-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        opacity: 0;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-end;
        background: rgba(7, 7, 10, 0.92);
        backdrop-filter: blur(24px);
        width: 100vw;
        height: 100vh;
        transition: opacity 0.3s ease;
        pointer-events: none;
        padding: 20px 24px;
    }

    .nav-menu.responsive {
        opacity: 1;
        pointer-events: auto;
    }

    .nav_menu_list {
        flex-direction: column;
        align-items: flex-end;
        gap: 4px;
    }

    .nav-link {
        font-size: 1rem;
        padding: 10px 18px;
    }

    .featured-box {
        flex-direction: column;
        justify-content: center;
        padding-top: 80px;
    }

    .featured-text {
        width: 100%;
        order: 2;
        min-height: auto;
        padding: 0;
    }

    .featured-name {
        font-size: 1.2rem;
    }

    .featured-name p {
        white-space: normal;
    }

    .featured-image {
        display: none;
    }

    .section {
        padding-block: 3em 5em;
    }

    .row {
        flex-direction: column;
        gap: 40px;
    }

    .col {
        width: 100%;
        justify-content: center;
    }

    .project-box {
        width: 80%;
    }

    .testimonial-row {
        flex-direction: column;
    }

    .middle-footer .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer_menu_list a {
        font-size: 0.6rem;
    }
}

@media only screen and (max-width: 540px) {
    .skills {
        display: none;
    }

    .project-box {
        height: 200px;
    }

    .form-inputs {
        flex-direction: column;
    }

    .input-field {
        width: 100%;
    }
}
