body {
    font-family: Poppins, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

:root {
    --section-inline-margin: clamp(18px, 6vw, 150px);
}

html,
body {
    scroll-behavior: none;
    overflow-x: hidden;
}

.hero-header {
    position: relative;
    height: 100vh;
    background:
        radial-gradient(circle at 22% 28%, rgba(65, 180, 140, 0.28), transparent 26%),
        radial-gradient(circle at 68% 24%, rgba(197, 156, 78, 0.34), transparent 22%),
        radial-gradient(circle at 58% 58%, rgba(15, 63, 45, 0.72), transparent 36%),
        linear-gradient(118deg, #04110d 0%, #081712 32%, #0d1f18 58%, #111b15 78%, #1a1711 100%);
    padding: 20px 0;
    overflow: hidden;
}

.hero-header::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 62% 34%, rgba(231, 184, 92, 0.18), transparent 20%),
        radial-gradient(circle at 56% 72%, rgba(0, 0, 0, 0.6), transparent 28%),
        linear-gradient(90deg, rgba(2, 6, 5, 0.72) 0%, rgba(2, 6, 5, 0.5) 38%, rgba(2, 6, 5, 0.1) 62%, rgba(2, 6, 5, 0.72) 100%);
    pointer-events: none;
    z-index: 0;
}

.hero-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 180px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(2, 5, 4, 0.82) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero-portrait {
    position: absolute;
    right: 10%;
    bottom: 0;
    width: min(48vw, 760px);
    height: min(92vh, 1145px);
    background-image: url("assets/img/hero-portrait.png");
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: contain;
    filter: drop-shadow(-20px 10px 40px rgba(0, 0, 0, 0.45));
    z-index: 1;
}

.hero-floating-buttons {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.hero-floating-buttons a {
    position: absolute;
    pointer-events: auto;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    font-size: 1.05rem;
}

.floating-role-button {
    background-color: #f3d66b;
    color: #2d6a4f;
    border: 2px solid #ffffff;
    border-radius: 999px;
    padding: 10px 22px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
    animation: float-badge 4.5s ease-in-out infinite;
}

.floating-role-button:hover {
    transform: translateY(-2px);
}

.floating-front-end {
    top: 25%;
    right: 5%;
}

.floating-back-end {
    top: 70%;
    right: 35.5%;
    background-color: #cd783d;
    color: #ffffff;
    animation-delay: 0.7s;
}

.floating-hire-button {
    position: absolute;
    width: 140px;
    height: 140px;
    display: grid;
    place-items: center;
    border: 6px solid #d9ffec;
    background: radial-gradient(circle at center, #88e0b4 0%, #3a9c69 68%, #1c5437 100%);
    border-radius: 50%;
    font-size: 0;
    line-height: 1;
    text-transform: none;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
    top: 33%;
    right: 43%;
    animation: float-badge 4.5s ease-in-out infinite;
    animation-delay: 1.2s;
    overflow: hidden;
}

.floating-hire-button:hover {
    border-color: #ecfff4;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
}

.hire-ring-text {
    position: absolute;
    width: 118px;
    height: 118px;
    inset: 0;
    margin: auto;
    fill: #ffffff;
    font-size: 16px;
    font-weight: 700;
    font-family: "Baloo 2", "Poppins", sans-serif;
    letter-spacing: 1px;
    animation: hire-ring-rotate 10s linear infinite;
}

.hire-ring-text textPath {
    word-spacing: 3px;
}

.hire-dot {
    fill: #f3d66b;
    font-size: 45px;
    font-weight: 700;
}

.hire-center-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background-color: #f7dc67;
    color: #2d6a4f;
    font-size: 40px;
    font-weight: 700;
    font-family: "Baloo 2", "Poppins", sans-serif;
    z-index: 2;
    transform: translateY(-2%);
}

.hire-center-icon svg {
    width: 34px;
    height: 34px;
    stroke-width: 2.5;
}

@keyframes hire-ring-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float-badge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 10px;
    border-radius: 80px;
    background-color: #f3d66b;
    top: 20px;
    margin: 0px 150px 0px 150px;
}

.site-logo {
    width: 180px;
    padding: 0px;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 1;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #2d6a4f;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

nav ul li a:hover,
nav ul li a.active {
    color: #ffffff;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #2d6a4f;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    font-weight: bold;
    transition: 0.3s; 
    margin-left: 24px;
    cursor: pointer;
    list-style: none;
}

.contact-button:hover {
    background-color: #ffffff;
    color: #2d6a4f;
}

.contact-dropdown {
    position: relative;
    user-select: none;
    -webkit-user-select: none;
}

.contact-dropdown summary {
    list-style: none;
}

.contact-dropdown summary::-webkit-details-marker {
    display: none;
}

.contact-dropdown .contact-button::after {
    content: "▾";
    font-size: 22px;
    line-height: 1;
}

.contact-dropdown[open] .contact-button {
    background-color: #ffffff;
    color: #2d6a4f;
}

.contact-dropdown-menu {
    position: absolute;
    top: calc(100% + 23px);
    right: 0;
    min-width: 280px;
    background: linear-gradient(180deg, #f9eebc 0%, #f2e0a3 100%);
    border: 1px solid rgba(45, 106, 79, 0.28);
    border-radius: 18px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.26);
    padding: 11px;
    display: grid;
    gap: 10px;
    z-index: 30;
}

.contact-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #2d6a4f;
    text-decoration: none;
    font-weight: 600;
    font-size: 21px;
    line-height: 1.15;
    padding: 13px 16px;
    border-radius: 14px;
    border: 1px solid rgba(45, 106, 79, 0.16);
    background-color: rgba(255, 255, 255, 0.72);
    transition: background-color 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
    user-select: none;
    -webkit-user-select: none;
}

.contact-dropdown-menu a svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-dropdown-menu a:hover {
    background-color: #2d6a4f;
    color: #ffffff;
    transform: translateX(3px);
    box-shadow: 0 10px 16px rgba(16, 50, 37, 0.25);
}

.main-container {
    display: flex;
    align-items: flex-start;
    max-width: 100vh;
    margin: 120px 150px 0px 20px;
    position: relative;
    z-index: 3;
}

.container {
    text-align: left;
    max-width: 700px;
    position: relative;
    margin-left: 50px;
}

.hero-intro-title {
    position: relative;
    z-index: 5;
    margin-top: 0;
}

.peekaboo-cartoon {
    position: absolute;
    left: 0;
    top: -50px;
    pointer-events: none;
    z-index: 4;
}

.peekaboo-bubble {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #f3d66b;
    color: #2d6a4f;
    border: 2px solid #ffffff;
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
    animation: bubble-pop 5.5s ease-in-out infinite;
}

.peekaboo-bubble::after {
    content: "";
    position: absolute;
    left: 22px;
    bottom: -8px;
    width: 12px;
    height: 12px;
    background: #f3d66b;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg);
}

@keyframes bubble-pop {
    0%,
    14%,
    100% {
        transform: translateY(12px) scale(0.85);
        opacity: 0;
    }
    22%,
    72% {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

@media (max-width: 1200px) {
    .peekaboo-cartoon {
        transform: scale(0.86);
        left: 0;
        transform-origin: top left;
    }
}

@media (max-width: 900px) {
    .peekaboo-cartoon {
        display: none;
    }
}

/* Services 3D Card Override (scoped to #projects) */
#projects {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url("assets/img/Wallpaper2.png") center/cover no-repeat;
    overflow: hidden;
    padding: 56px 0;
}

#projects .services-showcase {
    width: calc(100% - (var(--section-inline-margin) * 2));
}

#projects .services-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 30px;
}

#projects .services-showcase-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.05rem, 3vw, 3.2rem);
    font-weight: 600;
    line-height: 1;
}

#projects .services-showcase-title span {
    color: #f3d66b;
}

#projects .services-showcase-summary {
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
    line-height: 1.35;
}

#projects .services-tilt-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

#projects .services-carousel {
    display: none;
}

#projects .card {
    position: relative;
    display: grid;
    grid-template-columns: 300px;
    grid-template-rows: 210px 250px 95px;
    grid-template-areas: "image" "text" "stats";
    border-radius: 18px;
    background: #0f0f0f;
    color: #ffffff;
    box-shadow: 0 8px 28px rgba(45, 106, 79, 0.55), 0 2px 8px rgba(0, 0, 0, 0.7);
    text-align: justify;
    cursor: pointer;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    isolation: isolate;
}

#projects .card::after {
    content: "";
    background: linear-gradient(135deg, #f3d66b 0%, #f3d66b 100%);
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    padding: 3px;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transform: translateZ(-1px);
    z-index: -1;
    opacity: 0;
    transition: opacity 220ms ease;
    pointer-events: none;
}

#projects .card::before {
    content: "";
    background: linear-gradient(135deg, rgba(243, 214, 107, 0.78) 0%, rgba(243, 214, 107, 0.78) 100%);
    position: absolute;
    inset: -8px;
    border-radius: 24px;
    padding: 8px;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    filter: blur(10px);
    transform: translateZ(-2px);
    z-index: -2;
    opacity: 0;
    transition: opacity 220ms ease;
    pointer-events: none;
}

#projects .card:hover::after,
#projects .card:focus-within::after,
#projects .card:hover::before,
#projects .card:focus-within::before {
    opacity: 1;
}

#projects .card .card-text h2,
#projects .card .card-text p {
    color: #ffffff !important;
}

#projects .card .card-text .date {
    color: #f3d66b !important;
}

#projects .card .card-stats,
#projects .card .card-stats .stat,
#projects .card .card-stats .value,
#projects .card .card-stats .type {
    color: rgba(255, 255, 255, 0.75) !important;
}

#projects .js-tilt-glare {
    border-radius: 18px;
}

#projects .card-image {
    grid-area: image;
    position: relative;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-size: cover;
    background-position: center;
}

#projects .service-image-1 {
    background-image: linear-gradient(#fff0 0%, #fff0 70%, #1d1d1d 100%), url("assets/img/The Red Planet Ventures.png");
}

#projects .service-image-2 {
    background-image: linear-gradient(#fff0 0%, #fff0 70%, #1d1d1d 100%), url("assets/img/Deluxe Bookings.png?v=2");
}

