html {
    scroll-behavior: smooth;
}

/* --- 1. VARIABLES --- */
:root {
    --bg-color: #050505;
    --text-main: #ffffff;
    --text-muted: #86868b;
    --card-bg: #111;
    --accent: #d9c38c;
    --border: rgba(255, 255, 255, 0.1);
    --nav-bg: rgba(22, 22, 23, 0.8);
    --loader-bg: #000;
    --font-main: 'Montserrat', sans-serif;
    --font-display: 'Playfair Display', serif;
}

body.light-mode {
    --bg-color: #f2f2f7;
    --text-main: #1d1d1f;
    --text-muted: #6e6e73;
    --card-bg: #ffffff;
    --accent: #b08d55;
    --border: rgba(0, 0, 0, 0.08);
    --nav-bg: rgba(255, 255, 255, 0.8);
    --loader-bg: #f2f2f7;
}

body.rtl-mode {
    --font-main: 'Cairo', sans-serif;
    --font-display: 'Cairo', sans-serif;
    direction: rtl;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    transition: background-color 0.5s, color 0.5s;
}

h1,
h2,
p,
a,
button {
    font-family: inherit;
}

/* --- 2. LAYERS --- */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9900;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    transition: opacity 0.5s;
}

body.no-noise .noise-overlay {
    opacity: 0 !important;
}

/* Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 100001;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--text-main);
    transition: all 0.2s;
    display: flex;
    justify-content: center;
    align-items: center;
}

body.hover-active .cursor-outline {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
}

.cursor-text {
    font-size: 10px;
    font-weight: 800;
    color: #fff;
    opacity: 0;
    letter-spacing: 1px;
}

body.view-active .cursor-outline {
    width: 90px;
    height: 90px;
    background-color: var(--accent);
    border: none;
}

body.view-active .cursor-text {
    opacity: 1;
}

/* Shutter */
.shutter-layer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9998;
    pointer-events: none;
    display: flex;
    flex-direction: column;
}

.shutter-top,
.shutter-bottom {
    width: 100%;
    height: 50%;
    background-color: #fff;
    transform: scaleY(0);
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
}

.shutter-top {
    transform-origin: top;
}

.shutter-bottom {
    transform-origin: bottom;
}

.shutter-layer.active .shutter-top,
.shutter-layer.active .shutter-bottom {
    transform: scaleY(1);
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--loader-bg);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s cubic-bezier(0.87, 0, 0.13, 1);
}

.logo-animation-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 65vw;
    max-width: 700px;
}

@media (max-width: 768px) {
    .logo-animation-container {
        width: 90vw;
    }
}

.khalid-svg {
    width: 100%;
    height: auto;
    display: block; /* Guides the container size */
}

.albdawy-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

.letter-path {
    stroke: var(--accent);
    stroke-width: 0.25mm;
    fill: transparent;
    fill-rule: evenodd;
    opacity: 0;
    transform: translateX(-30px);
    animation: revealLetter 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               fillInside 0.5s ease-in-out forwards;
    animation-delay: calc(var(--i) * 0.12s + 0.2s),
                     calc(var(--i) * 0.12s + 0.6s);
}

@keyframes revealLetter {
    0% {
        opacity: 0;
        transform: translateX(-30px);
        clip-path: inset(0 100% 0 0);
    }
    40% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        clip-path: inset(0 0% 0 0);
    }
}

@keyframes fillInside {
    to {
        fill: var(--accent);
    }
}


.slide-up {
    transform: translateY(-100%);
}

/* --- CONTROLS --- */
.controls-wrapper {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 9999;
}

body.rtl-mode .controls-wrapper {
    right: auto;
    left: 30px;
}

