:root {
    --bg-color: #080908;
    --surface-color: #10110f;
    --card-color: #151613;
    --primary-color: #e1bd64;
    --primary-light: #f8dfa0;
    --primary-dark: #a9822d;
    --text-color: #f8f6ef;
    --text-muted: #aaa99f;
    --border-color: rgba(225, 189, 100, 0.18);
    --panel-border: rgba(255, 255, 255, 0.08);
    --panel: rgba(18, 19, 16, 0.78);
    --pop: 'DM Sans', sans-serif;
    --shadow-sm:
        0 0 10px rgba(212, 175, 55, 0.15);
    --shadow-md:
        0 0 20px rgba(212, 175, 55, 0.25);
    --shadow-lg:
        0 0 40px rgba(212, 175, 55, 0.35);
    --shadow-xl:
        0 0 60px rgba(212, 175, 55, 0.45);
    --gold-glow: 0 0 0 1px rgba(225, 189, 100, 0.15), 0 18px 55px rgba(169, 130, 45, 0.2);

    --text-sys: #b7b4aa;
    --unb: 'Unbounded', sans-serif;
    --transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 0.4s cubic-bezier(.34, 1.56, .64, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    background: var(--bg-color);
    font-family: var(--pop);
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-dark);
    border-radius: 99px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--text-muted);
}

::-webkit-scrollbar-thumb:active {
    background: var(--primary-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

.onload {
    position: fixed;
    inset: 0;
    background: var(--bg-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 99999;
    clip-path: inset(0 0 0 0%);
    transition: var(--transition);
}

.onload.active {
    clip-path: inset(0 0 100% 0%);
}

.onload h1 {
    color: transparent;
    font-size: min(12vw, 12rem);
    font-family: Segoe UI, sans-serif;
    letter-spacing: 3px;
    text-transform: uppercase;
    -webkit-text-stroke: 2px var(--primary-dark);
    margin: 0;
    line-height: 1;
    display: inline-flex;
    overflow: hidden;
}

.onload h1 span {
    display: inline-block;
    opacity: 0;
    transform: translateY(250px);
}


.loader {
    width: clamp(45px, 4vw, 50px);
    height: clamp(45px, 4vw, 50px);
    border: 6px solid transparent;
    border-top: 6px solid var(--text-color);
    border-radius: 50%;
    background: transparent;
    animation: spin .9s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.side-nav {
    position: fixed;
    right: 0.5rem;
    top: 50%;
    width: 48px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    white-space: nowrap;
    flex-wrap: nowrap;
    gap: 0.5rem;
    z-index: 20;
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(15, 16, 14, 0.72);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.32);
    backdrop-filter: blur(18px);
    padding: 12px 5px;
    border-radius: 50px;
    transition: var(--transition-fast);
}

.side-nav a {
    width: 100%;
    display: flex;
    align-items: center;
    color: var(--text-sys);
    background: transparent;
    text-decoration: none;
    transition: var(--transition-fast);
}

.side-nav a i {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, .2);
    transition: var(--transition);
}

.side-nav a span {
    color: var(--primary-color);
    opacity: 0;
    z-index: -1;
    margin-left: 8px;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    color: var(--primary-light);
    background: rgba(12, 13, 11, 0.92);
    font-family: var(--pop);
    border-radius: 12px;
    transition: var(--transition-fast);
}

.side-nav a:hover span {
    opacity: 1;
}

.side-nav a.active i,
.side-nav a:hover i {
    transform: rotate(-15deg) scale(1.2);
    color: #0a0b09;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    box-shadow: var(--shadow-lg);
}

.home {
    width: 100%;
    padding: 20px 20px 50px 20px;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2rem;
    align-items: center;
    margin: 0 auto;
}

.h-l {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.h-l h1 {
    font-size: min(8vw, 3rem);
    color: var(--text-color);
    text-transform: uppercase;
    line-height: 0.85;
    margin-bottom: 0rem;
}

.h-l h2 .gsap-block:last-child .gsap-trans {
    color: transparent;
    background: linear-gradient(110deg, #fff0bf 0%, #d6a947 52%, #9f7622 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.h-l h2 {
    font-size: min(8vw, 10rem);
    color: var(--text-color);
    line-height: 1;
    font-family: var(--unb);
    margin-bottom: 0rem;
}

.h-l h3 {
    font-size: min(2.5vw, 5rem);
    color: var(--primary-color);
    line-height: 0.85;
    font-weight: 500;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.h-l p {
    font-size: min(2.2vw, 5rem);
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.h-b {
    display: flex;
    gap: 15px;
}

.h-b a {
    position: relative;
    padding: 14px 24px;
    border-radius: 14px;
    color: var(--text-color);
    border: 2px solid var(--primary-color);
    text-decoration: none;
    overflow: hidden;
    display: inline-flex;
    z-index: 1;
    font-size: 1.3rem;
    transition: var(--transition);
}

.h-b a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    background: var(--primary-color);
    z-index: -1;
    transition: transform var(--transition);
    transform-origin: right center;
}

.h-b a:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
}

.h-b a:nth-child(2) {
    color: var(--bg-color);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    box-shadow: 0 14px 40px rgba(170, 129, 40, 0.22);
}

.h-b a:nth-child(2)::before {
    background: var(--text-color);
}

.h-b a:hover {
    color: var(--bg-color);
    box-shadow: var(--gold-glow);
    transform: translateY(-4px);
}

.h-r {
    display: flex;
    justify-content: center;
}

.h-r .h-img {
    position: relative;
    aspect-ratio: 1;
    padding: clamp(10px, 1vw, 15px);
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(225, 189, 100, 0.2), rgba(255, 255, 255, 0.025) 42%, rgba(0, 0, 0, 0.35));
    box-shadow: var(--shadow-xl), inset 0 1px rgba(255, 255, 255, 0.15);
    isolation: isolate;
}

.h-r .h-img img {
    border-radius: 50%;
    width: 100%;
    background: linear-gradient(145deg, #1b1c17, #0b0c0a);
    filter: saturate(0.86) contrast(1.04);
}

.h-r .h-img .h-ob {
    position: absolute;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-color);
    background: rgba(12, 13, 11, 0.72);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(16px);
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 25px;
}

.h-r .h-img .h-ob:nth-child(2) {
    top: 10%;
    left: 8%;
    animation: h-ob 5s ease infinite;
}

.h-r .h-img .h-ob:nth-child(3) {
    right: 8%;
    bottom: 10%;
    animation: h-ob 7s ease infinite;
}

@keyframes h-ob {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.gsap-block {
    display: inline-block;
    overflow: hidden;
    position: relative;
}

.gsap-trans {
    display: inline-block;
}

.section {
    width: 100%;
    position: relative;
    padding: 60px clamp(1.25rem, 5vw, 7rem) 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.section h1 {
    font-size: clamp(1.4rem, 5vw, 4rem);
    width: fit-content;
    position: relative;
    padding: 10px 25px;
    box-shadow: var(--shadow-md);
    border-radius: 35px;
    margin-bottom: 3rem;
    font-family: var(--unb);
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    overflow: hidden;
}

.section h1 .gsap-trans {
    background: linear-gradient(90deg,
            var(--text-muted) 35%,
            var(--primary-color) 50%,
            var(--text-muted) 65%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: scan 2s linear infinite;
}

@keyframes scan {
    from {
        background-position: 100% 0;
    }

    to {
        background-position: -100% 0;
    }
}

.section h1::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary-dark), transparent);
}

.hl {
    color: var(--primary-color);
}

.faa-code {
    color: var(--primary-color);
}

.faa-rocket {
    color: var(--primary-color);
}

.murquee {
    width: 100%;
    overflow: hidden;
    padding: 15px 0px;
    position: relative;
    z-index: 2;
    background: var(--surface-color);
}

.murquee::before,
.murquee::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--primary-color), transparent);
}