#projects .service-image-3 {
    background-image: linear-gradient(#fff0 0%, #fff0 70%, #1d1d1d 100%), url("assets/img/InDev Movies.png");
}

#projects .card-text {
    grid-area: text;
    margin: 25px;
    transform: translateZ(30px);
}

#projects .card-text .date {
    color: rgb(255, 7, 110);
    font-size: 13px;
    font-weight: 600;
}

#projects .card-text p {
    color: #bcbcbc;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0;
}

#projects .card-text h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 28px;
}

#projects .card-stats {
    grid-area: stats;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px;
    background: transparent;
}

#projects .card-stats .stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
    font-weight: 600;
    letter-spacing: 0.04em;
}

#projects .card-stats .value {
    font-size: inherit;
    font-weight: 600;
}

#projects .card-stats .type {
    font-size: inherit;
    font-weight: 600;
    text-transform: none;
}

#projects .card-text.card2 .date {
    color: rgb(255, 77, 7);
}

#projects .card-text.card2 p {
    word-spacing: 0.05em;
}

#projects .card-text.card3 .date {
    color: rgb(0, 189, 63);
}

@media (max-width: 980px) {
    #projects .services-showcase-header {
        flex-direction: column;
    }

    #projects .services-showcase-summary {
        max-width: none;
    }
}

@media (max-width: 760px) {
    #projects {
        padding: 28px 0;
    }

    #projects .services-showcase {
        width: calc(100% - 24px);
    }

    #projects .card {
        grid-template-columns: 280px;
        grid-template-rows: 190px 230px 95px;
    }

    #projects .card-text h2 {
        font-size: 24px;
    }
}

h1 {
    border: none;
    font-size: 30px;
    font-weight: light;
    color: #ffffff;
    margin: 0;
    padding: 0;
}

h2 {
    font-size: 50px;
    font-weight: bold; 
    color: #ffffff;
    line-height: 1.6em;
}

.highlight {
    color: #f3d66b;
    font-family: 'Qitt Chesta', regular;
    font-size: 100px;
}
.front-end {
    font-size: 70px;
}

.intro-description {
    max-width: 600px;
}

p {
    font-size: 16px;
    color: #ffffff;
    line-height: 1.5;
}

.social-media-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.social-media-container p {
    margin: 0;
    text-align: center;
}

.social-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
    margin-bottom: 16px;
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    animation: social-float 5.5s ease-in-out infinite;
    animation-fill-mode: both;
}

.social-button:hover {
    transform: translateY(-2px);
    background: rgba(243, 214, 107, 0.22);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

.social-button i {
    font-size: 24px;
    line-height: 1;
}

.social-media-container .social-button:nth-child(1) {
    background: rgba(243, 214, 107, 0.18);
    border-color: rgba(243, 214, 107, 0.5);
    color: #f3d66b;
    animation-delay: 0s;
}

.social-media-container .social-button:nth-child(2) {
    background: rgba(45, 106, 79, 0.2);
    border-color: rgba(45, 106, 79, 0.6);
    color: #9ce0b9;
    animation-delay: 0.2s;
}

.social-media-container .social-button:nth-child(3) {
    background: rgba(205, 120, 61, 0.2);
    border-color: rgba(205, 120, 61, 0.6);
    color: #ffb48a;
    animation-delay: 0.4s;
}

.social-media-container .social-button:nth-child(4) {
    background: rgba(243, 214, 107, 0.18);
    border-color: rgba(243, 214, 107, 0.5);
    color: #f3d66b;
    animation-delay: 0.6s;
}

.social-media-container .social-button:nth-child(5) {
    background: rgba(45, 106, 79, 0.2);
    border-color: rgba(45, 106, 79, 0.6);
    color: #9ce0b9;
    animation-delay: 0.8s;
}

.hero-actions {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    align-items: center;
    margin: 20px 150px 0px 150px;
    position: relative;
    z-index: 3;
}

@media (max-width: 1200px) {
    .floating-front-end {
        top: 22%;
        right: 19%;
    }

    .floating-back-end {
        top: 57%;
        right: 16%;
    }

    .floating-hire-button {
        width: 112px;
        height: 112px;
        top: 31%;
        right: 36%;
    }
}

@media (max-width: 900px) {
    .hero-floating-buttons {
        display: none;
    }
}

.actions-column-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.button-container {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 3px 3px;
    border-radius: 80px;
    background-color: #f3d66b;
    width: fit-content;
    justify-content: flex-end;
}

/* ── Portfolio dropdown group ── */
.portfolio-dropdown-group {
    position: relative;
    display: inline-flex;
}

/* ── Portfolio floating pills (each item is its own pill) ── */
.portfolio-pill {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 16px 45px;
    background-color: #3b8a5b;
    border: none;
    border-radius: 40px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.2s ease, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), background-color 0.3s, color 0.3s;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.portfolio-pill.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.portfolio-pill:hover {
    background-color: #ffffff;
    color: #3b8a5b;
}

.portfolio-button {
    display: flex;
    align-items: center;
    padding: 16px 45px;
    background-color: #3b8a5b;
    color: white;
    border: none;
    border-radius: 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.portfolio-button:hover {
    background-color: #ffffff;
    color: #3b8a5b;
}

.icon {
    padding: 15px 15px;
    color: #2d6a4f;
    background-color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    display: grid;
    place-items: center;
    margin-right: 5px;
}

.icon svg {
    width: 20px;
    height: 20px;
    fill: #2d6a4f;
}

.icon:hover {
    background-color: #3b8a5b;
    color: #ffffff;
}


.hire-button {
    padding: 10px 20px;
    border: 4px solid #ffffff;
    background-color: #ffffff;
    color: #000000; 
    border-radius: 40px; 
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s, color 0.3s;
}

.hire-button:hover {
    background-color: #3b8a5b; 
    color: #ffffff; 
    border: 4px solid #ffffff;
}

.testimonial-container {
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 0;
}

.testimonial-button {
    text-decoration: none;
    transition: transform 0.3s;
}

.testimonial-button:hover {
    transform: scale(1.05);
}

.review-count {
    font-size: 24px;
    font-weight: bold;
    color: #f3d66b;
    margin-top: 20px;
}

.rating {
    font-size: 18px;
    color: #ffffff;
    margin-left: 5px;
}

.client-reviews {
    font-size: 16px;
    color: #ffffff;
}

.client-images {
    display: flex;
    margin-top: 25px;
}

.client-image {
    width: 50px;
    height: 50px; 
    border-radius: 50%;
    margin: 0 -5px;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

section {
    position:relative;
    background-image: url(assets/img/Wallpaper2.png);
    background-size: cover;
    justify-content: center;
    align-items: center;
    width:100%;
    height:100vh;
    overflow:hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    pointer-events: none;
}

.scroll
{
    position: sticky;
    top: 0;
    z-index: 40;
    width: calc(100% + 400px);
    left: -400px;
    display: flex;
    box-shadow: 0 15px 10px #1c30248a;
    transform: rotate(calc(var(--d) * 1deg)) translateY(calc(var(--y) * 1px));
}

.scroll div
{
background:#f3d66b;
color: #3b8a5b; 
font-size: 1.5em;
letter-spacing: 0.2em;
white-space: nowrap ;
padding: 10px 0;
font-weight: bold;
animation: animate 20s linear infinite;
}

.section-divider {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    overflow: hidden;
}

.hero-header .section-divider {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-header .section-divider .scroll {
    position: relative;
    top: auto;
}

.section-divider .scroll {
    position: relative;
}

.mini-about .scroll {
    position: relative;
    top: auto;
    left: 0;
    width: 100%;
    z-index: 1;
}

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

@import url("https://use.fontawesome.com/releases/v6.15.1/css/all.css");

.container-cards{
    display: flex;
    gap: 50px;
    justify-content: space-around;
    line-height: 2.5em;
    font-size: 9px;
    margin: 50px 150px;
}

.item{
    position: relative;
    background-color: #f3d66b;
    width: 350px;
    padding: 15px 5px;
    border-radius: 8px;
    box-shadow: 8px 10px 20px 0px rgba(0, 0, 0, 0.662);
    position: relative;
    cursor: pointer;
    transition: box-shadow 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.item:hover{
    box-shadow: #3c404380 0px 4px 8px 0px,
                #3c40434d 0px 1px 3px 1px;
    transform: translateY(-10px);
    transition: all 0.3s ease-in-out;
}

.item::after{
    content: '';
    position: absolute;
    top:8px;
    left:0px;
    z-index: 2;
    height: 80%;
    box-sizing: border-box;
    border-style: solid;
    border-width: 30px;
    clip-path: polygon(0% 0%, 250% 50%,0 100%);
    box-shadow: 5px 6px 10px #00000039;
    
}

.item:nth-child(1){
    color: #3b8a5b;
    background-color: #3b8a5b;
}

.item:nth-child(2){
    color: #f3d66b;
    background-color: #f3d66b;
}

.item:nth-child(3){
    color: #cd783d;
    background-color: #cd783d;
}

.layer {
    background-color: #ffffff;
    border: 1px solid #fff;
    padding:30px;
    box-shadow: 
    #00000012 0px 1px 2px,
    #00000012 0px 2px 4px,
    #00000012 0px 4px 8px,
    #00000027 0px 8px 16px,
    #00000058 0px 16px 32px,
    #0000001e 0px 32px 64px;
    position:relative;
    left: 20px;
    transition: left 1s;
    border-radius: 15px;
}

.layer p {
    line-height: 2em;
    margin-top: 10px;
    margin-bottom: 90px;
    color: #555;
}

.item:hover .layer {
    transform: translateX(10px); 
    transition: 0.3s ease-in-out, transform 0.3s ease-in-out;
    left: 60px;
}

.item h4{
    left: 20px;
    font-weight: bold;
    padding: 20px 10px 5px 5px;
    color: rgb(255, 255, 255);
    text-align: center;
}

.item:nth-child(1) span{
    bottom: 5px;
    font-size: 15px;
    color: white;
    width: 40px;
    height: 40px;
    background-color:#3b8a5b;
    border-radius: 50%;
    display: grid;
    place-content: center;
    box-shadow: 
    #00000012 0px 1px 2px,
    #00000012 0px 2px 4px,
    #00000012 0px 4px 8px,
    #00000027 0px 8px 16px,
    #0000001b 0px 16px 32px,
    #0000001e 0px 32px 64px;
    position:absolute;
    right: 5px;
}

.item:nth-child(2) span{
    bottom: 5px;
    font-size: 15px;
    color: white;
    width: 40px;
    height: 40px;
    background-color:#f3d66b;
    border-radius: 50%;
    display: grid;
    place-content: center;
    box-shadow: 
    #00000012 0px 1px 2px,
    #00000012 0px 2px 4px,
    #00000012 0px 4px 8px,
    #00000027 0px 8px 16px,
    #0000001b 0px 16px 32px,
    #0000001e 0px 32px 64px;
    position:absolute;
    right: 5px;
}

.item:nth-child(3) span{
    bottom: 5px;
    font-size: 15px;
    color: white;
    width: 40px;
    height: 40px;
    background-color:#cd783d;
    border-radius: 50%;
    display: grid;
    place-content: center;
    box-shadow: 
    #00000012 0px 1px 2px,
    #00000012 0px 2px 4px,
    #00000012 0px 4px 8px,
    #00000027 0px 8px 16px,
    #0000001b 0px 16px 32px,
    #0000001e 0px 32px 64px;
    position:absolute;
    right: 5px;
}

.item h3{
    margin-bottom: 30px;
    color: black;
    text-align: center;
    color: var(--color);
}

.services-container {
    display: flex;
    align-items: center;
    margin: 50px 0px 0px 167px;
}

.services-header {
    font-size: 24px;
    font-weight: bold;
    color: #ffffff;
    display: flex;
    justify-content: start;
    align-items: center;
}

.services-provider {
    font-size: 50px;
    font-weight: bold;
    margin: 0px 0px 0px 167px;
    color: #f3d66b;
}

.services-provider span {
    font-size: 50px;
    font-weight: bold;
    color: #ffffff;
}

.services-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 3px 3px;
    border-radius: 80px;
    background-color: #f3d66b;
    width: fit-content;
    justify-content: end;
    margin-left: 1100px;
    margin-top: -80px;
    box-shadow: 
    #00000012 0px 1px 2px,
    #00000012 0px 2px 4px,
    #00000012 0px 4px 8px,
    #00000027 0px 8px 16px,
    #0000001f 0px 16px 32px,
    #00000009 0px 32px 64px;
}

.services-button {
    display: flex;
    align-items: center;
    padding: 16px 45px;
    background-color: #3b8a5b;
    color: white;
    border: none;
    border-radius: 40px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s;
}

.services-button:hover {
    background-color: #ffffff;
    color: #3b8a5b;
}

.services-icon {
    padding: 10px 15px;
    color: #000000;
    background-color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    display: grid;
    place-items: center;
    margin-right: 7px;
}

.services-icon svg {
    width: 20px;
    height: 20px;
}

.services-icon:hover {
    background-color: #3b8a5b;
    color: #ffffff;
}

#projects {
    min-height: auto;
    height: auto;
    padding: 56px 0 72px;
    background: transparent;
}

#projects::before {
    content: none;
}

#projects::after {
    content: none;
}

.services-showcase {
    position: relative;
    width: 1720px;
    padding: 30px 28px 34px;
    border-radius: 34px;
    height: auto;
}

.services-showcase-header {
    padding-bottom: 30px;
    border-bottom: 1px solid #f3d66b2b;
}

.services-showcase-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.05rem, 3vw, 3.2rem);
    font-weight: 600;
    line-height: 1;
}

