:root {
    --bg-color: #0a0a0a;
    --text-color: #ffffff;
    --text-muted: #a0a0a0;
    --accent-gold: #c5a572;
    --accent-red: #ff4d4d;
    --accent-blue: #3b82f6;
    --font-main: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    --transition-smooth: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-gold);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4b68a;
}

/* 3D Animation Background */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
}

/* Background Grid Lines - Enhanced */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    display: flex;
    justify-content: space-evenly;
    z-index: 1;
    opacity: 0.4;
}

.grid-line {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(197, 165, 114, 0.2), transparent);
}

/* Animated gradient overlay */
.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(197, 165, 114, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.content {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Enhanced Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197, 165, 114, 0.1);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 1rem 5%;
    background: rgba(10, 10, 10, 0.95);
}

.logo {
    display: flex;
    flex-direction: column;
    text-transform: lowercase;
    font-weight: 800;
    font-family: var(--font-heading);
    letter-spacing: -1px;
    line-height: 0.9;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

.logo .name {
    font-size: 1.2rem;
    letter-spacing: 0;
    color: var(--accent-gold);
}

.logo .location {
    font-size: 0.55rem;
    padding-top: 4px;
    letter-spacing: 6px;
    align-self: flex-end;
    opacity: 0.7;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-gold);
}

.nav-links a:hover::before {
    width: 100%;
}

.contact-btn {
    background: linear-gradient(135deg, var(--accent-gold), #d4b68a);
    color: var(--bg-color);
    padding: 0.8rem 2.2rem;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #d4b68a, var(--accent-gold));
    transition: left 0.4s ease;
    z-index: -1;
}

.contact-btn:hover::before {
    left: 0;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(197, 165, 114, 0.3);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 101;
}

/* Hero Section Enhanced */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    position: relative;
}

.hero-content {
    max-width: 1000px;
    padding-top: 160px;
    padding-bottom: 80px;
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-status {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.dot {
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, var(--accent-red), #ff6b6b);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 2rem;
    letter-spacing: -2px;
}

.hero-title span {
    display: block;
    background: linear-gradient(135deg, #fff, var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .outline {
    background: none;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
    margin-bottom: 3.5rem;
}

.explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, #fff, #f0f0f0);
    color: var(--bg-color);
    padding: 1.2rem 3rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    border: none;
    cursor: pointer;
}

.explore-btn:hover {
    padding-right: 4rem;
    box-shadow: 0 20px 40px rgba(197, 165, 114, 0.3);
}

.explore-btn svg {
    width: 1.2rem;
    height: 1.2rem;
    position: absolute;
    right: 1.8rem;
    transition: all 0.4s ease;
}

.explore-btn:hover svg {
    transform: translateX(8px);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    z-index: 10;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

.scroll-text {
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

/* Intelligent Design Section Enhanced */
.design-section {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    min-height: 80vh;
    padding: 10rem 0;
}

.design-section h2 {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    line-height: 1;
    text-transform: uppercase;
    font-weight: 900;
    max-width: 15ch;
}

.design-section h2 span:not(.outline) {
    background: linear-gradient(135deg, #fff, var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.design-section h2 .outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(197, 165, 114, 0.3);
}

.heritage-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: flex-start;
}

.team-image-container {
    position: relative;
    width: 100%;
    height: 497px;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.team-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 2;
}

.team-image-container:hover::before {
    left: 100%;
}

.team-image-container img {
    width: 100%;
    height: 497px;
    object-fit: cover;
    filter: grayscale(0.8) contrast(1.2);
    transition: transform 0.8s ease, filter 0.5s ease;
}

.team-image-container:hover img {
    transform: scale(1.08);
    filter: grayscale(0.3) contrast(1.1);
}

.fast-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 0.9;
    z-index: 3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.fast-overlay .small {
    font-size: 1.5rem;
    display: block;
    color: var(--accent-gold);
}

.fast-overlay .large {
    font-size: 4rem;
    text-transform: uppercase;
    color: #fff;
}

.team-redirect {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 5;
    width: 50px;
    height: 50px;
    background: var(--accent-gold);
    color: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 50%;
}

.team-redirect i {
    font-size: 1.2rem;
    transition: transform 0.4s ease;
}

.team-redirect:hover {
    background: #fff;
    transform: scale(1.1) rotate(90deg);
}

.heritage-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.heritage-text strong {
    color: var(--accent-gold);
    font-weight: 600;
}

.stat-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
    border-top: 1px solid rgba(197, 165, 114, 0.2);
    padding-top: 2.5rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-gold);
    transition: width 0.3s ease;
}

.stat-item:hover::after {
    width: 60px;
}

.stat-item .num {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--accent-gold), #e5c28e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.stat-item .label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Expertise Grid Enhanced */
.section-header {
    margin-bottom: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.section-title {
    font-size: 3rem;
    text-transform: uppercase;
    font-weight: 900;
    font-family: var(--font-heading);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(197, 165, 114, 0.1);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(197, 165, 114, 0.1), transparent);
    transition: left 0.6s ease;
}

.expertise-card:hover::before {
    left: 100%;
}

.expertise-card:hover {
    border-color: var(--accent-gold);
    transform: translateY(-15px);
    box-shadow: 0 30px 40px rgba(0, 0, 0, 0.4);
}

.card-img {
    width: 100%;
    aspect-ratio: 16/12;
    overflow: hidden;
    position: relative;
}

.card-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.1);
    transition: all 0.6s ease;
}