.murquee::before {
    top: 0;
}

.murquee::after {
    bottom: 0;
}

.murquee-section {
    opacity: 0.8;
    display: flex;
    width: max-content;
    animation: marquee 20s linear infinite;
    will-change: transform;
}

.murquee-content {
    display: flex;
    align-items: center;
}

.murquee-items {
    color: var(--text-color);
    font-size: min(4vw, 1.5rem);
    font-family: var(--pop);
    margin-right: 40px;
    white-space: nowrap;
}

.murquee-items i {
    color: var(--primary-dark);
}


@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

.menu-button {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 50;
    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 25px;

    background:
        linear-gradient(120deg,
            transparent 30%,
            rgba(255, 255, 255, 0.8) 50%,
            transparent 0%);
    cursor: pointer;
    background-size: 250% 100%;
    background-position: 100% 0;

    backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-button:hover {
    animation: menu_button 0.6s ease forwards;
}

@keyframes menu_button {
    0% {
        background-position: 100% 0;
    }

    100% {
        background-position: -50% 0;
    }
}

.menu-icon {
    width: 28px;
    height: 18px;
    position: relative;
}

.menu-icon span {
    width: 100%;
    height: 2px;
    position: absolute;
    left: 0;
    background: linear-gradient(90deg, var(--primary-light), var(--text-color));
    border-radius: 10px;
    transition: 0.35s ease;
}

.menu-icon span:nth-child(1) {
    top: 0;
}

.menu-icon span:nth-child(2) {
    top: 7.5px;
    width: 75%;
}

.menu-icon span:nth-child(3) {
    top: 15px;
}

.menu-button.active .menu-icon span:nth-child(1) {
    top: 7.5px;
    transform: rotate(45deg);
}

.menu-button.active .menu-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
}

.menu-button.active .menu-icon span:nth-child(3) {
    top: 7.5px;
    transform: rotate(-45deg);
}