.services-showcase-title span {
    color: #cd783d;
}

.services-showcase-summary {
    max-width: 1720px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.98rem;
    line-height: 1.35;
}

.services-showcase-grid {
    display: none;
}

.service-card {
    padding: 0;
    width: 100%;
    height: auto;
    border-radius: 32px;
    overflow: hidden;
    background: #343434;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 16px 34px rgba(0, 0, 0, 0.24);
    min-height: 478px;
}

.service-card-featured {
    background: transparent;
    box-shadow: none;
}

.service-card-shell {
    min-height: 100%;
}

.web-design-card {
    position: relative;
    min-height: 478px;
    padding: 8px;
    border-radius: 34px;
    overflow: hidden;
    background: #232323;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 18px 36px rgba(0, 0, 0, 0.26);
}

.web-design-card-header {
    min-height: 182px;
    padding: 24px 24px 18px;
    .services-carousel {
        position: relative;
        width: 100%;
        overflow: hidden;
    }

    .services-carousel .slide {
        position: relative;
        width: 100%;
        min-height: 540px;
    }

    .services-carousel .item {
        position: absolute;
        top: 50%;
        transform: translate(0, -50%);
        width: 240px;
        height: 360px;
        border-radius: 24px;
        background-position: 50% 50%;
        background-size: cover;
        background-repeat: no-repeat;
        box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
        display: inline-block;
        transition: 0.5s;
        overflow: hidden;
    }

    .services-carousel .item::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(17, 23, 18, 0.05) 0%, rgba(17, 23, 18, 0.68) 100%);
    }

    .services-carousel .item:nth-child(1),
    .services-carousel .item:nth-child(2) {
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        height: 100%;
        border-radius: 28px;
    }

    .services-carousel .item:nth-child(3) {
        left: 50%;
    }

    .services-carousel .item:nth-child(4) {
        left: calc(50% + 260px);
    }

    .services-carousel .item:nth-child(5) {
        left: calc(50% + 520px);
    }

    .services-carousel .item:nth-child(n + 6) {
        left: calc(50% + 780px);
        opacity: 0;
    }

    .services-carousel .content {
        position: absolute;
        left: 24px;
        right: 24px;
        bottom: 20px;
        color: #fff;
        z-index: 2;
        font-family: Poppins, sans-serif;
    }

    .services-carousel .name {
        font-size: 26px;
        font-weight: 700;
        line-height: 1.1;
        margin-bottom: 10px;
    }

    .services-carousel .des {
        font-size: 14px;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.88);
        margin-bottom: 16px;
    }

    .service-slide-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 10px 18px;
        border-radius: 999px;
        background: #f3d66b;
        color: #2d6a4f;
        text-decoration: none;
        font-weight: 700;
        border: 1px solid rgba(255, 255, 255, 0.8);
    }

    .services-carousel .button {
        width: 100%;
        text-align: center;
        position: absolute;
        bottom: 20px;
        left: 0;
        z-index: 3;
    }

    .services-carousel .button button {
        width: 44px;
        height: 40px;
        border-radius: 10px;
        border: 1px solid rgba(255, 255, 255, 0.25);
        cursor: pointer;
        margin: 0 6px;
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
        transition: 0.3s;
    }

    .services-carousel .button button:hover {
        background: rgba(255, 255, 255, 0.2);
    }
    border-radius: 0 0 14px 14px;
    background: #232323;
}

.web-design-back-copy {
    display: grid;
    gap: 8px;
    margin-top: 22px;
}

.web-design-back-copy span,
.web-design-back-footer {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: #d8d2ca;
}

.web-design-back-copy span:first-child {
    width: 58%;
}

.web-design-back-copy span:last-child {
    width: 34%;
}

.web-design-back-media {
    height: 42px;
    margin-top: 18px;
    border-radius: 12px;
    background: linear-gradient(90deg, rgba(176, 88, 40, 0.85) 0%, rgba(240, 203, 150, 0.7) 52%, rgba(110, 58, 24, 0.85) 100%);
}

.web-design-back-footer {
    width: 44%;
    margin-top: 76px;
}

.web-design-preview-front {
    top: 56px;
    left: 14px;
    width: 70%;
    min-height: 224px;
    padding-bottom: 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    overflow: hidden;
    z-index: 2;
}

.web-design-browser-bar {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 10px 12px 10px;
}

.web-design-browser-bar span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(23, 23, 23, 0.14);
}

.web-design-browser-chip {
    width: 18px;
    height: 8px;
    margin-left: auto;
    border-radius: 999px;
    background: rgba(228, 176, 70, 0.75);
}

.web-design-browser-intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 8px;
    padding: 0 12px;
    margin-bottom: 12px;
}

.web-design-browser-copy span,
.web-design-browser-grid span,
.web-design-browser-footer-copy span {
    display: block;
    border-radius: 999px;
    background: #d9d4cb;
}

.web-design-browser-copy {
    display: grid;
    gap: 8px;
}

.web-design-browser-intro .web-design-browser-copy span:nth-child(1) {
    width: 66%;
    height: 9px;
}

.web-design-browser-intro .web-design-browser-copy span:nth-child(2) {
    width: 54%;
    height: 9px;
}

.web-design-browser-intro .web-design-browser-copy span:nth-child(3) {
    width: 74%;
    height: 28px;
    border-radius: 10px;
    background: #1d1d1d;
}

.web-design-browser-device {
    position: relative;
    height: 74px;
}

.web-design-browser-device span {
    position: absolute;
    bottom: 0;
    width: 30px;
    border-radius: 10px;
    border: 2px solid #1f1f1f;
    background: linear-gradient(180deg, #ffffff 0%, #f0ede8 100%);
}

.web-design-browser-device span:first-child {
    left: 8px;
    height: 62px;
}

.web-design-browser-device span:last-child {
    right: 2px;
    width: 26px;
    height: 48px;
}

.web-design-card .web-design-card-body > .web-design-stack .web-design-preview-front > .web-design-browser-copy {
    padding: 0 12px;
    margin-bottom: 12px;
}

.web-design-card .web-design-card-body > .web-design-stack .web-design-preview-front > .web-design-browser-copy span:first-child {
    width: 58%;
    height: 8px;
}

.web-design-card .web-design-card-body > .web-design-stack .web-design-preview-front > .web-design-browser-copy span:last-child {
    width: 42%;
    height: 8px;
}

.web-design-browser-grid {
    display: grid;
    padding: 0 12px;
}

.web-design-browser-grid span {
    border-radius: 12px;
}

.web-design-browser-grid-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.web-design-browser-grid-stats span {
    height: 56px;
    background: linear-gradient(180deg, rgba(249, 247, 242, 1) 0%, rgba(242, 239, 232, 1) 100%);
}

.web-design-browser-footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 10px;
    padding: 14px 12px 12px;
    background: #1e1e1e;
}

