/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}
.faq-title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.faq-item {
  border: 1px solid #ddd;
  margin-bottom: 15px;
  border-radius: 5px;
  overflow: hidden;
}

.faq-question {
  padding: 15px 20px;
  background: #f8f9fa;
  cursor: pointer;
  font-weight: 600;
  position: relative;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
}

.faq-item.active .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  background: #fff;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 15px 20px;
  max-height: 200px;
}
.logo 
{
    display: flex;
    gap: 30px;
}
.logo h1 
{
    padding: 20px;
}
.logo img
{
    width:140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
}


        .pricing-section {
            padding: 40px 0;
        }

        .pricing-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            color: #0e7490;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }

        .pricing-subtitle {
            text-align: center;
            font-size: 1.1rem;
            color: #64748b;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        /* Tabs Styling */
        .pricing-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            flex-wrap: wrap;
            gap: 8px;
            background: white;
            padding: 8px;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .pricing-tab {
            background: transparent;
            border: 2px solid transparent;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 0.95rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #64748b;
            text-align: center;
        }

        .pricing-tab:hover {
            background-color: #f8fafc;
        }

        .pricing-tab.active {
            background: #0e7490;
            color: white;
            box-shadow: 0 4px 8px rgba(14, 116, 144, 0.2);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
            margin-top: 20px;
        }

        .pricing-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
        }

        .pricing-card-header {
            padding: 30px 20px 20px;
            text-align: center;
            background: linear-gradient(to bottom, #f8fafc, white);
        }

        .pricing-card-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #1e293b;
            margin-top: 20px;
            margin-bottom: 12px;
        }

        .pricing-card-price {
            font-size: 2.2rem;
            font-weight: 800;
            color: #0e7490;
            margin-bottom: 4px;
        }

        .pricing-card-price span {
            font-size: 0.9rem;
            font-weight: 500;
            color: #64748b;
            display: block;
            margin-top: 4px;
        }

        .pricing-card-description {
            font-size: 0.95rem;
            color: #64748b;
            margin-top: 12px;
            line-height: 1.5;
        }

        .pricing-card-body {
            padding: 20px;
            flex-grow: 1;
        }

        .pricing-feature {
            display: flex;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px dashed #e2e8f0;
            font-size: 0.9rem;
        }

        .pricing-feature:last-child {
            border-bottom: none;
        }

        .pricing-feature-label {
            color: #64748b;
            font-weight: 500;
        }

        .pricing-feature-value {
            color: #1e293b;
            font-weight: 600;
        }

        .pricing-features-list {
            margin: 20px 0;
        }

        .pricing-feature-item {
            padding: 6px 0;
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            color: #1e293b;
        }

        .pricing-feature-item::before {
            content: '✓';
            color: #10b981;
            margin-right: 10px;
            font-weight: bold;
        }

        .pricing-card-footer {
            padding: 0 20px 20px;
            margin-top: auto;
        }

        .pricing-btn {
            background: #0e7490;
            color: white;
            border: none;
            width: 100%;
            padding: 14px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .pricing-btn:hover {
            background: #0c6691;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(14, 116, 144, 0.3);
        }

        .pricing-tax-note {
            text-align: center;
            font-size: 0.8rem;
            color: #64748b;
            margin-top: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        /* Modal Styles */
        .pricing-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.7);
            z-index: 1000;
            align-items: center;
            justify-content: center;
            padding: 20px;
            animation: fadeIn 0.3s ease;
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        .pricing-modal-content {
            background: white;
            border-radius: 16px;
            width: 100%;
            max-width: 600px;
            padding: 30px;
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
            animation: slideUp 0.4s ease;
            max-height: 90vh;
            overflow-y: auto;
        }

        @keyframes slideUp {
            from { transform: translateY(40px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        .pricing-close {
            position: absolute;
            top: 20px;
            right: 24px;
            font-size: 1.8rem;
            color: #64748b;
            cursor: pointer;
            transition: all 0.2s;
            line-height: 1;
        }

        .pricing-close:hover {
            color: #ef4444;
        }

        #pricing-plan-title {
            color: #1e293b;
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .modal-details-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .modal-detail-box {
            background: #f8fafc;
            padding: 20px;
            border-radius: 10px;
            border: 1px solid #e2e8f0;
        }

        .modal-detail-title {
            font-size: 0.9rem;
            color: #64748b;
            margin-bottom: 8px;
        }

        .modal-detail-value {
            font-size: 1.2rem;
            font-weight: 700;
            color: #0e7490;
        }

        .modal-total-box {
            grid-column: span 2;
            background: #0e7490;
            color: white;
            padding: 20px;
            border-radius: 10px;
            text-align: center;
        }

        .modal-total-title {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-bottom: 8px;
        }

        .modal-total-value {
            font-size: 1.8rem;
            font-weight: 800;
        }

        .modal-section-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #1e293b;
            margin: 30px 0 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #f1f5f9;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 20px;
        }

        .form-full-width {
            grid-column: span 2;
        }

        .form-group {
            position: relative;
        }

        .pricing-modal-content input,
        .pricing-modal-content textarea,
        .pricing-modal-content select {
            width: 100%;
            padding: 14px;
            border: 1px solid #d1d5db;
            border-radius: 8px;
            font-size: 0.95rem;
            transition: all 0.3s;
            background-color: white;
        }

        .pricing-modal-content input:focus,
        .pricing-modal-content textarea:focus,
        .pricing-modal-content select:focus {
            outline: none;
            border-color: #0e7490;
            box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.1);
        }

        .pricing-modal-content textarea {
            min-height: 100px;
            resize: vertical;
        }

        .error-message {
            color: #ef4444;
            font-size: 0.85rem;
            margin-top: 5px;
            display: none;
        }

        .input-error {
            border-color: #ef4444 !important;
        }

        .input-error:focus {
            box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
        }

        .datetime-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 20px;
        }

        .validation-message {
            background: #fee2e2;
            color: #991b1b;
            padding: 12px 16px;
            border-radius: 8px;
            margin-bottom: 20px;
            display: none;
            font-size: 0.9rem;
            border-left: 4px solid #ef4444;
        }

        .modal-buttons {
            display: flex;
            gap: 12px;
            margin-top: 30px;
        }

        .pricing-pay-btn,
        .pricing-cancel-btn {
            flex: 1;
            padding: 16px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            border: none;
        }

        .pricing-pay-btn {
            background: #10b981;
            color: white;
        }

        .pricing-pay-btn:hover {
            background: #0da271;
            transform: translateY(-2px);
        }

        .pricing-cancel-btn {
            background: #f1f5f9;
            color: #64748b;
            border: 1px solid #d1d5db;
        }

        .pricing-cancel-btn:hover {
            background: #e2e8f0;
        }

        .pricing-note {
            margin-top: 20px;
            padding: 16px;
            background-color: #f0f9ff;
            border-radius: 8px;
            color: #0369a1;
            font-size: 0.9rem;
            text-align: center;
            border-left: 4px solid #0ea5e9;
            line-height: 1.5;
        }

        /* Success Message */
        .success-message {
            display: none;
            position: fixed;
            top: 30px;
            right: 30px;
            background: linear-gradient(135deg, #10b981, #059669);
            color: white;
            padding: 20px 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
            z-index: 2000;
            animation: slideInRight 0.5s ease;
            max-width: 400px;
        }

        @keyframes slideInRight {
            from { transform: translateX(100%); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        .success-message-content {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .success-icon {
            font-size: 2rem;
            flex-shrink: 0;
        }

        .success-text h4 {
            font-size: 1.2rem;
            margin-bottom: 5px;
            font-weight: 700;
        }

        .success-text p {
            font-size: 0.95rem;
            opacity: 0.9;
            line-height: 1.5;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .pricing-title {
                font-size: 2rem;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .pricing-tabs {
                flex-direction: column;
            }
            
            .pricing-modal-content {
                padding: 24px 20px;
            }
            
            .modal-details-grid {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            .modal-total-box {
                grid-column: span 1;
            }
            
            .form-grid {
                grid-template-columns: 1fr;
            }
            
            .form-full-width {
                grid-column: span 1;
            }
            
            .datetime-container {
                grid-template-columns: 1fr;
            }
            
            .modal-buttons {
                flex-direction: column;
            }
            
            .success-message {
                top: 20px;
                right: 20px;
                left: 20px;
                max-width: none;
            }
        }

        @media (max-width: 480px) {
           
            
            .pricing-card-header,
            .pricing-card-body,
            .pricing-card-footer {
                padding: 16px;
            }
            
            .pricing-card-title {
                font-size: 1.3rem;
            }
            
            .pricing-card-price {
                font-size: 1.8rem;
            }
        }

        .feature-box {
            background: white;
            padding: 25px 20px;
            border-radius: 12px;
            text-align: center;
            width: 180px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .feature-box:hover {
            transform: translateY(-10px);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: #3b82f6;
            margin-bottom: 15px;
        }

        .feature-title {
            font-weight: 600;
            color: #0f172a;
            margin-bottom: 8px;
        }

        .feature-desc {
            font-size: 0.9rem;
            color: #64748b;
        }

        /* Responsive Design */
        @media (max-width: 1100px) {
            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .pricing-popular {
                transform: none;
            }
            
            .pricing-popular:hover {
                transform: translateY(-15px);
            }
        }

        @media (max-width: 768px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                max-width: 500px;
                margin-left: auto;
                margin-right: auto;
            }
            
            .pricing-title {
                font-size: 2.5rem;
            }
            
            .pricing-subtitle {
                font-size: 1.1rem;
            }
            
            .pricing-modal-content {
                padding: 30px 25px;
            }
            
            .datetime-container {
                grid-template-columns: 1fr;
            }
            
            .pricing-features {
                gap: 15px;
            }
            
            .feature-box {
                width: calc(50% - 15px);
            }
        }

        @media (max-width: 480px) {
            .pricing-title {
                font-size: 2rem;
            }
            
            .feature-box {
                width: 100%;
            }
            
            .pricing-modal-content p {
                flex-direction: column;
            }
            
            .pricing-modal-content p span {
                text-align: left;
                margin-top: 5px;
            }
        }

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img {
    transition: .5s;
}

.team-item:hover .team-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/img1.avif) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}