:root {
    /* GRB Corporate Palette */
    --color-primary: #1D2D3E;
    /* Deep Navy from Logo */
    --color-primary-dark: #121D29;
    --color-secondary: #C77C38;
    /* Bronze/Orange from Logo */
    --color-secondary-dark: #A05F25;

    /* Complementary Colors */
    --color-accent-blue: #3E5C76;
    /* Lighter navy for interesting contrasts */
    --color-accent-sand: #F0EAD6;
    /* Subtle warm neutral for backgrounds */

    --color-dark: #1a1a1a;
    --color-light: #f8f9fa;
    --color-grey: #6c757d;
    --color-white: #ffffff;
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --spacing-container: 1200px;
    --spacing-gutter: 1rem;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-light);
    color: var(--color-dark);
    margin: 0;
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-top: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

a:hover {
    color: var(--color-secondary);
}

/* Layout Utilities */
.container {
    max-width: var(--spacing-container);
    margin: 0 auto;
    padding: 0 var(--spacing-gutter);
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.row-reverse {
    flex-direction: row-reverse;
}

.col {
    padding: 0 15px;
    flex: 1;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background: var(--color-primary);
    color: white;
    border-radius: 4px;
    font-weight: bold;
    border: none;
    cursor: pointer;
}

/* Flex Utilities */
.d-flex {
    display: flex;
}

.justify-between {
    justify-content: space-between;
}

.align-center {
    align-items: center;
}

.flex-wrap {
    flex-wrap: wrap;
}

.gap-10 {
    gap: 10px;
}

.gap-20 {
    gap: 20px;
}

/* ============================================
   ADMIN PANEL STYLES
   ============================================ */

.admin-wrapper {
    display: flex;
    min-height: 100vh;
    transition: transform 0.3s ease;
}

.sidebar {
    width: 250px;
    background: var(--color-primary);
    color: white;
    padding: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.sidebar a {
    display: block;
    color: #b8c7ce;
    padding: 10px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.2s;
}

.sidebar a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 15px;
}

.sidebar-heading {
    padding: 10px 10px 5px;
    color: #607d8b;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-top: 15px;
}

.admin-content {
    flex: 1;
    padding: 40px;
    background: #f9f9f9;
    overflow-x: hidden;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Admin Responsive */
@media (max-width: 992px) {
    .admin-wrapper {
        position: relative;
    }

    .sidebar {
        position: fixed;
        left: -250px;
        top: 0;
        bottom: 0;
        z-index: 1000;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .sidebar.active {
        transform: translateX(250px);
    }

    .sidebar-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .sidebar-overlay.active {
        display: block;
    }

    .sidebar-toggle {
        display: block;
        margin-right: 15px;
    }

    .admin-content {
        padding: 20px;
    }
}

/* Dashboard Utilities */
.dashboard-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
    height: 100%;
}

.dashboard-card:hover {
    transform: translateY(-5px);
}

.stat-icon {
    font-size: 2rem;
    opacity: 0.2;
}

.stat-value {
    margin: 0;
    font-size: 2.5rem;
    font-weight: bold;
}

.stat-label {
    color: #888;
    margin: 5px 0 0;
    font-weight: 500;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th,
.table td {
    padding: 12px 10px;
    text-align: left;
}

.table th {
    border-bottom: 2px solid #f0f0f0;
    color: #666;
}

.table tr {
    border-bottom: 1px solid #f9f9f9;
}

.status-badge {
    font-size: 0.85rem;
    padding: 2px 8px;
    border-radius: 10px;
}




.btn:hover {
    background: var(--color-primary-dark);
}

.btn-accent {
    background: var(--color-secondary);
}

.btn-accent:hover {
    background: var(--color-secondary-dark);
}

/* Navbar */
/* Navbar */
.navbar {
    background: var(--color-white);
    padding: 0.8rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    /* Ensure vertical alignment */
    gap: 30px;
    /* More breathing room */
}

.nav-links a {
    font-weight: 500;
    /* Slightly lighter for elegance */
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

/* Hover Effect: Animated Underline */
.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover {
    color: var(--color-secondary);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

/* Search input override */
.nav-links input[type="text"] {
    background: #f4f6f8;
    border: 1px solid transparent;
    padding: 8px 12px !important;
    /* Override inline */
    border-radius: 20px !important;
    transition: all 0.3s ease;
    width: 150px !important;
}

.nav-links input[type="text"]:focus {
    background: white;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(199, 124, 56, 0.1);
    outline: none;
}

/* Hero Section */
.hero {
    /* Gradient using the new Primary Navy */
    background: linear-gradient(rgba(29, 45, 62, 0.9), rgba(29, 45, 62, 0.8)), url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    color: white;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Product/Card Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.card {
    background: white;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--color-secondary);
}

.card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-body {
    padding: 20px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: var(--color-primary);
}

/* Footer */
.footer {
    background: var(--color-primary);
    /* Use Primary instead of generic dark */
    color: white;
    padding: 60px 0 40px;
    margin-top: 60px;
}

.footer h3 {
    color: white;
}

.footer-links a {
    color: #ccc;
    display: block;
    margin-bottom: 10px;
}

/* About Us Section Styles */
.about-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, #0d161f 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 -10px 20px rgba(0, 0, 0, 0.2);
}

.about-hero h1 {
    color: white;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.about-hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
    font-weight: 300;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease;
    height: 100%;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    font-size: 2.5rem;
    color: var(--color-secondary);
    margin-bottom: 20px;
    display: inline-block;
}

.trust-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.trust-icon {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--color-primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

/* Brands Carousel */
/* Brands Carousel */
.brands-carousel {
    display: flex;
    overflow: hidden;
    user-select: none;
    gap: 30px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    width: 100%;
    padding: 20px 0;
}

.brands-track {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 30px;
    min-width: 100%;
    animation: scroll 30s linear infinite;
}

.brands-carousel:hover .brands-track {
    animation-play-state: paused;
}

.brand-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 160px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

/* Utility: 4 Column Grid */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

@media (max-width: 992px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .grid-4 {
        grid-template-columns: 1fr;
    }
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 30px));
    }
}



/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #fefefe;
    padding: 30px;
    border: 1px solid #888;
    width: 90%;
    max-width: 600px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-modal:hover {
    color: black;
}

/* Social Icons */
.social-icon {
    color: white;
    font-size: 1.3rem;
    margin-right: 15px;
    display: inline-block;
    transition: transform 0.2s, color 0.2s;
}

.social-icon:hover {
    transform: scale(1.1);
    color: var(--color-secondary);
}

.social-icon:last-child {
    margin-right: 0;
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST APPROACH
   ============================================ */

/* Smooth transitions for better UX */
* {
    -webkit-transition: background-color 0.3s, color 0.3s, transform 0.3s, opacity 0.3s;
    transition: background-color 0.3s, color 0.3s, transform 0.3s, opacity 0.3s;
}

/* Mobile Navigation Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    color: var(--color-primary);
}

/* Tablet - max 992px */
@media (max-width: 992px) {
    :root {
        --spacing-container: 100%;
        --spacing-gutter: 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero {
        padding: 70px 0;
    }

    .row {
        gap: 20px;
    }

    .col {
        flex: 1 1 45%;
        min-width: 280px;
    }

    .grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }

    .footer .row {
        flex-wrap: wrap;
    }

    .footer .col {
        flex: 1 1 45%;
        margin-bottom: 30px;
    }
}

/* Mobile - max 768px */
@media (max-width: 768px) {
    :root {
        --spacing-gutter: 1rem;
    }

    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        gap: 0;
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid #eee;
    }

    .nav-links a {
        display: block;
        padding: 15px 0;
    }

    .navbar .container {
        position: relative;
        flex-wrap: wrap;
    }

    /* Hero Section */
    .hero {
        padding: 50px 0;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Columns stack on mobile */
    .row,
    .row-reverse {
        flex-direction: column;
        margin: 0;
    }

    .col {
        flex: 1 1 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    /* Grid adjustments */
    .grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 20px 0;
    }

    /* Card adjustments */
    .card img {
        height: 180px;
    }

    .card-body {
        padding: 15px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    /* Button adjustments */
    .btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        width: 100%;
        text-align: center;
    }

    /* Footer adjustments */
    .footer {
        padding: 40px 0 30px;
        margin-top: 40px;
    }

    .footer .row {
        flex-direction: column;
    }

    .footer .col {
        flex: 1 1 100%;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer h3 {
        margin-bottom: 15px;
    }

    .footer-links a {
        display: inline-block;
        margin: 5px 10px;
    }

    /* Form adjustments */
    form {
        padding: 20px !important;
    }

    input,
    select,
    textarea {
        font-size: 16px !important;
        /* Prevent zoom on iOS */
    }

    /* Tables responsive */
    table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }

    /* Modal adjustments */
    .modal-content {
        width: 95%;
        padding: 20px;
        margin: 10px;
    }
}

/* Small Mobile - max 480px */
@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero {
        padding: 40px 0;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 15px;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .card img {
        height: 150px;
    }

    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    /* Footer compact */
    .footer {
        padding: 30px 0 20px;
    }

    .footer .col {
        margin-bottom: 20px;
    }
}

/* ============================================
   UTILITY CLASSES FOR RESPONSIVE
   ============================================ */

/* Hide on mobile */
.hide-mobile {
    display: block;
}

@media (max-width: 768px) {
    .hide-mobile {
        display: none !important;
    }
}

/* Hide on desktop */
.hide-desktop {
    display: none;
}

@media (max-width: 768px) {
    .hide-desktop {
        display: block !important;
    }
}

/* Text alignment responsive */
@media (max-width: 768px) {
    .text-center-mobile {
        text-align: center !important;
    }
}

/* Spacing responsive */
@media (max-width: 768px) {
    .section {
        padding: 40px 0 !important;
    }

    .mb-mobile-20 {
        margin-bottom: 20px !important;
    }
}

/* ============================================
   ANIMATIONS & POLISH
   ============================================ */

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid var(--color-secondary);
    outline-offset: 2px;
}

/* Image polish */
img {
    max-width: 100%;
    height: auto;
}

/* Card hover enhancement */
.card {
    will-change: transform;
}

/* Button hover effect */
.btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn:active {
    transform: translateY(0);
}

/* Link underline animation */
.nav-links a {
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--color-secondary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Selection color */
::selection {
    background: var(--color-secondary);
    color: white;
}

/* Loading state */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Fade in animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}

/* Pulse animation for CTAs */
@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.btn-pulse {
    animation: pulse 2s infinite;
}

/* Print styles */
@media print {


    .navbar,
    .footer,
    .btn {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    a {
        text-decoration: underline;
    }
}

/* ============================================
   NEW UTILITY & COMPONENT CLASSES
   ============================================ */

/* Spacing Utilities */
.section-padding {
    padding: 60px 0;
}

.gap-20 {
    gap: 20px;
}

.gap-40 {
    gap: 40px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-40 {
    margin-bottom: 40px;
}

.text-center {
    text-align: center;
}

/* Grid System Enhancements */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 40px 0;
    }
}

/* Contact Page Styles */
.contact-form-container {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border 0.3s;
    font-family: inherit;
    font-size: 1rem;
    background-color: white;
    /* Ensure white background */
}

.form-control:focus {
    border-color: var(--color-primary);
    outline: none;
}

.contact-info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 25px;
}

.contact-btn {
    display: block;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    margin-bottom: 15px;
    transition: transform 0.2s, background 0.3s;
}

.contact-btn:hover {
    transform: scale(1.02);
}

.contact-btn-whatsapp {
    background: #25D366;
    color: white;
}

.contact-btn-phone {
    background: var(--color-primary);
    color: white;
}

.contact-btn-email {
    background: #f0f0f0;
    color: var(--color-primary);
}

.contact-map {
    margin-top: 20px;
    overflow: hidden;
    border-radius: 8px;
}

/* Alerts */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-danger {
    background: #f8d7da;
    color: #721c24;
    border-left: 4px solid #dc3545;
}

/* Clients Grid */
.clients-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.client-logo {
    max-height: 50px;
    opacity: 0.7;
    filter: grayscale(100%);
    transition: all 0.3s;
}

.client-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Responsive adjustments for columns that override inline styles if necessary */
@media (max-width: 768px) {
    .responsive-stack {
        flex-direction: column !important;
    }

    .responsive-full-width {
        width: 100% !important;
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }
}
/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    line-height: 0;
    animation: whatsapp-pulse 2s infinite;
}

.floating-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: #FFF;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

.floating-whatsapp svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .floating-whatsapp {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .floating-whatsapp svg {
        width: 28px;
        height: 28px;
    }
}