.web-design-browser-footer-copy {
    display: grid;
    gap: 8px;
    flex: 1;
}

.web-design-browser-footer-copy span:first-child {
    width: 72%;
    height: 8px;
    background: rgba(255, 255, 255, 0.85);
}

.web-design-browser-footer-copy span:last-child {
    width: 50%;
    height: 8px;
    background: rgba(226, 159, 56, 0.85);
}

.web-design-browser-avatar {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f1d5c7 0%, #fff2e7 55%, #84411e 56%, #d48c5c 100%);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.web-design-browser-grid-bottom {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px 14px;
    background: #1e1e1e;
}

.web-design-browser-grid-bottom span {
    height: 18px;
    background: rgba(255, 255, 255, 0.88);
}

.web-design-action-button {
    position: absolute;
    right: 6px;
    bottom: 4px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 84px;
    height: 84px;
    border: 8px solid #232323;
    border-radius: 50%;
    background: linear-gradient(180deg, #ff4f17 0%, #f23b0f 100%);
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

.web-design-action-button i {
    width: 28px;
    height: 28px;
    stroke-width: 2.6;
}

.service-card-top {
    padding: 20px 26px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.01);
}

.service-card-top h3 {
    margin: 0;
    color: #ffffff;
    font-size: 0.96rem;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.service-visual {
    position: relative;
    min-height: 386px;
    padding: 34px 12px 8px;
    overflow: hidden;
    background: transparent;
}

.service-float-card,
.browser-float-panel,
.dashboard-float-panel {
    position: absolute;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #f4f1ec 100%);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
}

.service-float-card {
    border-radius: 18px;
    padding: 12px;
}

.service-float-card-left {
    top: 112px;
    left: 0;
    width: 74px;
    height: 96px;
    transform: rotate(-28deg);
}

.service-float-card-top {
    top: 92px;
    right: 38px;
    width: 64px;
    height: 46px;
    transform: rotate(22deg);
}

.service-float-card-bottom {
    bottom: 30px;
    left: 8px;
    width: 78px;
    height: 48px;
    transform: rotate(-26deg);
}

.float-card-line {
    display: block;
    height: 5px;
    margin-bottom: 8px;
    border-radius: 999px;
    background: #dcd7d0;
}

.float-card-line-short {
    width: 56%;
}

.float-card-accent,
.float-card-media {
    display: block;
    height: 10px;
    margin-top: 12px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f7dc67 0%, #cd783d 100%);
}

.float-card-media {
    height: 14px;
    margin-top: 8px;
}

.float-card-media-dark {
    background: linear-gradient(135deg, #202020 0%, #535353 100%);
}

.service-sheet {
    position: absolute;
    left: 18px;
    right: 18px;
    height: 142px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.09);
}

.service-sheet-back {
    top: 36px;
    opacity: 0.18;
}

.service-sheet-mid {
    top: 48px;
    left: 22px;
    right: 22px;
    opacity: 0.26;
}

.service-screen {
    position: relative;
    z-index: 1;
    margin: 62px auto 0;
    border-radius: 24px;
    background: #ececeb;
    box-shadow: 0 16px 26px rgba(0, 0, 0, 0.18);
}

.service-screen-mobile {
    width: 96%;
    height: 220px;
    background: #e8e8e8;
}

.service-visual-mobile {
    position: relative;
}

.service-visual-mobile .service-screen::before,
.service-visual-mobile .service-screen::after {
    content: "";
    position: absolute;
    border-radius: 999px;
    background: linear-gradient(90deg, #f7dc67 0%, #cd783d 100%);
    z-index: 2;
}

.service-visual-mobile .service-screen::before {
    width: 42px;
    height: 10px;
    left: 16px;
    top: 40px;
    transform: rotate(-27deg);
}

.service-visual-mobile .service-screen::after {
    width: 40px;
    height: 10px;
    right: 14px;
    bottom: 44px;
    transform: rotate(29deg);
}

.screen-chip-row {
    position: absolute;
    inset: 18px 16px auto;
    display: flex;
    justify-content: space-between;
}

.screen-chip-row span {
    width: 42px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #f7dc67 0%, #cd783d 100%);
    opacity: 0.75;
}

.phone-frame {
    position: absolute;
    left: 50%;
    top: 26px;
    width: 96px;
    height: 164px;
    transform: translateX(-50%);
    border-radius: 24px;
    background: #ffffff;
    border: 3px solid #202020;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.phone-notch {
    width: 40px;
    height: 10px;
    margin: 8px auto 0;
    border-radius: 999px;
    background: #202020;
}

.phone-content {
    padding: 10px 9px;
}

.phone-line,
.browser-footer,
.dashboard-row,
.dashboard-top {
    height: 8px;
    border-radius: 999px;
    background: #dfddd8;
}

.phone-line-wide {
    width: 68%;
    margin-bottom: 8px;
}

.phone-line {
    width: 46%;
    margin-bottom: 12px;
}

.phone-content::after {
    content: "";
    display: block;
    width: 100%;
    height: 40px;
    margin-top: 7px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ece7df 0%, #dad4cc 100%);
}

.phone-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
}

.phone-image-grid span,
.dashboard-cards span {
    height: 28px;
    border-radius: 10px;
    background: linear-gradient(135deg, #f7dc67 0%, #cd783d 100%);
}

.service-visual-mobile .phone-image-grid span:nth-child(2),
.service-visual-mobile .phone-image-grid span:nth-child(4) {
    background: #d8d4ce;
}

.service-screen-browser {
    width: 96%;
    height: 224px;
    background: #f9f6f0;
}

.browser-float-panel {
    border-radius: 18px;
}

.browser-float-panel-front {
    left: 52px;
    bottom: 34px;
    width: 104px;
    height: 122px;
    padding: 12px;
}

.browser-float-panel-back {
    right: 40px;
    bottom: 42px;
    width: 94px;
    height: 104px;
    padding: 12px;
    background: linear-gradient(135deg, #fffaf3 0%, #f4ede3 100%);
}

.browser-float-header,
.browser-back-row,
.dashboard-float-top,
.dashboard-float-meta {
    height: 9px;
    border-radius: 999px;
    background: #ddd8cf;
}

.browser-float-header {
    width: 56%;
    margin-bottom: 12px;
}

.browser-float-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 22px;
}

.browser-float-body span,
.browser-back-grid span {
    height: 54px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(205, 120, 61, 0.16) 0%, rgba(247, 220, 103, 0.42) 100%);
}

.browser-back-row {
    width: 62%;
    margin-bottom: 16px;
}

.browser-back-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.browser-bar {
    display: flex;
    gap: 6px;
    padding: 12px 14px;
}

.browser-bar span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(28, 84, 55, 0.25);
}

.browser-hero {
    width: calc(100% - 24px);
    height: 96px;
    margin: 0 14px 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(205, 120, 61, 0.16) 0%, rgba(247, 220, 103, 0.38) 100%);
    position: relative;
}

.browser-hero::before,
.browser-hero::after {
    content: "";
    position: absolute;
    left: 14px;
    border-radius: 999px;
    background: rgba(28, 84, 55, 0.18);
}

.browser-hero::before {
    top: 16px;
    width: 42%;
    height: 10px;
}

.browser-hero::after {
    top: 34px;
    width: 28%;
    height: 8px;
}

.browser-columns {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 10px;
    margin: 0 14px 14px;
}

.browser-columns div {
    height: 52px;
    border-radius: 14px;
    background: #f0ece5;
    position: relative;
}

.browser-columns div::before,
.browser-columns div::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    border-radius: 999px;
    background: rgba(28, 84, 55, 0.12);
}

.browser-columns div::before {
    top: 12px;
    height: 8px;
}

.browser-columns div::after {
    top: 26px;
    right: 28px;
    height: 7px;
}

.browser-footer {
    width: calc(100% - 28px);
    margin: 0 14px;
}

.service-screen-dashboard {
    width: 96%;
    height: 220px;
    padding: 14px;
    background: #f8f9fb;
}

