@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@400;600;700;800;900&family=Rajdhani:wght@400;500;600;700&display=swap');

:root {
    --electric-blue: #00d4ff;
    --molten-orange: #ff6b00;
    --deep-charcoal: #0a0a0a;
    --gunmetal: #1a1a2e;
    --chrome: #e8e8e8;
    --neon-cyan: #00fff2;
    --safety-yellow: #ffd700;
    --carbon-fiber: #0f0f23;
    --metallic-red: #ff2a2a;
    --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #ff6b00 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 212, 255, 0.9) 0%, rgba(255, 107, 0, 0.85) 100%);
    --gradient-card: linear-gradient(145deg, #1a1a2e 0%, #0a0a0a 100%);
    --font-heading: 'Exo 2', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-neumorphic: 0 8px 32px rgba(0, 212, 255, 0.15);
    --shadow-glow: 0 0 30px rgba(255, 107, 0, 0.4);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--deep-charcoal);
    color: var(--chrome);
    line-height: 1.7;
    overflow-x: hidden;
}

body strong,
body p {
    color: inherit;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

a {
    color: var(--electric-blue);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--molten-orange);
}


.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: var(--carbon-fiber);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0.95;
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding: 2rem 0;
}

.hero .hero-content {
    padding-top: 7rem;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-weight: 500;
    margin-bottom: 2.5rem;
    max-width: 600px;
    opacity: 0.95;
}


.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--deep-charcoal);
    background: var(--gradient-primary);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    box-shadow: var(--shadow-neumorphic);
    min-height: 54px;
    white-space: nowrap;
    gap: 0.75rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    color: var(--deep-charcoal);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--electric-blue);
    background: transparent;
    border: 2px solid var(--electric-blue);
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-decoration: none;
    min-height: 54px;
    white-space: nowrap;
    gap: 0.75rem;
}

.btn-secondary:hover {
    background: var(--electric-blue);
    color: var(--deep-charcoal);
    box-shadow: var(--shadow-neumorphic);
}

.btn-container {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}


.navbar {
    background: var(--gunmetal);
    padding: 0.75rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 100;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.navbar-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--chrome);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar-logo span {
    color: var(--electric-blue);
}

.navbar-burger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.navbar-burger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--chrome);
    margin: 5px 0;
    transition: var(--transition-fast);
    border-radius: 2px;
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-item {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--chrome);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.navbar-item:hover,
.navbar-item.active {
    color: var(--electric-blue);
}


.section {
    padding: 5rem 0;
    position: relative;
}

.section-dark {
    background: var(--carbon-fiber);
}

.section-gradient {
    background: var(--gradient-primary);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    position: relative;
}

.section-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin-bottom: 3rem;
    opacity: 0.9;
}


.card-service {
    background: var(--gradient-card);
    border-radius: 12px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 212, 255, 0.1);
    height: 100%;
}

.card-service::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: var(--transition-smooth);
}

.card-service:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 212, 255, 0.3);
    box-shadow: var(--shadow-neumorphic);
}

.card-service:hover::before {
    transform: scaleY(1);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--chrome);
}

.card-price {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--electric-blue);
    margin-bottom: 1rem;
}

.card-description {
    opacity: 0.85;
    margin-bottom: 1.5rem;
}


.card-team {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: var(--gunmetal);
    transition: var(--transition-smooth);
}

.card-team:hover {
    transform: scale(1.02);
}

.card-team-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.card-team-content {
    padding: 1.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.98));
}

.card-team-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--chrome);
}

.card-team-role {
    color: var(--electric-blue);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
}


.testimonial-card {
    background: var(--gunmetal);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    border-left: 4px solid var(--molten-orange);
}

.testimonial-stars {
    color: var(--safety-yellow);
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--electric-blue);
}

.testimonial-name {
    font-weight: 700;
    color: var(--chrome);
}

.testimonial-location {
    font-size: 0.85rem;
    opacity: 0.7;
}


.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(26, 26, 46, 0.5);
    border-radius: 8px;
    transition: var(--transition-fast);
}

.feature-item:hover {
    background: rgba(26, 26, 46, 0.8);
    transform: translateX(8px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.feature-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    opacity: 0.8;
    font-size: 0.95rem;
}


.contact-form {
    background: var(--gunmetal);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--chrome);
    font-family: var(--font-heading);
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem 1.25rem;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--carbon-fiber);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--chrome);
    transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.2);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 1.25rem;
    font-size: 1.1rem;
}


