/* ==========================================================================
   Antigravity Premium CA Template (Keshri-Inspired Original Design)
   ========================================================================== */

:root {
    --primary: #1A365D;       /* Premium Sapphire Navy */
    --primary-light: #2A4D7C; /* Medium Steel Blue */
    --accent: #C5A880;        /* Luxury Muted Gold */
    --accent-hover: #B3966F;  /* Darker Gold */
    --accent-light: #F7F9FC;  /* Soft Ice Blue-White */
    --text: #2D3748;          /* Charcoal Body Text */
    --text-muted: #718096;    /* Muted Slate */
    --bg-light: #F0F4F8;      /* Light Slate/Blue background */
    --border: #E2E8F0;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', system-ui, sans-serif;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Reset */
body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: #ffffff;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary);
    font-weight: 700;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
a:hover {
    color: var(--accent);
}

.page-wrapper {
    opacity: 0;
    animation: fadeInPage 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInPage {
    to { opacity: 1; }
}

/* Spacing and Visual Rhythm */
.section-padding {
    padding: 100px 0;
}

/* ==========================================================================
   Top Header Bar
   ========================================================================== */
.top-bar {
    background-color: var(--primary);
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-bar a {
    color: rgba(255, 255, 255, 0.9);
}
.top-bar a:hover {
    color: var(--accent);
}
.top-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.top-bar-item i {
    color: var(--accent);
    font-size: 14px;
}

/* ==========================================================================
   Header Branding Section (Keshri-Inspired layout)
   ========================================================================== */
.header-middle {
    background: #ffffff;
    padding: 25px 0;
}
.brand-name-h1 {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 0;
    line-height: 1.1;
}
.brand-name-h1 span {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--accent);
    margin-top: 6px;
}
.est-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 2px solid var(--border);
    padding-left: 20px;
}
.est-badge i {
    font-size: 28px;
    color: var(--accent);
}
.est-badge-text {
    line-height: 1.2;
}
.est-badge-text strong {
    display: block;
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
}
.est-badge-text span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========================================================================
   Navigation Menu
   ========================================================================== */
.site-navbar {
    background-color: var(--primary-light);
    border-bottom: 3px solid var(--accent);
    z-index: 1000;
}
.site-navbar .navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12.5px;
    letter-spacing: 1px;
    padding: 20px 18px !important;
    transition: var(--transition);
}
.site-navbar .navbar-nav .nav-link:hover,
.site-navbar .navbar-nav .nav-item.active .nav-link {
    color: var(--accent) !important;
    background-color: rgba(255, 255, 255, 0.04);
}

/* Glassmorphic Sticky Navbar */
.sticky-nav {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 54, 93, 0.96) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: slideDownMenu 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.sticky-nav .navbar-nav .nav-link {
    padding: 15px 18px !important;
}

@keyframes slideDownMenu {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

/* ==========================================================================
   Hero Banners (Keshri-Inspired Overlay Logo structure)
   ========================================================================== */
.site-banner {
    background-color: #111111;
    position: relative;
    overflow: hidden;
}
.site-banner .carousel-item {
    height: 580px;
    min-height: 450px;
}
.site-banner .carousel-item img {
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
    transform: scale(1.05);
    transition: transform 6s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-banner .carousel-item.active img {
    transform: scale(1);
}
.site-banner .carousel-caption {
    top: 50%;
    transform: translateY(-50%);
    bottom: auto;
    left: 10%;
    right: 10%;
    text-align: center;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
}
.banner-overlay-logo {
    max-height: 100px;
    margin-bottom: 25px;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.15));
    opacity: 0;
    transform: translateY(20px);
}
.site-banner .carousel-item.active .banner-overlay-logo {
    animation: bannerFadeUp 0.8s 0.1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.site-banner .carousel-caption h5 {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
}
.site-banner .carousel-item.active .carousel-caption h5 {
    animation: bannerFadeUp 0.8s 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.site-banner .carousel-caption p {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(20px);
}
.site-banner .carousel-item.active .carousel-caption p {
    animation: bannerFadeUp 0.8s 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes bannerFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Marquee updates bar
   ========================================================================== */
.marquee-bar {
    background-color: var(--accent-light);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    font-size: 13px;
}

/* ==========================================================================
   About Section (Keshri layout: Text left, sliding graphic right, curves)
   ========================================================================== */
.section-about-wrapper {
    background-color: var(--primary-light);
    color: #ffffff;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.section-about-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background-color: var(--primary);
    z-index: -1;
    clip-path: ellipse(80% 90% at 85% 50%);
}
.about-section-heading {
    text-align: center;
    color: #ffffff;
    font-size: 42px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 50px;
}
.about-section-heading span {
    color: var(--accent);
}
.about-section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}
.about-txt {
    font-size: 15.5px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
}
.about-txt p {
    margin-bottom: 25px;
}
.about-image-card {
    background-color: #ffffff;
    border: 8px solid rgba(255, 255, 255, 0.25);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: var(--transition);
}
.about-image-card:hover {
    transform: scale(1.02);
}

/* ==========================================================================
   Services Section (Keshri layout: Centered title, huge block gradient cards)
   ========================================================================== */
.section-services-wrapper {
    background-color: #fcfcfc;
    background-image: radial-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 0);
    background-size: 24px 24px;
}
.services-section-heading {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 60px;
}
.services-section-heading span {
    color: var(--accent);
}
.services-section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--primary);
}

