:root {
    --bg-main: #f8fafc; /* Very light slate */
    --bg-alt: #ffffff; /* Pure white */
    --primary: #cc8c33; /* Gold */
    --primary-hover: #b87a24;
    --primary-glow: rgba(204, 140, 51, 0.15);
    --secondary: #0f172a; /* Trustworthy deep slate/navy */
    --secondary-glow: rgba(15, 23, 42, 0.15);
    --text-main: #0f172a; /* Almost black */
    --text-muted: #475569; /* Medium slate */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(204, 140, 51, 0.3);
    --glass-border-hover: rgba(204, 140, 51, 0.7);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: rgba(204, 140, 51, 0.5); border-radius: 5px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    width: 0%; height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    z-index: 9999;
    box-shadow: 0 0 10px var(--primary-glow);
    transition: width 0.1s;
}

/* Background Particles (Subtle for light mode) */
#particles-js {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 0;
    background: 
        radial-gradient(circle at 15% 50%, rgba(204, 140, 51, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(15, 23, 42, 0.02) 0%, transparent 50%);
}

/* Typography & Utilities */
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 800; letter-spacing: -0.5px; color: var(--text-main); }

.gradient-text {
    background: linear-gradient(135deg, var(--primary), #b87a24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title { font-size: 4rem; line-height: 1.1; margin-bottom: 1rem; color: var(--text-main); }
.section-title { font-size: 2.8rem; margin-bottom: 1rem; }
.subtitle { font-size: 1.6rem; font-weight: 500; color: var(--text-main); margin-bottom: 1.5rem; }
.section-subtitle { font-size: 1.1rem; color: var(--text-muted); max-width: 700px; margin: 0 auto; }
.text-center { text-align: center; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 10; }

/* Reduced Global Padding */
.section { padding: 4.5rem 0; position: relative; } 

.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2.5rem; }
.relative { position: relative; }
.z-10 { z-index: 10; }

/* Text Utilities */
.text-danger { color: #dc2626; margin-bottom: 0.5rem; }
.text-success { color: var(--primary); margin-bottom: 0.5rem; }

/* Badges */
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(204, 140, 51, 0.08);
    border: 1px solid rgba(204, 140, 51, 0.2);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 2px 10px rgba(204, 140, 51, 0.05);
}

/* Glassmorphism & Cards (Light Mode) */
.glass-nav {
    position: fixed; top: 0; width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    display: flex; justify-content: space-between; align-items: center;
    padding: 1.2rem 4rem; z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.glass-nav.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.glass-card {
    background: var(--bg-alt);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.tilt-card { transform-style: preserve-3d; perspective: 1000px; }
.tilt-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06), 0 0 20px rgba(204, 140, 51, 0.1);
    transform: translateY(-4px);
}

.card-glow {
    position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at center, rgba(204, 140, 51, 0.04) 0%, transparent 50%);
    opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.tilt-card:hover .card-glow { opacity: 1; }

/* Navigation */
.logo { font-family: var(--font-heading); font-size: 2rem; font-weight: 900; color: var(--secondary); letter-spacing: -1px; }
.glow-text { text-shadow: none; } /* Disabled glow for light mode */
.nav-links { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 600; font-size: 0.95rem; transition: color 0.3s ease; }
.nav-links a:hover { color: var(--primary); }
.mobile-menu-btn { display: none; background: transparent; border: none; color: var(--text-main); cursor: pointer; }

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block; padding: 0.9rem 1.8rem; border-radius: 30px; font-weight: 700; text-decoration: none; transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); cursor: pointer; text-align: center;
}
.btn-primary {
    background: var(--secondary);
    color: #ffffff !important; border: none;
    box-shadow: 0 4px 15px var(--secondary-glow);
}
.btn-primary:hover {
    box-shadow: 0 8px 25px var(--secondary-glow);
    transform: translateY(-3px) scale(1.02);
    background: #1e293b;
}
.pulse { animation: pulse-light 2.5s infinite; }
@keyframes pulse-light {
    0% { box-shadow: 0 0 0 0 rgba(15, 23, 42, 0.2); }
    70% { box-shadow: 0 0 0 15px rgba(15, 23, 42, 0); }
    100% { box-shadow: 0 0 0 0 rgba(15, 23, 42, 0); }
}