.menu {
    position: fixed;
    right: 0;
    top: 0;
    width: auto;
    height: 100%;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: radial-gradient(circle at 80% 20%, rgba(225, 189, 100, 0.13), transparent 18rem), rgba(9, 10, 8, 0.96);
    gap: 1rem;
    clip-path: inset(0 0 100% 100%);
    z-index: 49;
    padding: 2rem;
    transition: var(--transition);
}

.menu.open {
    clip-path: inset(0 0 0 0);
}

.menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: transparent;
    background: linear-gradient(to right, var(--primary-dark) 50%, var(--text-color) 50%);
    background-clip: text;
    -webkit-text-fill-color: text;
    background-size: 200% 100%;
    background-position: 100% 0%;
    transition: var(--transition);
    line-height: 1.1;
    font-size: min(6rem, 10vw);
    font-weight: bolder;
    font-family: var(--unb);
}

.menu a:hover {
    background-position: 0% 0%;
}

.menu .high {
    color: var(--primary-color);
    align-self: self-start;
    border-radius: 25px;
    border: 1px solid rgba(225, 189, 100, 0.38);
    margin-bottom: 1rem;
    padding: 8px 14px;
    color: var(--primary-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.section.about {
    padding-top: 120px;
}

.about-sec {
    width: 80%;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: 25px;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.about-sec::before {
    content: '“';
    position: absolute;
    top: -0.25em;
    right: 0.06em;
    color: rgba(225, 189, 100, 0.12);
    font-family: Georgia, serif;
    font-size: clamp(9rem, 23vw, 20rem);
    line-height: 1;
}

.grow-about {
    position: absolute;
    right: -31px;
    top: -31px;
    padding: 15px;
    margin: 0;
    line-height: 0;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.about-text {
    text-align: center;
    font-size: min(2.5vw, 5rem);
    line-height: 1;
}

.ab-te-gg {
    background: linear-gradient(to right, var(--text-color) 50%, #717177 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stats-section {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
    padding: 40px 0px 0px 0px;
}

.stat-item {
    min-height: 150px;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 0.5rem;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    justify-content: center;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(225, 189, 100, 0.34);
    background: rgba(225, 189, 100, 0.055);
}

.stat-number {
    color: var(--primary-light);
    font-family: var(--unb);
    font-size: clamp(2rem, 4vw, 3.7rem);
    font-weight: 700;
    letter-spacing: -0.06em;
}

.stat-label {
    color: var(--text-sys);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.about-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.about-floating-icons {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 88px;
    height: 88px;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--primary-light);
    font-size: 2rem;

    background:
        linear-gradient(145deg,
            rgba(212, 175, 55, 0.12),
            rgba(10, 10, 10, 0.85));

    border: 1px solid var(--border-color);
    border-radius: 18px;

    backdrop-filter: blur(12px);
    box-shadow:
        inset 0 0 15px rgba(212, 175, 55, 0.06),
        var(--shadow-md);

    animation: floatingElement 4s ease-in-out infinite;
}

.floating-icon::before {
    content: "";
    position: absolute;
    inset: 6px;
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 13px;
}

.floating-icon i {
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.7));
}

.floating-icon-1 {
    top: 10%;
    left: 30%;
    rotate: -15deg;
    animation-delay: 0s;
}

.floating-icon-2 {
    top: 10%;
    rotate: 15deg;
    right: 5%;
    animation-delay: 0.5s;
}

.floating-icon-3 {
    bottom: 10%;
    left: 5%;
    rotate: -15deg;
    animation-delay: 1s;
}

.floating-icon-4 {
    bottom: 10%;
    right: 5%;
    rotate: 15deg;
    animation-delay: 1.5s;
}

@keyframes floatingElement {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-16px) rotate(4deg);
    }
}

footer {
    width: 100%;
    position: fixed;
    bottom: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-bottom: 1rem;
}

.footer-top {
    max-width: 1260px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.f-l {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
}

.f-l-l {
    width: 84px;
    border-radius: 50%;
    aspect-ratio: 1;
    border: 1px solid var(--primary-color);
    overflow: hidden;
}

.f-l-l img {
    width: 100%;
}

.f-l-t {
    color: var(--text-color);
    font-size: 2.5rem;
    font-family: var(--unb);
}

.f-l-p {
    max-width: 540px;
    padding: 0px;
    text-align: left;
}

.f-l-p p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 16px;
}

.f-l-s {
    display: flex;
}

.f-l-s .social-link {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 0.5rem;
    border-radius: 50%;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
    color: var(--primary-color);
    transition: var(--transition-fast);
}

.f-l-s .social-link i {
    position: relative;
    z-index: 1;
    transition: var(--transition-fast);
}

.f-l-s .social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 0%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    z-index: 0;
    transition: all 0.3s;
}

.f-l-s .social-link:hover {
    color: var(--bg-color);
    transform: translateY(-5px);
}

.f-l-s .social-link:hover i {
    transform: rotate(15deg);
}

