/* Base Styles & Variables */
:root {
    --primary-color: #D4AF37; /* Gold */
    --secondary-color: #1E3A8A; /* Royal Blue */
    --accent-color: #3B82F6; /* Light Blue */
    --bg-color: #FFFFFF; /* White */
    --text-color: #333333; /* Dark Gray */
    --text-light: #666666;
    --border-color: #E5E7EB;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
}

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

html, body {
    overflow-x: hidden;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
    font-size: 16px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.2;
}

h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    margin-bottom: 0.5rem;
}

.section-title p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--bg-color);
}

.btn-primary:hover {
    background-color: #152c6b;
    color: var(--bg-color);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background-color: var(--primary-color);
    color: var(--bg-color);
}

.btn-accent:hover {
    background-color: #b8962c;
    color: var(--bg-color);
    box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--bg-color);
}

/* =========================================
   Top Bar & Ticker
   ========================================= */
.top-bar {
    background-color: var(--secondary-color);
    color: white;
    padding: 8px 0;
    font-size: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1001;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Socials (Left) */
.top-socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.social-circle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: transform 0.2s ease;
}
.social-circle:hover { transform: scale(1.1); color: white; }

.sc-fb { background-color: #1877F2; }
.sc-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.sc-wa { background-color: #25D366; }

/* Ticker (Middle) */
.top-ticker {
    flex: 1;
    overflow: hidden;
    white-space: nowrap;
    margin: 0 2rem;
    position: relative;
    display: flex;
    align-items: center;
}
.top-ticker-content {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 25s linear infinite;
}
.top-ticker:hover .top-ticker-content {
    animation-play-state: paused;
}
@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-100%, 0, 0); }
}

/* Contact Info (Right) */
.top-contact {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.top-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.contact-icon-red {
    background-color: #C5221F;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .top-bar-container { justify-content: center; flex-direction: column; padding: 0.5rem 1rem;}
    .top-ticker { display: none; } /* Hide ticker on small screens for space */
    .top-contact { flex-direction: row; flex-wrap: wrap; justify-content: center; gap: 1rem; align-items: center; }
    .top-socials span { display: none; } /* Hide "Follow us @" text */
}

/* Header & Navigation */
.header {
    background-color: var(--bg-color);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo span {
    color: var(--primary-color);
}

/* Navigation & Dropdown */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.5rem;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
    padding: 0.75rem 1.25rem;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
    border-radius: 4px;
}

.nav-link:hover, .nav-link.active {
    color: white;
    background-color: var(--secondary-color);
}

/* For pages where we want a simple bar instead of full background, 
   but the user said "rectangular blue color bar", 
   I will provide a solid background-color style which is effectively a bar around the text */


/* Dropdown Styles */
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    min-width: 480px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: 12px;
    overflow: hidden;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.08);
    display: none; /* Controlled by hover */
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.nav-item:hover .dropdown-content {
    display: grid;
}


.dropdown-item {
    color: var(--secondary-color);
    padding: 10px 15px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    transition: all 0.2s;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.dropdown-item:hover {
    background-color: #f8fafc;
    color: var(--primary-color);
    padding-left: 20px;
}

/* Page Banner (Standardized Blue Bar) - Removed as per user clarification */
.page-banner {
    display: none;
}


/* Partner Logo Section Improvement */
.partner-logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.partner-logo-item {
    max-width: 150px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.4s ease;
}

.partner-logo-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.partner-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.05);
}


/* Mobile Menu Button */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--secondary-color);
}

/* Cards (Standardized) */
.card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.card-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

/* Sticky WhatsApp */
.sticky-whatsapp {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: auto;
    background-color: #25D366;
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sticky-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.3);
    color: white;
}
.whatsapp-text {
    font-size: 0.95rem;
}
@media (max-width: 768px) {
    .sticky-whatsapp {
        padding: 12px;
        border-radius: 50%;
        bottom: 1rem;
        left: 1rem;
    }
    .whatsapp-text { display: none; }
}

/* Footer */
.footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Global Trust Indicators (Footer) */
.global-trust {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 3rem;
    margin-bottom: 0px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
    text-align: center;
}

.trust-item {
    flex: 1;
    min-width: 200px;
}

.trust-item h3 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.25rem;
}

.trust-item p {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}

/* Scroll Animations - Progressive Enhancement */
/* Content is visible by default. JS adds .js-ready to body to enable animations */
.animate-on-scroll {
    transition: all 0.6s ease-out;
}

.js-ready .animate-on-scroll {
    /* removed opacity 0 */
}

.js-ready .fade-in-up {
    transform: translateY(30px);
}

.js-ready .fade-in-left {
    transform: translateX(-30px);
}

.js-ready .fade-in-right {
    transform: translateX(30px);
}

.is-visible {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) !important;
}