.btn-secondary {
    background: transparent; color: var(--secondary) !important; border: 2px solid var(--secondary);
}
.btn-secondary:hover { background: var(--secondary); color: #ffffff !important; transform: translateY(-3px); }
.large { padding: 1.1rem 2.2rem; font-size: 1.05rem; }

/* Featured Work Section */
.featured-work { padding-bottom: 2rem; }
.featured-card { padding: 3rem; background: rgba(255, 255, 255, 0.7); max-width: 1200px; margin: 0 auto; border-radius: 24px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); display: flex; gap: 4rem; align-items: center; flex-wrap: wrap; }
.featured-content { flex: 1; min-width: 300px; }
.featured-visuals { flex: 1; min-width: 300px; display: flex; flex-direction: column; gap: 1rem; }
.featured-gallery-main { width: 100%; border-radius: 16px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); border: 1px solid rgba(0,0,0,0.05); }
.featured-gallery-thumbs { display: flex; gap: 1rem; overflow-x: auto; padding-bottom: 0.5rem; }
.featured-gallery-thumbs::-webkit-scrollbar { height: 6px; }
.featured-gallery-thumbs::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 10px; }
.featured-gallery-thumbs img { width: 120px; height: 80px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 1px solid rgba(0,0,0,0.05); transition: transform 0.2s, box-shadow 0.2s; }
.featured-gallery-thumbs img:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.1); border-color: var(--primary); }
.featured-title { font-size: 2rem; margin: 1rem 0; color: var(--text-main); }
.featured-description { font-size: 1.15rem; line-height: 1.7; color: var(--text-muted); }
.featured-stats { display: flex; gap: 3rem; margin-bottom: 1.5rem; }
.stat-box { display: flex; flex-direction: column; }
.stat-value { font-size: 2.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.stat-label { font-size: 0.9rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 0.5rem; }

/* Hero Section */
.hero {
    min-height: auto;
    padding: 10rem 0 6rem 0; 
    background-color: #fcfcfd;
    background-image: 
        linear-gradient(to right, rgba(15, 23, 42, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    background-position: center center;
    position: relative;
    overflow: hidden;
}

/* Premium Mesh Glows */
.hero::before {
    content: '';
    position: absolute;
    top: -20%; left: -10%;
    width: 60%; height: 100%;
    background: radial-gradient(circle, rgba(204, 140, 51, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%; right: -10%;
    width: 70%; height: 120%;
    background: radial-gradient(circle, rgba(148, 163, 184, 0.1) 0%, transparent 60%);
    z-index: 0;
    pointer-events: none;
}

/* Ensure content stays above the background */
.hero-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.hero-content { max-width: 650px; }
.hero .description { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 2.5rem; line-height: 1.7; }
.hero-cta { display: flex; gap: 1.2rem; align-items: center; }
.typewriter-text { color: var(--primary); border-right: 3px solid var(--primary); padding-right: 5px; animation: blink 0.75s step-end infinite; }
@keyframes blink { 50% { border-color: transparent; } }

/* Hero Visuals (Image + Facts) */
.hero-visuals {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}
.hero-image-wrapper {
    width: 320px;
    height: 320px;
    border-radius: 50%;
    overflow: hidden;
    border: 8px solid #ffffff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}
.hero-large-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-quick-facts {
    background: var(--bg-alt);
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.03);
    width: 100%;
    max-width: 450px;
}
.quick-facts-list { list-style: none; margin-top: 1.5rem; }
.quick-facts-list li { margin-bottom: 1.5rem; display: flex; align-items: flex-start; gap: 1.2rem; }
.fact-icon { flex-shrink: 0; width: 44px; height: 44px; background: rgba(204, 140, 51, 0.1); display: flex; align-items: center; justify-content: center; border-radius: 12px; color: var(--primary); }
.quick-facts-list small { color: var(--text-muted); font-size: 0.95rem; }

/* Grids */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.portfolio-grid, .team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
/* Tech Marquee */
.tech-marquee-wrapper {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 2rem 0;
}
.tech-marquee-wrapper::before,
.tech-marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 15vw;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.tech-marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-main), transparent);
}
.tech-marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-main), transparent);
}