.expertise-card:hover .card-img img {
    transform: scale(1.1);
    filter: grayscale(0.4) contrast(1.2);
}

.card-content {
    padding: 2rem;
    position: relative;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
}

.card-content h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 0.8rem;
    color: var(--accent-gold);
    letter-spacing: 1px;
}

.card-content p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.8rem;
}

.service-btn {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    border: 1px solid var(--accent-gold);
    color: var(--accent-gold);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    background: transparent;
    border-radius: 30px;
}

.expertise-card:hover .service-btn {
    opacity: 1;
    transform: translateY(0);
    background: var(--accent-gold);
    color: var(--bg-color);
}

.service-btn:hover {
    background: #fff !important;
    border-color: #fff !important;
    color: var(--bg-color) !important;
}

/* Project Slider Enhanced */
.slider-viewport {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.5);
}

.slider-track {
    display: flex;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
    gap: 2rem;
}

.project-slide {
    min-width: calc(100% - 4rem);
    flex-shrink: 0;
    position: relative;
    aspect-ratio: 21/9;
    overflow: hidden;
    border-radius: 8px;
}

@media (max-width: 768px) {
    .project-slide {
        min-width: 100%;
        aspect-ratio: 4/5;
    }
}

.project-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.7) contrast(1.1);
    transition: all 0.8s ease;
}

.project-slide:hover img {
    filter: grayscale(0.2) contrast(1.2);
    transform: scale(1.05);
}

.project-slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    z-index: 1;
}

.slide-info {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    z-index: 2;
    text-align: left;
    max-width: 70%;
}

.project-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent-gold);
    margin-bottom: 0.8rem;
    display: block;
}

.project-name {
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.view-project-btn {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.8rem 2rem;
    background: var(--accent-gold);
    color: var(--bg-color);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    border-radius: 30px;
}

.project-slide:hover .view-project-btn {
    opacity: 1;
    transform: translateY(0);
}

.view-project-btn:hover {
    background: #fff;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.dot-indicators {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.dot-btn {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot-btn:hover {
    background: rgba(197, 165, 114, 0.5);
}

.dot-btn.active {
    background: var(--accent-gold);
    transform: scale(1.3);
    border-color: rgba(255, 255, 255, 0.3);
}

/* CTA Footer Enhanced */
.cta-footer {
    border-top: 1px solid rgba(197, 165, 114, 0.2);
    padding-top: 8rem;
    padding-bottom: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 5rem;
}

.cta-text h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 3rem;
    font-family: var(--font-heading);
}

.cta-text h2 span:not(.outline) {
    background: linear-gradient(135deg, #fff, var(--accent-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-text h2 .outline {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    color: var(--text-muted);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid var(--accent-gold);
}

.contact-info strong {
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info i {
    color: var(--accent-gold);
    width: 20px;
}

.social-side {
    position: relative;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    max-width: 400px;
    margin-left: auto;
}

.social-grid::before,
.social-grid::after {
    content: '';
    position: absolute;
    background: rgba(197, 165, 114, 0.2);
    z-index: 0;
}

.social-grid::before {
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translateX(-50%);
}

.social-grid::after {
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    transform: translateY(-50%);
}

.social-box {
    width: 100%;
    aspect-ratio: 1;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--text-muted);
    border: 1px solid rgba(197, 165, 114, 0.1);
    transition: all 0.4s ease;
    z-index: 2;
    border-radius: 8px;
    text-decoration: none;
}

.social-box:hover {
    background: var(--accent-gold);
    color: var(--bg-color);
    border-color: var(--accent-gold);
    transform: scale(1.1) rotate(5deg);
}

.copyright {
    text-align: right;
    margin-top: 4rem;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Responsive Design */
@media (max-width: 1024px) {

    .design-section,
    .cta-footer,
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 4rem;
    }

    section {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-right {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        transition: 0.4s ease;
        z-index: 100;
        padding: 3rem;
        backdrop-filter: blur(10px);
        border-left: 1px solid rgba(197, 165, 114, 0.2);
    }

    .nav-right.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero-content {
        padding-top: 120px;
    }

    .hero-description {
        font-size: 1rem;
    }

    .heritage-block {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .fast-overlay .large {
        font-size: 3rem;
    }

    .social-grid {
        margin: 0 auto;
    }

    .cta-text h2 {
        font-size: 2.5rem;
    }

    .project-name {
        font-size: 1.5rem;
    }

    .slide-info {
        left: 1.5rem;
        bottom: 1.5rem;
        max-width: 85%;
    }
}