/* CSS Variables & Design System */
:root {
    /* Colors */
    --bg-dark: #0a0a0c;
    --bg-darker: #050506;
    --text-main: #f0f0f5;
    --text-muted: #a0a0b0;

    --color-red: #ff3333;
    --color-orange: #ff7b00;

    --gradient-primary: linear-gradient(135deg, var(--color-red) 0%, var(--color-orange) 100%);
    --gradient-hover: linear-gradient(135deg, var(--color-orange) 0%, var(--color-red) 100%);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(12px);

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

    /* Transitions */
    --transition-fast: 0.2s ease-out;
    --transition-medium: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Light Mode Theme */
body.light-mode {
    --bg-dark: #f8f9fa;
    --bg-darker: #ffffff;
    --text-main: #212529;
    --text-muted: #6c757d;
    --glass-bg: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.08);
}
body.light-mode h1, 
body.light-mode h2, 
body.light-mode h3, 
body.light-mode h4, 
body.light-mode h5, 
body.light-mode h6, 
body.light-mode .logo,
body.light-mode .menu a,
body.light-mode .theme-toggle-btn {
    color: #111111;
}
body.light-mode .glass-header {
    background: rgba(255, 255, 255, 0.9);
}
body.light-mode .glass-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
}
body.light-mode .btn-secondary {
    color: var(--text-main);
}
body.light-mode .btn-secondary:hover {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}
body.light-mode .menu-toggle {
    color: #111111;
}
body.light-mode .project-link {
    color: var(--text-main);
}
body.light-mode .project-link:hover {
    color: var(--color-red);
}
body.light-mode .menu-container {
    background: rgba(255, 255, 255, 0.98);
}
body.light-mode .education-box,
body.light-mode .certification-box {
    background: rgba(0, 0, 0, 0.03);
}

/* Global Reset & Typography */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-top: 0;
    color: #ffffff;
}

a {
    color: var(--text-main);
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility Classes */
.highlight-red {
    color: var(--color-red);
}

.highlight-orange {
    color: var(--color-orange);
}

.text-center {
    text-align: center;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.relative {
    position: relative;
}

.section-padding {
    padding: 100px 0;
}

.dark-bg {
    background-color: var(--bg-darker);
}


/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    transition: all var(--transition-medium);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 8px 20px rgba(255, 51, 51, 0.3);
}

.btn-primary:hover {
    background: var(--gradient-hover);
    box-shadow: 0 10px 25px rgba(255, 123, 0, 0.4);
    transform: translateY(-2px);
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--color-red);
    color: #fff;
}


/* Header & Navigation */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-medium);
}

.glass-header {
    background: rgba(10, 10, 12, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

.site-header.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 12, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.menu a {
    font-size: 1rem;
    font-weight: 500;
    position: relative;
}

.menu a:not(.btn-primary-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-medium);
}

.menu a:not(.btn-primary-nav):hover::after,
.menu a.active::after {
    width: 100%;
}

.menu a:hover {
    color: #fff;
}

.btn-primary-nav {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 10px 30px;
    border-radius: 20px;
    transition: all var(--transition-medium);
}

.btn-primary-nav:hover {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #fff;
}

.theme-toggle-btn {
    color: #fff;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
}


/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    animation: float 10s infinite ease-in-out alternate;
}

.red-orb {
    top: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: var(--color-red);
}

.orange-orb {
    bottom: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: var(--color-orange);
    animation-delay: -5s;
}

.bottom-orb {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    width: 800px;
    height: 400px;
    opacity: 0.1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text {
    max-width: 800px;
}

.hero-greeting {
    font-family: var(--font-heading);
    color: var(--color-orange);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}


/* Section Layouts & Components */
.section-heading {
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-line {
    width: 60px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 30px;
    transition: transform var(--transition-medium), border-color var(--transition-medium);
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 51, 51, 0.3);
}

/* About Section */
.grid-2-col {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: stretch;
}

.about-text h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.education-box,
.certification-box {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid var(--color-red);
}

.certification-box {
    border-left-color: var(--color-orange);
}

.education-box h4,
.certification-box h4 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.education-box h4 i,
.certification-box h4 i {
    margin-right: 12px;
}

.certification-box ul {
    list-style: disc;
    padding-left: 20px;
    color: var(--text-muted);
}

/* Certificate Buttons */
.btn-cert {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 51, 51, 0.1);
    color: var(--color-red);
    border: 1px solid var(--color-red);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-fast);
}
.btn-cert:hover {
    background: var(--color-red);
    color: #fff;
}
.cert-list {
    list-style: none !important;
    padding-left: 0 !important;
}
.cert-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
}
.cert-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.btn-cert-small {
    padding: 6px 12px;
    background: rgba(255, 123, 0, 0.1);
    color: var(--color-orange);
    border-radius: 12px;
    font-size: 0.8rem;
    transition: all var(--transition-fast);
}
.btn-cert-small:hover {
    background: var(--color-orange);
    color: #fff;
}

.about-image-container {
    height: 100%;
}

.about-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: var(--glass-bg);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
    backdrop-filter: var(--glass-blur);
    transition: border-color var(--transition-medium);
}

