@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* ── Light Theme: Trustworthy Navy + Gold ── */

    /* Brand Colors */
    --primary: #1a3a5c;
    /* Deep Trust Navy — headings, dark UI */
    --primary-light: #e8f0f9;
    /* Soft Blue Tint — card bg, section tints */

    /* Accent / CTA */
    --accent: #f59e0b;
    /* Amber Gold — buttons, highlights */
    --accent-hover: #d97706;
    /* Darker Gold — hover state */
    --accent-glow: rgba(245, 158, 11, 0.2);

    /* Neutral Scale */
    --neutral-100: #f8fafc;
    /* Page background */
    --neutral-200: #f1f5f9;
    /* Subtle section bg */
    --neutral-300: #e2e8f0;
    /* Borders, dividers */
    --neutral-400: #94a3b8;
    /* Placeholder / disabled */
    --neutral-900: #0f172a;
    /* Near-black headings */

    /* Semantic Aliases */
    --bg-light: #f8fafc;
    /* Primary page bg */
    --bg-white: #ffffff;
    /* Card / surface white */
    --text-main: #0f172a;
    /* Headings — 21:1 on white ✓ */
    --text-body: #334155;
    /* Body — 10:1 on white ✓ */
    --text-muted: #64748b;
    /* Secondary — 5.5:1 on white ✓ */
    --secondary: #64748b;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Layout */
    --section-padding: clamp(80px, 10vw, 140px) 0;
    --container-max: 1280px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);

    /* Shadows — soft, light-mode */
    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.08), 0 1px 2px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 16px -2px rgba(15, 23, 42, 0.10), 0 2px 6px -1px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 48px -10px rgba(15, 23, 42, 0.14), 0 8px 16px -4px rgba(15, 23, 42, 0.08);

    /* Glassmorphism — frosted white */
    --glass-bg: rgba(255, 255, 255, 0.72);
    --glass-border: rgba(26, 58, 92, 0.10);
    --border-white-10: rgba(26, 58, 92, 0.06);
}

/* Base Styles */
body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-light);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.section {
    padding: var(--section-padding);
}

/* Glassmorphism Utilities — frosted white card */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

/* Buttons - Premium Feel */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 16px 36px;
    border-radius: var(--border-radius-md);
    transition: var(--transition);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
}

.btn-primary:hover {
    background: var(--accent);
    color: #0f172a;
    /* dark text on gold — WCAG AA ✓ */
    transform: translateY(-3px);
    box-shadow: 0 10px 24px var(--accent-glow);
}

.btn-accent {
    background: var(--accent);
    color: #0f172a;
    /* dark on amber gold — 8.5:1 contrast ✓ */
    font-weight: 700;
}

.btn-accent:hover {
    background: var(--accent-hover);
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 10px 24px var(--accent-glow);
}

.btn-outline-accent {
    border: 2px solid var(--accent);
    color: var(--primary);
    background: transparent;
}

.btn-outline-accent:hover {
    background: var(--accent);
    color: #0f172a;
    transform: translateY(-3px);
}

/* Navbar - Modern Glass */
.navbar-custom {
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar-custom.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    padding: 15px 0;
    box-shadow: var(--shadow-sm);
}

.navbar-brand img {
    height: 60px;
    transition: var(--transition);
}

/* Header Logo — logo-only branding */
.header-logo {
    height: 120px;
    width: auto;
    max-width: 400px;
    object-fit: contain;
    display: block;
    transition: var(--transition);
}

.navbar-custom.scrolled .header-logo {
    height: 85px;
}

@media (min-width: 768px) and (max-width: 991px) {
    .header-logo {
        height: 130px;
        max-width: 380px;
    }

    .navbar-custom.scrolled .header-logo {
        height: 75px;
    }
}

@media (max-width: 767px) {
    .header-logo {
        height: 95px;
        max-width: 280px;
    }

    .navbar-custom.scrolled .header-logo {
        height: 60px;
    }
}

/* Utilities */
.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, #d97706 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.bg-gradient-to-b {
    /* Hero overlay — keep dark for text legibility over photo */
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.90) 100%);
}

.fw-black {
    font-weight: 900;
}

.max-w-700 {
    max-width: 700px;
}

/* Creative Layout Utilities - Luxury Geometric */
.text-outline {
    -webkit-text-stroke: 1px rgba(251, 191, 36, 0.3);
    color: transparent;
    font-size: 8rem;
    position: absolute;
    font-weight: 900;
    pointer-events: none;
    z-index: -1;
    white-space: nowrap;
}

.skew-bg {
    position: relative;
    padding: 180px 0;
}

.skew-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-light);
    /* soft blue tint = #e8f0f9 */
    transform: skewY(-3deg);
    z-index: -1;
}

.skew-bg-reverse::before {
    transform: skewY(3deg);
}

.overlap-image-wrapper {
    position: relative;
    padding: 30px;
}

