:root {
    /* Premium Color Palette - HSL for better control */
    --accent: 206, 100%, 42%;
    /* Microsoft Azure Blue */
    --accent-glow: 206, 100%, 42%, 0.3;
    --primary: #0078D4;
    --secondary: #00BCF2;
    /* Cyan for accents */

    /* Dark Surface System */
    --bg-white: #ffffff;
    --bg-deep: #000b18;
    /* Near black azure depth */
    --bg-surface: rgba(0, 15, 30, 0.7);
    /* Glass surface */
    --bg-card: rgba(0, 20, 40, 0.5);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: #b3c5d7;
    --text-muted: #64748b;

    /* Layout */
    --container-width: 100%;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);

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

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) var(--bg-deep);
}

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

h1,
h2,
h3,
h4,
.logo {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 0%, hsl(var(--accent)) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Premium Top Bar --- */
.top-bar {
    background: linear-gradient(90deg, #001529 0%, #003a70 100%);
    color: white;
    padding: 0.6rem 0;
    font-size: 0.85rem;
    font-weight: 500;
    border-bottom: 1px solid var(--glass-border);
}

.top-bar .container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3rem;
}

.top-info {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.top-info span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.9;
}

.top-info i {
    color: var(--primary);
}

.top-social {
    display: flex;
    gap: 1.5rem;
}

.top-social a {
    color: white;
    opacity: 0.7;
    transition: all 0.3s ease;
    text-decoration: none;
}

.top-social a:hover {
    opacity: 1;
    transform: translateY(-1px);
    color: var(--primary);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2000;
    padding: 1.5rem 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: transparent;
}

.navbar.scrolled {
    padding: 1rem 0;
    background: rgba(1, 6, 11, 0.85);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    line-height: 1;
}

.logo-cloud {
    color: var(--secondary); /* The cyan glow */
    font-size: 3.2rem;
    filter: drop-shadow(0 0 12px rgba(0, 188, 242, 0.6));
}

.logo-text-block {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-main {
    font-size: 2.3rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.05em;
}

.logo-sub {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.15em;
    margin-top: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-transform: uppercase;
}

.logo-line {
    display: inline-block;
    width: 25px;
    height: 2px;
    background: var(--secondary);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
}

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

.nav-links a:hover {
    color: white;
}

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

.menu-toggle {
    display: none;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    padding: 12rem 0 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-deep);
    overflow: hidden;
}

/* Animated Cyber/Azure Grid Background */
.bg-mesh {
    position: absolute;
    inset: 0;
    z-index: 1;
    background-image: 
        linear-gradient(rgba(0, 120, 212, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 120, 212, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    transform-origin: center;
    transform: perspective(1000px) rotateX(60deg) scale(2.5) translateY(-50px) translateZ(-200px);
    animation: gridFlow 15s linear infinite;
    opacity: 0.7;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center 30%, transparent 0%, var(--bg-deep) 70%);
    z-index: 2;
    pointer-events: none;
}

@keyframes gridFlow {
    0% { transform: perspective(1000px) rotateX(60deg) scale(2.5) translateY(0) translateZ(-200px); }
    100% { transform: perspective(1000px) rotateX(60deg) scale(2.5) translateY(50px) translateZ(-200px); }
}

.hero .container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.profile-intro {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 2rem;
}

.profile-intro i {
    color: var(--primary);
}

.profile-name-sm {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 2rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1.2rem 2.8rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 30px rgba(var(--accent), 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(var(--accent), 0.5);
    background: hsl(210, 100%, 60%);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    color: white;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    transform: translateY(-5px);
}

/* --- Premium Azure Ecosystem Animation --- */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    z-index: 10;
}

.azure-ecosystem {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.azure-core {
    width: 130px;
    height: 130px;
    background: radial-gradient(circle, #00BCF2 0%, #0078D4 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4.5rem;
    color: white;
    box-shadow: 0 0 50px rgba(0, 188, 242, 0.5), inset 0 0 20px rgba(255,255,255,0.6);
    z-index: 10;
    animation: corePulse 3s ease-in-out infinite alternate;
    position: relative;
}

.azure-core::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 2px dashed rgba(0, 188, 242, 0.4);
    animation: spin 10s linear infinite;
}

@keyframes corePulse {
    0% { transform: scale(1); box-shadow: 0 0 30px rgba(0, 188, 242, 0.4); }
    100% { transform: scale(1.05); box-shadow: 0 0 70px rgba(0, 188, 242, 0.8), inset 0 0 30px rgba(255,255,255,0.8); }
}

.azure-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    transform-style: preserve-3d;
}

.orbit-1 {
    width: 280px;
    height: 280px;
    border: 1.5px solid rgba(0, 188, 242, 0.2);
    animation: orbitSpin 20s linear infinite;
}

.orbit-2 {
    width: 420px;
    height: 420px;
    border: 1px dashed rgba(0, 120, 212, 0.3);
    animation: orbitSpinRev 35s linear infinite;
}

@keyframes orbitSpin {
    0% { transform: translate(-50%, -50%) rotateX(65deg) rotateZ(0deg); }
    100% { transform: translate(-50%, -50%) rotateX(65deg) rotateZ(360deg); }
}

@keyframes orbitSpinRev {
    0% { transform: translate(-50%, -50%) rotateX(65deg) rotateZ(360deg); }
    100% { transform: translate(-50%, -50%) rotateX(65deg) rotateZ(0deg); }
}

.azure-node {
    position: absolute;
    width: 55px;
    height: 55px;
    background: var(--bg-deep);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.4rem;
    box-shadow: 0 0 20px rgba(0, 120, 212, 0.5), inset 0 0 10px rgba(0, 188, 242, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.azure-node:hover {
    background: var(--primary);
    color: white;
    box-shadow: 0 0 30px rgba(0, 188, 242, 0.8);
    transform: scale(1.2) !important;
}

.orbit-1 .node-vm { top: -27.5px; left: calc(50% - 27.5px); animation: keepUpright1 20s linear infinite reverse; }
.orbit-1 .node-db { bottom: -27.5px; left: calc(50% - 27.5px); animation: keepUpright1 20s linear infinite reverse; }

.orbit-2 .node-sec { top: 15%; left: 0px; animation: keepUpright2 35s linear infinite reverse; }
.orbit-2 .node-net { bottom: 15%; right: 0px; animation: keepUpright2 35s linear infinite reverse; }
.orbit-2 .node-ai { bottom: -27.5px; left: calc(50% - 27.5px); animation: keepUpright2 35s linear infinite reverse; }

@keyframes keepUpright1 {
    0% { transform: rotateZ(0deg) rotateX(-65deg); }
    100% { transform: rotateZ(-360deg) rotateX(-65deg); }
}

@keyframes keepUpright2 {
    0% { transform: rotateZ(-360deg) rotateX(-65deg); }
    100% { transform: rotateZ(0deg) rotateX(-65deg); }
}

.azure-node span {
    position: absolute;
    bottom: -30px;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    background: rgba(0, 11, 24, 0.8);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 188, 242, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.azure-node:hover span {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* --- Stats Section --- */
.section {
    padding: 10rem 0;
}

.subtitle {
    text-align: center;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    display: block;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 5rem;
    line-height: 1.2;
}

/* --- Service Cards (Glassmorphism) --- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.card {
    background: var(--bg-surface);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3.5rem 2.5rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 145, 255, 0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(0, 145, 255, 0.6);
    box-shadow:
        0 0 30px rgba(0, 145, 255, 0.2),
        var(--glass-shadow);
}

.card:hover::before {
    opacity: 1;
}

.card-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 145, 255, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 145, 255, 0.2);
}

.card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.card-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.card-list li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 0.8rem;
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
}

.card-list li i {
    color: var(--primary);
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

.btn-card {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.btn-card:hover {
    gap: 0.8rem;
}

/* --- Certifications --- */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.cert-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    text-align: center;
    transition: all 0.4s ease;
}

.cert-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--secondary);
}

.cert-badge {
    background: var(--secondary);
    color: #000;
    padding: 0.4rem 1.4rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    display: inline-block;
}

/* --- Skills Tagging --- */
.skills-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1.6rem;
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
    border-color: var(--primary);
}

/* --- Contact & Footer --- */
.address-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
}

.contact-card.glass {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-card .icon {
    font-size: 1.8rem;
    color: var(--primary);
}

.form-container {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-title {
    font-size: 2rem;
    color: white;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.form-subtitle {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.input-group label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    background: rgba(0, 11, 24, 0.8);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.input-group textarea {
    min-height: 120px;
    resize: vertical;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 120, 212, 0.4);
}

.input-group input::placeholder,
.input-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.btn-submit {
    margin-top: 1rem;
    justify-content: center;
    border: none;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
}

.main-footer {
    background: var(--bg-deep);
    padding: 8rem 0 4rem;
    border-top: 1px solid var(--glass-border);
}

.footer-main-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 4rem;
    margin-bottom: 6rem;
}

.footer-col h4 {
    color: white;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 1rem;
}

.footer-col a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* Secondary Horizontal Footer Layout */
.footer-divider {
    height: 1px;
    background: var(--glass-border);
    margin: 4rem 0;
}

.footer-secondary-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-sub-col h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.sub-col-lists {
    display: flex;
    gap: 4rem;
}

.sub-col-lists ul {
    list-style: none;
}

.sub-col-lists li {
    margin-bottom: 0.8rem;
}

.sub-col-lists a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.sub-col-lists a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 4rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- Floating Utilities --- */
.floating-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 145, 255, 0.4);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.3s ease;
}

.floating-contact:hover {
    transform: scale(1.1) rotate(10deg);
}

/* --- Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* --- Responsive Layout --- */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero p {
        margin: 0 auto 3.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .address-grid {
        grid-template-columns: 1fr;
    }
}

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

    .top-info {
        display: none;
    }

    .container {
        padding: 0 1.2rem;
    }

    .logo { gap: 0.5rem; }
    
    .logo-cloud {
        font-size: 2.2rem;
    }
    
    .logo-main {
        font-size: 1.6rem;
        letter-spacing: 0.05em;
    }
    
    .logo-sub {
        font-size: 0.6rem;
        letter-spacing: 0.1em;
        margin-top: 0.2rem;
    }
    
    .logo-line {
        width: 15px;
    }
    
    .menu-toggle {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
        color: white;
        z-index: 2500;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(1, 6, 11, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s ease;
        z-index: 2050;
        backdrop-filter: blur(15px);
        margin: 0;
        padding: 0;
    }

    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .nav-links a {
        font-size: 1.5rem;
    }

    .hero {
        padding: 8rem 0 4rem;
        text-align: center;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .profile-intro {
        margin-top: 2rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }

    .hero-btns {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-visual {
        transform: scale(0.65);
        transform-origin: top center;
        height: 350px;
        margin-top: 1rem;
    }
    
    .azure-ecosystem {
        width: 100%;
    }

    .floating-contact {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .section {
        padding: 5rem 0;
    }

    .footer-main-grid {
        gap: 2rem;
    }

    .footer-secondary-grid {
        flex-direction: column;
        gap: 2rem;
    }
    
    .sub-col-lists {
        flex-direction: column;
        gap: 1rem;
    }
}
