/* ==================== RESET STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background-color: #f5f5f5;
    line-height: 1.6;
    cursor: url('asset/img/anh-con-cho-26.png'), auto;
}

/* ==================== HEADER ==================== */
.custom-header {
    width: 100%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.custom-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.custom-logo h1 {
    font-size: 26px;
    font-weight: bold;
    color: #007bff;
    text-transform: uppercase;
}

/* Navigation */
.custom-navmenu ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.custom-navmenu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    transition: all 0.3s ease;
    position: relative;
}

.custom-navmenu a::after {
    content: '';
    display: block;
    height: 2px;
    width: 0;
    background: #007bff;
    transition: width 0.3s ease-in-out;
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
}

.custom-navmenu a:hover::after {
    width: 100%;
}

.custom-navmenu a:hover {
    color: #007bff;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 180px;
    z-index: 100;
}

.dropdown:hover > ul {
    display: block;
}

.dropdown ul li {
    padding: 10px 15px;
}

.dropdown ul li a {
    display: block;
    width: 100%;
    color: #333;
}

.dropdown ul li a:hover {
    background: #f8f9fa;
}

/* Deep Dropdown */
.dropdown ul .dropdown ul {
    left: 100%;
    top: 0;
}

/* Social Icons */
.custom-header-social {
    display: flex;
    gap: 10px;
}

.custom-header-social a {
    color: #333;
    font-size: 20px;
    transition: color 0.3s ease;
}