.dashboard-float-panel {
    right: 36px;
    top: 108px;
    width: 110px;
    height: 118px;
    border-radius: 18px;
    padding: 12px;
    background: linear-gradient(135deg, #ffffff 0%, #f0f3f7 100%);
}

.dashboard-float-top {
    width: 54%;
    margin-bottom: 10px;
}

.dashboard-float-meta {
    width: 34%;
    margin-bottom: 14px;
}

.dashboard-float-list {
    display: grid;
    gap: 8px;
}

.dashboard-float-list span {
    display: block;
    height: 18px;
    border-radius: 10px;
    background: linear-gradient(135deg, #dfe5ec 0%, #cfd6df 100%);
}

.dashboard-float-list span:nth-child(2) {
    background: linear-gradient(135deg, #3b8a5b 0%, #6bb886 100%);
}

.dashboard-top {
    width: 60%;
    margin-bottom: 16px;
    background: #d8dce5;
}

.dashboard-body {
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 12px;
}

.dashboard-sidebar {
    height: 126px;
    border-radius: 16px;
    background: #e8ebf0;
    position: relative;
}

.dashboard-sidebar::before,
.dashboard-sidebar::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    height: 8px;
    border-radius: 999px;
    background: #d2d8e0;
}

.dashboard-sidebar::before {
    top: 14px;
}

.dashboard-sidebar::after {
    top: 30px;
}

.dashboard-main {
    display: grid;
    gap: 10px;
}

.dashboard-row-short {
    width: 70%;
}

.dashboard-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.dashboard-cards span:nth-child(2) {
    background: linear-gradient(135deg, #3b8a5b 0%, #6bb886 100%);
}

.dashboard-cards span:nth-child(3) {
    background: linear-gradient(135deg, #dfe5ec 0%, #cfd6df 100%);
}

.service-card-link {
    position: absolute;
    right: -6px;
    bottom: -4px;
    z-index: 2;
    width: 82px;
    height: 82px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #2a2a2a;
    color: #ffffff;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

.service-card-link-featured {
    background: #f7dc67;
    color: #1c5437;
}

.service-card-link svg {
    width: 32px;
    height: 32px;
    stroke-width: 2.25;
}

@media (max-width: 1100px) {
    .services-showcase-header {
        flex-direction: column;
    }

    .services-showcase-summary {
        max-width: none;
    }
}

@media (max-width: 760px) {
    .services-showcase {
        width: calc(100% - 24px);
        margin: 24px auto 0;
        padding: 26px 18px;
        border-radius: 26px;
    }

    .services-carousel .slide {
        min-height: 460px;
    }

    .services-carousel .item {
        width: 180px;
        height: 300px;
    }

    .services-carousel .item:nth-child(3) {
        left: 44%;
    }

    .services-carousel .item:nth-child(4) {
        left: calc(44% + 190px);
    }

    .services-carousel .item:nth-child(5) {
        left: calc(44% + 380px);
    }

    .services-carousel .item:nth-child(n + 6) {
        left: calc(44% + 570px);
    }

    .services-carousel .name {
        font-size: 20px;
    }

    .services-carousel .des {
        font-size: 12px;
    }

    .services-carousel .button {
        bottom: 12px;
    }
}

.mini-about {
    position:relative;
    border-top: 10px solid #f3d66b;
    background:
        radial-gradient(circle at 22% 28%, rgba(65, 180, 140, 0.28), transparent 26%),
        radial-gradient(circle at 68% 24%, rgba(197, 156, 78, 0.34), transparent 22%),
        radial-gradient(circle at 58% 58%, rgba(15, 63, 45, 0.72), transparent 36%),
        linear-gradient(118deg, #04110d 0%, #081712 32%, #0d1f18 58%, #111b15 78%, #1a1711 100%);
    background-size: cover;
    justify-content: center;
    align-items: center;
    width:100%;
    height:100vh;
    overflow:hidden;
}

.mini-about::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 64% 28%, rgba(231, 184, 92, 0.16), transparent 20%),
        radial-gradient(circle at 54% 74%, rgba(0, 0, 0, 0.52), transparent 30%),
        linear-gradient(90deg, rgba(2, 6, 5, 0.68) 0%, rgba(2, 6, 5, 0.42) 38%, rgba(2, 6, 5, 0.14) 62%, rgba(2, 6, 5, 0.68) 100%);
    pointer-events: none;
    z-index: 0;
}

.mini-about::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 160px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(2, 5, 4, 0.78) 100%);
    pointer-events: none;
    z-index: 1;
}

.mini-about .about-layout {
    position: relative;
    z-index: 2;
    width: calc(100% - (var(--section-inline-margin) * 2));
    height: 100%;
    padding-bottom: 55px;
    box-sizing: border-box;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.15fr) auto;
    align-items: center;
    gap: clamp(28px, 4vw, 72px);
}

.mini-about .about-scroll-divider {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    overflow: hidden;
}

.mini-about .about-scroll-divider .scroll {
    position: relative;
    top: auto;
}

.mini-about .about-image {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    align-self: end;
    height: 100%;
}

.mini-about .about-image img {
    width: min(100%, 1000px);
    height: auto;
    max-height: min(86vh, 820px);
    object-fit: contain;
    object-position: left bottom;
    border-radius: 24px;
    filter: drop-shadow(0 20px 44px rgba(0, 0, 0, 0.4));
    display: block;
    margin-bottom: 0;
    padding-bottom: 0;
}

.mini-about .about-content {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    justify-self: start;
    margin-left: clamp(20px, 3vw, 56px);
}

.mini-about .about-content h2 {
    margin-top: 0;
    margin-bottom: 14px;
    font-size: clamp(2rem, 3.4vw, 3.8rem);
    line-height: 1.1;
}

.mini-about .about-content h2 span {
    color: #f3d66b;
}

.mini-about .about-content p {
    margin: 0 0 18px;
}

.mini-about .section-text {
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 62ch;
    line-height: 1.7;
}

.mini-about .about-extra-text[hidden] {
    display: none;
}

.mini-about .about-read-toggle {
    border: 1px solid rgba(243, 214, 107, 0.45);
    border-radius: 999px;
    padding: 10px 20px;
    background: rgba(243, 214, 107, 0.12);
    color: #f3d66b;
    font-size: 15px;
    font-weight: 700;
    margin-top: 6px;
    margin-bottom: 2px;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.mini-about .about-read-toggle:hover,
.mini-about .about-read-toggle:focus-visible {
    transform: translateY(-1px);
    background: #f3d66b;
    color: #1f4d39;
}

.mini-about .about-social-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    justify-self: end;
    align-self: center;
    gap: 10px;
    height: 100%;
    padding-bottom: 0;
}

.mini-about .about-social-label {
    margin: 10px 0 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.82);
}

.mini-about .social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
}

.mini-about .social-links a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    place-items: center;
    border-radius: 50%;
    text-decoration: none;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
    margin-bottom: 16px;
    font-size: 22px;
    animation: social-float 5.5s ease-in-out infinite;
    animation-fill-mode: both;
}

.mini-about .social-links a:nth-child(1) {
    background: rgba(243, 214, 107, 0.18);
    border-color: rgba(243, 214, 107, 0.5);
    color: #f3d66b;
    animation-delay: 0s;
}

.mini-about .social-links a:nth-child(2) {
    background: rgba(45, 106, 79, 0.2);
    border-color: rgba(45, 106, 79, 0.6);
    color: #9ce0b9;
    animation-delay: 0.6s;
}

.mini-about .social-links a:nth-child(3) {
    background: rgba(205, 120, 61, 0.2);
    border-color: rgba(205, 120, 61, 0.6);
    color: #ffb48a;
    animation-delay: 1.2s;
}

.mini-about .social-links a:hover {
    transform: translateY(-2px);
    background: rgba(243, 214, 107, 0.22);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.28);
}

@keyframes social-float {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-4px) scale(1.03);
    }
}

.mini-about .about-button {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 999px;
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 700;
    color: #2d6a4f;
    letter-spacing: 0.01em;
    background: linear-gradient(135deg, #f3d66b 0%, #f7e596 45%, #e6c35b 100%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26), inset 0 -2px 0 rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
    animation: cv-pulse 2.8s ease-in-out infinite;
    margin-top: 20px;
}

.mini-about .about-button::before {
    content: "";
    position: absolute;
    top: 0;
    left: -55%;
    width: 42%;
    height: 100%;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 100%);
    transform: skewX(-22deg);
    z-index: -1;
    animation: cv-shine 2.6s ease-in-out infinite;
}

.mini-about .about-button::after {
    content: "";
    position: absolute;
    inset: 2px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    pointer-events: none;
}

.mini-about .about-button:hover {
    transform: translateY(-3px) scale(1.02);
    color: #1f4d39;
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.3), inset 0 -2px 0 rgba(0, 0, 0, 0.14);
}

.mini-about .about-button:active {
    transform: translateY(-1px) scale(0.99);
}

@keyframes cv-shine {
    0% {
        left: -55%;
    }
    55% {
        left: 130%;
    }
    100% {
        left: 130%;
    }
}

@keyframes cv-pulse {
    0%,
    100% {
        box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26), inset 0 -2px 0 rgba(0, 0, 0, 0.12);
    }
    50% {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3), inset 0 -2px 0 rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 760px) {
    .mini-about .about-button {
        animation: cv-pulse 4.2s ease-in-out infinite;
    }

    .mini-about .about-button::before {
        animation: cv-shine 4.8s ease-in-out infinite;
        opacity: 0.7;
    }

    .mini-about .about-button:hover {
        transform: translateY(-1px) scale(1.01);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.26), inset 0 -2px 0 rgba(0, 0, 0, 0.13);
    }
}

@media (prefers-reduced-motion: reduce) {
    .mini-about .about-button,
    .mini-about .about-button::before {
        animation: none;
    }

    .mini-about .about-button,
    .mini-about .about-button:hover,
    .mini-about .about-button:active {
        transform: none;
    }
}

/* Final Services Override: keep latest 3D cards style */
#projects {
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(circle at 22% 28%, rgba(65, 180, 140, 0.28), transparent 26%),
        radial-gradient(circle at 68% 24%, rgba(197, 156, 78, 0.34), transparent 22%),
        radial-gradient(circle at 58% 58%, rgba(15, 63, 45, 0.72), transparent 36%),
        linear-gradient(118deg, #04110d 0%, #081712 32%, #0d1f18 58%, #111b15 78%, #1a1711 100%);
    overflow: hidden;
    padding: 56px 0;
}

#projects .services-showcase {
    width: calc(100% - (var(--section-inline-margin) * 2));
    max-width: calc(100% - (var(--section-inline-margin) * 2));
    margin-inline: var(--section-inline-margin);
    height: 100%;
    display: flex;
    flex-direction: column;
}

#projects .services-showcase-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 30px;
}

#projects .services-showcase-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2.05rem, 3vw, 3.2rem);
    font-weight: 600;
    line-height: 1;
}

#projects .services-showcase-title span {
    color: #f3d66b;
}

#projects .services-showcase-summary {
    max-width: 420px;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
    line-height: 1.35;
}

#projects .services-tilt-grid {
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 100px;
    flex: 1;
    min-height: 0;
}

#projects .services-carousel {
    display: none;
}

#projects .card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 44% 43% 13%;
    grid-template-areas: "image" "text" "stats";
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
    border-radius: 18px;
    background: #0f0f0f;
    color: #ffffff;
    box-shadow: 0 8px 28px rgba(45, 106, 79, 0.55), 0 2px 8px rgba(0, 0, 0, 0.7);
    text-align: justify;
    cursor: pointer;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    isolation: isolate;
}

#projects .card::after {
    content: "";
    background: linear-gradient(135deg, #f3d66b 0%, #f3d66b 100%);
    position: absolute;
    inset: -3px;
    border-radius: 20px;
    padding: 3px;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    transform: translateZ(-1px);
    z-index: -1;
    opacity: 0;
    transition: opacity 220ms ease;
    pointer-events: none;
}

#projects .card::before {
    content: "";
    background: linear-gradient(135deg, rgba(243, 214, 107, 0.78) 0%, rgba(243, 214, 107, 0.78) 100%);
    position: absolute;
    inset: -8px;
    border-radius: 24px;
    padding: 8px;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    filter: blur(10px);
    transform: translateZ(-2px);
    z-index: -2;
    opacity: 0;
    transition: opacity 220ms ease;
    pointer-events: none;
}

