/* ============================================
   Custom CSS for Bootstrap Landing Page
   ============================================ */

/* CSS Variables */
:root {
    --color-ocean-blue: #0ea5e9;
    --color-deep-blue: #0284c7;
    --color-turquoise: #14b8a6;
    --color-cyan: #06b6d4;
    --color-cyan-light: #22d3ee;
    --color-slate-950: #020617;
    --color-slate-900: #0f172a;
    --color-slate-800: #1e293b;
    --font-sans: 'Inter', sans-serif;
    --font-display: 'DM Sans', sans-serif;
}

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

body {
    font-family: var(--font-sans);
    background-color: var(--color-slate-950);
    color: #ffffff;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 300;
}

.text-cyan {
    color: var(--color-cyan) !important;
}

.text-cyan-50 {
    color: rgba(34, 211, 238, 0.5) !important;
}

.bg-dark-alt {
    background-color: rgba(15, 23, 42, 0.3) !important;
}

.border-white-10 {
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Main Container */
.main-container {
    max-width: 1440px;
    margin: 0 auto;
    border-left: 1px solid rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    min-height: 100vh;
}

/* Background Grid */
.background-grid {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1440px;
    height: 100vh;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 12rem 24rem;
    pointer-events: none;
    z-index: 0;
}

/* Vertical Beams */
.vertical-beams {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1440px;
    height: 100vh;
    display: flex;
    justify-content: space-between;
    padding: 0 1.5rem;
    pointer-events: none;
    z-index: 0;
}

@media (min-width: 768px) {
    .vertical-beams {
        padding: 0 3rem;
    }
}

@media (min-width: 1024px) {
    .vertical-beams {
        padding: 0 6rem;
    }
}

.beam-line {
    position: relative;
    width: 1px;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.beam-line.beam-2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.beam {
    position: absolute;
    width: 1px;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(6, 182, 212, 0.5), transparent);
    animation: beamDrop 7s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    top: -100px;
}

.beam-delay-1 {
    animation-delay: 2s;
}

.beam-delay-2 {
    animation-delay: 4s;
}

@keyframes beamDrop {
    0% {
        top: -100px;
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Navigation */
.custom-navbar {
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    text-decoration: none;
    color: #ffffff !important;
}

.brand-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #ffffff !important;
}

.brand-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.8125rem;
    transition: color 0.3s ease;
    padding: 0.5rem 0 !important;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.5rem;
    background-color: rgba(255, 255, 255, 0.05);
}

.navbar-toggler:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Buttons */
.btn-custom-primary {
    background: linear-gradient(to bottom, #1e293b, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(203, 213, 225, 1);
    padding: 0.5rem 1rem;
    font-size: 0.6875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-custom-primary::before {
    content: '';
    position: absolute;
    inset: -100%;
    background: conic-gradient(from 90deg at 50% 50%, transparent 0%, transparent 75%, #06b6d4 100%);
    animation: spin 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-custom-primary:hover::before {
    opacity: 1;
}

.btn-custom-primary:hover {
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-primary-custom {
    background: linear-gradient(to right, var(--color-cyan-light), #3b82f6);
    color: #020617;
    font-weight: 600;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 0.125rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
}

.btn-primary-custom:hover {
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.6);
    transform: scale(1.02);
    color: #020617;
}

.btn-outline-custom {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(148, 163, 184, 1);
    background: linear-gradient(to bottom, #1e293b, #0f172a);
    padding: 0.75rem 2rem;
    border-radius: 0.125rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-outline-custom::before {
    content: '';
    position: absolute;
    inset: -100%;
    background: conic-gradient(from 90deg at 50% 50%, transparent 0%, transparent 75%, #06b6d4 100%);
    animation: spin 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-outline-custom:hover::before {
    opacity: 1;
}

.btn-outline-custom:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    transform: translateY(-2px);
}

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

/* Shimmer Button Effect */
.shimmer-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    background-size: 200% 100%;
    animation: shimmer 3s infinite linear;
    pointer-events: none;
}

@keyframes shimmer {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -200% 0;
    }
}

/* Hero Section */
.hero-section {
    padding-top: 80px;
}

.hero-background {
    background-image: url('https://images.unsplash.com/photo-1518770660439-4636190af475?w=1920&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    filter: blur(0px);
    transform: scale(1.05);
    animation: pulseSlow 10s ease-in-out infinite;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.9), rgba(2, 6, 23, 0.6), rgba(2, 6, 23, 1));
}

.hero-gradient {
    background: linear-gradient(to right, rgba(22, 78, 99, 0.2), transparent, rgba(30, 58, 138, 0.2));
}

@keyframes pulseSlow {
    0%, 100% {
        opacity: 0.4;
    }
    50% {
        opacity: 0.5;
    }
}

.hero-title {
    font-size: 3rem;
    line-height: 0.95;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 6rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

/* Badge Custom */
.badge-custom {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    background-color: rgba(6, 182, 212, 0.1);
    border-radius: 9999px;
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-cyan-light);
    backdrop-filter: blur(12px);
}

.pulse-dot {
    position: relative;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-cyan);
}

.pulse-dot::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: var(--color-cyan-light);
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
    opacity: 0.75;
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Stats */
.stat-item {
    border-left: 1px solid rgba(6, 182, 212, 0.3);
    padding-left: 1rem;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 0.25rem;
    white-space: nowrap;
    line-height: 1.2;
}

.stat-number span {
    display: inline;
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 2.25rem;
    }
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.4);
}

/* Ticker Section */
.ticker-section {
    background-color: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(8px);
    overflow: hidden;
}

.ticker-container {
    overflow: hidden;
    width: 100%;
}

.ticker-content {
    display: flex;
    width: max-content;
    animation: marquee 40s linear infinite;
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0 2rem;
    white-space: nowrap;
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ticker-content:hover {
    animation-play-state: paused;
}

/* Spotlight Card Effect */
.spotlight-card {
    position: relative;
    border-radius: 0.125rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
    --mouse-x: 0px;
    --mouse-y: 0px;
}

.spotlight-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: radial-gradient(
        800px circle at var(--mouse-x) var(--mouse-y),
        rgba(6, 182, 212, 0.4),
        transparent 40%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 2;
}

.spotlight-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(225deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.spotlight-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.04);
}

.spotlight-card:hover::before {
    opacity: 1;
}

/* Service Cards */
.service-card {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (min-width: 1024px) {
    .service-card {
        padding: 3rem;
    }
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 0.6875rem;
    font-family: ui-monospace, monospace;
    color: rgba(255, 255, 255, 0.2);
}

.service-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.125rem;
    color: var(--color-cyan);
    font-size: 1.5rem;
    transition: transform 0.5s ease;
}

.spotlight-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: #ffffff;
}

.service-description {
    font-size: 0.875rem;
    line-height: 1.625;
}

/* Sector Cards */
.sector-card {
    padding: 2rem;
    height: 100%;
}

.sector-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cyan);
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.spotlight-card:hover .sector-icon {
    border-color: rgba(6, 182, 212, 0.4);
}

.sector-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
}

