/* ================================================
   MODERN PORTFOLIO - DESIGN SYSTEM
   Base: Inter Font, Deep Blue Theme, Premium Glassmorphism
   Inspired by: Modern Finance/Tech UI Design
   ================================================ */

/* ===== CORE RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, #070b14 0%, #0a1628 50%, #0d1a30 100%);
    background-attachment: fixed;
    color: #c8d5e3;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

::selection {
    background: rgba(59, 130, 246, 0.4);
    color: #e0f2fe;
}

html {
    scroll-behavior: smooth;
}

/* ===== GLASSMORPHISM PREMIUM ===== */
.glass-panel {
    background: linear-gradient(135deg, rgba(20, 40, 80, 0.4) 0%, rgba(10, 25, 50, 0.6) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.15);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05),
        0 0 40px rgba(59, 130, 246, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.glass-panel-hover:hover {
    background: linear-gradient(135deg, rgba(30, 50, 90, 0.5) 0%, rgba(15, 30, 60, 0.7) 100%);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.08),
        0 0 60px rgba(59, 130, 246, 0.2),
        0 0 100px rgba(0, 212, 255, 0.1);
    transform: translateY(-4px);
}

/* ===== SMOOTH FADE IN ANIMATION ===== */
@keyframes globalFadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.fade-in-page {
    animation: globalFadeIn 0.8s ease-out forwards;
}

/* ===== REVEAL ON SCROLL ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== GLOW EFFECTS - PLANET ARC STYLE ===== */
.hero-glow {
    background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
}

.glow-orb {
    position: fixed;
    top: -300px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.25) 0%, rgba(0, 212, 255, 0.1) 40%, transparent 70%);
    filter: blur(80px);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    animation: orbPulse 10s ease-in-out infinite;
}

/* Planet Arc Effect - Bottom Glow */
.planet-arc {
    position: fixed;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(59, 130, 246, 0.15) 0%, rgba(0, 212, 255, 0.08) 30%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

@keyframes orbPulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1.1);
    }
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #00d4ff 50%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