/* Huge block gradient service cards */
.service-block-card {
    border-radius: 4px;
    overflow: hidden;
    height: 380px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    transition: var(--transition);
}
.service-block-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.service-block-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(26, 54, 93, 0.95) 45%, rgba(26, 54, 93, 0.5) 100%);
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 2;
}
.service-block-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(26, 54, 93, 0.15);
}
.service-block-card:hover img {
    transform: scale(1.05);
}
.service-block-title {
    color: var(--accent);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.service-block-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14.5px;
    line-height: 1.7;
    margin-bottom: 0;
}
.service-block-btn {
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    border-bottom: 1.5px solid var(--accent);
    padding-bottom: 4px;
}
.service-block-btn:hover {
    color: var(--accent);
}

/* ==========================================================================
   Values slider & 3 Bottom CTA columns
   ========================================================================== */
.section-values-wrapper {
    background-color: var(--bg-light);
}
.values-slider-wrap {
    max-width: 750px;
    margin: 0 auto 80px auto;
    text-align: center;
}
.value-slider-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    border: 3px solid var(--accent);
}
.value-slider-icon i {
    font-size: 36px;
    color: var(--accent);
}
.value-slider-title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
}
.value-slider-text {
    font-size: 15px;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
}

/* 3 Bottom CTA Blocks (Keshri layout: headers with down chevron) */
.cta-box-card {
    background-color: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.cta-box-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.08);
}
.cta-box-header {
    background-color: var(--primary-light);
    color: #ffffff;
    text-align: center;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}
.cta-box-header::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: var(--primary-light) transparent transparent;
    display: block;
    width: 0;
    height: 0;
    z-index: 10;
}
.cta-box-body {
    padding: 30px;
    text-align: center;
    height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}
.cta-box-body i {
    font-size: 42px;
    color: var(--accent);
}
.cta-box-text {
    font-size: 13.5px;
    color: var(--text-muted);
    margin: 15px 0;
}

/* ==========================================================================
   Facts Counter Band (Integrated directly above footer)
   ========================================================================== */
.facts-band {
    background-color: var(--primary);
    background-image: linear-gradient(135deg, var(--primary) 30%, var(--primary-light) 100%);
    color: #ffffff;
    padding: 60px 0;
    border-bottom: 1.5px solid rgba(255, 255, 255, 0.08);
}
.facts-band-title {
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}
.fact-item {
    text-align: center;
}
.fact-number {
    font-family: var(--font-heading);
    font-size: 50px;
    font-weight: 700;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}
.fact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
}

/* ==========================================================================
   Footer Section (Keshri layout: Stay connected left, contact info right, copyright, cities)
   ========================================================================== */
.footer-main {
    background-color: #0F1E36; /* Deep Navy Midnight */
    color: rgba(255, 255, 255, 0.75);
    padding: 60px 0;
}
.footer-heading {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
}
.footer-social-links {
    display: flex;
    gap: 15px;
}
.footer-social-links a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    transition: var(--transition);
}
.footer-social-links a:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact-info li {
    margin-bottom: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}
.footer-contact-icon {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.footer-contact-icon i {
    color: var(--accent);
    font-size: 16px;
}
.footer-contact-text {
    font-size: 13.5px;
    line-height: 1.6;
}

.footer-bottom-bar {
    background-color: #0A1424;
    color: rgba(255, 255, 255, 0.45);
    padding: 25px 0;
    font-size: 12.5px;
}
.footer-bottom-bar a {
    color: rgba(255, 255, 255, 0.6);
}
.footer-bottom-bar a:hover {
    color: var(--accent);
}
.footer-cities-list {
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================================================
   Sidebar & News/Circular Ticker adjustments
   ========================================================================== */
.sidebar-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
    margin-bottom: 30px;
}
.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* News & Circulars Tickers */
.ticker-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}
.ticker-scroll {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}
.ticker-date {
    display: inline-block;
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    background-color: var(--accent-light);
    padding: 2px 7px;
    border-radius: 3px;
    margin-bottom: 8px;
}
.ticker-item {
    margin-bottom: 12px;
    border-bottom: 1px dashed var(--border);
    padding-bottom: 10px;
}
.ticker-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.ticker-link {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.5;
    display: block;
    transition: var(--transition);
}
.ticker-link:hover {
    color: var(--accent);
}

/* ==========================================================================
   Subpage Headers
   ========================================================================== */
.inner-page-hero {
    background-color: var(--primary);
    background-image: linear-gradient(rgba(26, 54, 93, 0.85), rgba(26, 54, 93, 0.95));
    padding: 50px 0;
    border-bottom: 3px solid var(--accent);
}
.inner-page-hero h2 {
    font-size: 28px;
    color: white;
}

/* Floating WhatsApp badge */
.floating-action-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    z-index: 999;
}
.floating-action-btn:hover {
    color: white;
    transform: scale(1.1);
}

