:root {
    --bg-dark: #0a0a0ac1;
    --bg-darker: #050505;
    --text-primary: #ffffff;
    --text-muted: #c9c9c9;
    --accent-primary: #e62e2e;
    /* Matches the red in the logo */
    --accent-metallic: #737373;
    --glass-bg: rgba(15, 15, 15, 0.44);
    --glass-border: rgba(255, 255, 255, 0.08);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}


body.light-theme {
    --bg-dark: #f0f4f8;
    --bg-darker: #f8fafc;
    --text-primary: #000000;
    --text-muted: #000000;
    --accent-metallic: #94a3b8;
    --glass-bg: rgba(164, 163, 163, 0.7);
    --glass-border: rgba(0, 0, 0, 0.1);
}

body.light-theme .logo-img {
    filter: brightness(-50%);
}

body.light-theme .navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
}

body .navbar.scrolled {
    background: rgba(43, 42, 42, 0.9);
}

html {
    scroll-behavior: smooth;
}

body.no-scroll {
    overflow: hidden;
}


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

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Glassmorphism Utilities */
.glass {

    border: 1px solid var(--glass-border);
}

.glass-dark {

    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(10px);
}

/* Canvas Background */
#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.main-title {
    font-size: clamp(3rem, 6vw, 6rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-metallic) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
}

.subtitle {
    font-size: clamp(1.5rem, 2.5vw, 2.5rem);
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 2rem;

}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 4rem;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: var(--glass-bg);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    padding: 0.8rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

body.light-theme .navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.logo-container {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-shrink: 0;

}

.logo-img-link {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.logo-brand {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    line-height: 1;
    align-items: center;
}

.logo-brand-saba {
    color: var(--accent-primary);
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 1.8rem;
    font-family: var(--font-heading);
}

.logo-brand-nubian {
    color: var(--text-primary);
    font-weight: 900;
    letter-spacing: 3px;
    font-size: 1.8rem;
    font-family: var(--font-heading);
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    margin: 0 1.2rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-primary);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active-link::after {
    width: 100%;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.theme-toggle button {
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-primary);
    transition: transform 0.3s ease;
    padding: 5px;
}

.theme-toggle button:hover {
    transform: scale(1.1);
}

.lang-dropdown {
    position: relative;
}

.lang-dropbtn {
    background: rgba(10, 10, 10, 0.6);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.drop-arrow {
    font-size: 0.7em;
    margin-left: 8px;
    opacity: 0.7;
}

.lang-dropdown.active .lang-dropbtn {
    border-color: var(--accent-primary);
    background: rgba(230, 46, 46, 0.1);
}

.lang-dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 5px;
    background: rgba(10, 10, 10, 0.95);
    min-width: 140px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.8);
    z-index: 1000;
    border: 1px solid var(--glass-border);
    border-radius: 4px;
    flex-direction: column;
}

.lang-dropdown.active .lang-dropdown-content {
    display: flex;
}

.lang-btn {
    background: transparent;
    color: var(--text-muted);
    border: none;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-btn:last-child {
    border-bottom: none;
}

.lang-btn.active,
.lang-btn:hover {
    color: #fff;
    background: rgba(230, 46, 46, 0.1);
}

/* Sections */
.section {
    min-height: 10vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 10%;
    position: relative;
    z-index: 10;
}

/* Hero Section */
.hero {
    align-items: flex-start;
    min-height: 100vh;
}

.hero .description {
    font-size: 1.25rem;
    max-width: 600px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Scroll Indication */
.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
    animation: bounce 2s infinite ease-in-out;
}

.scroll-indicator span {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

@keyframes bounce {

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

    50% {
        transform: translate(-50%, 10px);
    }
}

/* Grid & Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    text-align: center;
    padding: 3rem;
    border-radius: 1rem;

}


.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.card-icon-large {
    font-size: 100px;
    line-height: 1;
    margin-bottom: 1.5rem;
}

.card p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Sticky Sectors Wrapper */
.sectors-wrapper {
    position: relative;
    width: 100%;
    background-color: var(--bg-dark);
}

/* Foreground panels */
.sector-panels {
    position: relative;
}

.sector-panel {
    min-height: 100vh;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    backdrop-filter: blur(2px);
}

.sector-header {
    text-align: center;
    margin: 3rem 10rem;
    justify-content: center;
    width: 100%;
    max-width: 800px;
}

.sector-vision {
    font-size: 1.2rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 1rem;
    opacity: 0.9;
}

.sub-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    padding: 0 2rem;
}

.sub-item-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 15px;
    padding: 2rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 180px;
}