.f-l-s .social-link:hover::before {
    width: 105%;
    height: 105%;
}

.f-r {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    align-self: center;
    justify-content: center;
}

.f-r-s {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.f-r-s p {
    background: var(--card-color);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    padding: 12px 20px;
    border-radius: 50px;
    position: relative;
    font-size: 0.85rem;
    transition: var(--transition-fast);
}

.f-r-s p::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    display: inline-block;
    margin-right: 12px;
    box-shadow: var(--gold-glow);
}

.f-r-s p:hover {
    color: var(--primary-light);
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.footer-bottom {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-self: center;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
}

section {
    background: var(--surface-color);
    z-index: 2;
}

.contact-container {
    display: flex;
    border: 1px solid var(--panel-border);
    position: relative;
    width: 100%;
    gap: clamp(2rem, 6vw, 6rem);
    padding: clamp(1.5rem, 5vw, 4.5rem);
    border-radius: 28px;
    margin: 0px auto;
    background:
        radial-gradient(circle at 8% 12%, rgba(225, 189, 100, 0.09), transparent 24rem),
        var(--panel);
    box-shadow: var(--shadow-sm), inset 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.contact-container::after {
    content: '@';
    position: absolute;
    right: -0.05em;
    bottom: -0.3em;
    color: rgba(225, 189, 100, 0.035);
    font-family: var(--unb);
    font-size: clamp(10rem, 25vw, 23rem);
    font-weight: 900;
    pointer-events: none;
}

.contact-info {
    flex: 1;
    z-index: 1;
    position: relative;
}

.contact-info h3 {
    margin-bottom: 10px;
    max-width: 470px;
    color: var(--text-color);
    font-family: var(--unb);
    font-size: clamp(1.75rem, 3.5vw, 3.2rem);
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.contact-info p {
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 480px;
    margin: 1rem 0 2rem;
    color: var(--text-sys);
    font-size: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    gap: 12px;
    margin: 9px 0;
    color: var(--text-sys);
    font-size: 0.9rem;
}

.contact-item i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--primary-light);
    background: rgba(225, 189, 100, 0.055);
}

.contact-form {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1;
    gap: 11px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.14);
}

.input-box input,
.input-box textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-color);
    outline: none;
    padding: 15px 16px;
    border-radius: 12px;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.028);
    font: inherit;
    transition: var(--transition);
}

.input-box input::placeholder,
.input-box textarea::placeholder {
    color: #73736d;
}

.input-box input:focus,
.input-box textarea:focus {
    border-color: rgba(225, 189, 100, 0.52);
    background: rgba(225, 189, 100, 0.035);
    box-shadow: 0 0 0 3px rgba(225, 189, 100, 0.07);
}

.input-box textarea {
    min-height: 140px;
    resize: none;
}

.input-box input:focus,
.input-box textarea:focus {
    border-color: var(--primary-color);
    box-shadow: var(--gold-glow);
}

.contact-form button {
    padding: 12px;
    border: none;
    cursor: pointer;
    min-height: 52px;
    border-radius: 12px;
    color: var(--surface-color);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    font: 700 0.85rem var(--pop);
    letter-spacing: 0.04em;
    transition: var(--transition);
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: var(--gold-glow);
}

.project-container {
    width: 100%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    align-items: center;
}

.project-card {
    border: 1px solid var(--panel-border);
    overflow: hidden;
    position: relative;
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    background: var(--panel);
    box-shadow: var(--shadow-sm), inset 0 1px rgba(255, 255, 255, 0.04);
    transition: var(--transition);
}

.project-card:nth-child(1) {
    grid-column: span 7;
}

.project-card:nth-child(2) {
    grid-column: span 5;
}

.project-card::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    z-index: 3;
    width: 2px;
    background: linear-gradient(transparent 15%, var(--primary-color), transparent 85%);
    opacity: 0;
    transition: opacity var(--transition);
}

.project-card:hover {
    transform: translateY(-7px);
    border-color: rgba(225, 189, 100, 0.28);
    box-shadow: var(--shadow-md);
}

.project-card:hover::before {
    opacity: 1;
}

.project-btns .p-c-p {
    cursor: not-allowed;
    padding: 9px 13px;
    border-radius: 10px;
    color: var(--text-sys);
    background: rgba(255, 255, 255, 0.025);
    font-size: 0.76rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.085);
    color: var(--text-color);
    transition: var(--transition-fast);
}

.project-btns .p-c-p:hover {
    background: var(--primary-color);
    color: var(--surface-color);
    box-shadow: var(--gold-glow);
}


.project-img {
    overflow: hidden;
    height: 230px;
    margin: 8px;
    border-radius: 17px;
    background: var(--bg-color);
}

.project-card:nth-child(-n+2) .project-img {
    height: 290px;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.82) contrast(1.03);
    transition: var(--transition);
}

.project-img::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(8, 9, 8, 0.5), transparent 50%);
}

.project-card:hover img {
    transform: scale(1.045);
    filter: saturate(1) contrast(1.03);
}