/* Service Cards Interactive */
.service-card {
    background: var(--bg-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    padding: 2rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
    display: block;
    color: var(--text-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: transparent;
    transition: background-color 0.3s ease;
}

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

.service-card:hover::before {
    background-color: var(--primary-color);
}

.service-card .card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

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

.service-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.service-card-link-text {
    font-size: 0.875rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-top: 1rem;
    display: inline-block;
}

/* Investment Journey Section */
.journey-step {
    text-align: center;
    position: relative;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    flex: 1;
    min-width: 200px;
    border: 1px solid var(--border-color);
    z-index: 2;
}

.journey-step-num {
    background: var(--primary-color);
    color: var(--bg-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem auto;
    font-weight: bold;
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
}

.journey-step h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.journey-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    position: relative;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

@media (max-width: 768px) {
    .header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        background-color: var(--bg-color);
        width: 100%;
        box-shadow: var(--shadow-md);
    }
    
    /* Add padding to account for fixed header so content doesn't hide */
    body { padding-top: 70px; }

    body { font-size: 15px; }
    h1 { font-size: 28px !important; }
    h2 { font-size: 24px !important; }
    
    .logo img {
        height: 50px !important;
        width: auto;
    }
    
    .nav-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 0.5rem 1rem;
    }
    
    section { padding: 3rem 0; }
    
    .hamburger { display: block; }
    
    .nav-menu {
        position: fixed;
        top: 135px; /* Exact height to clear the top-bar and header logo */
        left: -100%;
        width: 100%;
        height: calc(100vh - 135px);
        background-color: var(--bg-color);
        flex-direction: column;
        z-index: 999;
        overflow-y: auto;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-md);
        display: flex;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.125rem;
    }
    
    .btn {
        width: 100%;
        padding: 14px 24px;
    }

    .whatsapp-text {
        display: none; /* Hide text on mobile to save space, show only icon */
    }
    
    .sticky-whatsapp {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        padding: 0;
    }
}

/* =========================================
   Chatbot Widget
   ========================================= */
.chatbot-fab {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 999;
    border: none;
    transition: transform 0.3s ease, background 0.3s ease;
}
.chatbot-fab:hover {
    transform: scale(1.1);
    background-color: #b08d29;
}

.chatbot-container {
    position: fixed;
    bottom: 5rem;
    right: 2rem;
    width: 350px;
    height: 500px;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    display: none;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.chatbot-header {
    background: var(--secondary-color);
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-body {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    background: #f9fafb;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    line-height: 1.4;
    position: relative;
    animation: fadeIn 0.3s ease;
}

.bot-message {
    background: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    align-self: flex-start;
    border-bottom-left-radius: 5px;
    color: var(--text-color);
}

.user-message {
    background: var(--primary-color);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 5px;
}

.chatbot-footer {
    padding: 1rem;
    background: white;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.5rem;
}

.chatbot-footer input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    outline: none;
    font-size: 0.9rem;
    transition: border 0.3s;
}
.chatbot-footer input:focus {
    border-color: var(--primary-color);
}

.chatbot-footer button {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.chatbot-footer button:hover {
    background: #b08d29;
}

.typing-indicator span {
    display: inline-block;
    animation: typing 1.5s infinite;
    font-size: 1.2rem;
    line-height: 1;
}
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
    0%, 100% { /* removed opacity 0 */ transform: translateY(0); }
    50% { opacity: 1; transform: translateY(-2px); }
}

@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        min-width: 100%;
        transform: none;
        grid-template-columns: 1fr;
        box-shadow: none;
        border: none;
        padding: 0 1rem;
        display: none;
    }
    
    .nav-item.active .dropdown-content,
    .nav-item:hover .dropdown-content {
        display: block;
    }

    .dropdown-item {
        white-space: normal;
        padding: 12px 0;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
        grid-column: span 1 !important;
    }

    .chatbot-container {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
    .chatbot-fab {
        bottom: 1rem;
        right: 1rem;
    }
}


/* =========================================
   Service Page Enhancements
   ========================================= */

.service-section {
    padding: 6rem 0;
    background-color: white;
}

.service-section:nth-child(even) {
    background-color: #f8fafc;
}

.section-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Content Blocks */
.content-block {
    margin-bottom: 3rem;
}

.content-block h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.content-block p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Image Gallery */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Premium Tables */
.table-wrapper {
    overflow-x: auto;
    margin: 3rem 0;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.premium-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.premium-table th {
    background-color: var(--secondary-color);
    color: white;
    padding: 1rem 1.5rem;
    text-align: left;
    font-weight: 600;
}

.premium-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    color: var(--text-color);
}

.premium-table tr:last-child td {
    border-bottom: none;
}

.premium-table tr:nth-child(even) {
    background-color: #f8fafc;
}

/* Graphs (CSS-based) */
.graph-container {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    margin: 3rem 0;
}

.bar-chart {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bar-item {
    display: grid;
    grid-template-columns: 150px 1fr 50px;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    font-weight: 500;
    color: var(--secondary-color);
}

.bar-track {
    height: 12px;
    background: #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--primary-color);
    border-radius: 6px;
    transition: width 1s ease-out;
}

.bar-value {
    font-weight: 600;
    color: var(--secondary-color);
    text-align: right;
}

/* Infographics */
.infographic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: #f8fafc;
    border-color: var(--primary-color);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.info-title {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.info-desc {
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .mobile-grid-1 {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 600px) {
    .bar-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    .bar-value {
        text-align: left;
    }
}