/* ===== NAVIGATION ===== */
.navbar-modern {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    background: linear-gradient(180deg, rgba(7, 11, 20, 0.95) 0%, rgba(10, 22, 40, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-link-modern {
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 300;
    transition: color 0.3s;
    text-decoration: none;
    padding: 0.5rem 1rem;
}

.nav-link-modern:hover {
    color: #ffffff;
}

.logo-modern {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    text-decoration: none;
}

.logo-circle {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    border: 1px solid #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6), 0 0 30px rgba(0, 212, 255, 0.2);
}

.logo-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #00d4ff 100%);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.8);
}

.logo-text {
    font-weight: 500;
    color: #ffffff;
    letter-spacing: -0.01em;
}

/* ===== BUTTONS ===== */
.btn-modern {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #0ea5e9 100%);
    color: #ffffff;
    font-size: 0.875rem;
    padding: 0.625rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.4s;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4), 0 0 40px rgba(0, 212, 255, 0.15);
    text-decoration: none;
    display: inline-block;
}

.btn-modern:hover {
    background: linear-gradient(135deg, #2563eb 0%, #60a5fa 50%, #38bdf8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.5), 0 0 60px rgba(0, 212, 255, 0.25);
}

.btn-glass {
    background: linear-gradient(135deg, rgba(15, 30, 60, 0.4) 0%, rgba(10, 20, 45, 0.6) 100%);
    color: #ffffff;
    font-size: 1rem;
    padding: 0.875rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    border: 1px solid rgba(59, 130, 246, 0.2);
    cursor: pointer;
    transition: all 0.4s;
    backdrop-filter: blur(20px);
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.1);
}

.btn-glass:hover {
    background: linear-gradient(135deg, rgba(30, 50, 90, 0.5) 0%, rgba(20, 40, 70, 0.7) 100%);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2), 0 0 60px rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

/* ===== SHINY CTA BUTTON (Premium Cyan Glow) ===== */
@property --gradient-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

.shiny-cta {
    --gradient-angle: 0deg;
    --gradient-shine: #00d4ff;
    position: relative;
    overflow: hidden;
    border-radius: 9999px;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
    background: linear-gradient(135deg, #0a1628 0%, #0d1f3c 100%) padding-box,
        conic-gradient(from var(--gradient-angle),
            transparent 0%,
            #1e40af 5%,
            var(--gradient-shine) 15%,
            #3b82f6 30%,
            transparent 40%,
            transparent 100%) border-box;
    border: 2px solid transparent;
    box-shadow:
        inset 0 0 20px rgba(59, 130, 246, 0.1),
        0 0 30px rgba(59, 130, 246, 0.3),
        0 0 60px rgba(0, 212, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s;
    z-index: 0;
    animation: border-spin 3s linear infinite;
}

.shiny-cta:hover {
    box-shadow:
        inset 0 0 30px rgba(59, 130, 246, 0.15),
        0 0 50px rgba(59, 130, 246, 0.4),
        0 0 100px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

@keyframes border-spin {
    to {
        --gradient-angle: 360deg;
    }
}

.shiny-cta:active {
    transform: translateY(1px);
}

/* ===== HERO SECTION ===== */
.hero-section {
    text-align: center;
    max-width: 80rem;
    margin: 0 auto 6rem;
    padding: 0 1rem;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.1;
    color: #ffffff;
    font-weight: 200;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #94a3b8;
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 2.5rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #93c5fd;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.25) 0%, rgba(59, 130, 246, 0.15) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 9999px;
    padding: 0.35rem 1rem;
    margin-bottom: 2rem;
    transition: all 0.4s;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
}

.badge-modern:hover {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.4) 0%, rgba(59, 130, 246, 0.25) 100%);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.25), 0 0 50px rgba(0, 212, 255, 0.1);
}

/* ===== PING ANIMATION ===== */
.ping-indicator {
    position: relative;
    display: flex;
    height: 0.5rem;
    width: 0.5rem;
}

.ping-outer {
    position: absolute;
    display: inline-flex;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background: #38bdf8;
    opacity: 0.75;
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.ping-inner {
    position: relative;
    display: inline-flex;
    border-radius: 50%;
    height: 0.5rem;
    width: 0.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #00d4ff 100%);
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.8);
}

/* ===== CARDS - PREMIUM GLASSMORPHISM ===== */
.card-modern {
    background: linear-gradient(135deg, rgba(15, 30, 60, 0.5) 0%, rgba(10, 22, 45, 0.7) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 1.5rem;
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.05),
        0 0 30px rgba(59, 130, 246, 0.1);
}

.card-modern:hover {
    background: linear-gradient(135deg, rgba(20, 40, 75, 0.6) 0%, rgba(15, 30, 55, 0.8) 100%);
    border-color: rgba(59, 130, 246, 0.35);
    transform: translateY(-6px);
    box-shadow:
        inset 0 1px 0 0 rgba(255, 255, 255, 0.08),
        0 10px 40px rgba(59, 130, 246, 0.2),
        0 0 60px rgba(0, 212, 255, 0.1);
}

/* ===== ICON BOX (Skills) ===== */
.icon-box-modern {
    position: relative;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(12, 25, 50, 0.5) 0%, rgba(8, 18, 38, 0.7) 100%);
    border: 1px solid rgba(59, 130, 246, 0.12);
    border-radius: 1.5rem;
    transition: all 0.4s;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.08);
}

.icon-box-modern:hover {
    background: linear-gradient(135deg, rgba(18, 35, 65, 0.6) 0%, rgba(12, 25, 50, 0.8) 100%);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-6px);
    box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15), 0 0 50px rgba(0, 212, 255, 0.08);
}

.icon-box-number {
    font-size: 3rem;
    font-weight: 200;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3) 0%, rgba(0, 212, 255, 0.2) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
}

.icon-box-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.icon-box-text {
    font-size: 0.875rem;
    color: #94a3b8;
    font-weight: 300;
}

/* ===== PORTFOLIO / WORK CARDS ===== */
.portfolio-card-modern {
    background: linear-gradient(135deg, rgba(12, 25, 50, 0.6) 0%, rgba(8, 18, 38, 0.8) 100%);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.08);
}

.portfolio-card-modern:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow:
        0 20px 50px rgba(59, 130, 246, 0.25),
        0 0 80px rgba(0, 212, 255, 0.12);
}