.tech-marquee {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

.tech-marquee:hover {
    animation-play-state: paused;
}

.tech-card {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    border-radius: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}
.tech-card:hover {
    transform: translateY(-5px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 15px 30px rgba(204, 140, 51, 0.15);
    color: var(--primary);
}

@keyframes scroll-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}

/* Bento Grid */
.bento-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.bento-item.featured { 
    grid-column: 1 / -1; 
    background: linear-gradient(145deg, rgba(204, 140, 51, 0.05) 0%, rgba(204, 140, 51, 0.01) 100%);
    border-color: rgba(204, 140, 51, 0.3);
}

/* Process Steps & Pipeline Animation */
.workflow-pipeline-container {
    padding: 2rem 0;
    margin-bottom: 2rem;
}
.pipeline-nodes {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}
.pipeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80px;
}
.node-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--bg-alt);
    border: 3px solid var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(204, 140, 51, 0.2);
    position: relative;
    margin-bottom: 1rem;
    z-index: 3;
}
.node-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid var(--primary);
    animation: node-pulse 2s infinite;
}
@keyframes node-pulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.6); opacity: 0; }
}
.node-label {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
    text-align: center;
}
.pipeline-track {
    position: absolute;
    top: 50px; /* 2rem + 30px (half of icon) */
    left: 40px;
    right: 40px;
    height: 4px;
    background: rgba(0,0,0,0.05);
    z-index: 1;
    border-radius: 2px;
}
.pipeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
    animation: progress-fill 3s infinite;
}
.pipeline-packet {
    position: absolute;
    top: -4px;
    left: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px var(--primary);
    animation: packet-move 3s infinite;
    z-index: 2;
}
@keyframes progress-fill {
    0% { width: 0%; }
    100% { width: 100%; }
}
@keyframes packet-move {
    0% { left: 0%; }
    100% { left: 100%; }
}

.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
.step { padding: 2rem; overflow: hidden; }
.step-number {
    font-family: var(--font-heading); font-size: 5rem; font-weight: 900;
    color: rgba(0, 0, 0, 0.03); position: absolute; top: -10px; right: 10px; line-height: 1; z-index: 0;
}
.step h3, .step p { position: relative; z-index: 1; }

/* Icons & Content Styling */
.icon-box, .icon-container {
    width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; color: var(--primary);
    background: rgba(204, 140, 51, 0.1);
    border: 1px solid rgba(204, 140, 51, 0.2);
}

.flex-title { display: flex; align-items: center; gap: 0.8rem; }

h3 { font-size: 1.5rem; margin-bottom: 0.8rem; color: var(--text-main); }
p { color: var(--text-muted); font-size: 1.05rem; }

/* Ambient Glows */
.ambient-glow {
    position: absolute; top: 20%; left: 10%; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(204, 140, 51, 0.04) 0%, transparent 70%);
    filter: blur(60px); pointer-events: none; z-index: 0;
}

/* Tags & Metrics */
.portfolio-tag, .tech-tag, .ai-tag {
    display: inline-block; padding: 0.3rem 0.8rem; 
    border-radius: 20px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.5px; margin-bottom: 1rem;
}

.portfolio-tag {
    background: rgba(204, 140, 51, 0.1); color: var(--primary); border: 1px solid rgba(204, 140, 51, 0.2); text-transform: uppercase;
}

.tech-tag {
    background: var(--bg-alt); color: var(--text-muted); border: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 0; transition: all 0.3s ease;
}
.tech-tag:hover {
    background: rgba(204, 140, 51, 0.05); border-color: var(--primary); color: var(--primary);
    transform: translateY(-2px);
}

.ai-tags-container {
    display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1rem;
}
.ai-tag {
    background: rgba(204, 140, 51, 0.06);
    color: var(--primary); border: 1px solid rgba(204, 140, 51, 0.2); margin-bottom: 0;
}