.overlap-image-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid var(--accent);
    transform: translate(-45%, -45%);
    z-index: -1;
    border-radius: var(--border-radius-lg);
}

.overlap-content {
    margin-top: -100px;
    position: relative;
    z-index: 10;
}

.stagger-card {
    margin-top: 60px;
}

.floating-icon {
    position: absolute;
    font-size: 15rem;
    color: var(--accent);
    opacity: 0.03;
    z-index: -1;
    transform: rotate(-15deg);
}

/* Navbar Enhancement */
.navbar-custom {
    padding: 24px 0;
    transition: var(--transition);
}

.navbar-custom.scrolled {
    padding: 12px 0;
    background: var(--glass-bg);
    box-shadow: var(--shadow-sm);
}

.nav-link {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main) !important;
    padding: 8px 12px !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

/* Hero Section - Full Bleed & Immersive */
#hero {
    background-attachment: fixed;
    z-index: 1;
}

#hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 32px;
}

#hero p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* Cards - Floating Aesthetic */
.feature-card,
.service-card {
    background: var(--bg-white);
    padding: 48px;
    border-radius: var(--border-radius-md);
    /* Also fixing undefined radius */
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 100%;
}

.feature-card:hover,
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}

.feature-icon {
    font-size: 3.5rem;
    background: linear-gradient(135deg, var(--accent) 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 24px;
    display: inline-block;
}

/* Feature Row - Equal Height Alignment */
.feature-row {
    align-items: stretch !important;
}

.feature-row>div {
    display: flex;
    flex-direction: column;
}

.feature-img-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: hidden;
    position: relative;
    border-radius: var(--border-radius-lg);
    /* fixed from --border-radius */
    box-shadow: var(--shadow-lg);
}

.feature-img-wrapper img {
    flex: 1;
    width: 100%;
    height: 0;
    /* Prevents image from pushing parent height */
    min-height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.feature-img-wrapper:hover img {
    transform: scale(1.05);
}

/* Marquee Animation — kept dark for bold visual contrast band */
.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 60px 0;
    background: var(--primary);
    /* #1a3a5c navy — intentional dark band */
}

.marquee-content {
    display: inline-flex;
    animation: marquee 30s linear infinite;
    gap: 80px;
    align-items: center;
}

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

    100% {
        transform: translateX(-50%);
    }
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.18);
    text-transform: uppercase;
    transition: var(--transition);
}

.marquee-item:hover {
    color: var(--accent);
    opacity: 1;
}

/* Micro-Interactions */
.overlap-image-wrapper img {
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.overlap-image-wrapper:hover img {
    transform: scale(1.03) translateY(-10px) rotate(2deg);
}

.shadow-2xl {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.border-accent-glow {
    border: 1px solid var(--accent-glow) !important;
}

/* Coupon Wrapper */
.coupon-wrapper {
    position: relative;
}

.border-dashed {
    border: 2px dashed var(--accent) !important;
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

/* Testimonial Cards */
.testimonial-card {
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-white) !important;
    border-color: var(--accent) !important;
}

/* Info Cards */
.info-card {
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(8px);
    background: var(--bg-white) !important;
    box-shadow: var(--shadow-md);
}

.icon-circle {
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.2);
}

.hover-white:hover {
    color: var(--bg-white) !important;
}

/* Footer Enhancements */
.footer {
    letter-spacing: 0.01em;
}

.footer h5 {
    color: var(--bg-white);
}

.footer .list-unstyled li a {
    transition: var(--transition);
}

.payment-icons i {
    opacity: 0.6;
    transition: var(--transition);
}

.payment-icons i:hover {
    opacity: 1;
    color: var(--bg-white);
}

@media (max-width: 991px) {
    .feature-img-wrapper {
        height: auto;
        min-height: 400px;
    }
}

@media (max-width: 767px) {
    .feature-img-wrapper {
        min-height: 300px;
    }
}

/* Section Title */
.section-title {
    margin-bottom: 80px;
}

.section-title h2 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Footer — stays dark navy as a strong visual anchor */
.footer {
    background: var(--primary);
    /* #1a3a5c — intentional dark anchor */
    color: #94a3b8;
    padding-top: 100px;
}

.footer h5 {
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 32px 0;
    margin-top: 64px;
}

.social-icons a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: var(--transition);
    color: var(--white);
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--accent);
    transform: scale(1.1);
}

/* Article Section Styling */
article {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-body);
}

article h2 {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

article h3 {
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.01em;
    position: relative;
    padding-bottom: 16px;
}

article h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
    border-radius: 2px;
}

article .border-bottom {
    border-color: rgba(251, 191, 36, 0.2) !important;
    padding-bottom: 2rem !important;
}

article p.lead {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.7;
}

article .btn-accent {
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
}

article .btn-accent:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
}

article .reveal {
    transition: all 0.6s ease-out;
}

.spam {
    display: none;
}

/* ═══════════════════════════════════════════════════════
   NEW COMPONENT STYLES (v2 Light Theme Redesign)
═══════════════════════════════════════════════════════ */