#projects .card:hover::after,
#projects .card:focus-within::after,
#projects .card:hover::before,
#projects .card:focus-within::before {
    opacity: 1;
}

#projects .card .card-text h2,
#projects .card .card-text p {
    color: #ffffff !important;
}

#projects .card .card-text .date {
    color: #f3d66b !important;
}

#projects .card .card-stats,
#projects .card .card-stats .stat,
#projects .card .card-stats .value,
#projects .card .card-stats .type {
    color: rgba(255, 255, 255, 0.75) !important;
}

#projects .js-tilt-glare {
    border-radius: 18px;
}

#projects .card-image {
    grid-area: image;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    background-size: cover;
    background-position: center;
}

#projects .service-image-1 {
    background-image: linear-gradient(#fff0 0%, #fff0 70%, #1d1d1d 100%), url("assets/img/The Red Planet Ventures.png");
}

#projects .service-image-2 {
    background-image: linear-gradient(#fff0 0%, #fff0 70%, #1d1d1d 100%), url("assets/img/Deluxe Bookings.png?v=2");
}

#projects .service-image-3 {
    background-image: linear-gradient(#fff0 0%, #fff0 70%, #1d1d1d 100%), url("assets/img/InDev Movies.png");
}

#projects .card-text {
    grid-area: text;
    margin: 20px;
    transform: translateZ(30px);
}

#projects .card-text .date {
    color: #f3d66b;
    font-size: 13px;
    font-weight: 600;
}

#projects .card-text p {
    color: #f3d66b;
    font-size: 14px;
    font-weight: 300;
    margin-bottom: 0;
}

#projects .card-text h2 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 28px;
}

#projects .card-stats {
    grid-area: stats;
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    background: transparent;
    transform: translateZ(30px);
}

#projects .card-stats .stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(6px);
    font-weight: 600;
    letter-spacing: 0.04em;
}

#projects .card-stats .value {
    font-size: inherit;
    font-weight: 600;
}

#projects .card-stats .type {
    font-size: inherit;
    font-weight: 600;
    text-transform: none;
}

#projects .card-text.card2 .date {
    color: #cd783d;
}

#projects .card-text.card2 p {
    word-spacing: 0.05em;
}

@media (max-width: 980px) {
    #projects {
        height: auto;
        min-height: 100vh;
    }

    #projects .services-showcase-header {
        flex-direction: column;
    }

    #projects .services-showcase-summary {
        max-width: none;
    }

    #projects .services-tilt-grid {
        flex-wrap: wrap;
        align-items: center;
    }

    #projects .card {
        flex: 0 1 340px;
        height: 560px;
    }
}

@media (max-width: 760px) {
    #projects {
        padding: 28px 0;
    }

    #projects .services-showcase {
        width: calc(100% - (var(--section-inline-margin) * 2));
        max-width: calc(100% - (var(--section-inline-margin) * 2));
        height: auto;
    }

    #projects .card {
        flex: 1 1 100%;
        width: 100%;
        height: auto;
        min-height: 520px;
        grid-template-rows: 40% 45% 15%;
    }

    #projects .card-text h2 {
        font-size: 24px;
    }
}

/* ============================================================
   COMPREHENSIVE RESPONSIVE BREAKPOINTS
   ============================================================ */

/* ── 1280px: slightly smaller desktops ── */
@media (max-width: 1280px) {
    .navbar {
        margin: 0 80px;
    }

    .main-container {
        margin: 100px 80px 0 40px;
    }

    .hero-actions {
        margin: 20px 80px 0;
    }

    .highlight {
        font-size: 82px;
    }

    .front-end {
        font-size: 60px;
    }
}

/* ── 1100px: small laptops / large tablets ── */
@media (max-width: 1100px) {
    .navbar {
        margin: 0 40px;
        padding: 8px 16px;
    }

    .site-logo {
        width: 150px;
    }

    nav ul li {
        margin: 0 10px;
    }

    .contact-button {
        padding: 12px 22px;
        font-size: 15px;
    }

    .main-container {
        margin: 80px 40px 0 30px;
    }

    .hero-actions {
        margin: 16px 40px 0;
    }

    .highlight {
        font-size: 70px;
    }

    .front-end {
        font-size: 52px;
    }

    h2 {
        font-size: 42px;
    }

    .hero-portrait {
        right: 4%;
        width: min(44vw, 660px);
    }
}

/* ── 980px: tablets ── */
@media (max-width: 980px) {
    .navbar {
        margin: 0 20px;
        padding: 8px 14px;
        border-radius: 60px;
    }

    .site-logo {
        width: 130px;
    }

    nav ul li a {
        font-size: 13px;
    }

    nav ul li {
        margin: 0 8px;
    }

    .contact-button {
        padding: 10px 18px;
        font-size: 14px;
        margin-left: 12px;
    }

    .main-container {
        margin: 60px 20px 0 20px;
        max-width: 100%;
    }

    .hero-actions {
        margin: 16px 20px 0;
        gap: 20px;
    }

    .highlight {
        font-size: 56px;
    }

    .front-end {
        font-size: 42px;
    }

    h2 {
        font-size: 36px;
        line-height: 1.4em;
    }

    .hero-portrait {
        right: 0;
        width: min(42vw, 520px);
        opacity: 0.65;
    }

    .intro-description {
        max-width: 460px;
    }

    .review-count {
        font-size: 18px;
    }

    .portfolio-button {
        padding: 12px 28px;
        font-size: 15px;
    }

    section {
        height: auto;
        min-height: 100vh;
    }

    .mini-about {
        height: auto;
        min-height: 100vh;
    }
}

/* ── 1024px: tablet — desktop layout, scaled down ── */
@media (max-width: 1024px) {
    /* Allow sections to expand past 100vh so content is never clipped */
    section {
        height: auto;
        min-height: auto;
        overflow: visible;
    }

    #projects {
        height: auto;
        min-height: auto;
        padding: 48px 0;
    }

    .mini-about {
        height: auto;
        min-height: auto;
        overflow: visible;
    }

    /* About layout: keep 3-col desktop style, compact spacing */
    .mini-about .about-layout {
        padding-top: 40px;
        gap: 24px;
    }

    /* Hero: scale portrait to avoid overflow at 1024px */
    .hero-portrait {
        width: min(40vw, 500px);
        right: 2%;
    }

    /* Hero: tighten vertical spacing */
    .main-container {
        margin-top: 60px;
    }

    .hero-actions {
        margin-top: 12px;
    }

    /* Navbar: tighten spacing */
    nav ul li {
        margin: 0 6px;
    }

    nav ul li a {
        font-size: 13px;
    }
}