.sub-item-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-red);
    box-shadow: 0 10px 30px rgba(255, 60, 60, 0.15);
}

.sub-item-card.expanded {
    grid-column: 1 / -1;
    min-height: 300px;
    cursor: default;

}

.sub-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}


.sub-item-card .sub-card-header h4 {
    font-size: 1.3rem;
    margin: 0;
    color: var(--accent-primary) !important;
}

.sub-card-content {
    max-height: 3.2em;
    /* Partially visible (approx 2 lines) */
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 0.7;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    position: relative;
    mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}

.sub-item-card.expanded .sub-card-content {
    max-height: 500px;
    opacity: 1;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    mask-image: none;
    -webkit-mask-image: none;
}

.expand-indicator {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.05);
}

.expand-indicator::after {
    content: "▼";
    font-size: 0.7rem;
    transition: transform 0.4s ease;
    color: var(--accent-primary);
}

.sub-item-card.expanded .expand-indicator {
    background: var(--accent-red);
    border-color: var(--accent-red);
    transform: rotate(180deg);
}


/* Mobile adjustments */
@media (max-width: 768px) {
    .sub-cards-grid {
        grid-template-columns: 1fr;
        padding: 0 1.5rem;
    }

    .sector-header {
        margin: 2rem 1.5rem;
    }

    .sector-panel {
        padding: 2rem 0;
    }
}

p {
    margin-bottom: 1.2rem;
    color: var(--text-muted);
}

.panel-desc ul {
    margin-bottom: 1.5rem;
    padding-left: 1.2rem;
    list-style: none;
}

.panel-desc li {
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1rem;
}