.sector-description {
    font-size: 0.875rem;
    line-height: 1.625;
}

.sector-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sector-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
}

.sector-features li i {
    font-size: 0.25rem;
    color: var(--color-cyan);
}

/* Section Titles */
.section-title {
    font-size: 1.875rem;
    font-weight: 300;
    color: #ffffff;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

/* Advantage Cards */
.advantage-card {
    padding: 1.5rem 0;
}

.advantage-icon {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.125rem;
    background-color: rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-cyan);
    font-size: 1.25rem;
    transition: background-color 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background-color: rgba(255, 255, 255, 0.05);
}

.advantage-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
}

.advantage-description {
    font-size: 0.875rem;
    line-height: 1.625;
}

/* Authorized Products Section */
.authorized-products-section .section-title {
    letter-spacing: -0.02em;
}

.authorized-products-card {
    position: relative;
    border-radius: 1rem;
    padding: 1px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(6, 182, 212, 0.05), rgba(255, 255, 255, 0.03));
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: box-shadow 0.4s ease, transform 0.3s ease;
}

.authorized-products-card:hover {
    box-shadow: 
        0 0 0 1px rgba(6, 182, 212, 0.2),
        0 0 40px rgba(6, 182, 212, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.authorized-products-card-inner {
    border-radius: calc(1rem - 1px);
    background: rgba(255, 255, 255, 0.97);
    padding: 2.5rem 2rem;
    overflow: hidden;
    position: relative;
}

.authorized-products-card-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.15), transparent);
    opacity: 0.8;
}