.project-content {
    flex: 1;
    padding: 20px 22px 24px;
    display: flex;
    flex-direction: column;
}

.project-content h3 {
    color: var(--text-color);
    font-family: var(--unb);
    font-size: clamp(1.15rem, 2vw, 1.6rem);
    line-height: 1.25;
    letter-spacing: -0.035em;
    margin-bottom: 10px;
}

.project-content p {
    color: var(--text-sys);
    font-size: 0.9rem;
    line-height: 1.65;
}

.project-btns {
    display: flex;
    gap: 12px;
    padding-top: 1.25rem;
    flex-wrap: wrap;
}

.project-btns a {
    padding: 9px 13px;
    border-radius: 10px;
    color: var(--text-sys);
    background: rgba(255, 255, 255, 0.025);
    font-size: 0.76rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.085);
    color: var(--text-color);
    transition: var(--transition-fast);
}

.project-btns a:hover {
    background: var(--primary-color);
    color: var(--surface-color);
    box-shadow: var(--gold-glow);
}

.section.skills {
    width: 100%;
    margin: 0 auto;
}

.skills-section {
    position: relative;
    align-self: flex-start;
    width: 100%;
    margin: 0 0 18px;
    padding: clamp(1.2rem, 2.5vw, 2rem);
    border: 1px solid var(--panel-border);
    border-radius: 24px;
    background: var(--panel);
    box-shadow: var(--shadow-sm), inset 0 1px rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.skills-section.ss1 {
    width: 100%;
    margin: 0 0 18px;
    padding: clamp(1.2rem, 2.5vw, 2rem);
    border: 1px solid var(--panel-border);
    border-radius: 24px;
    background: var(--panel);
    box-shadow: var(--shadow-sm), inset 0 1px rgba(255, 255, 255, 0.04);
    overflow: hidden;
}

.skills-section h2 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(225, 189, 100, 0.22);
    border-radius: 25px;
    margin-bottom: 1.25rem;
    padding: 8px 12px;
    color: var(--text-sys);
    background: rgba(225, 189, 100, 0.045);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.skills-section h2 span {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: 0 0 12px rgba(225, 189, 100, 0.5);
    animation: opacity 1.5s ease infinite;
}

@keyframes opacity {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

.skill-container {
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
    gap: 10px;
}

.skill-item {
    text-align: center;
    position: relative;
    min-height: 138px;
    padding: 1.25rem 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid rgba(255, 255, 255, 0.055);
    border-radius: 17px;
    background: rgba(255, 255, 255, 0.022);
    overflow: hidden;
    transition: transform var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
}

.skill-item::before {
    content: '';
    position: absolute;
    inset: auto 15% -55% 15%;
    height: 80%;
    border-radius: 50%;
    background: rgba(225, 189, 100, 0.16);
    filter: blur(28px);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.skill-item:hover {
    transform: translateY(-5px);
    border-color: rgba(225, 189, 100, 0.28);
    background: rgba(225, 189, 100, 0.045);
}

.skill-item:hover::before {
    opacity: 1;
}

.skill-icon {
    position: relative;
    z-index: 1;
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(225, 189, 100, 0.2);
    border-radius: 17px;
    color: var(--primary-light);
    background:
        linear-gradient(145deg, rgba(225, 189, 100, 0.12), rgba(225, 189, 100, 0.025)),
        #171814;
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.07), 0 12px 28px rgba(0, 0, 0, 0.26);
    font-size: 1.7rem;
    transition: transform var(--transition-fast), color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.skill-item:hover .skill-icon {
    color: #0a0b09;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    box-shadow: 0 12px 30px rgba(180, 139, 48, 0.28), 0 0 0 5px rgba(225, 189, 100, 0.055);
    transform: translateY(-4px) rotate(-4deg) scale(1.05);
}

.skill-item h3 {
    transition: var(--transition-fast);
    position: relative;
    z-index: 1;
    color: var(--text-sys);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.skill-item h3.h3-skills {
    font-size: 1rem;
    position: relative;
    z-index: 1;
    color: var(--text-sys);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.skill-item:hover h3,
.skill-item:hover h3.h3-skills {
    color: var(--primary-light);
}

.se {
    counter-reset: course;
}

.course-card {
    counter-increment: course;
    position: relative;
    width: 100%;
    min-height: 410px;
    margin: 0 0 22px;
    padding: clamp(1.4rem, 3vw, 2.4rem);
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
    border: 1px solid var(--panel-border);
    border-radius: 28px;
    background:
        radial-gradient(circle at 3% 8%, rgba(225, 189, 100, 0.07), transparent 18rem),
        var(--panel);
    box-shadow: var(--shadow-md), inset 0 1px rgba(255, 255, 255, 0.045);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.course-card.reverse {
    grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
}

.course-card.reverse .course-img {
    grid-column: 1;
    grid-row: 1;
}

.course-card.reverse .course-text {
    grid-column: 2;
    grid-row: 1;
}

.course-card:hover {
    transform: translateY(-6px);
    border-color: rgba(225, 189, 100, 0.3);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(225, 189, 100, 0.06);
}

.course-card::before {
    content: '0' counter(course);
    position: absolute;
    top: 16px;
    color: rgba(225, 189, 100, 0.07);
    font-family: var(--unb);
    font-size: clamp(4.5rem, 10vw, 9rem);
    font-weight: 900;
    line-height: 1;
}

.course-card:nth-child(2n+1)::before {
    right: 24px;
}

.course-card:nth-child(2n)::before {
    left: 24px;
}

.course-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0.5;
}

.course-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.course-text h3 {
    margin-bottom: 0.8rem;
    max-width: 620px;
    color: var(--text-color);
    font-family: var(--unb);
    font-size: clamp(1.7rem, 3vw, 2.8rem);
    line-height: 1.15;
    letter-spacing: -0.045em;
}

.course-text p {
    max-width: 590px;
    margin-bottom: 1.3rem;
    color: var(--text-sys);
    font-size: 1rem;
    line-height: 1.75;
}

.course-text .cour-ver {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: .8rem;
    width: fit-content;
    margin-bottom: 1.4rem;
    padding: 7px 11px 7px 6px;
    border: 1px solid rgba(98, 210, 139, 0.18);
    border-radius: 99px;
    color: var(--text-sys);
    background: rgba(98, 210, 139, 0.055);
    font-size: 0.76rem;
    font-weight: 600;
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 10px;
    position: relative;
    top: -1px;
    width: 22px;
    height: 22px;
    color: var(--bg-color);
    background: #62d28b;
    box-shadow: 0 0 20px rgba(98, 210, 139, 0.18);
}

.course-text a {
    display: inline-flex;
    position: relative;
    color: var(--text-color);
    text-decoration: none;
    overflow: hidden;
    z-index: 1;
    gap: 8px;
    padding: 12px 18px;
    border: 1px solid rgba(225, 189, 100, 0.4);
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 700;
    transition: var(--transition);
}

.course-text a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    background: var(--primary-color);
    z-index: -1;
    transition: transform var(--transition);
    transform-origin: right center;
}

.course-text a::after {
    content: '\2197';
}

.course-text a:hover::before {
    transform: scaleX(1);
    transform-origin: left center;
}

.course-text a:hover {
    color: var(--bg-color);
    box-shadow: var(--gold-glow);
    transform: translateY(-4px);
}

.course-img {
    flex: 1;
    perspective: 1000px;
    position: relative;
    z-index: 1;
    align-self: stretch;
    min-height: 300px;
    border-radius: 20px;
    overflow: hidden;
}

.course-img img {
    width: 100%;
    transform-style: preserve-3d;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
    filter: saturate(0.88) contrast(1.04);
    transition: .2s ease;
}

.education-shell {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(290px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(1.25rem, 4vw, 5rem);
    align-items: start;
}

.education-summary {
    position: relative;
    min-height: 650px;
    padding: clamp(1.6rem, 3vw, 3.2rem);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    background:
        radial-gradient(circle at 18% 12%, rgba(225, 189, 100, 0.16), transparent 18rem),
        linear-gradient(145deg, rgba(225, 189, 100, 0.045), transparent 48%),
        #11120f;
    box-shadow: var(--shadow-md), inset 0 1px rgba(255, 255, 255, 0.055);
    overflow: hidden;
    isolation: isolate;
}

.education-summary::before {
    content: '';
    position: absolute;
    inset: auto -22% -28% auto;
    z-index: -1;
    width: min(30vw, 430px);
    aspect-ratio: 1;
    border: 1px solid rgba(225, 189, 100, 0.11);
    border-radius: 50%;
    box-shadow:
        0 0 0 35px rgba(225, 189, 100, 0.025),
        0 0 0 70px rgba(225, 189, 100, 0.016);
}

.education-summary::after {
    content: '02';
    position: absolute;
    right: 0.06em;
    bottom: -0.18em;
    z-index: -1;
    color: rgba(225, 189, 100, 0.055);
    font-family: var(--unb);
    font-size: clamp(8rem, 15vw, 15rem);
    font-weight: 900;
    line-height: 1;
}

.education-summary-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 2.4rem;
    display: grid;
    place-items: center;
    border: 1px solid rgba(225, 189, 100, 0.3);
    border-radius: 20px;
    color: #0a0b09;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    box-shadow: 0 16px 38px rgba(180, 139, 48, 0.2);
    font-size: 1.55rem;
    transform: rotate(-5deg);
}

.education-summary-label {
    margin-bottom: 0.85rem;
    color: var(--primary-light);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.education-summary h2 {
    max-width: 650px;
    margin-bottom: 1.2rem;
    color: var(--text-color);
    font-family: var(--unb);
    font-size: clamp(2rem, 3.5vw, 4.4rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.06em;
}

.education-summary>p {
    max-width: 580px;
    color: #9c9b94;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.75;
}

.learning-meter {
    position: relative;
    z-index: 1;
    margin-top: auto;
    padding-top: 2rem;
}

.learning-meter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: #aaa89f;
    font-size: 0.75rem;
}

.learning-meter-head strong {
    color: #7de19e;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.learning-meter-track {
    height: 5px;
    margin: 0.7rem 0 0.75rem;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.07);
    overflow: hidden;
}

.learning-meter-track span {
    display: block;
    width: 25%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--primary-dark), var(--primary-light));
    box-shadow: 0 0 18px rgba(225, 189, 100, 0.38);
}

.learning-meter small {
    color: #73736d;
    font-size: 0.7rem;
}

.education-list {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.education-list::before {
    content: '';
    position: absolute;
    top: 70px;
    bottom: 70px;
    left: 67px;
    z-index: 0;
    width: 1px;
    background: linear-gradient(var(--primary-color), rgba(225, 189, 100, 0.08));
}

.academic-row {
    position: relative;
    min-height: 205px;
    padding: clamp(1.4rem, 2.5vw, 2.3rem);
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: clamp(1rem, 2.4vw, 2.2rem);
    align-items: start;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    background: rgba(17, 18, 15, 0.82);
    box-shadow: var(--shadow-sm), inset 0 1px rgba(255, 255, 255, 0.035);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.academic-row::after {
    content: '';
    position: absolute;
    top: 0;
    left: 12%;
    width: 76%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(225, 189, 100, 0.5), transparent);
    opacity: 0;
    transition: opacity var(--transition);
}

.academic-row:hover {
    transform: translateX(8px);
    border-color: rgba(225, 189, 100, 0.27);
    background: rgba(225, 189, 100, 0.035);
    box-shadow: var(--shadow-md);
}

.academic-row:hover::after,
.academic-row.is-current::after {
    opacity: 1;
}

.academic-row.is-current {
    border-color: rgba(225, 189, 100, 0.22);
    background:
        linear-gradient(110deg, rgba(225, 189, 100, 0.07), transparent 38%),
        rgba(17, 18, 15, 0.88);
}

.academic-marker {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.academic-marker>span {
    color: #76756e;
    font-family: var(--unb);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.12em;
}

.academic-marker>i {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(225, 189, 100, 0.25);
    border-radius: 15px;
    color: var(--primary-light);
    background: #171814;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.28), 0 0 0 7px rgba(17, 18, 15, 0.95);
    font-size: 1rem;
    transition: transform var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.academic-row:hover .academic-marker>i,
.academic-row.is-current .academic-marker>i {
    color: #090a08;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
    transform: rotate(-5deg) scale(1.05);
}

.academic-body {
    min-width: 0;
    max-width: 76rem;
}

.academic-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 0.8rem;
}

.academic-year,
.academic-level,
.academic-status {
    padding: 6px 10px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 99px;
    color: #aaa89f;
    background: rgba(255, 255, 255, 0.025);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.academic-year {
    color: var(--primary-light);
    border-color: rgba(225, 189, 100, 0.22);
    background: rgba(225, 189, 100, 0.045);
}

.academic-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #9dd8b0;
    border-color: rgba(98, 210, 139, 0.17);
    background: rgba(98, 210, 139, 0.045);
}

.academic-status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #62d28b;
    box-shadow: 0 0 10px rgba(98, 210, 139, 0.55);
}

.academic-body h2 {
    margin-bottom: 0.5rem;
    color: var(--text-color);
    font-family: var(--unb);
    font-size: clamp(1.35rem, 2.2vw, 2.3rem);
    line-height: 1.18;
    letter-spacing: -0.045em;
}

.academic-institute {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.8rem;
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 700;
}

.academic-institute i {
    color: var(--primary-dark);
}

.academic-body>p {
    max-width: 64ch;
    margin-bottom: 1rem;
    color: #96958e;
    font-size: 0.88rem;
    line-height: 1.7;
}

.academic-modules {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.academic-modules span {
    padding: 6px 9px;
    border: 1px solid rgba(255, 255, 255, 0.065);
    border-radius: 8px;
    color: #88877f;
    background: rgba(255, 255, 255, 0.022);
    font-size: 0.67rem;
    font-weight: 600;
}

.academic-index {
    align-self: center;
    color: rgba(225, 189, 100, 0.055);
    font-family: var(--unb);
    font-size: clamp(4.5rem, 7vw, 8rem);
    font-weight: 900;
    line-height: 1;
}

@media (max-width: 1050px) {
    .education-shell {
        grid-template-columns: 1fr;
    }

    .education-summary {
        position: relative;
        top: auto;
        min-height: 430px;
    }

    .learning-meter {
        margin-top: 3rem;
    }
}

@media (max-width: 650px) {
    .education-summary {
        min-height: 0;
        padding: 1.4rem;
        border-radius: 22px;
    }

    .education-summary-icon {
        width: 54px;
        height: 54px;
        margin-bottom: 1.6rem;
        border-radius: 16px;
    }

    .education-summary h2 {
        font-size: clamp(1.75rem, 8vw, 2.55rem);
    }

    .learning-meter {
        margin-top: 2rem;
    }

    .education-list::before {
        left: 41px;
    }

    .academic-row {
        padding: 1.15rem 1rem;
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 0.8rem;
        border-radius: 20px;
    }

    .academic-row:hover {
        transform: translateY(-4px);
    }

    .academic-marker>i {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }

    .academic-index {
        display: none;
    }

    .academic-body h2 {
        font-size: 1.18rem;
    }

    .academic-body>p {
        font-size: 0.82rem;
    }
}

@media (max-width:1300px) {
    .h-l h2 {
        font-size: min(7.5vw, 10rem);
    }

    .h-b a {
        padding: 15px 38px;
        font-size: 1.5rem;
    }

    .h-l h3 {
        margin-bottom: 1rem;
    }

    .h-l p {
        margin-bottom: 1rem;
    }
}

@media (max-width:1200px) {
    .h-l h1 {
        font-size: min(6.4vw, 10rem);
    }

    .h-l h2 {
        font-size: min(6vw, 10rem);
    }

    .h-b a {
        padding: 12px 28px;
        font-size: 1rem;
    }

    .section {
        padding: 30px 10px 30px 10px;
    }

    .section h1 {
        padding: 8px 20px;
        margin-bottom: 2rem;
    }

    .about-sec {
        width: 80%;
        padding: 80px 25px;
    }

    .stat-number {
        color: var(--primary-light);
        font-family: var(--unb);
        font-size: clamp(2rem, 3vw, 3rem);
        font-weight: 700;
        letter-spacing: -0.06em;
    }

    .project-card,
    .project-card:nth-child(1),
    .project-card:nth-child(2) {
        grid-column: span 6;
    }

    .project-card:last-child {
        grid-column: 4 / span 6;
    }

    .course-card,
    .course-card.reverse {
        grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
    }
}

@media (max-width:786px) {
    .side-nav {
        display: none;
    }

    .murquee-items {
        font-size: min(4vw, 1rem);
        margin-right: 20px;
    }

    .menu a {
        font-size: min(12vw, 6rem);
    }

    .about-sec {
        width: 100%;
        padding: 40px 25px;
    }

    .about-floating-icons {
        display: none;
    }

    .section.about {
        padding-top: 60px;
    }

    .about-text {
        text-align: start;
        font-size: min(7vw, 5rem);
        line-height: 1;
    }

    .stats-section {
        grid-template-columns: 1fr;
        padding: 20px 0px 0px 0px;
    }

    footer {
        gap: 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .f-l {
        width: 100%;
        padding: 0px 12px;
    }

    .f-r {
        display: none;
    }

    .contact-container {
        flex-direction: column;
    }

    .footer-bottom {
        padding: 15px 20px;
        font-size: 0.85rem;
        text-align: center;
    }

    .project-card,
    .project-card:nth-child(1),
    .project-card:nth-child(2),
    .project-card:last-child {
        grid-column: 1 / -1;
    }

    .project-img,
    .project-card:nth-child(-n+2) .project-img {
        height: 210px;
    }

    .project-content {
        padding: 17px 18px 20px;
    }

    .skills-section,
    .skills-section.ss1 {
        padding: 1rem;
        border-radius: 20px;
    }

    .skills-section h2 {
        line-height: 1.35;
    }

    .skill-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .skill-item {
        min-height: 126px;
    }

    .course-card,
    .course-card.reverse {
        min-height: 0;
        grid-template-columns: 1fr;
    }

    .course-card.reverse .course-text {
        grid-column: auto;
        grid-row: auto;
        order: 1;
    }

    .course-card.reverse .course-img {
        grid-column: auto;
        grid-row: auto;
        order: 2;
    }

    .course-img {
        min-height: 320px;
    }
}

@media (max-width:530px) {
    .home {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 35px 12px 12px;
    }

    .menu {
        width: 100%;
        padding: 1rem;
    }

    .h-l {
        align-items: center;
    }

    .h-l h1 {
        text-align: center;
        font-size: 2.4rem;
    }

    .h-l h2 {
        font-size: 2.3rem;
        text-align: center;
    }

    .h-l h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .h-l p {
        font-size: 1rem;
        text-align: center;
    }

    .course-card {
        padding: 1rem;
        border-radius: 21px;
    }

    .course-text {
        padding: 0.35rem;
    }

    .course-text h3 {
        font-size: 1.55rem;
    }

    .course-img {
        min-height: 230px;
        border-radius: 15px;
    }

    .course-img img {
        border-radius: 15px;
    }
}

@media (max-height:600px) {
    .menu a {
        font-size: min(5rem, 10vw);
    }
}

@media (max-height:460px) {
    .menu a {
        font-size: min(3rem, 10vw);
    }
}