.panel-desc li::before {
    content: '•';
    color: var(--accent-primary);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.panel-desc strong {
    color: var(--text-primary);
}

.card-body::-webkit-scrollbar {
    width: 4px;
}

.card-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.card-body::-webkit-scrollbar-thumb {
    background: var(--accent-primary);
    border-radius: 2px;
}

.panel-desc h4 {
    color: var(--accent-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.panel-desc p,
.panel-desc ul {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.panel-desc ul {
    padding-left: 1.5rem;
}

.panel-desc li {
    margin-bottom: 0.5rem;
}

.panel-desc strong {
    color: var(--text-primary);
}

.panel-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.panel-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
}

/* Footer & Contact */
.footer {
    padding-bottom: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto 2rem auto;
    text-align: center;
}

.contact-item .label {
    display: block;
    font-size: 0.9rem;
    color: var(--accent-metallic);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.contact-item a,
.contact-item span {
    font-size: 1.3rem;
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--accent-primary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.social-icon {
    display: inline-block;
    font-size: 1.5rem;
    color: var(--text-primary);
    transition: color 0.3s, transform 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    color: var(--accent-primary);
    transform: scale(1.2);
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 2rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    margin-left: auto;
}


.mobile-menu-btn .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .navbar {
        padding: 1rem 2rem;
    }

    .nav-links a {
        margin: 0 0.8rem;
    }
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);

    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 999;
}

.nav-open+.menu-overlay {
    opacity: 1;
    pointer-events: auto;
}

.navbar.nav-open {
    max-height: 80vh;
    overflow-y: auto;
}

@media (max-width: 960px) {
    .mobile-menu-btn {
        display: flex;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    /* Compact Mobile Menu with Blurred Backdrop */
    .nav-open .nav-links,
    .nav-open .nav-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .navbar.nav-open {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 36rem;
        flex-wrap: wrap;
        align-content: flex-start;
        padding: 1.5rem 2rem 3rem;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 1000;
        border-bottom: 1px solid var(--glass-border);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    }

    .navbar {
        position: sticky;
    }

    /* Blurred backdrop behind menu */
    .navbar.nav-open::after {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: auto;
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: -1;
    }

    body.light-theme .navbar.nav-open {
        background: rgba(255, 255, 255, 0.98);
    }

    body.light-theme .navbar.nav-open::after {
        background: rgba(255, 255, 255, 0.4);
    }

    .nav-open .nav-links {
        margin-top: 2rem;
        gap: .5rem;

    }

    .nav-open .nav-actions {

        padding-top: 2rem;

        border-top: 1px solid var(--glass-border);
        gap: 2rem;
        width: 100%;
    }

    /* Staggered Animations for Links */
    .nav-links a {
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .nav-open .nav-links a {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-open .mobile-menu-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        z-index: 1002;
        /* above everything */
    }

    .nav-open .nav-links a:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-open .nav-links a:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-open .nav-links a:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-open .nav-links a:nth-child(4) {
        transition-delay: 0.25s;
    }

    /* Actions also animate */
    .nav-open .nav-actions>* {
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.4s ease;
        transition-delay: 0.3s;
    }

    .nav-open .nav-actions>.theme-toggle {
        transition-delay: 0.35s;
    }

    .nav-open .nav-actions>.lang-dropdown {
        transition-delay: 0.4s;
    }

    .nav-open .nav-actions>* {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links a {
        font-size: 1rem;
        margin: 1rem 0;
    }

    .logo-brand-saba {
        font-size: 1.4rem;
    }

    .logo-brand-nubian {
        font-size: 1.4rem;
    }

    .logo-img {
        height: 30px;
    }

    .nav-open .mobile-menu-btn .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-open .mobile-menu-btn .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-open .mobile-menu-btn .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
}

@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.25rem;

    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 4rem 1.5rem;
    }

    .sector-panel {
        justify-content: center;
        padding: 0;
    }





    .panel-content {

        padding: 1.5rem;
        width: 100%;
    }

    .panel-content h3 {
        font-size: 1.8rem;
    }

    .panel-content p {
        font-size: 1rem;
    }

    .card {
        padding: 1rem;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .business-section {
        padding: 7rem 1.5rem 4rem;
    }

    .purpose-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem 1.5rem;
    }
}

/* Services CTA Section */
.services-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem;
    min-height: 40vh;
    border-top: 1px solid var(--glass-border);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-content .section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.cta-content .section-intro {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

.cta-actions .examine-btn {
    position: relative;
    padding: 1.5rem 4.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    background: transparent;
    border: 1px solid var(--accent-primary);
    border-radius: 50px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 0 0 rgba(255, 60, 60, 0);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.cta-actions .examine-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--accent-primary);
    z-index: -1;
    transition: width 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cta-actions .examine-btn:hover {
    color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 60, 60, 0.4);
    letter-spacing: 4px;
}

.cta-actions .examine-btn:hover::before {
    width: 100%;
}

.cta-actions .examine-btn::after {
    content: '→';
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.cta-actions .examine-btn:hover::after {
    transform: translateX(8px);
}

/* Optional Pulse effect */
@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 60, 60, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(255, 60, 60, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 60, 60, 0);
    }
}

.cta-actions .examine-btn {
    animation: pulse-red 2s infinite;
}


@media (max-width: 768px) {
    .services-cta {
        padding: 4rem 1.5rem;
    }

    .cta-actions .examine-btn {
        padding: 1.2rem 2.5rem;
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .cta-actions .examine-btn:hover {
        letter-spacing: 2px;
    }

    .cta-content .section-title {
        font-size: 2rem;
    }

    .cta-content .section-intro {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo-brand-saba {
        font-size: 1.2rem;
    }

    .logo-brand-nubian {
        font-size: 1.2rem;
    }

    .navbar {
        padding: 0.8rem 1rem;
    }

    .logo-img {
        height: 32px;
    }

    .main-title {
        font-size: 1.8rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .sector-header {
        margin: 1.5rem 1rem;
    }

    .sub-item-card {
        padding: 1.5rem;
        min-height: 140px;
    }

    .cta-actions .examine-btn {
        padding: 1rem 2rem;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .services-cta {
        padding: 3rem 1rem;
        min-height: 30vh;
    }
}