/* Trust Pills (Hero & other sections) */
.trust-pill {
    display: inline-flex;
    align-items: center;
    background: var(--bg-white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--neutral-200);
    transition: var(--transition);
}

.trust-pill:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--accent);
}

/* Stat Cards (Why Choose Us) */
.stat-card {
    transition: var(--transition);
    border: 1px solid transparent;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md) !important;
    border-color: var(--accent);
}

/* Hero Stat Card */
.hero-stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

/* Services Grid & Icon Box */
.service-icon-box {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-light);
    border-radius: 16px;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon-box {
    background: var(--primary);
    color: var(--accent);
    transform: scale(1.1) rotate(5deg);
}

/* Process Steps (How It Works) */
.process-step {
    position: relative;
    z-index: 1;
}

.process-step .step-number {
    width: 80px;
    height: 80px;
    background: var(--bg-white);
    border: 2px solid var(--accent);
    color: var(--primary);
    font-size: 2rem;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 25px var(--accent-glow);
    transition: var(--transition);
}

.process-step:hover .step-number {
    background: var(--accent);
    color: #0f172a;
    transform: scale(1.1);
}

/* Connecting Line */
@media (min-width: 768px) {
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 40px;
        left: 60%;
        width: 80%;
        height: 2px;
        border-top: 2px dashed var(--neutral-300);
        z-index: -1;
    }
}

/* FAQ Accordion */
.faq-accordion .accordion-item {
    background: var(--bg-white);
    border: 1px solid var(--neutral-300) !important;
    margin-bottom: 16px;
    border-radius: var(--border-radius-md) !important;
    transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
    border-color: var(--primary) !important;
    box-shadow: var(--shadow-sm);
}

.faq-accordion .accordion-button {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-main);
    background: transparent;
    padding: 20px 24px;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--primary);
    background: var(--primary-light);
}

.faq-accordion .accordion-body {
    padding: 0 24px 24px;
    color: var(--text-body);
}

/* Contact Options Cards */
.contact-info-card {
    transition: var(--transition);
    border: 1px solid transparent;
}

.contact-info-card:hover {
    background: var(--bg-white) !important;
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateX(10px);
}

/* ═══════════════════════════════════════════════════════
   SHARED PAGE COMPONENTS — used across service pages
═══════════════════════════════════════════════════════ */

/* Section Eyebrow Label */
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

/* Hero Badge Pill */
.hero-badge-pill {
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid rgba(245, 158, 11, 0.4);
    padding: 8px 20px;
    border-radius: 50px;
    color: var(--accent);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* Hero Typography */
.hero-headline {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-subline {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.88;
}

/* Hero Stat Card */
.hero-stat-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}

.stat-big {
    font-size: 3rem;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-sm {
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1;
}

/* Stat Number (Why Choose Us section) */
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.03em;
}

/* Service Cards (Services Grid) */
.svc-card {
    background: var(--bg-white);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.svc-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent) !important;
}

.svc-card:hover::before {
    transform: scaleX(1);
}

.svc-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.6rem;
    transition: var(--transition);
}

.svc-card:hover .svc-icon {
    background: var(--primary);
    color: var(--accent);
    transform: scale(1.1) rotate(5deg);
}

.svc-link {
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.svc-link:hover {
    color: var(--accent);
    gap: 10px;
}

/* Process Cards (How It Works) */
.process-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    transition: var(--transition);
}

.process-card:hover {
    background: rgba(255, 255, 255, 0.10);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.process-card-featured {
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.3);
}

.process-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.06);
    letter-spacing: -0.04em;
    margin-bottom: 8px;
}

.process-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Trust Tags (inline tags with check icon) */
.trust-tag {
    display: inline-flex;
    align-items: center;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid var(--neutral-300);
    transition: var(--transition);
}

.trust-tag:hover {
    border-color: var(--accent);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

/* Feature Check List Items */
.feature-check {
    padding: 8px 12px;
    border-radius: var(--border-radius-sm);
    background: var(--primary-light);
    transition: var(--transition);
}

.feature-check:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.feature-check i {
    font-size: 1rem;
    flex-shrink: 0;
}

/* Benefit Items (Why Choose Us) */
.benefit-item {
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md) !important;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.benefit-item:hover .benefit-icon {
    background: var(--accent) !important;
}

.benefit-item:hover .benefit-icon i {
    color: var(--primary) !important;
}

/* Scroll Indicator */
.scroll-indicator {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-8px);
    }
}

/* Border White Utility */
.border-white-10 {
    border-color: rgba(255, 255, 255, 0.10) !important;
}

/* ls-1, ls-2 letter-spacing utilities */
.ls-1 {
    letter-spacing: 0.05em;
}

.ls-2 {
    letter-spacing: 0.10em;
}

/* Object-fit cover utility */
.object-fit-cover {
    object-fit: cover;
}