/* ── 760px: large phones / small tablets ── */
@media (max-width: 760px) {
    .navbar {
        margin: 0 12px;
        padding: 8px 12px;
        flex-wrap: wrap;
        gap: 8px;
        border-radius: 20px;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 2px 4px;
        justify-content: center;
        flex: none;
    }

    nav ul li {
        margin: 0 4px;
    }

    nav ul li a {
        font-size: 12px;
    }

    .contact-button {
        padding: 8px 14px;
        font-size: 13px;
        margin-left: 0;
    }

    .site-logo {
        width: 110px;
    }

    .main-container {
        margin: 28px 12px 0;
        flex-direction: column;
        max-width: 100%;
    }

    .social-media-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
        margin-bottom: 14px;
    }

    .social-media-container p {
        width: 100%;
        text-align: center;
        font-size: 12px;
        margin: 0;
    }

    .social-button {
        width: 44px;
        height: 44px;
        margin-bottom: 0;
    }

    .social-button i {
        font-size: 19px;
    }

    .highlight {
        font-size: 40px;
    }

    .front-end {
        font-size: 28px;
    }

    h2 {
        font-size: 28px;
        line-height: 1.3em;
    }

    p {
        font-size: 14px;
    }

    .intro-description {
        max-width: 100%;
    }

    .hero-portrait {
        display: none;
    }

    .hero-actions {
        margin: 14px 12px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .actions-column-right {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .portfolio-button {
        padding: 12px 22px;
        font-size: 14px;
    }

    .hire-button {
        font-size: 14px;
        padding: 10px 18px;
    }

    .review-count {
        font-size: 16px;
    }

    .rating {
        font-size: 14px;
    }

    .client-image {
        width: 40px;
        height: 40px;
    }

    .client-reviews {
        font-size: 13px;
    }

    .scroll div {
        font-size: 1.1em;
        letter-spacing: 0.14em;
    }

    .floating-hire-button {
        width: 96px;
        height: 96px;
    }

    .hire-ring-text {
        width: 94px;
        height: 94px;
    }

    .hire-center-icon {
        width: 50px;
        height: 50px;
    }

    .hire-center-icon svg {
        width: 28px;
        height: 28px;
    }

    .mini-about {
        height: auto;
        min-height: 100vh;
        padding-bottom: 40px;
    }

    .mini-about .about-layout,
    .mini-about .main-container {
        flex-direction: column;
        gap: 24px;
        align-items: center;
        margin-top: 40px;
        display: flex;
    }

    .mini-about .about-content {
        order: 1;
    }

    .mini-about .about-image {
        order: 2;
        align-self: center;
    }

    .mini-about .about-social-column {
        order: 3;
    }

    .mini-about .about-social-column {
        width: 100%;
        align-items: center;
        justify-content: center;
        padding-bottom: 0;
    }

    .about-image img {
        max-width: 100%;
        height: auto;
        border-radius: 12px;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .about-content {
        text-align: center;
    }

    .mini-about .about-content {
        align-items: center;
        justify-self: center;
        margin-left: 0;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-button {
        width: 100%;
        font-size: 15px;
        padding: 14px 20px;
    }

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

    .mini-about .about-actions {
        align-items: center;
        margin-left: 0;
        width: 100%;
    }

    section {
        height: auto;
        min-height: 100vh;
        overflow: visible;
    }

    .projects-container {
        padding: 40px 16px;
    }

    .title-wrapper {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .h2-section-title {
        font-size: 30px;
    }
}

/* ── 480px: mobile portrait ── */
@media (max-width: 480px) {
    .navbar {
        margin: 0 8px;
        padding: 6px 10px;
        border-radius: 14px;
    }

    nav ul li a {
        font-size: 11px;
    }

    nav ul li {
        margin: 0 3px;
    }

    .contact-button {
        padding: 6px 11px;
        font-size: 12px;
    }

    .site-logo {
        width: 95px;
    }

    .main-container {
        margin: 18px 8px 0;
    }

    .highlight {
        font-size: 46px;
    }

    .front-end {
        font-size: 28px;
    }

    h2 {
        font-size: 26px;
    }

    p {
        font-size: 13px;
    }

    .hero-actions {
        margin: 10px 8px 0;
    }

    .portfolio-button {
        padding: 10px 18px;
        font-size: 13px;
    }

    .hire-button {
        font-size: 13px;
        padding: 8px 14px;
    }

    .button-container {
        gap: 8px;
    }

    .review-count {
        font-size: 14px;
    }

    .rating {
        font-size: 12px;
    }

    .client-image {
        width: 34px;
        height: 34px;
    }

    .client-reviews {
        font-size: 12px;
    }

    .scroll div {
        font-size: 0.88em;
        letter-spacing: 0.1em;
    }

    .h2-section-title {
        font-size: 24px;
    }

    .about-content h2 {
        font-size: 24px;
    }
}

    .cv-contact-form {
        display: grid;
        gap: 10px;
    }

    .cv-contact-form label {
        font-weight: 600;
        color: #dbeee4;
        font-size: 14px;
    }

    .cv-contact-form input,
    .cv-contact-form select,
    .cv-contact-form textarea {
        border: 1px solid rgba(219, 238, 228, 0.28);
        border-radius: 12px;
        background: rgba(8, 30, 22, 0.74);
        color: #ffffff;
        padding: 12px 14px;
        outline: none;
        transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .cv-contact-form input:focus,
    .cv-contact-form select:focus,
    .cv-contact-form textarea:focus {
        border-color: rgba(243, 214, 107, 0.75);
        box-shadow: 0 0 0 3px rgba(243, 214, 107, 0.2);
    }

    .cv-contact-form button[type="submit"] {
        margin-top: 8px;
    }

    .cv-form-status {
        min-height: 22px;
        margin-top: 8px;
        padding: 0;
        border-radius: 10px;
        font-size: 14px;
        line-height: 1.45;
        color: #dceae3;
    }

    .cv-form-status[data-state="idle"] {
        opacity: 0;
    }

    .cv-form-status[data-state="info"],
    .cv-form-status[data-state="success"],
    .cv-form-status[data-state="error"],
    .cv-form-status[data-state="queued"] {
        opacity: 1;
        padding: 10px 12px;
        border: 1px solid transparent;
    }

    .cv-form-status[data-state="info"] {
        color: #dbeeff;
        border-color: rgba(114, 180, 255, 0.42);
        background: rgba(27, 77, 130, 0.24);
    }

    .cv-form-status[data-state="success"] {
        color: #d5ffea;
        border-color: rgba(99, 220, 166, 0.45);
        background: rgba(34, 109, 78, 0.26);
    }

    .cv-form-status[data-state="queued"] {
        color: #fff0ce;
        border-color: rgba(247, 192, 104, 0.46);
        background: rgba(125, 84, 29, 0.24);
    }

    .cv-form-status[data-state="error"] {
        color: #ffd8d8;
        border-color: rgba(255, 115, 115, 0.5);
        background: rgba(131, 35, 35, 0.24);
    }

    .cv-honeypot {
        position: absolute;
        left: -9999px;
        width: 1px;
        height: 1px;
        opacity: 0;
        pointer-events: none;
    }

/* Services carousel final override */
#projects {
    --services-gap: 70px;
    --services-cards-per-view: 3;
    background:
        radial-gradient(circle at 22% 28%, rgba(65, 180, 140, 0.28), transparent 26%),
        radial-gradient(circle at 68% 24%, rgba(197, 156, 78, 0.34), transparent 22%),
        radial-gradient(circle at 58% 58%, rgba(15, 63, 45, 0.72), transparent 36%),
        linear-gradient(118deg, #04110d 0%, #081712 32%, #0d1f18 58%, #111b15 78%, #1a1711 100%);
    background-size: cover;
    overflow-x: clip;
    overflow-y: visible;
}

#projects .services-carousel {
    display: grid;
    overflow-x: clip;
    overflow-y: visible;
}

#projects .services-viewport {
    overflow-x: clip;
    overflow-y: visible;
    width: 100%;
    height: 100%;
    padding: 22px 42px 30px;
    margin: 0 auto;
}

#projects .services-tilt-grid {
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: var(--services-gap);
    transition: transform 360ms ease;
    will-change: transform;
}

#projects .services-carousel-footer {
    display: flex;
    justify-content: center;
}

#projects .services-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

#projects .services-pagination-button {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 999px;
    background: rgba(243, 214, 107, 0.28);
    box-shadow: inset 0 0 0 1px rgba(243, 214, 107, 0.35);
    padding: 0;
    cursor: pointer;
    transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

#projects .services-pagination-button:hover,
#projects .services-pagination-button:focus-visible {
    background: rgba(243, 214, 107, 0.56);
    box-shadow: inset 0 0 0 1px rgba(243, 214, 107, 0.68), 0 0 18px rgba(243, 214, 107, 0.22);
    outline: none;
}

#projects .services-pagination-button.is-active {
    width: 42px;
    background: #f3d66b;
    box-shadow: 0 0 18px rgba(243, 214, 107, 0.32);
}

#projects .services-showcase-heading {
    display: grid;
    gap: 8px;
}

#projects .services-showcase-eyebrow {
    margin: 0;
    color: #9ce0b9;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1;
}

#projects .services-showcase-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(2rem, 3.6vw, 3.25rem);
    font-weight: 700;
    line-height: 0.95;
}

#projects .services-showcase-title span {
    color: #f3d66b;
}

#projects .card {
    width: calc((100% - (var(--services-gap) * (var(--services-cards-per-view) - 1))) / var(--services-cards-per-view));
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: 44% 1fr auto;
    flex: 0 0 calc((100% - (var(--services-gap) * (var(--services-cards-per-view) - 1))) / var(--services-cards-per-view));
    height: clamp(500px, 38vw, 590px);
    min-width: 0;
    overflow: visible;
    text-align: left;
    transform-style: preserve-3d;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

#projects .card-text {
    margin: 20px 20px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

#projects .card-text h2 {
    margin-bottom: 0;
    line-height: 1.04;
}

#projects .card-text p {
    margin-top: 0;
    line-height: 1.45;
    word-spacing: normal !important;
    text-wrap: pretty;
    overflow: hidden;
    display: -webkit-box;
    line-clamp: 6;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 6;
}



#projects .services-tilt-grid .card:nth-child(1) .card-text .date {
    color: #f3d66b !important;
}

#projects .services-tilt-grid .card:nth-child(2) .card-text .date {
    color: #8e5eff !important;
}

#projects .services-tilt-grid .card:nth-child(3) .card-text .date {
    color: #f55fc0 !important;
}

#projects .services-tilt-grid .card:nth-child(4) .card-text .date {
    color: #ff7a7a !important;
}

#projects .services-tilt-grid .card:nth-child(5) .card-text .date {
    color: #61b2f4 !important;
}

#projects .services-tilt-grid .card:nth-child(6) .card-text .date {
    color: #8ce1b0 !important;
}

#projects .card-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 3;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 8px;
    max-width: calc(100% - 24px);
}

#projects .card-action-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    border-radius: 999px;
    width: 38px;
    height: 38px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    text-indent: -9999px;
    font-size: 0;
    font-weight: 700;
    text-decoration: none;
    transition: width 0.24s ease, padding 0.24s ease, text-indent 0.24s ease, font-size 0.24s ease, transform 0.2s ease, background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

#projects .card-action-btn::before {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    line-height: 1;
    font-size: 0.84rem;
    font-weight: 800;
    text-indent: 0;
    transition: left 0.24s ease, transform 0.24s ease;
    content: "";
}

#projects .card-action-code::before {
    content: "\f09b";
    font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands";
    font-weight: 400;
    color: #ffffff;
    background: transparent;
}

#projects .card-action-site::before {
    content: "GO";
    color: #ffffff;
    background: transparent;
}

#projects .card-action-code {
    border: 1px solid rgba(45, 106, 79, 0.9);
    color: #ffffff;
    background: #2d6a4f;
}

#projects .card-action-site {
    border: 1px solid rgba(45, 106, 79, 0.9);
    color: #ffffff;
    background: #2d6a4f;
}

#projects .card-action-btn:hover,
#projects .card-action-btn:focus-visible {
    width: 122px;
    padding: 0 12px 0 40px;
    text-indent: 0;
    font-size: 0.74rem;
    transform: translateY(-1px);
    box-shadow: 0 0 14px rgba(45, 106, 79, 0.38);
    outline: none;
}

#projects .card-action-btn:hover::before,
#projects .card-action-btn:focus-visible::before {
    left: 11px;
    transform: translateY(-50%);
}

#projects .card-action-site.is-disabled {
    opacity: 0.55;
    pointer-events: none;
    cursor: not-allowed;
}

#projects .card-stats {
    align-self: end;
    justify-content: flex-start;
    gap: 8px;
    padding: 8px 14px 16px;
    flex-wrap: nowrap;
    overflow: hidden;
}

#projects .card-stats .stat {
    padding: 4px 10px;
    font-size: 0.86rem;
    min-width: 0;
}

#projects .card-stats .value {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

#projects .service-image-4 {
    background-image: linear-gradient(#fff0 0%, #fff0 70%, #1d1d1d 100%), url("assets/img/Football Pulse.png");
}

#projects .service-image-5 {
    background-image: linear-gradient(#fff0 0%, #fff0 70%, #1d1d1d 100%), url("assets/img/Creative Authentication System.png");
}

#projects .service-image-6 {
    background-image: linear-gradient(#fff0 0%, #fff0 70%, #1d1d1d 100%), url("assets/img/Curriculum Vitae.png");
}