.impact-metric {
    padding-top: 1rem; margin-top: 1rem; border-top: 1px solid rgba(0,0,0,0.05); font-size: 0.95rem; color: var(--text-main);
}
.impact-metric strong { color: var(--primary); }

/* Team Section */
.team-member { text-align: center; padding: 1.5rem; }
.team-avatar {
    width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1.2rem auto;
    background: var(--bg-main); border: 2px solid rgba(0,0,0,0.05);
    display: flex; align-items: center; justify-content: center; color: var(--text-muted);
}
.team-name { font-size: 1.3rem; margin-bottom: 0.3rem; }
.team-role { color: var(--primary); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; margin-bottom: 0.8rem;}
.team-bio { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1.2rem; line-height: 1.5; }
.team-social { display: inline-block; font-size: 0.9rem; font-weight: 600; color: var(--text-main); transition: all 0.3s ease; border-bottom: 1px solid transparent; }
.team-social:hover { color: var(--primary); border-color: var(--primary); }

/* Footer */
.footer { border-top: 1px solid rgba(0,0,0,0.05); background: var(--bg-alt); position: relative; overflow: hidden; padding: 4rem 0; }
.footer-ambient-glow {
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 800px; height: 400px;
    background: radial-gradient(ellipse at bottom, rgba(204, 140, 51, 0.04) 0%, transparent 70%); filter: blur(40px); pointer-events: none;
}
.footer-lead { font-size: 1.25rem; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.footer-cta-container { display: flex; flex-direction: column; align-items: center; gap: 2rem; }
.qr-container { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.qr-code-img { width: 120px; height: 120px; border-radius: 12px; border: 1px solid rgba(0,0,0,0.1); box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.qr-text { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-bottom { border-top: 1px solid rgba(0,0,0,0.05); padding-top: 1.5rem; color: var(--text-muted); font-size: 0.85rem; }

/* Animations */
.fade-in-up { opacity: 0; animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.slide-in { opacity: 0; transform: translateY(40px); transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.slide-in.visible { opacity: 1; transform: translateY(0); }

.delay-1 { animation-delay: 0.15s; transition-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; transition-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; transition-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; transition-delay: 0.6s; }

/* Responsive */
@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
    .bento-grid, .about-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 2.5rem; }
    .subtitle { font-size: 1.1rem; }
    .hero { padding: 7rem 1.5rem 3rem 1.5rem; }
    .glass-nav { padding: 1rem 1.5rem; }
    .mobile-menu-btn { display: block; }
    .nav-links { 
        position: absolute; top: 100%; left: 0; width: 100%;
        background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(20px);
        flex-direction: column; padding: 2rem; gap: 1.5rem;
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        opacity: 0; visibility: hidden; transform: translateY(-10px);
        transition: all 0.3s ease;
    }
    .nav-links.active {
        opacity: 1; visibility: visible; transform: translateY(0);
    }
    .hero-cta { flex-direction: column; width: 100%; gap: 1rem; }
    .hero-cta a { width: 100%; }
    
    /* Pipeline Mobile Adjustments */
    .node-icon { width: 45px; height: 45px; border-width: 2px; font-size: 1rem; }
    .pipeline-track { top: 40px; left: 25px; right: 25px; height: 3px; }
    .node-label { font-size: 0.75rem; }
    .pipeline-node { width: 60px; }
    
    /* Layout Adjustments */
    .glass-card { padding: 1.5rem; }
    .featured-card { padding: 1.5rem; flex-direction: column; gap: 2rem; align-items: stretch; }
    .featured-content, .featured-visuals { min-width: 0; width: 100%; }
    .featured-gallery-thumbs { max-width: 100%; }
    .featured-gallery-thumbs img { width: 80px; height: 50px; }
    .featured-title { font-size: 1.5rem; }
    .featured-stats { flex-direction: column; gap: 1.5rem; }
    .section-title { font-size: 2rem; }
    .hero-image-wrapper { width: 260px; height: 260px; }
    .team-grid, .portfolio-grid { grid-template-columns: 1fr; }
    .container { padding: 0 1.5rem; }
}