/* ==========================================================================
   UI Refinements & Layout Balancing
   ========================================================================== */

/* Subpage Page Wrapper Layout */
.page-wrapper > .container-fluid {
    background-color: #F4F7FA;
    min-height: calc(100vh - 400px);
}

/* Flexbox Row for matching column heights */
.page-wrapper > .container-fluid > .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

/* Stretch the main content column and its inner content */
.page-wrapper > .container-fluid > .row > .col-lg-8,
.page-wrapper > .container-fluid > .row > .col-lg-6 {
    display: flex;
    flex-direction: column;
}

.main-content {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(26, 54, 93, 0.03);
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.main-content h1 {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
    border-bottom: 2px solid var(--accent);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.main-content .txt {
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.9;
    color: var(--text);
    flex: 1 1 auto;
}

/* Scrollable list container with gold scrollbar */
.scrollable-list-container {
    max-height: 380px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
    padding-right: 12px;
}

/* Custom Scrollbar Styles for Webkit browsers */
.scrollable-list-container::-webkit-scrollbar {
    width: 6px;
}
.scrollable-list-container::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.02);
    border-radius: 10px;
}
.scrollable-list-container::-webkit-scrollbar-thumb {
    background-color: var(--accent);
    border-radius: 10px;
}
.scrollable-list-container::-webkit-scrollbar-thumb:hover {
    background-color: var(--accent-hover);
}

/* Premium Pagination Styles */
.pagination-premium {
    gap: 8px;
}
.pagination-premium .page-item .page-link {
    border: 1px solid var(--border);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}
.pagination-premium .page-item.active .page-link {
    background-color: var(--primary) !important;
    border-color: var(--primary) !important;
    color: #ffffff !important;
}
.pagination-premium .page-item:not(.active) .page-link:hover {
    background-color: var(--accent-light);
    color: var(--primary);
    border-color: var(--accent);
}

/* Form controls premium designs */
.form-control, .form-select {
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 12px 18px;
    font-size: 14.5px;
    font-family: var(--font-body);
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(197, 168, 128, 0.15);
    outline: none;
}
.form-label {
    font-weight: 600;
    font-size: 13px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

/* List premium formatting */
.list-premium {
    list-style: none;
}
.list-premium li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 12px;
}
.list-premium li::before {
    content: "\F285"; /* Bootstrap Icons Chevron Right */
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--accent);
    font-size: 12px;
}
.list-premium li a {
    color: var(--text);
    transition: var(--transition);
}
.list-premium li a:hover {
    color: var(--accent);
}

/* Input group adjustments for premium forms */
.input-group-text {
    border: 1px solid var(--border);
    padding: 12px 18px;
    background-color: #ffffff;
}

/* ==========================================================================
   Mobile & Tablet Responsiveness Adjustments
   ========================================================================== */

@media (max-width: 991.98px) {
    .section-padding {
        padding: 60px 0;
    }
    .brand-name-h1 {
        font-size: 22px;
    }
    .brand-name-h1 span {
        font-size: 10px;
        letter-spacing: 2px;
    }
    .site-banner .carousel-item {
        height: 400px;
    }
    .site-banner .carousel-caption h5 {
        font-size: 32px;
    }
    .banner-overlay-logo {
        max-height: 70px;
        margin-bottom: 15px;
    }
}

@media (max-width: 767.98px) {
    .top-bar {
        display: none !important;
    }
    .header-middle {
        padding: 10px 0 !important;
    }
    .brand-name-h1 {
        font-size: 18px;
        text-align: left;
    }
    .brand-name-h1 span {
        font-size: 10px;
        letter-spacing: 1.5px;
        text-align: left;
        margin-top: 4px;
    }
    .site-logo-container {
        width: 100%;
        justify-content: flex-start;
        padding: 5px 0;
        gap: 12px !important;
    }
    .site-logo-container img {
        max-height: 50px !important;
    }
    .site-banner .carousel-item {
        height: 320px;
    }
    .site-banner .carousel-caption {
        left: 5%;
        right: 5%;
    }
    .site-banner .carousel-caption h5 {
        font-size: 22px;
        margin-bottom: 15px;
    }
    .site-banner .carousel-caption p {
        font-size: 11px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }
    .banner-overlay-logo {
        max-height: 50px;
        margin-bottom: 10px;
    }
    .inner-page-hero {
        padding: 30px 0;
        text-align: center;
    }
    .breadcrumb-wrap {
        text-align: center !important;
        margin-top: 10px !important;
    }
    .main-content {
        padding: 25px;
    }
    .main-content h1 {
        font-size: 24px;
        padding-bottom: 10px;
        margin-bottom: 20px;
    }
    .facts-band {
        padding: 40px 0;
    }
    .facts-band-title {
        font-size: 18px;
        margin-bottom: 25px;
    }
    .fact-number {
        font-size: 36px;
    }
    .fact-label {
        font-size: 10px;
        letter-spacing: 1px;
    }
    .floating-action-btn {
        width: 44px;
        height: 44px;
        bottom: 20px;
        right: 20px;
        font-size: 20px;
    }
}