.authorized-products-img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    filter: contrast(1.02) saturate(1.05);
    transition: filter 0.3s ease;
}

.authorized-products-card:hover .authorized-products-img {
    filter: contrast(1.04) saturate(1.08);
}

@media (min-width: 768px) {
    .authorized-products-card-inner {
        padding: 3rem 3.5rem;
    }
}

.testimonial-card {
    padding: 2rem;
    border-radius: 0.75rem;
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    cursor: pointer;
}

.testimonial-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.04);
}

.testimonial-quote {
    color: rgba(51, 65, 85, 1);
    font-size: 2rem;
    opacity: 0.5;
    transition: color 0.3s ease;
}

.testimonial-card:hover .testimonial-quote {
    color: rgba(100, 116, 139, 1);
}

.testimonial-text {
    color: rgba(203, 213, 225, 1);
    font-weight: 300;
    line-height: 1.625;
    font-size: 0.875rem;
}

.author-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    color: #ffffff;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    border-color: rgba(6, 182, 212, 0.2);
}

.author-name {
    font-size: 0.875rem;
    font-weight: 500;
    color: #ffffff;
}

.author-role {
    font-size: 0.75rem;
}

/* FAQ Accordion */
.accordion-custom .accordion-item {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-custom .accordion-button {
    background-color: transparent;
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 1.5rem;
    border: none;
    box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
    background-color: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.accordion-custom .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform 0.3s ease;
}

.accordion-custom .accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.accordion-custom .accordion-body {
    color: rgba(148, 163, 184, 1);
    font-weight: 300;
    line-height: 1.625;
    font-size: 0.875rem;
    padding: 0 1.5rem 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.6), rgba(2, 6, 23, 1));
}

.cta-background {
    background-image: radial-gradient(white 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 300;
    color: #ffffff;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3.75rem;
    }
}

.cta-subtitle {
    font-size: 1.125rem;
}

/* Footer */
.footer-section {
    background-color: var(--color-slate-950);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(6, 182, 212, 0.3), transparent);
}

.footer-heading {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #ffffff;
    font-weight: 500;
}

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

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

.footer-links a {
    color: rgba(100, 116, 139, 1);
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links .text-white-50 {
    font-size: 0.6875rem;
    margin-bottom: 0.25rem;
}

.footer-links .text-white {
    font-size: 0.875rem;
}

.footer-links .text-white a {
    color: #ffffff;
    font-size: 0.875rem;
}

.footer-links .text-white a:hover {
    color: var(--color-cyan);
}

.social-link {
    color: rgba(100, 116, 139, 1);
    font-size: 1.25rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: var(--color-cyan);
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(4px);
    animation: fadeInUp 0.8s ease-out forwards;
}

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

/* Scroll Animations */
.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}

/* Responsive */
@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .service-card,
    .sector-card {
        padding: 1.5rem;
    }
}

/* Selection */
::selection {
    background-color: rgba(6, 182, 212, 0.3);
    color: rgb(207, 250, 254);
}

::-moz-selection {
    background-color: rgba(6, 182, 212, 0.3);
    color: rgb(207, 250, 254);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: #020617;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
    background: #475569;
}
