:root {
    --primary: #4a306d;
    --secondary: #6a4c93;
    --accent: #ff7e5f;
    --light: #f8f9fa;
    --dark: #212529;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Merriweather', serif;
}

.navbar {
    background-color: var(--primary);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    font-family: 'Merriweather', serif;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-link {
    font-weight: 600;
    margin: 0 10px;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--accent) !important;
}

.hero-section {
    background: linear-gradient(rgba(74, 48, 109, 0.8), rgba(74, 48, 109, 0.9)), url('https://source.unsplash.com/random/1600x900/?books,library') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 150px 0 100px;
    text-align: center;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.btn-primary {
    background-color: var(--accent);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #ff5a3a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background-color: var(--accent);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.feature-card {
    border: none;
    border-radius: 10px;
    transition: all 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.novel-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.novel-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.novel-card img {
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s;
}

.novel-card:hover img {
    transform: scale(1.1);
}

.about-section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.mission-vision {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    transition: all 0.3s;
}

.mission-vision:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.service-item {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s;
    margin-bottom: 30px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.contact-section {
    background: linear-gradient(rgba(74, 48, 109, 0.9), rgba(74, 48, 109, 0.9)), url('https://source.unsplash.com/random/1600x900/?contact,writing') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 100px 0;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-form .form-control {
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
}

footer {
    background-color: var(--dark);
    color: white;
    padding: 60px 0 20px;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
}

/* Auth Modal Styles */
.auth-modal .modal-content {
    border-radius: 15px;
    border: none;
    overflow: hidden;
}

.auth-modal .modal-header {
    border-bottom: none;
    padding: 30px 30px 0;
    position: relative;
}

.auth-modal .btn-close {
    position: absolute;
    right: 20px;
    top: 20px;
}

.auth-modal .modal-body {
    padding: 0 30px 30px;
}

.auth-tabs {
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 25px;
}

.auth-tabs .nav-link {
    border: none;
    color: #6c757d;
    font-weight: 600;
    padding: 15px 25px;
    margin: 0;
    border-radius: 0;
    position: relative;
}

.auth-tabs .nav-link.active {
    color: var(--primary);
    background: transparent;
}

.auth-tabs .nav-link.active:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary);
}

.auth-form .form-control {
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 20px;
    border: 1px solid #e1e1e1;
    transition: all 0.3s;
}

.auth-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(74, 48, 109, 0.25);
}

.auth-form .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.divider {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.divider:before,
.divider:after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e9ecef;
}

.divider span {
    padding: 0 15px;
    color: #6c757d;
    font-size: 14px;
}

.social-login {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-btn {
    flex: 1;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    padding: 10px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-weight: 500;
}

.social-btn:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.social-btn.google {
    color: #DB4437;
}

.social-btn.facebook {
    color: #4267B2;
}

.auth-switch {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
}

.auth-switch a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s, transform 0.6s;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section {
        padding: 120px 0 80px;
    }

    .auth-modal .modal-body {
        padding: 0 20px 20px;
    }

    .social-login {
        flex-direction: column;
    }
}

/* FOR THE ABOUT SECTION  */
 .about-content {
            background: white;
            border-radius: 10px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s;
            height: 100%;
        }
        
        .about-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s;
            height: 100%;
        }
        
        .about-image:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .mission-vision {
            margin-bottom: 30px;
        }
        
        .mission-vision h3 {
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .mission-vision h3:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--accent);
            bottom: 0;
            left: 0;
        }
        
        .stats-section {
            background: linear-gradient(rgba(74, 48, 109, 0.9), rgba(74, 48, 109, 0.9)), url('https://source.unsplash.com/random/1600x900/?books,reading') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 100px 0;
            text-align: center;
        }
        
        .stat-item {
            padding: 30px 20px;
        }
        
        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: block;
        }
        
        .stat-label {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .team-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }
        
        .team-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .team-card img {
            height: 250px;
            object-fit: cover;
        }
        
        .team-card .card-body {
            text-align: center;
        }
        
        .team-card .social-links {
            margin-top: 15px;
        }
        
        .team-card .social-links a {
            display: inline-block;
            width: 36px;
            height: 36px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 36px;
            margin: 0 5px;
            transition: all 0.3s;
        }
        
        .team-card .social-links a:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }
        
        .values-section {
            padding: 100px 0;
        }
        
        .value-item {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s;
            margin-bottom: 30px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .value-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .value-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .timeline-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }
        
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: var(--primary);
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item::after {
            content: '';
            position: absolute;
            width: 25px;
            height: 25px;
            background-color: white;
            border: 4px solid var(--accent);
            top: 15px;
            border-radius: 50%;
            z-index: 1;
        }
        
        .left {
            left: 0;
        }
        
        .right {
            left: 50%;
        }
        
        .left::after {
            right: -13px;
        }
        
        .right::after {
            left: -13px;
        }
        
        .timeline-content {
            padding: 20px 30px;
            background-color: white;
            position: relative;
            border-radius: 6px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .timeline-content h3 {
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .timeline-content .date {
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 10px;
            display: block;
        }
        
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 20px;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            text-align: center;
            line-height: 40px;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background-color: var(--accent);
            transform: translateY(-5px);
        }
        
        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s, transform 0.6s;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2.5rem;
            }
            
            .hero-section {
                padding: 120px 0 80px;
            }
            
            .about-content, .about-image {
                margin-bottom: 30px;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item::after {
                left: 18px;
            }
            
            .left::after, .right::after {
                left: 18px;
            }
            
            .right {
                left: 0%;
            }
        }

          .hero-section {
            background: linear-gradient(rgba(74, 48, 109, 0.8), rgba(74, 48, 109, 0.9)), url('https://source.unsplash.com/random/1600x900/?books,writing') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 150px 0 100px;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }
        
        .hero-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease;
        }
        
        .btn-primary {
            background-color: var(--accent);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-primary:hover {
            background-color: #ff5a3a;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--accent);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .service-hero {
            padding: 100px 0;
            background-color: #f8f9fa;
        }
        
        .service-card {
            border: none;
            border-radius: 10px;
            transition: all 0.3s;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            margin-bottom: 30px;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: block;
            text-align: center;
        }
        
        .featured-services {
            padding: 100px 0;
        }
        
        .feature-box {
            text-align: center;
            padding: 40px 30px;
            border-radius: 10px;
            transition: all 0.3s;
            margin-bottom: 30px;
            background: white;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: block;
        }
        
        .process-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }
        
        .process-step {
            text-align: center;
            padding: 30px 20px;
            position: relative;
        }
        
        .step-number {
            width: 60px;
            height: 60px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: 700;
            margin: 0 auto 20px;
            position: relative;
            z-index: 2;
        }
        
        .process-connector {
            position: absolute;
            top: 30px;
            left: 50%;
            width: 100%;
            height: 2px;
            background-color: var(--primary);
            z-index: 1;
        }
        
        .pricing-section {
            padding: 100px 0;
        }
        
        .pricing-card {
            border: none;
            border-radius: 10px;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            overflow: hidden;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .pricing-header {
            background-color: var(--primary);
            color: white;
            padding: 30px 20px;
            text-align: center;
        }
        
        .pricing-price {
            font-size: 3rem;
            font-weight: 700;
            margin: 20px 0;
        }
        
        .pricing-features {
            padding: 30px 20px;
        }
        
        .pricing-features ul {
            list-style: none;
            padding: 0;
        }
        
        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        .pricing-features li i {
            color: var(--accent);
            margin-right: 10px;
        }
        
        .testimonials-section {
            padding: 100px 0;
            background: linear-gradient(rgba(74, 48, 109, 0.9), rgba(74, 48, 109, 0.9)), url('https://source.unsplash.com/random/1600x900/?reading,books') no-repeat center center;
            background-size: cover;
            color: white;
        }
        
        .testimonial-card {
            background: white;
            color: var(--dark);
            border-radius: 10px;
            padding: 30px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 15px;
        }
        
        .author-info h5 {
            margin-bottom: 0;
        }
        
        .author-info p {
            margin-bottom: 0;
            color: #6c757d;
        }
        
        .faq-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }
        
        .accordion-button {
            font-weight: 600;
            padding: 20px;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary);
        }
        
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(rgba(74, 48, 109, 0.9), rgba(74, 48, 109, 0.9)), url('https://source.unsplash.com/random/1600x900/?library,bookshelf') no-repeat center center;
            background-size: cover;
            color: white;
            text-align: center;
        }
            
  .section-title {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background-color: var(--accent);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .contact-info-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }
        
        .contact-card {
            border: none;
            border-radius: 10px;
            transition: all 0.3s;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            overflow: hidden;
            margin-bottom: 30px;
            text-align: center;
            padding: 40px 20px;
        }
        
        .contact-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .contact-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
            display: block;
        }
        
        .contact-form-section {
            padding: 100px 0;
        }
        
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .contact-form .form-control {
            border-radius: 5px;
            padding: 12px 15px;
            margin-bottom: 20px;
            border: 1px solid #e1e1e1;
            transition: all 0.3s;
        }
        
        .contact-form .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(74, 48, 109, 0.25);
        }
        
        .map-section {
            padding: 0;
            height: 500px;
        }
        
        .map-section iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .faq-section {
            padding: 100px 0;
            background-color: #f8f9fa;
        }
        
        .accordion-button {
            font-weight: 600;
            padding: 20px;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary);
        }
        
        .team-section {
            padding: 100px 0;
        }
        
        .team-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 30px;
            text-align: center;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .team-card img {
            height: 250px;
            object-fit: cover;
        }
        
        .team-card .card-body {
            padding: 30px 20px;
        }
        
        .social-links {
            margin-top: 15px;
        }
        
        .social-links a {
            display: inline-block;
            width: 36px;
            height: 36px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            text-align: center;
            line-height: 36px;
            margin: 0 5px;
            transition: all 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }
        
        .response-time-section {
            padding: 100px 0;
            background: linear-gradient(rgba(74, 48, 109, 0.9), rgba(74, 48, 109, 0.9)), url('https://source.unsplash.com/random/1600x900/?help,support') no-repeat center center;
            background-size: cover;
            color: white;
            text-align: center;
        }
        
        .response-item {
            padding: 30px 20px;
        }
        
        .response-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            display: block;
        }
        
        .response-time {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: block;
        }
        