.custom-header-social a:hover {
    color: #007bff;
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.custom-d-xl-none {
    display: none;
}

/* ========== RESPONSIVE DESIGN ========== */

@media (max-width: 768px) {
    /* Điều chỉnh header trên mobile */
    .custom-header {
        position: fixed;
        bottom: 0;
        top: auto;
        width: 100%;
        z-index: 1000;
    }



    .custom-logo h1 {
        font-size: 20px;
    }

    .custom-navmenu ul {
        max-height: 300px; /* Giới hạn chiều cao menu */
        overflow-y: auto; /* Thêm thanh cuộn nếu quá dài */
    }
}

@media (max-width: 991px) {
    .custom-navmenu {
        display: block;
        position: absolute;
        bottom:60px;
        left: 0;
        width: 100%;
        padding: 10px 0;
        background: #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .custom-navmenu ul li{
        width: 100%;
        max-height: 300px; /* Giới hạn chiều cao menu */
        overflow-y: auto; /* Thêm thanh cuộn nếu quá dài */
    }
.custom-navmenu a {
    color: #333;
    font-size: 16px;
    padding: 2px 2px;
    transition: all 0.3s ease;
    position: relative;
}
}
@media (min-width: 768px) and (max-width: 991px) {
    /* Ẩn icon ☰ trên tablet */
    .mobile-nav-toggle {
        display: none !important;
    }
    .custom-header{
        width: 100%;
    }
    /* Giữ menu luôn hiển thị như trên máy tính */
    .custom-navmenu {
        width: 100%;
        display: flex !important;
        position: static !important; /* Không cần absolute hay fixed */
        background: none;
        box-shadow: none;
    }

    .custom-navmenu ul {
        display: flex;
        justify-content: center;
        padding: 0;
    }

    .custom-navmenu ul li {
        padding: 5px 10px; /* Thu nhỏ khoảng cách */
    }

    .custom-navmenu a {
        font-size: 14px; /* Giảm kích thước chữ */
        padding: 8px 10px; /* Điều chỉnh padding */
    }
}

/* ==================== HOME SECTION ==================== */
.intro-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.custom-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.custom-col-6 {
    width: 50%;
    padding: 20px;
}

.intro-lead {
    font-size: 18px;
    color: #666;
    margin: 10px 0 20px;
}

.custom-cta-buttons {
    display: flex;
    gap: 15px;
}

.custom-btn {
    display: inline-block;
    padding: 12px 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease-in-out;
}

.primary-btn {
    background-color: #007bff;
    color: white;
    border: none;
}

.primary-btn:hover {
    background-color: #0056b3;
}

.outline-btn {
    border: 2px solid #007bff;
    color: #007bff;
}

.outline-btn:hover {
    background-color: #007bff;
    color: white;
}

.custom-stats {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.custom-stat-item {
    text-align: center;
}

.custom-stat-number {
    font-size: 24px;
    font-weight: bold;
    color: #007bff;
}

.custom-stat-label {
    display: block;
    font-size: 14px;
    color: #666;
}

.custom-hero-image {
    position: relative;
    text-align: center;
}
.custom-img {
    max-width: 50%;
    height: auto;
    border-radius: 50%;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out, filter 0.5s ease-in-out;
    filter: brightness(1) contrast(1);
    position: relative; /* Đảm bảo ảnh không bị ảnh hưởng bởi shape */
    z-index: 2; /* Đưa ảnh lên trên */
}

.custom-img:hover {
    transform: scale(1.1) translateY(-5px);
    filter: brightness(1.2) contrast(1.2); 
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.custom-shape-1, .custom-shape-2 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4; /* Giảm opacity để không quá rõ */
    animation: wave 4s infinite ease-in-out alternate;
    z-index: 1; /* Đảm bảo nằm phía sau */
}

.custom-shape-1 {
    width: 500px; /* Giảm kích thước */
    height: 350px;
    background-color: rgba(255, 0, 153, 0.15); /* Giảm độ nổi bật */
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.custom-shape-2 {
    width: 500px;
    height: 300px;
    background-color: rgba(0, 255, 81, 0.15);
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}

        @keyframes wave {
            0% {
                transform: translateY(0px) scale(1);
                border-radius: 50%;
            }
            50% {
                transform: translateY(20px) scale(1.05);
                border-radius: 48%;
            }
            100% {
                transform: translateY(-20px) scale(1);
                border-radius: 52%;
            }
        }
        @media (max-width: 768px) {
    .custom-col-6 {
        width: 100%;
        text-align: center; /* Căn giữa nội dung */
    }
}
@media (max-width: 768px) {
    .custom-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
@media (max-width: 768px) {
    .custom-shape-1, .custom-shape-2 {
        width: 300px; /* Giảm kích thước trên mobile */
        height: 250px;
    }

    .custom-shape-1 {
        top: -20px;
        left: 10%;
    }

    .custom-shape-2 {
        bottom: -20px;
        right: 10%;
    }
}

/* ==================== ABOUT ME SECTION ==================== */
/* General styling */
#about {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}
.section-header{
  margin-left: 50px;
}
.row {
  display: flex;
  align-items: center; /* Căn giữa nội dung theo chiều dọc */
}

.sectionabout {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #343a40;
}

.header-divider {
    width: 100px;
    height: 4px;
    background: #007bff;
    margin: 10px auto;
}

.section-header p {
    font-size: 16px;
    color: #6c757d;
}

/* About Container */
.container {
    max-width: 1250px;
    margin: 0 auto;
    background: #fcf8f8;
    padding: 40px;
    position: relative;
    animation: fadeInUp 1s ease-in-out;
}

/* Ảnh đại diện */
.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 11px;
}
.col-lg-6 {
    width: 70%;
    max-width: none;
}

.about-img img {
    width: 100%;
     max-width: 400px;
    height: 400px; /* Điều chỉnh chiều cao theo ý muốn */
    object-fit: cover; /* Giữ tỷ lệ ảnh và cắt phần thừa nếu cần */
    border-radius: 12px;
    transition: transform 0.9s ease-in-out;
}


.about-img:hover img {
    transform: scale(1.5);
}

/* About Details */
.about-details .subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #007bff;
}

.about-details h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 10px 0;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 20px;
    margin-left: 20px;
}

.info-item {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    background: #dfeaf4;
    border-radius: 6px;
}

.info-label {
    font-weight: 600;
    color: #007bff;
}

/* Chữ ký */
.signature-box {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-left: 20px;
}

.signature-img img {
    width: 100px;
    border-radius: 50%;
    margin-right: 10px;
    transition: transform 0.3s ease-in-out;
}

.signature-box:hover .signature-img img {
    transform: rotate(5deg) scale(1.1);
}
.about-img {
    position: relative;
    overflow: hidden;
    border-radius: 11px;
    animation: slideInLeft 1s ease-in-out;
}
.leads{
    margin-left: 10%;
    width: 80%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}
/* Hiệu ứng xuất hiện */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(90px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==================== ANIMATIONS ==================== */
@keyframes slideInFromRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}
/* Điện thoại (nhỏ hơn 768px) */
@media (max-width: 767px) { /* Điện thoại */
    .container {
        max-width: 100%;
        padding: 0 !important;
        margin: 0 !important;
    }
}

/* ==================== RESPONSIVE DESIGN ==================== */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .row {
        flex-direction: column;
        text-align: center;
    }
    .section-header {
        margin-left: 0;
    }
    .about-img img {
        height: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr; /* Chỉ một cột trên tablet */

    }

    .about-details h2 {
        font-size: 24px;
    }

    .section-header h2 {
        font-size: 32px;
    }
}

/* Mobile (480px - 768px) */
@media (max-width: 768px) {
    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 14px;
    }

    .about-img img {
        height: 250px;
    }

    .info-grid {
        grid-template-columns: 1fr; /* Một cột trên điện thoại */
    }

    .info-item {
        flex-direction: column;
        text-align: left;
    }

    .signature-box {
        flex-direction: column;
        align-items: center;
    }

    .signature-img img {
        width: 60px;
        margin-bottom: 10px;
    }
}