.control-btn {
    border-radius: 50%;
    cursor: pointer;
    background: radial-gradient(circle at 30% 30%, #444, #000);
    box-shadow: inset -5px -5px 15px rgba(255, 255, 255, 0.1), 5px 5px 15px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s;
}

body.light-mode .control-btn {
    background: radial-gradient(circle at 30% 30%, #ffffff, #d1d1d6);
    box-shadow: inset -3px -3px 10px rgba(0, 0, 0, 0.1), 5px 10px 20px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.theme-toggle {
    width: 60px;
    height: 60px;
}

.theme-toggle i {
    font-size: 1.4rem;
    color: #d9c38c;
    filter: drop-shadow(0 0 5px rgba(217, 195, 140, 0.5));
    transition: 0.5s;
}

body.light-mode .theme-toggle i {
    color: #1d1d1f;
    filter: none;
}

.theme-toggle:hover {
    transform: scale(1.1) translateY(-3px);
}

.mini-toggle {
    width: 40px;
    height: 40px;
    opacity: 0.7;
}

.mini-toggle:hover {
    opacity: 1;
    transform: scale(1.1);
}

.mini-toggle i {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.mini-toggle.disabled i {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.5;
}

.lang-text {
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
}

/* --- LAYOUT --- */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 44px;
    /* <--- UPDATED: Changed from 60px to 44px */
    background: var(--nav-bg);
    backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    display: flex;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease 0.5s;
}

.nav-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
}

.brand-area {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    height: 40px;
    cursor: pointer;
}

.brand-svg {
    height: 20px;
    width: auto;
    filter: invert(1);
    transition: 0.3s;
}

body.light-mode .brand-svg {
    height: 20px;
    width: auto;
    filter: invert(1);
    transition: 0.3s;
}

.brand-path {
    fill: var(--text-main);
    stroke: none;
}

.brand-icon {
    color: var(--accent);
    font-size: 1.1rem;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links li a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
    transition: 0.3s;
    position: relative;
}

.nav-links li a:hover {
    opacity: 1;
    color: var(--accent);
}

.nav-links li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s;
}

.nav-links li a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--text-main);
    color: var(--bg-color) !important;
    padding: 4px 14px;
    border-radius: 20px;
    font-weight: 700 !important;
    opacity: 1 !important;
    font-size: 0.75rem !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.nav-cta::after {
    display: none !important;
}

.menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--text-main);
    cursor: pointer;
}

header {
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 10%;
    position: relative;
    margin-top: -44px;
    /* <--- UPDATED: Changed from -60px to -44px to match nav height */
}

.hero-content {
    z-index: 10;
    pointer-events: none;
}

h1 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 12vw, 9rem);
    line-height: 0.9;
    letter-spacing: 8px;
    color: var(--text-main);
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s ease 0.5s;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

body.rtl-mode h1 {
    font-family: 'Cairo', sans-serif;
    font-weight: 900;
    line-height: 1.2;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeIn 1s ease 3s forwards;
    transition: opacity 0.5s;
}

.scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--text-muted);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 2px;
    height: 6px;
    background: var(--accent);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 6px;
        opacity: 1;
    }

    100% {
        top: 18px;
        opacity: 0;
    }
}

.scroll-text {
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

#canvas-container {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    opacity: 0.8;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

/* --- GRID & CARDS --- */
#works {
    padding: 100px 10%;
    position: relative;
    z-index: 2;
}

.section-header {
    margin-bottom: 80px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-header h2 {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--text-main);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.project-card-link {
    text-decoration: none;
    display: block;
}

.project-card {
    position: relative;
    height: 65vh;
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    transition: border-radius 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    background: var(--card-bg);
    transform: translate3d(0, 0, 0);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    backface-visibility: hidden;
    will-change: border-radius;
}

body.light-mode .project-card {
    border: 1px solid var(--border);
}

.project-card:hover,
.project-card.force-hover {
    border-radius: 40px;
}

.img-container {
    width: 100%;
    height: 115%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: filter 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
    transform: scale(1.001) translateZ(0);
    backface-visibility: hidden;
    will-change: transform, filter;
}

.project-card:hover .img-container img,
.project-card.force-hover .img-container img {
    filter: grayscale(0%);
    transform: scale(1.05) translateZ(0);
}

.card-scrim {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 40%, transparent 100%);
    z-index: 2;
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity;
}

.project-card:hover .card-scrim {
    opacity: 1;
}

.card-info {
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 3;
    pointer-events: none;
}

body.rtl-mode .card-info {
    left: auto;
    right: 40px;
    text-align: right;
}

.project-title {
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: #ffffff;
    opacity: 0;
    transform: translateY(20px) translateZ(0);
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    text-transform: uppercase;
    word-wrap: break-word;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    will-change: transform, opacity;
}