.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.contact-info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.contact-info-content p {
    opacity: 0.85;
}


.footer {
    background: var(--carbon-fiber);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--chrome);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo span {
    color: var(--electric-blue);
}

.footer-tagline {
    opacity: 0.7;
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--chrome);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--electric-blue);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}


.cookie-consent-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 450px;
    background: var(--gunmetal);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 9999;
    border: 1px solid rgba(0, 212, 255, 0.2);
    display: block;
}

.cookie-consent-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--chrome);
}

.cookie-consent-text {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 0.85rem 1.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.cookie-btn-accept {
    background: var(--gradient-primary);
    color: var(--deep-charcoal);
}

.cookie-btn-accept:hover {
    box-shadow: var(--shadow-glow);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--chrome);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-btn-decline:hover {
    border-color: var(--electric-blue);
    color: var(--electric-blue);
}

.cookie-link {
    color: var(--electric-blue);
    font-size: 0.85rem;
}


.navbar-menu {
    display: none;
}

.navbar-menu.is-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--gunmetal);
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.navbar-item {
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}


.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    aspect-ratio: 4/3;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-image {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.5rem;
    background: linear-gradient(transparent, rgba(10, 10, 10, 0.95));
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}


.faq-item {
    background: var(--gunmetal);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--chrome);
    text-align: left;
    transition: var(--transition-fast);
}

.faq-question:hover {
    color: var(--electric-blue);
}

.faq-icon {
    font-size: 1.5rem;
    transition: var(--transition-smooth);
}

.faq-item.is-active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-smooth);
    padding: 0 1.5rem;
}

.faq-item.is-active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.5rem;
}

.faq-answer p {
    opacity: 0.85;
}


.pricing-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--deep-charcoal);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}


.page-header {
    padding: 6rem 0 4rem;
    background: var(--carbon-fiber);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0.9;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--electric-blue);
    text-decoration: none;
}

.breadcrumb span {
    opacity: 0.6;
}


.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--electric-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


.map-container {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid rgba(0, 212, 255, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}


.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.has-text-primary {
    color: var(--electric-blue) !important;
}

.has-text-warning {
    color: var(--molten-orange) !important;
}

.box-shadow {
    box-shadow: var(--shadow-neumorphic);
}

.mt-6 {
    margin-top: 3rem;
}

.mb-6 {
    margin-bottom: 3rem;
}


@media screen and (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 4rem 0;
    }

    .section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .btn-container {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .cookie-consent-banner {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        max-width: none;
    }

    .contact-form {
        padding: 2rem;
    }

    .card-service {
        padding: 2rem;
    }
}

@media screen and (min-width: 769px) {
    .navbar-menu {
        display: flex;
    }

    .navbar-burger {
        display: none;
    }
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.6);
    }
}

.animate-pulse-glow {
    animation: pulse-glow 2s ease-in-out infinite;
}


.form-input.is-invalid,
.form-textarea.is-invalid {
    border-color: #ff2a2a;
}

.error-message {
    color: #ff2a2a;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}

.form-success-message {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--electric-blue);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.form-success-message h3 {
    color: var(--electric-blue);
    margin-bottom: 1rem;
}


.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--electric-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


.service-detail-header {
    position: relative;
    padding: 4rem 0;
    background: var(--carbon-fiber);
    overflow: hidden;
}

.service-detail-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    opacity: 0.9;
}

.service-detail-image {
    position: relative;
    z-index: 2;
    border-radius: 16px;
    box-shadow: var(--shadow-glow);
}

.service-process-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gunmetal);
    border-radius: 12px;
    transition: var(--transition-fast);
}

.service-process-step:hover {
    transform: translateX(8px);
    background: rgba(26, 26, 46, 0.8);
}

.step-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--deep-charcoal);
}

.step-content h4 {
    margin-bottom: 0.5rem;
}

.step-content p {
    opacity: 0.85;
}


.thank-you-container {
    text-align: center;
    padding: 4rem 2rem;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

.thank-you-title {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1rem;
}

.thank-you-text {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 2rem;
}


.legal-content {
    background: var(--gunmetal);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--electric-blue);
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    margin-bottom: 1rem;
    opacity: 0.9;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.legal-content li {
    margin-bottom: 0.75rem;
    opacity: 0.9;
}


.columns.is-multiline {
    flex-wrap: wrap;
}

.column {
    padding: 1.5rem;
}


.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}