/* Small Mobile (Dưới 480px) */
@media (max-width: 480px) {
    .section-header h2 {
        font-size: 24px;
    }
    .about-details{
        margin-left: 5px;
        width: 100%;
    }
    .about-details h2 {
        font-size: 22px;
    }

    .about-img img {
        height: 200px;
    }

    .info-grid {
        gap: 5px;
    }
    .about-details{
        margin-left: -30px;
    }
    .info-item {
        font-size: 14px;
    }
}

    /* Định dạng hộp kỹ năng */
    .skill-box {
        background: #fff;
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease-in-out;
    }

    .skill-box:hover {
        transform: translateY(-5px);
    }

    /* Định dạng icon kỹ năng */
    .skill-icon {
        font-size: 40px;
        color: #ff6b6b;
        margin-bottom: 10px;
    }

    /* Màu sắc icon riêng cho từng kỹ năng */
    .fa-html5 { color: #e34f26; } /* Màu HTML */
    .fa-css3-alt { color: #264de4; } /* Màu CSS */
    .fa-js-square { color: #f7df1e; } /* Màu JavaScript */
    .fa-paint-brush { color: #007acc; } /* Màu Photoshop */

    /* Định dạng thanh tiến trình */
    .progress {
        height: 10px;
        border-radius: 5px;
        background: #e0e0e0;
        overflow: hidden;
        margin-top: 5px;
    }

    .progress-bar {
        height: 100%;
        transition: width 1s ease-in-out;
    }

    /* Màu cho từng thanh tiến trình */
    .html-bar { background: #e34f26; width: 90%; }
    .css-bar { background: #264de4; width: 95%; }
    .js-bar { background: #f7df1e; width: 80%; }
    .php-bar { background: #777bb4; width: 85%; }
    .laravel-bar { background: #ff2d20; width: 75%; }
    .java-bar { background: #007396; width: 70%; }
    .python-bar { background: #3776ab; width: 80%; }
    .react-bar { background: #61dafb; width: 75%; }
    .github-bar { background: #24292e; width: 85%; }
    .jira-bar { background: #0052cc; width: 70%; }
    .mysql-bar { background: #4479a1; width: 80%; }
    .figma-bar { background: #f24e1e; width: 85%; }

    .skills .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    }

    .skill-box {
    background: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
    margin-bottom: 10px; /* Thêm khoảng cách giữa các kỹ năng */
    }
    .skill-box:hover {
    transform: translateY(-5px);
    }
    .row.g-4 {
    gap: 10px; /* Thêm khoảng cách giữa các cột */
    }

    /* Giữ 4 cột trên một hàng */
    @media (min-width: 992px) { /* Khi màn hình lớn hơn 992px */
    .col-lg-3 {
        flex: 0 0 20%;
        max-width: 25%;
    }
    }

    /* Đảm bảo hiển thị tốt trên tablet */
    @media (max-width: 991px) {
    .col-md-6 {
        flex: 0 0 25%;
        max-width: 50%;
    }
    }

    /* Trên điện thoại nhỏ, mỗi hàng có 1 cột */
    @media (max-width: 575px) {
    .col-12 {
        flex: 0 0 50%;
        max-width: 100%;
    }
    }



/* ====== Global Styles ====== */
.resume {
    min-height: auto;
}
.resume-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}


.timeline-item {
    margin-bottom: 20px; /* Giảm khoảng cách giữa các item */
}


.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    color: #333;
}

.section-title p {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 10px auto;
}

.resume-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ====== Timeline Styles ====== */
.timeline {
    position: relative;
    padding-left: 20px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.timeline-left {
    flex: 1;
    max-width: 30%;
    text-align: right;
    padding-right: 20px;
}

.timeline-left h4 {
    font-size: 18px;
    font-weight: bold;
    color: #007bff;
    margin-bottom: 5px;
}

.timeline-left .period {
    font-size: 16px;
    color: #555;
}

.timeline-dot {
    width: 12px;
    height: 12px;
    background: #007bff;
    border-radius: 50%;
    position: absolute;
    left: calc(30% + 10px);
    top: 10px;
}

.timeline-right {
    flex: 2;
    padding-left: 30px;
}

.timeline-right h3 {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.timeline-right p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 10px;
}

.timeline-right ul {
    padding-left: 20px;
}

.timeline-right ul li {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
    margin-bottom: 5px;
}

/* ====== Responsive Styles ====== */

/* Laptop (1024px - 1366px) */
@media (max-width: 1366px) {
    .resume-wrapper {
        padding: 30px;
    }

    .timeline-left h4,
    .timeline-left .period {
        font-size: 16px;
    }

    .timeline-right h3 {
        font-size: 18px;
    }

    .timeline-right p,
    .timeline-right ul li {
        font-size: 15px;
    }
}

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .resume-wrapper {
        padding: 25px;
    }

    .timeline {
        padding-left: 10px;
    }

    .timeline-item {
        flex-direction: column;
        text-align: left;
        padding-bottom: 20px;
    }

    .timeline-left {
        max-width: 100%;
        text-align: left;
        padding-right: 0;
    }

    .timeline-dot {
        left: 10px;
    }

    .timeline-right {
        padding-left: 20px;
    }
}

/* Mobile (480px - 768px) */
@media (max-width: 768px) {
    .resume {
        padding: 40px 0;
    }

    .section-title h2 {
        font-size: 24px;
    }

    .timeline-item {
        padding: 15px 0;
    }

    .timeline-left h4,
    .timeline-left .period {
        font-size: 14px;
    }

    .timeline-right h3 {
        font-size: 16px;
    }

    .timeline-right p,
    .timeline-right ul li {
        font-size: 14px;
    }
}

/* Mobile nhỏ (dưới 480px) */
@media (max-width: 480px) {
    .resume-wrapper {
        padding: 15px;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .timeline-left h4 {
        font-size: 12px;
    }

    .timeline-left .period {
        font-size: 12px;
    }

    .timeline-right h3 {
        font-size: 14px;
    }

    .timeline-right p,
    .timeline-right ul li {
        font-size: 12px;
    }
}
@media (max-width: 768px) {
    [data-aos] {
        will-change: opacity, transform; /* Giúp trình duyệt tối ưu */
        transition: transform 0.6s ease-out, opacity 0.6s ease-out;
    }
}
/* Điện thoại nhỏ (dưới 480px) */
@media (max-width: 480px) {
    .image-cv {
        width: 100%;
        height: 100vh; /* Đảm bảo chiếm toàn màn hình */
    }
}
.image-cv {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; /* Tránh cắt ảnh nếu nội dung nhiều */
    width: 100%;
}

.image-cv img {
    max-width: 50%; /* Giới hạn kích thước ảnh */
    height: auto;
    margin-bottom: 2%;
}

/* Mobile dưới 768px */
@media (max-width: 768px) {
    .image-cv img {
        max-width: 80%; /* Tăng kích thước ảnh cho điện thoại */
    }
}

.cv-file {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ===============================
   CONTACT SECTION STYLES
================================ */

/* Cấu trúc chính */
.contact {
    padding: 80px 0;
    background-color: #f9f9f9; /* Màu nền nhẹ */
}

/* Tiêu đề và mô tả */
.contact .section-category {
    color: #ff6b6b; /* Màu nổi bật */
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
}

.contact h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.contact p.lead {
    font-size: 18px;
    color: #666;
}

/* Thông tin liên hệ */
.contact-info .info-item {
    font-size: 16px;
    color: #444;
    display: flex;
    align-items: center;
}

.contact-info i {
    font-size: 20px;
    color: #ff6b6b; /* Màu icon */
}

/* Link bản đồ */
.contact-info .map-link {
    font-size: 16px;
    font-weight: 500;
    color: #ff6b6b;
    transition: all 0.3s ease-in-out;
}

.contact-info .map-link:hover {
    color: #d63c3c;
    text-decoration: underline;
}

/* ===============================
   CONTACT FORM STYLES
================================ */
.contact-form {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.contact-form .card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px; /* Khoảng cách giữa các input */
}

.contact-form .form-control {
    width: 100%;
    border-radius: 5px;
    border: 1px solid #ddd;
    padding: 12px;
    font-size: 16px;
    transition: all 0.3s ease-in-out;
}

.contact-form .form-control:focus {
    border-color: #ff6b6b;
    box-shadow: 0 0 5px rgba(255, 107, 107, 0.5);
}

/* Đảm bảo các input xếp theo hàng dọc */
.contact-form .row {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Nút submit */
.btn-submit {
    background: #ff6b6b;
    color: rgb(144, 133, 133);
    padding: 12px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease-in-out;
    width: 100%;
}

.btn-submit:hover {
    background: #d63c3c;
}

  .footer {
    background: #222;
    color: #322222;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 5%;
  }
   .footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .copyright {
    font-size: 14px;
  }

  .sitename {
    font-weight: bold;
    color: #ffcc00;
  }

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

  .social-icon {
    font-size: 20px;
    color: #000000;
    transition: color 0.3s ease, transform 0.2s ease;
  }

  /* Hover effects */
  .social-icon:hover {
    transform: scale(1.1);
  }
  .github:hover { color: #4078c0; }
  .facebook:hover { color: #1877f2; }
  .instagram:hover { color: #e1306c; }
  .linkedin:hover { color: #0077b5; }
/* ===============================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 768px) {
    .contact {
        padding: 50px 20px;
    }

    .contact h2 {
        font-size: 28px;
        text-align: center;
    }

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

    .contact-form .card-body {
        padding: 20px;
    }
}