.project-card:hover .project-title,
.project-card.force-hover .project-title {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

.staggered-margin {
    margin-top: 100px;
}

footer {
    background-color: transparent;
    padding: 80px 10% 40px;
    position: relative;
    z-index: 5;
    border-top: 1px solid var(--border);
    backdrop-filter: blur(5px);
    transition: border-color 0.5s ease;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--text-main);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-col p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

.personal-brand {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.footer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    filter: grayscale(100%);
    transition: 0.3s;
}

.personal-brand:hover .footer-avatar {
    filter: grayscale(0%);
    border-color: var(--accent);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    transition: 0.3s;
    font-size: 1.1rem;
}

.social-icons a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
    transform: translateY(-3px);
}

.social-svg {
    width: 20px;
    height: 20px;
    transition: filter 0.3s;
}

body.light-mode .social-icons a .social-svg {
    filter: brightness(0);
}

body:not(.light-mode) .social-icons a .social-svg {
    filter: invert(1);
}

.social-icons a:hover .social-svg {
    filter: brightness(0) invert(1) !important;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.2s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

body.rtl-mode .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--bg-color);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.5s;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-links {
    list-style: none;
    text-align: center;
}

.mobile-links li {
    margin: 20px 0;
    overflow: hidden;
}

.mobile-links a {
    display: block;
    font-size: 2rem;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 800;
    transform: translateY(100%);
    transition: 0.5s;
}

.mobile-nav-overlay.active .mobile-links a {
    transform: translateY(0);
}

@media (hover: none) and (pointer: coarse) {
    * {
        cursor: auto !important;
    }

    .cursor-dot,
    .cursor-outline {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .grid {
        gap: 30px;
    }

    .staggered-margin {
        margin-top: 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
    }

    .staggered-margin {
        margin-top: 0;
    }

    .project-card {
        height: 50vh;
    }

    .nav-links {
        display: none;
    }

    .menu-btn {
        display: block;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .controls-wrapper {
        bottom: 20px;
        right: 20px;
    }

    body.rtl-mode .controls-wrapper {
        right: auto;
        left: 20px;
    }

    .cta-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }

    .gyro-btn {
        display: flex !important;
    }
}

@media (max-width: 900px) {
    .cta-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}

/* Gyro Button Styling */
.gyro-btn {
    display: none;
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    width: 44px;
    height: 44px;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-main);
    justify-content: center;
    align-items: center;
    cursor: pointer;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

body.rtl-mode .gyro-btn {
    left: auto;
    right: 30px;
}

.gyro-btn.hidden {
    display: none !important;
}

/* Contact Popup */
.contact-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    z-index: 100000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.contact-popup-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.contact-popup-content {
    background: rgba(20, 20, 20, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s ease, border-color 0.4s;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    max-width: 90%;
    width: 450px;
}

body.light-mode .contact-popup-content {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.contact-popup-overlay.active .contact-popup-content {
    transform: translateY(0) scale(1);
}

.close-popup {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s;
}

body.rtl-mode .close-popup {
    right: auto;
    left: 20px;
}

.close-popup:hover {
    color: var(--accent);
}

.contact-popup-content h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.contact-popup-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.popup-social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.popup-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.light-mode .popup-social-icons a {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.popup-social-icons a:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-5px);
    border-color: var(--accent);
}

body.light-mode .popup-social-icons a .social-svg {
    filter: brightness(0);
}

body:not(.light-mode) .popup-social-icons a .social-svg {
    filter: invert(1);
}

.popup-social-icons a:hover .social-svg {
    filter: brightness(0) !important;
}

/* CTA Button Styling */
.cta-btn {
    opacity: 0;
    transform: translateY(50px);
    pointer-events: auto;
    display: inline-block;
    margin-top: 20px;
    padding: 15px 40px;
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--border);
    border-radius: 30px;
    font-family: var(--font-main);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 1s ease 0.7s, transform 1s ease 0.7s, color 0.3s, border-color 0.3s, background 0.3s;
    backdrop-filter: blur(5px);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

body.light-mode .cta-btn {
    border-color: var(--border);
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent);
    z-index: -1;
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cta-btn:hover {
    color: #000;
    border-color: var(--accent);
}

.cta-btn:hover::before {
    width: 100%;
}

@keyframes fadeInUpCTA {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

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

@media (max-width: 900px) {
    .cta-btn {
        padding: 10px 25px;
        font-size: 0.85rem;
    }
}