.portfolio-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
    transition: transform 0.5s, filter 0.5s;
    filter: brightness(0.95) saturate(1.1);
}

.portfolio-card-modern:hover .portfolio-image {
    transform: scale(1.08);
    filter: brightness(1.05) saturate(1.2);
}

.portfolio-info-modern {
    padding: 1.5rem;
    background: linear-gradient(180deg, rgba(7, 11, 20, 0.7) 0%, rgba(10, 18, 32, 0.9) 100%);
}

.portfolio-title-modern {
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.portfolio-card-modern:hover .portfolio-title-modern {
    color: #60a5fa;
}

.portfolio-tag {
    display: inline-block;
    font-size: 0.625rem;
    padding: 0.25rem 0.625rem;
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.3) 0%, rgba(59, 130, 246, 0.2) 100%);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 0.5rem;
    margin-right: 0.375rem;
    margin-bottom: 0.375rem;
    font-weight: 500;
    transition: all 0.3s;
}

.portfolio-tag:hover {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.5) 0%, rgba(59, 130, 246, 0.35) 100%);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.2);
}

/* ===== METRICS / STATS ===== */
.metrics-section {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(15, 23, 42, 0.2);
    padding: 3rem 0;
}

.metric-item {
    text-align: center;
    transition: all 0.3s;
}

.metric-value {
    font-size: 2rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.metric-item:hover .metric-value {
    color: #818cf8;
}

.metric-label {
    font-size: 0.875rem;
    font-weight: 300;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ===== TIMELINE / EXPERIENCE ===== */
.timeline-modern {
    position: relative;
    padding-left: 2rem;
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-date {
    font-size: 0.875rem;
    color: #818cf8;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.timeline-text {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.6;
}

/* ===== FOOTER ===== */
.footer-modern {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #020617;
    padding: 4rem 0 3rem;
}

.footer-link {
    color: #94a3b8;
    font-size: 0.875rem;
    font-weight: 300;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #818cf8;
}

.footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

/* ===== UTILITIES ===== */
.text-glow {
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.bg-slate-950 {
    background-color: #020617;
}

.bg-slate-900 {
    background-color: #0f172a;
}

.text-slate-200 {
    color: #cbd5e1;
}

.text-slate-400 {
    color: #94a3b8;
}

.text-white {
    color: #ffffff;
}

.border-indigo {
    border-color: rgba(99, 102, 241, 0.3);
}

.text-indigo-400 {
    color: #818cf8;
}

.font-medium {
    font-weight: 500;
}

.text-white\/60 {
    color: rgba(255, 255, 255, 0.6);
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .shiny-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* ===== SCROLL BAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}

/* ===== LAYOUT UTILITIES (Moved from index.html) ===== */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mb-24 {
    margin-bottom: 6rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.pt-32 {
    padding-top: 8rem;
}

.pb-20 {
    padding-bottom: 5rem;
}

.h-16 {
    height: 4rem;
}

/* ===== PROFESSIONAL SPACING & TYPOGRAPHY ===== */
.section-padding {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

@media (max-width: 768px) {
    .section-padding {
        padding-top: 5rem;
        padding-bottom: 5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.text-hero {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.text-section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.2;
    letter-spacing: -0.01em;
    font-weight: 200;
    color: #ffffff;
}

.text-body {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #94a3b8;
}

.tracking-tight {
    letter-spacing: -0.02em;
}

.cursor-pointer {
    cursor: pointer;
}

.transition-all-custom {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== ADDITIONAL UTILITIES ===== */
.gap-6 {
    gap: 1.5rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-20 {
    gap: 5rem;
}

.items-center {
    align-items: center;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.flex-wrap {
    flex-wrap: wrap;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.max-w-lg {
    max-width: 32rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.w-full {
    width: 100%;
}

.mt-16 {
    margin-top: 4rem;
}

.border-t {
    border-top-width: 1px;
    border-style: solid;
}

.border-white\/5 {
    border-color: rgba(255, 255, 255, 0.05);
}

.grid {
    display: grid;
    gap: 2rem;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, 1fr);
}

.grid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (min-width: 768px) {
    .md-grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .md-grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .md-grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .md-flex-row {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .lg-grid-cols-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .lg-grid-cols-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.img-modern {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}