.image-placeholder:hover {
    border-color: rgba(255, 51, 51, 0.3);
}

.image-accent-border {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-orange);
    border-radius: 20px;
    z-index: 1;
    transition: transform var(--transition-medium);
}

.about-image-wrapper:hover .image-accent-border {
    transform: scale(1.05);
}

/* Profile Card Socials */
.profile-card {
    flex-direction: column;
    justify-content: flex-start;
    padding: 30px;
    gap: 40px;
}

.profile-avatar {
    font-size: 7rem;
    color: var(--color-red);
}

.profile-socials {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.profile-social-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-main);
    transition: all var(--transition-fast);
    padding: 10px 15px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid transparent;
}

.profile-social-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
    border-color: var(--glass-border);
}

body.light-mode .profile-social-item {
    background: rgba(0, 0, 0, 0.04);
    border-color: rgba(0, 0, 0, 0.05);
}

body.light-mode .profile-social-item:hover {
    background: rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 51, 51, 0.3);
}

.social-icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255, 51, 51, 0.1);
    color: var(--color-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    transition: all var(--transition-fast);
}

.profile-social-item:hover .social-icon-box {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 51, 51, 0.3);
}

.social-text {
    display: flex;
    flex-direction: column;
}

.social-name {
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--text-main);
}

.social-username {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Tech Stack Section */
.tech-stack-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.tech-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    height: 100px;
    padding: 15px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all var(--transition-medium);
}

.tech-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-orange);
    box-shadow: 0 10px 20px rgba(255, 123, 0, 0.1);
}

.tech-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    object-fit: contain;
}

.tech-name {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Projects Section */
.projects-filter {
    display: flex;
    justify-content: flex-start;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 8px 24px;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--color-orange);
    color: #fff;
    border-color: var(--color-orange);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.project-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    overflow: hidden;
}

.project-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
}

.project-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.project-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.project-desc {
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.project-tags span {
    font-size: 0.8rem;
    padding: 4px 12px;
    background: rgba(255, 51, 51, 0.1);
    color: var(--color-orange);
    border-radius: 20px;
    font-family: var(--font-heading);
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-weight: 600;
    font-family: var(--font-heading);
}

.project-link:hover {
    color: var(--color-red);
}

/* Individual Project Page */
.project-detail-section {
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: 80vh;
}

.project-detail-header .section-title {
    margin-bottom: 20px;
}

.project-detail-header .section-line {
    margin-bottom: 40px;
}

.project-detail-content {
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.project-detail-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

body.light-mode .project-detail-content h3 {
    color: #111;
}

.project-detail-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.project-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.project-actions .btn i {
    margin-right: 8px;
}

/* Contact Section */
.contact-section {
    overflow: hidden;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 51, 51, 0.1);
    color: var(--color-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-details p,
.contact-details a {
    color: var(--text-muted);
    margin: 0;
}

.contact-details a:hover {
    color: var(--color-red);
}

.social-links-lg {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
}

.social-btn {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all var(--transition-medium);
}

.social-btn:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
    border-color: transparent;
    color: #fff;
}

/* Contact Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all var(--transition-fast);
    box-sizing: border-box;
}

.form-group textarea {
    resize: none;
    min-height: 120px;
}


body.light-mode .form-group input,
body.light-mode .form-group textarea {
    background: rgba(255, 255, 255, 0.5);
    border-color: rgba(0, 0, 0, 0.1);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 2px rgba(255, 123, 0, 0.2);
}

.form-message {
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    font-weight: 500;
}
.form-message.success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}
.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.contact-form .btn-primary i {
    margin-left: 8px;
}


/* Footer */
.site-footer {
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
    padding-top: 60px;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-widget p {
    color: var(--text-muted);
    max-width: 300px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all var(--transition-medium);
}

.social-links a:hover {
    background: var(--color-red);
    color: #fff;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-contact li {
    margin-bottom: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    word-break: break-word;
}

.footer-links a {
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--color-orange);
    padding-left: 5px;
}

.footer-contact i {
    color: var(--color-red);
    width: 15px;
    text-align: center;
    flex-shrink: 0;
}

.site-info {
    border-top: 1px solid var(--glass-border);
    padding: 20px 0;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}


/* Animations */
@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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


/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .grid-2-col {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        max-width: 100%;
        margin: 0 auto;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .menu-container {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(10, 10, 12, 0.98);
        backdrop-filter: blur(20px);
        transition: left var(--transition-medium);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .menu-container.active {
        left: 0;
    }

    .menu {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .menu a {
        font-size: 1.5rem;
    }

    .menu a.btn-primary-nav {
        font-size: 1.1rem;
        padding: 10px 24px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

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

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .project-links {
        justify-content: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-bottom-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
    }

    .contact-info {
        gap: 40px;
    }

    .project-tags {
        justify-content: center;
    }

    .project-card {
        text-align: center;
    }

    .projects-grid {
        gap: 30px;
    }

    .project-detail-section {
        padding-top: 120px !important;
    }

    .project-actions {
        flex-direction: column;
        width: 100%;
    }

    .project-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}