@media (max-width: 1100px) {
    #projects {
        --services-cards-per-view: 2;
    }

    #projects .services-showcase-header {
        flex-direction: column;
    }

    #projects .services-showcase-summary {
        max-width: none;
    }

    #projects .services-viewport {
        width: 100%;
        padding-left: 30px;
        padding-right: 30px;
    }

    #projects .card {
        height: clamp(490px, 54vw, 580px);
    }
}

@media (max-width: 760px) {
    #projects {
        --services-cards-per-view: 1;
        --services-gap: 18px;
    }

    #projects .services-showcase {
        width: calc(100% - 24px);
    }

    #projects .services-viewport {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    #projects .services-showcase-title {
        font-size: clamp(1.7rem, 7vw, 2.25rem);
    }

    #projects .card {
        height: clamp(480px, 118vw, 560px);
        grid-template-columns: minmax(0, 1fr);
        grid-template-rows: 46% 1fr auto;
    }

    #projects .card-text {
        margin: 18px 18px 12px;
    }

    #projects .card-text h2 {
        font-size: 24px;
    }

    #projects .card-stats {
        gap: 6px;
        padding: 8px 12px 14px;
    }

    #projects .card-stats .stat {
        padding: 4px 8px;
        font-size: 0.66rem;
    }

    #projects .card-actions {
        top: 10px;
        right: 10px;
        gap: 6px;
        max-width: calc(100% - 20px);
    }

    #projects .card-action-btn {
        width: 34px;
        height: 34px;
    }

    #projects .card-action-btn::before {
        width: 23px;
        height: 23px;
        font-size: 0.72rem;
    }

    #projects .card-action-btn:hover,
    #projects .card-action-btn:focus-visible {
        width: 108px;
        padding: 0 10px 0 36px;
        font-size: 0.66rem;
    }

    #projects .card-action-btn:hover::before,
    #projects .card-action-btn:focus-visible::before {
        left: 10px;
    }

    #projects .services-showcase-eyebrow {
        font-size: 0.82rem;
    }

    #projects .services-showcase-title {
        font-size: clamp(2rem, 8.2vw, 2.7rem);
    }
}

/* ============================================================
   HAMBURGER BUTTON
   ============================================================ */

.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 2px solid rgba(45, 106, 79, 0.55);
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nav-hamburger:hover {
    background-color: rgba(45, 106, 79, 0.12);
    border-color: rgba(45, 106, 79, 0.9);
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #2d6a4f;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
    transform-origin: center;
}

.nav-hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.nav-hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   MOBILE NAVIGATION OVERLAY
   ============================================================ */

.nav-mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 500;
    background: rgba(4, 17, 13, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    display: flex;
    justify-content: flex-end;
}

.nav-mobile-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

.nav-mobile-panel {
    width: min(300px, 85vw);
    height: 100%;
    background: linear-gradient(180deg, #081712 0%, #0c1e17 50%, #0f2318 100%);
    border-left: 1px solid rgba(243, 214, 107, 0.18);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    padding: 0 0 32px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-mobile-overlay.is-open .nav-mobile-panel {
    transform: translateX(0);
}

.nav-mobile-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    flex-shrink: 0;
}

.nav-mobile-logo {
    width: 120px;
    height: auto;
}

.nav-mobile-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(243, 214, 107, 0.1);
    border: 1px solid rgba(243, 214, 107, 0.28);
    border-radius: 10px;
    color: #f3d66b;
    cursor: pointer;
    font-size: 20px;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
}

.nav-mobile-close:hover {
    background: rgba(243, 214, 107, 0.22);
}

.nav-mobile-list {
    list-style: none;
    margin: 0;
    padding: 16px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.nav-mobile-list li a {
    display: flex;
    align-items: center;
    padding: 14px 24px;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: color 0.2s ease, padding-left 0.2s ease, background-color 0.2s ease;
}

.nav-mobile-list li a:hover,
.nav-mobile-list li a.active {
    color: #f3d66b;
    padding-left: 30px;
    background: rgba(243, 214, 107, 0.05);
}

.nav-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px 20px 0;
    padding: 14px 28px;
    background: #2d6a4f;
    color: #ffffff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.2s ease, color 0.2s ease;
    flex-shrink: 0;
}

.nav-mobile-cta:hover {
    background: #f3d66b;
    color: #2d6a4f;
}

/* Prevent body scroll when mobile nav is open */
body.nav-is-open {
    overflow: hidden;
}

/* ============================================================
   RESPONSIVE — Show hamburger, hide desktop nav
   ============================================================ */

@media (max-width: 900px) {
    /* Show hamburger button */
    .nav-hamburger {
        display: flex;
    }

    /* Hide desktop nav */
    #navMenu {
        display: none !important;
    }

    /* Navbar — single row: logo + hamburger */
    .navbar {
        margin: 0 12px;
        padding: 8px 14px;
        border-radius: 20px;
        flex-wrap: nowrap;
        gap: 0;
        justify-content: space-between;
        align-items: center;
    }

    .site-logo {
        width: 120px;
    }

    /* ── Hero layout ── */
    .hero-header {
        height: auto;
        min-height: 100svh;
        min-height: 100vh; /* fallback */
        padding: 14px 0 0;
        overflow: visible;
        display: flex;
        flex-direction: column;
    }

    .hero-header .section-divider {
        margin-top: auto;
    }

    .main-container {
        margin: 48px 24px 0;
        flex-direction: column;
        max-width: 100%;
        align-items: center;
    }

    .container {
        margin-left: 0;
        max-width: 100%;
        text-align: center;
    }

    .hero-intro-title {
        font-size: clamp(2rem, 10vw, 2.8rem);
        text-align: center;
        line-height: 1.2;
        width: 100%;
        margin-bottom: 20px;
    }

    .intro-description {
        font-size: 15px;
        line-height: 1.65;
        max-width: 100%;
        text-align: center;
    }

    .social-media-container {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 16px;
    }

    .social-media-container p {
        width: 100%;
        text-align: left;
        font-size: 12px;
        margin: 0;
        order: 10;
    }

    .social-button {
        width: 42px;
        height: 42px;
        margin-bottom: 0;
    }

    .social-button i {
        font-size: 18px;
    }

    /* .container centering handled above with .main-container */

    .highlight {
        font-size: 52px;
        line-height: 1.05;
    }

    .front-end {
        font-size: 32px;
        line-height: 1.2;
    }

    h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    p {
        font-size: 14px;
    }

    .hero-portrait {
        display: none;
    }

    .hero-floating-buttons {
        display: none;
    }

    /* ── Hero: restored social links + buttons, reordered below description ── */

    /* .main-container is flex-column; push social below .container using order */
    .main-container .container {
        order: 1;
    }

    .social-media-container {
        order: 2;
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
        margin-bottom: 0;
    }

    .social-media-container p {
        display: none;
    }

    .social-button {
        width: 44px;
        height: 44px;
        margin-bottom: 0;
    }

    .social-button i {
        font-size: 18px;
    }

    /* Restore hero-actions; keep testimonials hidden, show buttons */
    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin: 20px 24px 0;
        width: calc(100% - 48px);
    }

    .testimonial-container {
        display: none;
    }

    .actions-column-right {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 12px;
    }

    .button-container {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
    }

    .portfolio-button {
        flex: 1;
        text-align: center;
        padding: 13px 20px;
        font-size: 15px;
    }

    .hire-button {
        width: 100%;
        text-align: center;
        font-size: 15px;
        padding: 13px 20px;
    }

    .button-container {
        gap: 8px;
    }

    /* Marquee strip */
    .scroll div {
        font-size: 1.05em;
        letter-spacing: 0.12em;
    }

    /* ── General sections ── */
    section {
        height: auto;
        min-height: auto;
        overflow: visible;
    }

    /* ── About section ── */
    .mini-about {
        height: auto;
        min-height: auto;
        overflow: visible;
        padding-bottom: 0;
    }

    .mini-about .about-layout {
        display: flex !important;
        flex-direction: column;
        gap: 28px;
        padding: 44px 14px 0;
        align-items: center;
        width: calc(100% - 28px);
        height: auto;
    }

    .mini-about .about-image {
        order: 2;
        height: auto;
        justify-content: center;
        align-items: flex-end;
    }

    .mini-about .about-image img {
        max-height: 340px;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }

    .mini-about .about-content {
        order: 1;
        margin-left: 0;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .mini-about .about-social-column {
        display: none;
    }

    .mini-about .social-links {
        flex-direction: row;
        gap: 8px;
    }

    .mini-about .social-links a {
        width: 48px;
        height: 48px;
        margin-bottom: 0;
    }

    .mini-about .about-social-label {
        display: none;
    }

    .mini-about .about-scroll-divider {
        position: relative;
    }

    /* ── Projects section ── */
    #projects {
        height: auto;
        min-height: auto;
        padding: 28px 0 48px;
        --services-gap: 0px;
        --services-cards-per-view: 1;
    }

    #projects .services-showcase {
        width: calc(100% - 28px);
        margin-inline: 14px;
        margin-top: 0;
    }

    #projects .services-showcase {
        width: calc(100% - 28px);
        margin-inline: 14px;
        margin-top: 0;
    }

    #projects .services-showcase-header {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
        align-items: center;
        text-align: center;
    }

    #projects .services-showcase-eyebrow,
    #projects .services-showcase-title {
        text-align: center;
    }

    #projects .card-text,
    #projects .card-stats {
        text-align: center;
    }

    #projects .card-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .navbar {
        margin: 0 8px;
        padding: 7px 10px;
    }

    .site-logo {
        width: 100px;
    }

    .nav-hamburger {
        width: 40px;
        height: 40px;
    }

    .main-container {
        margin: 40px 16px 0;
    }

    .highlight {
        font-size: 46px;
    }

    .front-end {
        font-size: 28px;
    }

    h2 {
        font-size: 26px;
    }

    p {
        font-size: 13px;
    }

    .portfolio-button {
        padding: 10px 18px;
        font-size: 14px;
    }

    .hire-button {
        font-size: 13px;
        padding: 9px 16px;
    }

    .review-count {
        font-size: 14px;
    }

    .client-image {
        width: 34px;
        height: 34px;
    }

    .scroll div {
        font-size: 0.9em;
        letter-spacing: 0.1em;
    }

    #projects .services-showcase {
        width: calc(100% - 16px);
        margin-inline: 8px;
    }
}
